CR-LF inconsistencies
diff --git a/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.getParams.js b/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.getParams.js
index 16e8c7a..23ef377 100644
--- a/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.getParams.js
+++ b/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.getParams.js
@@ -1,39 +1,39 @@
-/* Copyright (c) 2006 Mathias Bank (http://www.mathias-bank.de)
- * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
- * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
- *
- * Thanks to Hinnerk Ruemenapf - http://hinnerk.ruemenapf.de/ for bug reporting and fixing.
- */
-jQuery.extend({
-/**
-* Returns get parameters.
-*
-* If the desired param does not exist, null will be returned
-*
-* @example value = $.getURLParam("paramName");
-*/
- getURLParam: function(strParamName){
- var strReturn = "";
- var strHref = window.location.href;
- var bFound=false;
-
- var cmpstring = strParamName + "=";
- var cmplen = cmpstring.length;
-
- if ( strHref.indexOf("?") > -1 ){
- var strQueryString = strHref.substr(strHref.indexOf("?")+1);
- var aQueryString = strQueryString.split("&");
- for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
- if (aQueryString[iParam].substr(0,cmplen)==cmpstring){
- var aParam = aQueryString[iParam].split("=");
- strReturn = aParam[1];
- bFound=true;
- break;
- }
-
- }
- }
- if (bFound==false) return null;
- return strReturn;
- }
+/* Copyright (c) 2006 Mathias Bank (http://www.mathias-bank.de)
+ * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
+ * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
+ *
+ * Thanks to Hinnerk Ruemenapf - http://hinnerk.ruemenapf.de/ for bug reporting and fixing.
+ */
+jQuery.extend({
+/**
+* Returns get parameters.
+*
+* If the desired param does not exist, null will be returned
+*
+* @example value = $.getURLParam("paramName");
+*/
+ getURLParam: function(strParamName){
+ var strReturn = "";
+ var strHref = window.location.href;
+ var bFound=false;
+
+ var cmpstring = strParamName + "=";
+ var cmplen = cmpstring.length;
+
+ if ( strHref.indexOf("?") > -1 ){
+ var strQueryString = strHref.substr(strHref.indexOf("?")+1);
+ var aQueryString = strQueryString.split("&");
+ for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
+ if (aQueryString[iParam].substr(0,cmplen)==cmpstring){
+ var aParam = aQueryString[iParam].split("=");
+ strReturn = aParam[1];
+ bFound=true;
+ break;
+ }
+
+ }
+ }
+ if (bFound==false) return null;
+ return strReturn;
+ }
});
\ No newline at end of file
diff --git a/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.timer.js b/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.timer.js
index 55aedf4..8e8ab6e 100644
--- a/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.timer.js
+++ b/hyracks/hyracks-control/hyracks-control-cc/src/main/resources/static/javascript/jquery/plugins/jquery.timer.js
@@ -1,111 +1,111 @@
-/**
- * jquery.timer.js
- *
- * Copyright (c) 2011 Jason Chavannes <jason.chavannes@gmail.com>
- *
- * http://jchavannes.com/jquery-timer
- *
- * Permission is hereby granted, free of charge, to any person
- * obtaining a copy of this software and associated documentation
- * files (the "Software"), to deal in the Software without
- * restriction, including without limitation the rights to use, copy,
- * modify, merge, publish, distribute, sublicense, and/or sell copies
- * of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-;(function($) {
- $.timer = function(func, time, autostart) {
- this.set = function(func, time, autostart) {
- this.init = true;
- if(typeof func == 'object') {
- var paramList = ['autostart', 'time'];
- for(var arg in paramList) {if(func[paramList[arg]] != undefined) {eval(paramList[arg] + " = func[paramList[arg]]");}};
- func = func.action;
- }
- if(typeof func == 'function') {this.action = func;}
- if(!isNaN(time)) {this.intervalTime = time;}
- if(autostart && !this.active) {
- this.active = true;
- this.setTimer();
- }
- return this;
- };
- this.once = function(time) {
- var timer = this;
- if(isNaN(time)) {time = 0;}
- window.setTimeout(function() {timer.action();}, time);
- return this;
- };
- this.play = function(reset) {
- if(!this.active) {
- if(reset) {this.setTimer();}
- else {this.setTimer(this.remaining);}
- this.active = true;
- }
- return this;
- };
- this.pause = function() {
- if(this.active) {
- this.active = false;
- this.remaining -= new Date() - this.last;
- this.clearTimer();
- }
- return this;
- };
- this.stop = function() {
- this.active = false;
- this.remaining = this.intervalTime;
- this.clearTimer();
- return this;
- };
- this.toggle = function(reset) {
- if(this.active) {this.pause();}
- else if(reset) {this.play(true);}
- else {this.play();}
- return this;
- };
- this.reset = function() {
- this.active = false;
- this.play(true);
- return this;
- };
- this.clearTimer = function() {
- window.clearTimeout(this.timeoutObject);
- };
- this.setTimer = function(time) {
- var timer = this;
- if(typeof this.action != 'function') {return;}
- if(isNaN(time)) {time = this.intervalTime;}
- this.remaining = time;
- this.last = new Date();
- this.clearTimer();
- this.timeoutObject = window.setTimeout(function() {timer.go();}, time);
- };
- this.go = function() {
- if(this.active) {
- this.action();
- this.setTimer();
- }
- };
-
- if(this.init) {
- return new $.timer(func, time, autostart);
- } else {
- this.set(func, time, autostart);
- return this;
- }
- };
+/**
+ * jquery.timer.js
+ *
+ * Copyright (c) 2011 Jason Chavannes <jason.chavannes@gmail.com>
+ *
+ * http://jchavannes.com/jquery-timer
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy,
+ * modify, merge, publish, distribute, sublicense, and/or sell copies
+ * of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+;(function($) {
+ $.timer = function(func, time, autostart) {
+ this.set = function(func, time, autostart) {
+ this.init = true;
+ if(typeof func == 'object') {
+ var paramList = ['autostart', 'time'];
+ for(var arg in paramList) {if(func[paramList[arg]] != undefined) {eval(paramList[arg] + " = func[paramList[arg]]");}};
+ func = func.action;
+ }
+ if(typeof func == 'function') {this.action = func;}
+ if(!isNaN(time)) {this.intervalTime = time;}
+ if(autostart && !this.active) {
+ this.active = true;
+ this.setTimer();
+ }
+ return this;
+ };
+ this.once = function(time) {
+ var timer = this;
+ if(isNaN(time)) {time = 0;}
+ window.setTimeout(function() {timer.action();}, time);
+ return this;
+ };
+ this.play = function(reset) {
+ if(!this.active) {
+ if(reset) {this.setTimer();}
+ else {this.setTimer(this.remaining);}
+ this.active = true;
+ }
+ return this;
+ };
+ this.pause = function() {
+ if(this.active) {
+ this.active = false;
+ this.remaining -= new Date() - this.last;
+ this.clearTimer();
+ }
+ return this;
+ };
+ this.stop = function() {
+ this.active = false;
+ this.remaining = this.intervalTime;
+ this.clearTimer();
+ return this;
+ };
+ this.toggle = function(reset) {
+ if(this.active) {this.pause();}
+ else if(reset) {this.play(true);}
+ else {this.play();}
+ return this;
+ };
+ this.reset = function() {
+ this.active = false;
+ this.play(true);
+ return this;
+ };
+ this.clearTimer = function() {
+ window.clearTimeout(this.timeoutObject);
+ };
+ this.setTimer = function(time) {
+ var timer = this;
+ if(typeof this.action != 'function') {return;}
+ if(isNaN(time)) {time = this.intervalTime;}
+ this.remaining = time;
+ this.last = new Date();
+ this.clearTimer();
+ this.timeoutObject = window.setTimeout(function() {timer.go();}, time);
+ };
+ this.go = function() {
+ if(this.active) {
+ this.action();
+ this.setTimer();
+ }
+ };
+
+ if(this.init) {
+ return new $.timer(func, time, autostart);
+ } else {
+ this.set(func, time, autostart);
+ return this;
+ }
+ };
})(jQuery);
\ No newline at end of file
diff --git a/hyracks/hyracks-dataflow-std/src/test/resources/data/beer.txt b/hyracks/hyracks-dataflow-std/src/test/resources/data/beer.txt
index f42700a..cc41549 100644
--- a/hyracks/hyracks-dataflow-std/src/test/resources/data/beer.txt
+++ b/hyracks/hyracks-dataflow-std/src/test/resources/data/beer.txt
@@ -1,7308 +1,7308 @@
-id,flags,expiration,cas,value,rev,vbid,dtype
-alameda_brewhouse,0,0,244368670720,"{""name"":""Alameda Brewhouse"",""city"":""Portland"",""state"":""Oregon"",""code"":""97213"",""country"":""United States"",""phone"":""1-503-460-9025"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4765 NE Fremont""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5484,""lon"":-122.619}}",1,30,1
-abbey_wright_brewing_valley_inn,0,0,244371881984,"{""name"":""Abbey Wright Brewing/Valley Inn"",""city"":""Williamsport"",""state"":""Pennsylvania"",""code"":""17702"",""country"":""United States"",""phone"":""570.326.3383"",""website"":""http://www.valleyinnonline.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""204 Valley Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2225,""lon"":-77.0369}}",1,36,1
-allguer_brauhaus_ag_kempten,0,0,244377518080,"{""name"":""Allguer Brauhaus AG Kempten"",""city"":""Kempten"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)831-/-2050-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Beethovenstrae 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.7487,""lon"":10.5694}}",1,51,1
-ali_i_brewing,0,0,244368670721,"{""name"":""Ali`i Brewing"",""city"":""Honolulu"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":21.3069,""lon"":-157.858}}",1,30,1
-asheville_pizza_and_brewing_co,0,0,244371947520,"{""name"":""Asheville Pizza and Brewing Co."",""city"":""Asheville"",""state"":""North Carolina"",""code"":""28804"",""country"":""United States"",""phone"":""(828) 254-1281"",""website"":""http://www.ashevillepizza.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Asheville Brewpub, Brewery, Movie Theater and Pizzeria all rolled into 2 great places to meet and eat. Award winning beer and award winning pizza."",""address"":[""675 Merrimon Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6221,""lon"":-82.5536}}",1,36,1
-amstel_brouwerij-amstel_light,0,0,244377583616,"{""name"":""Amstel Light"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amstel_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,51,1
-allagash_brewing-allagash_fluxus_09,0,0,244368736256,"{""name"":""Allagash Fluxus 09"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,30,1
-atwater_block_brewing-dirty_blond,0,0,244372013056,"{""name"":""Dirty Blond"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Made with unmalted wheat, coriander and orange peel to help you live smart and enjoy everyday!"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,36,1
-andechser_klosterbrauerei,0,0,244377649152,"{""name"":""Andechser Klosterbrauerei"",""city"":""Andechs"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8152-/-376-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bergstrae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9775,""lon"":11.185}}",1,51,1
-allentown_brew_works,0,0,244368736257,"{""name"":""Allentown Brew Works"",""city"":""Allentown"",""state"":""Pennsylvania"",""code"":""18101"",""country"":""United States"",""phone"":""610.433.7777"",""website"":""http://www.thebrewworks.com/allentown-brewworks/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Allentown Brew Works is housed inside the historic Harold's Furniture Building at 812 W Hamilton Street. Years in the making, the new Allentown restaurant and brewery are part of the continuing vision of the Fegley family that established the original Bethlehem Brew Works in 1998. Proud to be part of the resurging downtown, the 400 seat restaurant is a testament to the vibrant heartbeat that thrives in this Queen City. Offering two and a half levels of dining, plus state of the art banquet facilities in The Hamilton Room, and multiple bars offering different atmospheres, as well as an outdoor casual Biergarten and a new seductive lower level lounge � Silk."",""address"":[""814 W Hamilton St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.6016,""lon"":-75.474}}",1,30,1
-atwater_block_brewing-dunkel,0,0,244372013057,"{""name"":""Dunkel"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our malty, sweet dark lager is a hometown favorite. Our Dunkel is packed with subtle roasted malt flavors without the excessive bitterness and heaviness of many dark beers and has a balanced hop finish.\r\n\r\nGABF Gold Winner"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-anheuser_busch-budweiser,0,0,244377649153,"{""name"":""Budweiser"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,51,1
-allguer_brauhaus_ag_kempten-bayrisch_hell,0,0,244368801792,"{""name"":""Bayrisch Hell"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-atwater_block_brewing-pilsner,0,0,244372078592,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-arcadia_brewing-india_pale_ale,0,0,244377649154,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-american_river_brewing,0,0,244368801793,"{""name"":""American River Brewing"",""city"":""Auburn"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8966,""lon"":-121.077}}",1,30,1
-atwater_block_brewing-x_line,0,0,244372078593,"{""name"":""X-Line"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-august_schell_brewing-caramel_bock,0,0,244377714688,"{""name"":""Caramel Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-anderson_valley_brewing-summer_solstice_cerveza_crema,0,0,244368867328,"{""name"":""Summer Solstice Cerveza Crema"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This copper colored ale is smooth, malty, and lightly sweet, with a delicate hint of spice for that oh-so-drinkable, extra velvety flavor. The character is lighter in body than its cousin our wildly popular Winter Solstice Seasonal Ale. This is a silky, creamy dream, perfect as a warm weather beer.\"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,30,1
-avery_brewing_company-czar_imperial_stout,0,0,244372078594,"{""name"":""Czar Imperial Stout"",""abv"":11.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-bbc_brewing_co_llc-dark_star,0,0,244377714689,"{""name"":""Dark Star"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,51,1
-augusta_brewing-tannhauser,0,0,244368867329,"{""name"":""Tannhauser"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augusta_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-bear_republic_brewery-apex,0,0,244372078595,"{""name"":""Apex"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Crafted with a blend of American and English malts and aggressively hopped with Pacific Northwest hops, this beer reflects what our brewers believe to be the Apex of IPA."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,36,1
-big_time_brewing-trombipulator,0,0,244377714690,"{""name"":""Trombipulator"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-augustiner_brau_munchen-weissbier,0,0,244368932864,"{""name"":""Weißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,30,1
-bierbrouwerij_st_christoffel-robertus,0,0,244372078596,"{""name"":""Robertus"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_st_christoffel"",""updated"":""2010-07-22 20:00:20"",""description"":""Christoffel Robertus is a low-fermenting ruby-red beer, brewed in the Münchener-style. It is a malty, fresh beer with a light sweetness. The typical hop bitterness found in Blond, is very lightly present in Robertus. The use of an extensive amount of selected barley gives Robertus the special malty taste and aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-boston_beer_company-samuel_adams_irish_red,0,0,244377780224,"{""name"":""Samuel Adams Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty and slightly sweet, balanced by earthy notes from the hops. The gentle rain and fertile soil of Ireland helped inspire this style of ale, known for being remarkably balanced. Pale and Caramel malts give the beer its rich, deep red color and distinctive caramel flavor. The sweetness of the malt is pleasantly balanced by a pronounced hop bitterness and an earthy note from the East Kent Goldings hops. Samuel Adams® Irish Red finishes smooth and leaves you wanting to take another sip."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,51,1
-baron_brewing_company-baron_pilsner,0,0,244368932865,"{""name"":""Baron Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our pilsner is a traditional Northern German Style Pilsner. It has a fantastic malty aroma with a slight spice from the hops. The head is brilliant white and floats on the clean pale lager. The sparkling mouthfeel gives way to a soft malt sweetness that is followed by a long, dry, crisp finish. The balanced clean finish taunts the mouth to take another drink. Lagered for a minimum of 8-12 weeks to ensure smoothness and drinkability.\r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,30,1
-big_buck_brewery_and_steakhouse_2-stout,0,0,244372144128,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery_and_steakhouse_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-brasserie_de_saint_sylvestre-3_monts,0,0,244377780225,"{""name"":""3 Monts"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_saint_sylvestre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-bavaria-club_colombia,0,0,244368932866,"{""name"":""Club Colombia"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":""La mejor cerveza de Colombia.""}",1,30,1
-bootleggers_steakhouse_and_brewery-34th_street_porter,0,0,244372144129,"{""name"":""34th Street Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
-brasserie_des_gants,0,0,244377780226,"{""name"":""Brasserie des Gants"",""city"":""Irchonwelz"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-068-28-79-36"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rue du Castel, 19""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.6204,""lon"":3.7592}}",1,51,1
-bear_republic_brewery-big_bear_black_stout,0,0,244368998400,"{""name"":""Big Bear Black Stout"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Big Bear, as the name implies, is a hefty, black, Russian Imperial-style stout. This bold stout boasts a rich, caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your teeth into. ...Big Bear's bold flavors are produced using a blend of Belgian and English roasted barley and crystal malts. Some unique flavors come forth in the malt character. ...Louisiana sweet molasses and dark brown sugar. This dark brew is well hopped with Chinook and Cascade hops, which are somewhat, masked by the malt. This is a balanced bold brew boasting an A.V.B. of 8.1% that can creep up on you, \""so don't get mauled\"". It has a dry roasted quality that masks its' high alchohol content, so drink responsibly. 2004 California State Fair, Silver Medal Winner; 2002 World Beer Cup, Gold Medal Winner; \r\n2002 Annual Bistro Beer Festival, Hayward, Gold Medal Winner; 2001 North American Brewers' Award, Honorable Mention - og 1.076, ABV 8.1%, IBU 68."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,30,1
-bootleggers_steakhouse_and_brewery,0,0,244372144130,"{""name"":""Bootleggers Steakhouse and Brewery"",""city"":""Bakersfield"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.3733,""lon"":-119.019}}",1,36,1
-brasserie_du_benin-ngoma_awooyo_special,0,0,244377780227,"{""name"":""Ngoma Awooyo Special"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_benin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-berliner_kindl_brauerei_ag,0,0,244368998401,"{""name"":""Berliner Kindl Brauerei AG"",""city"":""Berlin"",""state"":""Berlin"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)30-/-68992-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Werbellinstrasse 50""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.4793,""lon"":13.4293}}",1,30,1
-boston_beer_company-samuel_adams_scotch_ale,0,0,244372144131,"{""name"":""Samuel Adams Scotch Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a brew for adventurous beer drinkers. It is brewed with four malts: two row pale Harrington, Munich malt, chocolate malt, and a rare peat smoked malt commonly used by distillers of Scotch malt whiskey. This unique malt gives Samuel Adams® Scotch Ale its distinct, subtle smoky character and deep amber hue. Samuel Adams® Scotch Ale is brewed using traditional English hops, Goldings and Fuggles. This is a big brew dominated by malt flavors and aromas, rich and full bodied, slightly sweet. Its layered malt complexity lingers to a smooth and silky finish."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,36,1
-brauerei_schwelm-hefe_weizen,0,0,244495941632,"{""name"":""Hefe-Weizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schwelm"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
-21st_amendment_brewery_cafe-amendment_pale_ale,0,0,244375420928,"{""name"":""Amendment Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich golden hue color. Floral hop with sweet malt aroma. Medium mouth feel with malt sweetness, hop quenching flavor and well-balanced bitterness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-bill_s_tavern_brewhouse-thundermuck_stout,0,0,244369063936,"{""name"":""Thundermuck Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bill_s_tavern_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
-boulder_beer_company-gabf_25th_year_beer,0,0,244372209664,"{""name"":""GABF 25th Year Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,36,1
-brewer_s_art-proletary,0,0,244495941633,"{""name"":""Proletary"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewer_s_art"",""updated"":""2010-07-22 20:00:20"",""description"":""Black, smooth and easy to drink, this is a beer for the people!""}",1,51,1
-alesmith_brewing-old_numbskull_2003,0,0,244375420929,"{""name"":""Old Numbskull 2003"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-birrificia_le_baladin-nora,0,0,244369063937,"{""name"":""Nora"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-brasserie_des_cimes-yeti,0,0,244372209665,"{""name"":""Yeti"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_cimes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-brewmasters_restaurant_and_brewery_south,0,0,244495941634,"{""name"":""Brewmasters Restaurant and Brewery South"",""city"":""Kenosha"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.5847,""lon"":-87.8212}}",1,51,1
-amherst_brewing_company-boltwood_bock,0,0,244375420930,"{""name"":""Boltwood Bock"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light in color, full bodied and very malty, this lager has a toasted malt flavor. Brewed in February and usually on tap by May with a keg of the previous year's batch."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
-bj_s_restaurant_and_brewery-p_m_porter,0,0,244369063938,"{""name"":""P.M. Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
-brasserie_du_bocq-triple_moine,0,0,244372275200,"{""name"":""Triple Moine"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bocq"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-brouwerij_abdij_saint_sixtus-trappist_westvleteren_12,0,0,244496007168,"{""name"":""Trappist Westvleteren 12"",""abv"":11.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_saint_sixtus"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian beer has an everlasting tast. It has been choosen as the best beer in the world for several years!"",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,51,1
-anderson_valley_brewing-nitro_stout,0,0,244375420931,"{""name"":""Nitro Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-bj_s_restaurant_and_brewery-piranha_pale_ale,0,0,244369129472,"{""name"":""Piranha Pale Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-brasserie_dupont,0,0,244488732672,"{""name"":""Brasserie Dupont"",""city"":""Tourpes"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-069-67-10-66"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Basse 5""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.5718,""lon"":3.6508}}",1,36,1
-brouwerij_bavik_de_brabandere-petrus_aged_pale,0,0,244496007169,"{""name"":""Petrus Aged Pale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-bell_s_brewery_inc-batch_8000,0,0,244375486464,"{""name"":""Batch 8000"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Batch 8,000 is part of our commemorative series celebrating our progress with special brews. Our 8,000th batch is a special recipe to be brewed only once. It is wheat ale spiced with Coriander, Orange Peel, and Paradise Seed. Best consumed fresh."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,45,1
-boulevard_brewing_company-single_wide_i_p_a,0,0,244369129473,"{""name"":""Single-Wide I.P.A."",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest addition to the Boulevard family of year-around beers, Single-Wide I.P.A. is our take on a style that originated in 18th century Great Britain. This American version -- inspired by our Smokestack Series Double-Wide I.P.A. -- boasts a heady combination of six varieties of hops, some of which were employed for dry-hopping."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
-brasserie_fantme,0,0,244488798208,"{""name"":""Brasserie Fantme"",""city"":""Soy"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)86-47-70-44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Pral 8""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.286,""lon"":5.5127}}",1,36,1
-brouwerij_de_gouden_boom-blanche_de_bruges,0,0,244496007170,"{""name"":""Blanche de Bruges"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_gouden_boom"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-boston_beer_company-samuel_adams_honey_porter,0,0,244375486465,"{""name"":""Samuel Adams Honey Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark, full flavored English porter with Scottish heather honey. Samuel Adams® Honey Porter is a full-flavored, full-bodied English porter with a substantial roasted malt character, offering a smooth, rounded finish. This beer is brewed with traditional English Ale hops and is dry-hopped with East Kent Goldings, known for their spicy aroma and distinctive, earthy flavor. We brew Honey Porter with Scottish heather honey which balances the spiciness of the hops.\r\n\r\nThis brew is the perfect complement to glazed ham, spicy chili, and roasted vegetables like beets and carrots, which bring out the herbal notes found in the hops and the sweetness of the honey. Samuel Adams® Honey Porter also pairs well with rich desserts such as baklava and molasses cookies."",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
-brasserie_de_blaugies-biere_darbyste,0,0,244369129474,"{""name"":""Bière Darbyste"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_blaugies"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,30,1
-brasserie_la_caracole,0,0,244488798209,"{""name"":""Brasserie La Caracole"",""city"":""Falmignoul"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-082-74-40-80"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cte Marie-Thrse 86""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.2024,""lon"":4.8914}}",1,36,1
-brouwerij_nacional_balashi,0,0,244496072704,"{""name"":""Brouwerij Nacional Balashi"",""city"":"""",""state"":"""",""code"":"""",""country"":""Aruba"",""phone"":""297 854805"",""website"":""http://www.balashi.com/balashi/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,51,1
-boulevard_brewing_company-bully_porter,0,0,244375486466,"{""name"":""Bully! Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The intense flavors of dark-roasted malt in Boulevard’s rendition of the classic English porter are perfectly balanced by a generous and complex hop character. Bully! Porter’s robust nature makes it the ideal companion to a variety of foods, from seafood to chocolate."",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
-brasserie_de_brunehaut-brasserie_de_brunehaut_bio_biere_ambree_organic,0,0,244369195008,"{""name"":""Brasserie de Brunehaut Bio Bière Ambrée (Organic)"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber copper color with a beige head.\r\nCaramel malt aromas reminiscent of vanilla, along with toffee, butterscotch and ripe fruits. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\r\nHazy amber to brown coloured beer, with a fluffy off-white head. Nice aroma of spices, yeast and oak. The alcohol subtle. Flavour is moderately spicy and slightly fruity, with balanced hops. \r\nThis beer is certified organic."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,30,1
-brauerei_beck-st_pauli_girl_beer,0,0,244488863744,"{""name"":""St.Pauli Girl Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-brouwerij_sint_jozef,0,0,244496072705,"{""name"":""Brouwerij Sint-Jozef"",""city"":""Opitter"",""state"":""Limburg"",""code"":"""",""country"":""Belgium"",""phone"":""32-089-86-47-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Itterplein 19""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1168,""lon"":5.6464}}",1,51,1
-brasserie_de_tahiti-hinano,0,0,244375552000,"{""name"":""Hinano"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_tahiti"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-brasserie_ellezelloise-la_biere_des_collines_van_de_saisis,0,0,244486373376,"{""name"":""La Bière des Collines van de Saisis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-brauerei_beck,0,0,244488863745,"{""name"":""Brauerei Beck"",""city"":""Bremen"",""state"":""Bremen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)421-/-50940"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Deich 18-19""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":53.0787,""lon"":8.7901}}",1,36,1
-burgerbrau_wolnzach-hell,0,0,244496072706,"{""name"":""Hell"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burgerbrau_wolnzach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-brasserie_pietra,0,0,244492533760,"{""name"":""Brasserie Pietra"",""city"":""Furiani"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-04.95.30.14.70"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Route de la Marana""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.6483,""lon"":9.4529}}",1,45,1
-brasserie_grain_d_orge,0,0,244486504448,"{""name"":""Brasserie Grain D'Orge"",""city"":""Ronchin"",""state"":"""",""code"":"""",""country"":""France"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Once named Brasserie Jeanne D'Arc, this Brewery had changed their name due to change in management."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.6054,""lon"":3.0775}}",1,30,1
-brauerei_gbr_maisel_kg,0,0,244488863746,"{""name"":""Brauerei Gbr. Maisel KG"",""city"":""Bayreuth"",""state"":"""",""code"":""95445"",""country"":""Germany"",""phone"":""+49 (0) 9 21/4 01-0"",""website"":""http://www.maisel.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hindenburgstrasse 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.9477,""lon"":11.5659}}",1,36,1
-cains-fa,0,0,244496138240,"{""name"":""FA"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:15:54"",""description"":""FA is no small beer: despite its deceptively pale golden colour, it boasts a big, smooth flavour and strong punch. Brewed with the finest English malts, and conditioned in cask with dry hops to produce fresh hop aromas and a fuller flavour, delighting the mouth and stimulating the tongue."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,51,1
-brauhaus_johann_albrecht_konstanz-weizen,0,0,244492599296,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,45,1
-breckenridge_brewery-471_extra_esb,0,0,244486504449,"{""name"":""471 Extra ESB"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-breckenridge_bbq_of_omaha-raspberry_porter,0,0,244488863747,"{""name"":""Raspberry Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-chama_river_brewing-rye_on,0,0,244496138241,"{""name"":""Rye On"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chama_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-brausttte_der_steirerbrau_aktiengesellschaft,0,0,244492664832,"{""name"":""Brausttte der Steirerbrau Aktiengesellschaft"",""city"":""Graz"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0316/502-3545"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Reiningshausstrae 1-7""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.0679,""lon"":15.4417}}",1,45,1
-brewery_budweiser_budvar,0,0,244486569984,"{""name"":""Brewery Budweiser Budvar"",""city"":"""",""state"":""Ceske Budejovice"",""code"":"""",""country"":""Czech Republic"",""phone"":"""",""website"":""http://www.budvar.cz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.9739,""lon"":14.475}}",1,30,1
-breckenridge_brewery-autumn_ale,0,0,244488929280,"{""name"":""Autumn Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
-cherryland_brewing,0,0,244496138242,"{""name"":""Cherryland Brewing"",""city"":""Sturgeon Bay"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8342,""lon"":-87.377}}",1,51,1
-brewdog_ltd-paradox_speyside,0,0,244492664833,"{""name"":""Paradox Speyside"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,45,1
-bridgeport_brewing-old_knucklehead_1992,0,0,244486569985,"{""name"":""Old Knucklehead 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-brewery_de_troch-chapeau_exotic_lambic,0,0,244488994816,"{""name"":""Chapeau Exotic Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,36,1
-clipper_city_brewing_co-pale_ale,0,0,244496203776,"{""name"":""Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-brewery_creek_brewing-irish_stout,0,0,244492664834,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Guinness\"" is the prototype of all modern stouts. Many people, however, don't realize that there are different varieties of \""Guinness\"" brewed around the world. \""Draught Guinness* and \""Foreign Extra Stout\"" are the two primary types brewed in Ireland. Foreign Extra is the one I have emulated. It is closer in style to the London Porters of old than to modern stout. Very dark and rich, not as dry as Draught, about 6% abv and around 60 IBUs (that's hop bitterness). I used \""First Gold\"" hops because that's what I could get. Guinness use Nitrogen mixed with carbon dioxide to dispense their stout which adds to the creamy mouth-feel. BTW: The \""Imported\"" Guinness you buy here in the US comes from Canada. It could just as well be brewed in the US but the common wisdom in the brewing world is that Americans prefer \""imported\"" beers and will pay more for them."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-broughton_ales-kinmount_willie_stout,0,0,244486569986,"{""name"":""Kinmount Willie Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
-bridgeport_brewing-blue_heron_pale_ale,0,0,244488994817,"{""name"":""Blue Heron Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-dark_horse_brewing_co-fore_smoked_stout,0,0,244496203777,"{""name"":""Fore Smoked Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with all malted barley and peat malt (smoked malt). This beer is full bodied with chocolate, roasted barley flavors, and a smokey almost BBQ finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
-brewmasters_restaurant_and_brewery_south-cherry_ice,0,0,244492730368,"{""name"":""Cherry Ice"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,45,1
-brouwerij_sterkens,0,0,244486569987,"{""name"":""Brouwerij Sterkens"",""city"":""Hoogstraten-Meer"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-03-317-00-50"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Meerdorp 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4439,""lon"":4.7386}}",1,30,1
-bridgeport_brewing-bottle_conditioned_porter,0,0,244488994818,"{""name"":""Bottle Conditioned Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
-deschutes_brewery-bachelor_esb,0,0,244628062208,"{""name"":""Bachelor ESB"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Standing alone, distant from the Three Sisters mountains nestled to the north, Bachelor Butte was originally called \""Brother Jonathan\"" and then simply \""The Bachelor\"" before becoming widely known today as Mt. Bachelor."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,51,1
-bridgeport_brewing-esb,0,0,244492730369,"{""name"":""ESB"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-browar_okocim-o_k_beer,0,0,244486635520,"{""name"":""O.K. Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_okocim"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-brooklyn_brewery-brooklyn_lager,0,0,244489060352,"{""name"":""Brooklyn Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brooklyn Lager, the Brewery's flagship label, is New York's \""hometown\"" beer, brewed to a pre-Prohibition recipe that dates back to the days when Brooklyn was the brewing capital of the East Coast. Brooklyn Lager has won numerous awards. Wrote Michael Jackson in the Simon & Schuster Pocket Guide to Beer: \""The dry-hopped, fresh, flowery, firm, flavourful, Brooklyn Lager **-*** started well, in 1988, and has gained in character since.\""""}",1,36,1
-desnoes_geddes_ltd-dragon_stout,0,0,244628127744,"{""name"":""Dragon Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""desnoes_geddes_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
-brouwerij_oud_beersel-oude_gueuze_vielle,0,0,244492730370,"{""name"":""Oude Gueuze Vielle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_oud_beersel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,45,1
-bull_bush_pub_brewery-royal_arms_ipa,0,0,244486635521,"{""name"":""Royal Arms IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
-brouwerij_bosteels-triple_karmeliet,0,0,244489060353,"{""name"":""Triple Karmeliet"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bosteels"",""updated"":""2010-07-22 20:00:20"",""description"":""LOOK:\r\nTripel Karmeliet is a very refi ned and complex golden-to-bronze brew with a fantastic creamy head. These characteristics derive not only from the grains used but also from restrained hopping with Styrians and the fruity nature (banana and vanilla) of the house yeast.\r\n\r\nSMELL:\r\nVery refined and complex. Hints of vanilla mixed with citrus aromas.\r\n\r\nTASTE:\r\nTripel Karmeliet has not only the lightness and freshness of wheat, but also the creaminess of oats together with a spicy lemony almost quinine\r\ndryness."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,36,1
-dix_barbecue_brewery-red_truck_ale,0,0,244628127745,"{""name"":""Red Truck Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
-brouwerij_van_den_bossche-kerst_pater_special_christmas_beer,0,0,244492795904,"{""name"":""Kerst Pater Special Christmas Beer"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_den_bossche"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-cains,0,0,244486701056,"{""name"":""Cains"",""city"":""Liverpool"",""state"":""Merseyside"",""code"":""L8 5XJ"",""country"":""United Kingdom"",""phone"":""01517098734"",""website"":""http://www.cains.co.uk/"",""type"":""brewery"",""updated"":""2011-05-17 03:05:10"",""description"":""Cains is a brewery in Liverpool, England, founded in 1858 by Irish immigrant Robert Cain. \n\nCain had begun his brewing career aged 24 when he purchased a pub and brewed his own ales. Within 25 years of founding his brewery, Cain had established over 200 pubs. Robert Cain passed away in 1907 and the brewery still lives on to this day. \n\nOne of the most iconic beer brands in the UK Cain's has gone from strength to strength since being taken over by Indian brothers Sudarghara and Ajmail Dusanj in 2002. Cains now exports it's famous beers worldwide to the USA, Denmark, China, Ireland, India and Australia."",""address"":[""Robert Cain Brewery"",""Stanhope St""]}",1,30,1
-brouwerij_sterkens-bokrijks_kruikenbier,0,0,244489060354,"{""name"":""Bokrijks Kruikenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-dixie_brewing,0,0,244628193280,"{""name"":""Dixie Brewing"",""city"":""New Orleans"",""state"":""Louisiana"",""code"":""70119"",""country"":""United States"",""phone"":""1-504-822-8711"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2401 Tulane Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":29.9606,""lon"":-90.0871}}",1,51,1
-c_b_potts_of_cheyenne-big_horn_fort_collins_stout,0,0,244492795905,"{""name"":""Big Horn Fort Collins Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-caldera_brewing-caldera_ipa,0,0,244486701057,"{""name"":""Caldera IPA"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Available in 12 oz. cans and kegs. An American-style India Pale Ale brewed with plenty of body and an assertive hop profile."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
-brouwerij_the_musketiers-troubadour,0,0,244489125888,"{""name"":""Troubadour"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_the_musketiers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
-dogfish_head_craft_brewery-black_blue,0,0,244628258816,"{""name"":""Black & Blue"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A belgian-style Strong ale fermented with blackberries and blueberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,51,1
-captain_lawrence_brewing_company,0,0,244492795906,"{""name"":""Captain Lawrence Brewing Company"",""city"":""Pleasantville"",""state"":""New York"",""code"":""10570"",""country"":""United States"",""phone"":""914-741-BEER"",""website"":""http://www.captainlawrencebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Captain Lawrence beers are craft brewed in Pleasantville New York. We offer tastings and tours on Fridays from 4pm to 7pm, and Saturdays from 12pm 6pm."",""address"":[""99 Castleton Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.126,""lon"":-73.7896}}",1,45,1
-captain_lawrence_brewing_company-captin_lawrence_liquid_gold,0,0,244486701058,"{""name"":""Captin Lawrence Liquid Gold"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Don't let the golden color fool you - this isn't your father's lite beer!\r\n\r\nBrewed with imported German malts and US-grown hops, this beer is a full-flavored introduction to craft-brewed beer. We add the hops late in the boil, allowing you to enjoy the flavor and aroma of the hops without an aggressive bitterness."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,30,1
-brouwerij_van_steenberge-ertvelds_wit,0,0,244489125889,"{""name"":""Ertvelds Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-egan_brewing-1916_irish_stout,0,0,244628258817,"{""name"":""1916 Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
-carlow_brewing_company-o_hara_s_celtic_stout,0,0,244492861440,"{""name"":""O'Hara's Celtic Stout"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlow_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Unlike the image, does not have the creamy head like many Irish stouts (Beamish, Guinness, Murphys) and as a result lighter on the stomach and nice with a meal. Very distinctive taste which may put off those not accustomed to drinking stouts.I would recommend it for the more adventurous pallette.\r\n\r\nRoast barley comes through in the taste."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-carolina_brewery-lager,0,0,244486766592,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
-butterfield_brewing_1,0,0,244489125890,"{""name"":""Butterfield Brewing #1"",""city"":""Fresno"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.7477,""lon"":-119.772}}",1,36,1
-engel_brauerei_schwbisch_gmnd_lang,0,0,244628258818,"{""name"":""Engel Brauerei Schwbisch Gmnd Lang"",""city"":""Schwbisch Gmnd"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""D-73525 Schwbisch Gmnd""]}",1,51,1
-castle_springs_brewery,0,0,244492861441,"{""name"":""Castle Springs Brewery"",""city"":""Moultonborough"",""state"":""New Hampshire"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.7548,""lon"":-71.3967}}",1,45,1
-coastal_fog_brewing-brandenburg_gate_marzen,0,0,244486766593,"{""name"":""Brandenburg Gate Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coastal_fog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,30,1
-alaskan_brewing-alaskan_barley_wine_ale,0,0,244368277504,"{""name"":""Alaskan Barley Wine Ale"",""abv"":10.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Alaskan Barley Wine is produced in small batches each year. Typically this higher alcohol beverage is brewed in the spring, cellared in the tunnels of the Alaska-Juneau Gold Mine for the summer and retrieved in time for its release at the Great Alaska Beer and Barley Wine Festival in January. The cool tunnels of the mine shaft provide natural refrigeration and a prime environment for the aging process. \r\n\r\nLike a fine wine, Alaskan Barley Wine can be aged for years. The bottling of the 2007 vintage of Alaskan Barley Wine will allow individuals to age it to their liking. “We figured we’d leave it up to individuals as to how long to age their Alaskan Barley Wine,” said Quality Assurance Analyst Ryan Harvey. “Some people like barley wines fresh, and others store it for years.”"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,29,1
-climax_brewing_copmany-climax_ipa,0,0,244489191424,"{""name"":""Climax IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""This American-style, hop-driven beer starts with a citrus flavor, followed by two layers of caramel, and finishes on a hoppy note."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
-flat_earth_brewing_company-angry_planet_pale_ale,0,0,244628324352,"{""name"":""Angry Planet Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_earth_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-cervecera_cuauhtmoc_moctezuma-dos_equis_special_lager,0,0,244492926976,"{""name"":""Dos Equis Special Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-cooperstown_brewing_company-backyard_india_pale_ale,0,0,244486766594,"{""name"":""Backyard India Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Back Yard\"" is a golden India Pale Ale. Historically, ale shipped to India in the 19th Century was brewed to higher gravities so that it could mature during the long sea voyage. English brewers also hopped these ales heavily to protect them from spoiling. The term \""India pale Ale\"" or \""I.P.A.\"" is still used by brewers to denote a super-premium, hoppy pale ale style. Backyard IPA is no exception. English pale barley malt is predominant in this beer with just a small amount of crystal malt. It is well bittered with Cluster and Cascade hops and finished with a mix of local hop and larger amounts of Fuggle hop."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,30,1
-amherst_brewing_company-north_pleasant_pale_ale,0,0,244368343040,"{""name"":""North Pleasant Pale Ale"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light gold in color, slightly malty and hoppy, with a mild flowery hop finish."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
-climax_brewing_copmany-climax_oktoberfest,0,0,244489191425,"{""name"":""Climax Oktoberfest"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Oktoberfest is typically available from August to November and has toasty caramel and malty flavor. It is made from German Noble Hops and massive amounts of Münich Malt, which give it an orange color."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
-flossmoor_station_brewery-kilt_kicker_wee_heavy,0,0,244628324353,"{""name"":""Kilt Kicker Wee Heavy"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,51,1
-cervecera_hondurea-port_royal_export,0,0,244492926977,"{""name"":""Port Royal Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_hondurea"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-coors_brewing_golden_brewery-blue_moon_abbey_ale,0,0,244486766595,"{""name"":""Blue Moon Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-anheuser_busch-michelob_ultra,0,0,244368343041,"{""name"":""Michelob Ultra"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-clipper_city_brewing_co-heavy_seas_prosit_imperial_oktoberfest_lager,0,0,244489191426,"{""name"":""Heavy Seas Prosit! Imperial Oktoberfest Lager"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Malt focused, made with five types of grain including Vienna and Munich malts – plus a secret extra malt that we use only in our Prosit! Consider this bomber to be the burly big brother to our Clipper City MarzHon, a three year in a row winner at the Great American Beer Festival. We’ve balanced the sweetness of the malt with three kinds of hops making this one of the boldest marzen style lagers you’ll ever try.\r\n\r\n5 Kinds of Malt, 3 Kinds of Hops\r\nestimated ABV 9% estimated IBU 25"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
-flying_dog_brewery-old_scratch_lager,0,0,244628324354,"{""name"":""Old Scratch Lager"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This dog enjoys his days in the sun... Old Scratch Amber Lager is a malty, mellow beer that is fermented at medium temperatures to develop both ale and lager characteristics. \""Gold Scratch\"" raises the standard in the amber lager category."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
-cooper_s_cave_ale_company,0,0,244492992512,"{""name"":""Cooper's Cave Ale Company"",""city"":""Glens Falls"",""state"":""New York"",""code"":""12801"",""country"":""United States"",""phone"":""518.792.0007"",""website"":""http://www.cooperscaveale.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Cooper's Cave Ale Company, Ltd. Micro Brewery is the realized goal of three ale lovers, Ed, Pat and Adrian Bethel. A passion for great English style ales led us to commercially produce small quantities on a brewing system which we built. We gladly welcome visitors to our brewery and tasting room, and now we welcome you to learn more about Cooper's Cave Ale Company."",""address"":[""2 Sagamore Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.3177,""lon"":-73.64}}",1,45,1
-coronado_brewing_company-outlet_stout,0,0,244486832128,"{""name"":""Outlet Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Extremely dark in color, with a malty flavor dominated by caramel and chocolate malts and a slight hoppy bitterness. This full-bodied ale has a nice smooth lasting finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
-appalachian_brewing_company-hoppy_trails_india_pale_ale,0,0,244368408576,"{""name"":""Hoppy Trails India Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This IPA is an exciting beer with a floral in aroma and an incredible hop flavor. The maltiness is increased (over a regular pale ale) to help balance the aggressive hop usage. This contributes to the higher alcohol content as well. \r\nWhen India was part of the British Empire, pale ale shipped to the troops would often spoil due to the rough voyage and temperature extremes. The brewers had a theory that if they loaded the beer with extra hops, the hops would preserve the beer. Of course, this added significantly to the beer’s flavor and aroma. When the troops returned to Britain, they had become \""hop-heads\"", appreciating the beauty of the hop \""over-influence\"". Regular pale ale was simply not enough anymore! A new beer style, India Pale Ale, had been created: an aggressively hoppy and now quite happy to be home pale ale."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
-coopers_brewery-coopers_best_extra_stout,0,0,244489256960,"{""name"":""Coopers Best Extra Stout"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Now here's a beer with punch! \r\n\r\nCoopers Best Extra Stout is a beacon for lovers of a hearty brew. With its robust flavour it is everything a stout should be. \r\n\r\nBrewed naturally using a top fermentation method, Coopers Stout's unique rich, dark texture comes from specially roasted black malt. \r\n\r\nCoopers Best Extra Stout contains no additives and no preservatives."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-founders_hill_brewing-founders_light,0,0,244628389888,"{""name"":""Founders Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-coronado_brewing_company-coronado_golden_ale,0,0,244493058048,"{""name"":""Coronado Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This golden colored ale is smooth, light in flavor, crisp and very similar to a European-style pilsner. Our Golden ale is delicately hopped with traditional pilsner style Czech Saaz hops. It is one of our most popular beers and considered our gateway beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,45,1
-crabtree_brewery,0,0,244486832129,"{""name"":""Crabtree Brewery"",""city"":""Greeley"",""state"":""Colorado"",""code"":""80631"",""country"":""United States"",""phone"":""[970] 356-0516"",""website"":""http://www.crabtreebrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Crabtree Brewing Company is dedicated to serving the environment, the community, our customers, and our valued employees. Requiring the best ingredients to support unique premium beers. Keeping a dynamic business mind while remaining modestly profitable. Employing technology, embracing ethics, growing to meet the needs of our customers and employees, and having fun doing what we love�.Making Great Beer."",""address"":[""625 3rd St. #D""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4313,""lon"":-104.688}}",1,30,1
-appalachian_brewing_company-mountain_lager,0,0,244368408577,"{""name"":""Mountain Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Dortmunder-Export style of beer was developed in Westfalen, Germany, and is a classic light lager with great character. This style boasts a light golden blonde color and exhibits a moderate hop palate. The finish of our Mountain Lager is rich yet mellow.\r\nOur brewers have developed this beer as a tribute to the Appalachian Mountains where we live and play."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-coronado_brewing_company-uptown_brown,0,0,244489256961,"{""name"":""Uptown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
-frederick_brewing,0,0,244628389889,"{""name"":""Frederick Brewing"",""city"":""Frederick"",""state"":""Maryland"",""code"":""20176"",""country"":""United States"",""phone"":""1-888-258-7434"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4607 Wedgewood Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3628,""lon"":-77.4265}}",1,51,1
-crane_river_brewpub_and_cafe-homestead_pale_ale,0,0,244493058049,"{""name"":""Homestead Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-dark_horse_brewing_co,0,0,244618821632,"{""name"":""Dark Horse Brewing Co."",""city"":""Marshall"",""state"":""Michigan"",""code"":""49068"",""country"":""United States"",""phone"":""269-781-9940"",""website"":""http://www.darkhorsebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""511 S. Kalamazoo Ave.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.2667,""lon"":-84.9641}}",1,30,1
-barley_brothers_brewery_and_grill-tripppleberry_wheat,0,0,244368408578,"{""name"":""Tripppleberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,29,1
-crane_river_brewpub_and_cafe-good_life_stout,0,0,244489256962,"{""name"":""Good Life Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-full_sail_brewing_1,0,0,244628455424,"{""name"":""Full Sail Brewing #1"",""city"":""Hood River"",""state"":""Oregon"",""code"":""97031"",""country"":""United States"",""phone"":""1-541-386-2281"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""506 Columbia Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7103,""lon"":-121.515}}",1,51,1
-degroen_s_grill,0,0,244625637376,"{""name"":""DeGroen's Grill"",""city"":""Baltimore"",""state"":""Maryland"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.2904,""lon"":-76.6122}}",1,45,1
-de_halve_maan-straffe_hendrik_brugse,0,0,244618887168,"{""name"":""Straffe Hendrik Brugse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-barley_island_brewing-flat_belly_american_wheat,0,0,244368474112,"{""name"":""Flat Belly American Wheat"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-denver_chophouse_and_brewery-lucky_u_denver_special_bitter,0,0,244621705216,"{""name"":""Lucky U Denver Special Bitter"",""abv"":4.46,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-granite_city_food_brewery_saint_cloud-northern_light,0,0,244754808832,"{""name"":""Northern Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-dempsey_s_restaurant_brewery-holiday_wheat_bock,0,0,244625702912,"{""name"":""Holiday Wheat Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
-de_proef_brouwerij-lozen_boer_abt,0,0,244618887169,"{""name"":""Lozen Boer Abt"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-belhaven_brewery-st_andrews_ale,0,0,244368474113,"{""name"":""St. Andrews Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-desnoes_geddes_ltd,0,0,244621770752,"{""name"":""Desnoes & Geddes Ltd"",""city"":""Kingston"",""state"":"""",""code"":"""",""country"":""Jamaica"",""phone"":""1-876-923-9291"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""214 Spanish Town""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":33.9858,""lon"":-96.6515}}",1,36,1
-gray_brewing-honey_ale,0,0,244754874368,"{""name"":""Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-deschutes_brewery-mirror_mirror,0,0,244625702913,"{""name"":""Mirror Mirror"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Reserve Series romance all began with our first release of this limited-edition brew. Mirror Mirror, born of a double batch of Mirror Pond Pale Ale, is an inspired, barrel-aged barley wine layered with intriguing nuances. Explore this latest incarnation and enjoy its delicious complexity in every sip."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,45,1
-delafield_brewhaus-hops_and_glory_american_ale,0,0,244618887170,"{""name"":""Hops and Glory American Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-big_river_brewing-dry_stout,0,0,244368539648,"{""name"":""Dry Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,29,1
-dock_street_beer,0,0,244621770753,"{""name"":""Dock Street Beer"",""city"":""West Philly"",""state"":""Pennsylvania"",""code"":""19143"",""country"":""United States"",""phone"":""(215)-726-2337"",""website"":""http://www.dockstreetbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 S. 50th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9478,""lon"":-75.2229}}",1,36,1
-green_bay_brewing-hinterland_pale_ale,0,0,244754939904,"{""name"":""Hinterland Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-diamond_knot_brewery_alehouse-possession_porter,0,0,244625768448,"{""name"":""Possession Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
-dempsey_s_restaurant_brewery-golden_eagle,0,0,244618952704,"{""name"":""Golden Eagle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-boss_browar_witnica_s_a,0,0,244368539649,"{""name"":""BOSS Browar Witnica S.A."",""city"":""Witnica"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-(95)-751-51-14"",""website"":""http://www.browar-witnica.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ul. Marii Konopnickiej 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.6739,""lon"":14.9004}}",1,29,1
-drake_s_brewing-maibock,0,0,244621836288,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""drake_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,36,1
-greenshields_brewery_and_pub-greenshields_pale_ale,0,0,244755005440,"{""name"":""Greenshields Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-diebels_privatbrauerei-german_premium_dark,0,0,244625768449,"{""name"":""German Premium Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diebels_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
-diamond_knot_brewery_alehouse-golden_ale,0,0,244618952705,"{""name"":""Golden Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-boston_beer_company-samuel_adams_imperial_white,0,0,244368605184,"{""name"":""Samuel Adams Imperial White"",""abv"":10.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams® Imperial White is a new perspective on the classic witbier style. Witbiers are normally light and refreshing with a fruity finish and we wanted to see how these characteristics would stand up when we amped up the recipe. We were totally blown away by the flavors that were created by this beer.\r\n\r\nThis is not just a more intense version of our spring seasonal Samuel Adams® White Ale. Imperial White is a new recipe that stands on it own merits. In fact, it is more of a wine substitute than just another refreshing witbier. This is a beer that should be sipped and savored and you"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,29,1
-egan_brewing-nitro_pale,0,0,244621836289,"{""name"":""Nitro Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
-hacker_pschorr_bru-alt_munich_dark,0,0,244755005441,"{""name"":""Alt Munich Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hacker_pschorr_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-egan_brewing-abbot_pennings_trippel,0,0,244625768450,"{""name"":""Abbot Pennings Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-duck_rabbit_craft_brewery-duck_rabbit_schwarzbier,0,0,244618952706,"{""name"":""Duck-Rabbit Schwarzbier"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,30,1
-brasserie_de_brunehaut-abbaye_de_st_amand,0,0,244368605185,"{""name"":""Abbaye de St Amand"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A unique 7% Belgian blonde ale, flavoured with juniper berries. The beer has bittersweet malt flavours, and a heady perfumed aroma of orange and juniper."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,29,1
-egan_brewing-o_tay_bockwheat,0,0,244621836290,"{""name"":""O-Tay Bockwheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-hausbrauerei_zum_schlssel-altbier,0,0,244755070976,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hausbrauerei_zum_schlssel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,51,1
-f_x_matt_brewing,0,0,244625833984,"{""name"":""F.X. Matt Brewing"",""city"":""Utica"",""state"":""New York"",""code"":""13502"",""country"":""United States"",""phone"":""1-800-690-3181-x222"",""website"":""http://www.saranac.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""811 Edward Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1045,""lon"":-75.2452}}",1,45,1
-egan_brewing,0,0,244619018240,"{""name"":""Egan Brewing"",""city"":""De Pere"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.4489,""lon"":-88.0604}}",1,30,1
-brasserie_de_l_abbaye_val_dieu-winter,0,0,244368605186,"{""name"":""Winter"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-ej_phair_brewing_company_and_alehouse-marzen,0,0,244621836291,"{""name"":""Marzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ej_phair_brewing_company_and_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
-industrias_la_constancia_ilc-suprema,0,0,244755070977,"{""name"":""Suprema"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-firehouse_brewing-smoke_jump_stout,0,0,244625833985,"{""name"":""Smoke Jump Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-el_ahram_company,0,0,244619018241,"{""name"":""el ahram company"",""city"":"""",""state"":"""",""code"":"""",""country"":""Egypt"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,30,1
-brasserie_mcauslan-st_ambroise_pale_ale,0,0,244485914624,"{""name"":""St-Ambroise Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-elk_creek_cafe_and_aleworks-elk_creek_copper_ale,0,0,244621901824,"{""name"":""Elk Creek Copper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""This beautifully colored ale strikes an agreeable balance between malt and hops. Caramel + toffee notes from the use of more highly kilned malts step up to complement this beers assertive hop profile."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
-iron_springs_pub_brewery-fairfax_coffee_porter,0,0,244755070978,"{""name"":""Fairfax Coffee Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-fish_brewing_company_fish_tail_brewpub-mudshark_porter,0,0,244625833986,"{""name"":""Mudshark Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
-emery_pub,0,0,244619018242,"{""name"":""Emery Pub"",""city"":""Emeryville"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.8313,""lon"":-122.285}}",1,30,1
-brasseries_kronenbourg-1664,0,0,244485914625,"{""name"":""1664"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasseries_kronenbourg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-empyrean_brewing_company,0,0,244621901825,"{""name"":""Empyrean Brewing Company"",""city"":""Lincoln"",""state"":""Nebraska"",""code"":""68508"",""country"":""United States"",""phone"":""1-402-434-5959"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""729 Q Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8155,""lon"":-96.7105}}",1,36,1
-island_brewing_company,0,0,244755136512,"{""name"":""Island Brewing Company"",""city"":""Carpinteria"",""state"":""California"",""code"":""93013"",""country"":""United States"",""phone"":""1-805-745-8272"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5049 Sixth Street""]}",1,51,1
-3_fonteinen_brouwerij_ambachtelijke_geuzestekerij,0,0,244380663808,"{""name"":""3 Fonteinen Brouwerij Ambachtelijke Geuzestekerij"",""city"":""Beersel"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-/-306-71-03"",""website"":""http://www.3fonteinen.be/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hoogstraat 2A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7668,""lon"":4.3081}}",1,60,1
-fitger_s_brewhouse_brewery_and_grill-habanero,0,0,244625899520,"{""name"":""Habañero"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-esser_s_cross_plains_brewery-esser_s_best,0,0,244619083776,"{""name"":""Esser's Best"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""esser_s_cross_plains_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""German Style Lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
-bricktown_brewery,0,0,244485914626,"{""name"":""Bricktown Brewery"",""city"":""Dubuque"",""state"":""Iowa"",""code"":""52001"",""country"":""United States"",""phone"":""1-563-582-0608"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""299 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.4965,""lon"":-90.6652}}",1,29,1
-engine_house_9-barleywine,0,0,244621967360,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-jacob_leinenkugel_brewing_company,0,0,244755136513,"{""name"":""Jacob Leinenkugel Brewing Company"",""city"":""Chippewa Falls"",""state"":""Wisconsin"",""code"":""54729"",""country"":""United States"",""phone"":""1-715-723-5557"",""website"":""http://www.leinie.com/welcome.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Jefferson Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9449,""lon"":-91.3968}}",1,51,1
-512_brewing_company-512_alt,0,0,244380663809,"{""name"":""(512) ALT"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""(512) ALT is a German-style amber ale that is fermented cooler than typical ales and cold conditioned like a lager. ALT means “old” in German and refers to a beer style made using ale yeast after many German brewers had switched to newly discovered lager yeast. This ale has a very smooth, yet pronounced, hop bitterness with a malty backbone and a characteristic German yeast character. Made with 98% Organic 2-row and Munch malts and US noble hops."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,60,1
-flatlander_s_restaurant_brewery-prairie_wheat_beer,0,0,244625899521,"{""name"":""Prairie Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-f_x_matt_brewing-pomegranate_wheat,0,0,244619083777,"{""name"":""Pomegranate Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This wholesome combination of unfiltered wheat beer and real pomegranate juice makes a smooth refreshing beer with all the goodness of pomegranate. Look for a light body with a slight tart finish and golden straw color."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,30,1
-brooklyn_brewery-brooklyn_summer_ale,0,0,244485980160,"{""name"":""Brooklyn Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It is light with a bit of a citrus flavor. A pretty standard summer seasonal."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,29,1
-esser_s_cross_plains_brewery-esser_s_cross_plains_special,0,0,244621967361,"{""name"":""Esser's Cross Plains Special"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""esser_s_cross_plains_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,36,1
-john_harvard_s_brewhouse_wilmington,0,0,244755202048,"{""name"":""John Harvard's Brewhouse - Wilmington"",""city"":""Wilmington"",""state"":""Delaware"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7458,""lon"":-75.5467}}",1,51,1
-adnams_co-nut_brown_ale,0,0,244380729344,"{""name"":""Nut Brown Ale"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
-flying_dog_brewery-garde_dog,0,0,244625965056,"{""name"":""Garde Dog"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Proving the French may actually know something we don't... Garde Dog is a traditional French Biere de Garde or \""beer for keeping\"". This classic farmhouse ale was brewed in March for drinking during the spring and summer months. With it's toasted aroma and spicy, malty sweetness Garde Dog will liberate you from the winter doldrum.""}",1,45,1
-f_x_matt_brewing-roggen_bock,0,0,244619083778,"{""name"":""Roggen Bock"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the tradition of great German Bock beers with only German malts and hops, using 20% rye, malt to give it a distinctive spicy, yet smooth character. You'll love the rich flavors and deep red color of this unique German Brew."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,30,1
-broughton_ales-black_douglas,0,0,244486045696,"{""name"":""Black Douglas"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-fauerbach_brewing_company-fauerbach_export,0,0,244622032896,"{""name"":""Fauerbach Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fauerbach_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Actually a Dortmunder/Export style"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-kelmer_s_brewhouse-independence_ale,0,0,244755202049,"{""name"":""Independence Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-anheuser_busch-michelob_hop_hound_amber_wheat,0,0,244380729345,"{""name"":""Michelob Hop Hound Amber Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered American amber wheat ale brewed with a blend of imported and domestic hops for a balanced slightly citrus hop aroma and caramel malty taste."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,60,1
-flying_dog_brewery-woody_creek_white,0,0,244625965057,"{""name"":""Woody Creek White"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our tribute to the town we consider to be \""Gonzo Ground Zero\""... Woody Creek White is a traditional Belgian-style Wit Beer, brewed with unique ingredients like orange peel and coriander, resulting in a refreshing and slightly citrus flavor, perfect for the \""Dog Days of Summer\""."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,45,1
-f_x_matt_brewing-saranac_oatmeal_stout,0,0,244619149312,"{""name"":""Saranac Oatmeal Stout"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Oatmeal Stout is brewed with a delicate balance of the finest grown oats, selected hops, and our traditional ale yeast. Look for a sweet, dark chocolate and roasted taste."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,30,1
-brouwerij_boon-pertotale_faro,0,0,244486045697,"{""name"":""Pertotale Faro"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-faultline_brewing_2-best_bitter,0,0,244622032897,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-klosterbrauerei_weltenburg-winter_traum,0,0,244755202050,"{""name"":""Winter-Traum"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,51,1
-atwater_block_brewing,0,0,244380729346,"{""name"":""Atwater Block Brewing"",""city"":""Detroit"",""state"":""Michigan"",""code"":""48207"",""country"":""United States"",""phone"":""1-313-877-9205"",""website"":""http://www.atwaterbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Atwater Block Brewery, located in Detroit's historic Rivertown district is housed in a 1916 factory warehouse that was founded in March of 1997. Our brewing process however, is over 200 years old. We are able to brew our brands in the true heritage style of German lagers. With our imported Kasper Schultz brew house, only the finest malt and hops from Germany are used to brew our lagers and only the finest American hops for our specialty Ale's. Atwater block beers are distinctly fresh and flavorful, which is why we have a slogan We drink all we can and sell the rest.. Atwater Block Brewery is carrying on the rich history of breweries in Detroit, we are THE brewery of the D."",""address"":[""237 Joseph Campau Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3372,""lon"":-83.0186}}",1,60,1
-fordham_brewing,0,0,244626030592,"{""name"":""Fordham Brewing"",""city"":""Annapolis"",""state"":""Maryland"",""code"":""21401"",""country"":""United States"",""phone"":""1-410-216-9730"",""website"":""http://www.ramsheadtavern.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""95 Cathedral Street, Suite 200""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9773,""lon"":-76.4948}}",1,45,1
-faultline_brewing_1,0,0,244619149313,"{""name"":""Faultline Brewing #1"",""city"":""Sunnyvale"",""state"":""California"",""code"":""94086"",""country"":""United States"",""phone"":""1-408-736-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1235 Oakmead Parkway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.387,""lon"":-121.993}}",1,30,1
-brouwerij_de_dolle_brouwers-oerbier,0,0,244486045698,"{""name"":""Oerbier"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-firehouse_grill_brewery,0,0,244622032898,"{""name"":""Firehouse Grill & Brewery"",""city"":""Sunnyvale"",""state"":""California"",""code"":""94086"",""country"":""United States"",""phone"":""1-408-773-9500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""111 South Murphy Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.3775,""lon"":-122.03}}",1,36,1
-left_hand_brewing_company-widdershins_barleywine,0,0,244755202051,"{""name"":""Widdershins Barleywine"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-bad_frog_brewery_company,0,0,244380729347,"{""name"":""Bad Frog Brewery Company"",""city"":""Rose City"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.4214,""lon"":-84.1167}}",1,60,1
-founders_hill_brewing-blacksmith_stout,0,0,244626030593,"{""name"":""Blacksmith Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-fitger_s_brewhouse_brewery_and_grill-el_nino_ipa,0,0,244619149314,"{""name"":""El Niño IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
-brouwerij_de_dolle_brouwers,0,0,244486045699,"{""name"":""Brouwerij De Dolle Brouwers"",""city"":""Esen"",""state"":""West-Vlaanderen"",""code"":""BE-8160"",""country"":""Belgium"",""phone"":"""",""website"":""http://www.dedollebrouwers.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Roeselarestraat 12b""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.0281,""lon"":2.9038}}",1,29,1
-flying_bison_brewing,0,0,244622098432,"{""name"":""Flying Bison Brewing"",""city"":""Buffalo"",""state"":""New York"",""code"":""14207"",""country"":""United States"",""phone"":""1-716-873-1557"",""website"":""http://www.flyingbisonbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""For more than 800 years, brewing beer has been regulated by laws in Germany. A long tradition that all the German brewers still obey to: In 1165 the first fine for serving bad beer was imposed in Augsburg. From 1487 onwards every brewer in Munich had to confirm on an oath to the ducal Rentmeister of Upper Bavaria, stating that he would not use any ingredients but barley, hops, and water to brew beer. Originally, this oath was valid in Munich only. In 1987 it was renewed by the Munich brewers."",""address"":[""491 Ontario Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.9561,""lon"":-78.8966}}",1,36,1
-lwenbru_munich,0,0,244877557760,"{""name"":""Lwenbru Munich"",""city"":""Toronto"",""state"":""Ontario"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Toronto ON""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.7379,""lon"":-79.5714}}",1,51,1
-barley_creek_brewing-rescue_ipa,0,0,244380729348,"{""name"":""Rescue IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hopped four separate times with pure Centennial hops for one of the hoppiest brews around. With a nice dry finish, Rescue IPA is our Mug Club's favorite."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,60,1
-frontwaters_restaurant_and_brewing,0,0,244626030594,"{""name"":""Frontwaters Restaurant and Brewing"",""city"":""Marblehead"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.5403,""lon"":-82.7355}}",1,45,1
-flensburger_brauerei-flensburger_pilsner,0,0,244619214848,"{""name"":""Flensburger Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flensburger_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,30,1
-brouwerij_st_bernardus-grotten_brown,0,0,244486111232,"{""name"":""Grotten Brown"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest acquisition “Grottenbier” was created by Master Brewer Pierre Celis. It is an aromatic dark beer with 6.5% alcohol content.\r\n\r\nIn the marl pits in Kanne ( Belgium) and Valkenburg (the Netherlands), deep under the ground, you can taste the Grottenbier in a constant temperature of 11° Celsius.\r\n\r\nAs it is the case with Champagne, the bottles are placed in a “pupitre” with results in an additional fermentation. \r\n\r\nThis beer with a high fermentation with a second fermentation in the bottle has been pointed out as one of the best 10 present-day beers by beer guru Michael Jackson."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,29,1
-fratellos_restaurant_and_brewery-fox_tail_amber_ale,0,0,244622098433,"{""name"":""Fox Tail Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
-maclay_and_co-the_only_oat_malt_stout_in_the_world,0,0,244877557761,"{""name"":""The Only Oat Malt Stout In The World"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
-barrel_house_brewing_co-cumberland_pale_ale,0,0,244380794880,"{""name"":""Cumberland Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barrel_house_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Early Cincinnati brewers shipping their beers into Tennessee would generously hop their beer to prevent spoilage during the long arduous trip over the Cumberland Trail. This classic interpretation of the American Pale Ale features a solid foundation of pale malt loaded with fresh Cascade hops. Here’s to getting where you’re going!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-gasthof_brauerei_zum_frohsinn,0,0,244626096128,"{""name"":""Gasthof-Brauerei zum Frohsinn"",""city"":""Arbon"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-71-474-84-84"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Romanshornerstrasse 15""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5171,""lon"":9.43}}",1,45,1
-goose_island_beer_company_clybourn-honest_stout,0,0,244619214849,"{""name"":""Honest Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
-brouwerij_van_hoegaarden,0,0,244486111233,"{""name"":""Brouwerij van Hoegaarden"",""city"":""Hoegaarden"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-016-76-98-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stoopkensstraat 46""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7778,""lon"":4.8877}}",1,29,1
-full_sail_brewing_1-wassail_winter_ale,0,0,244622098434,"{""name"":""Wassail Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,36,1
-mad_anthony_brewing-auburn,0,0,244877623296,"{""name"":""Auburn"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-bavarian_barbarian_brewing_company-headbangerz_brown_ale,0,0,244380794881,"{""name"":""Headbangerz Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Headbangerz Brown Ale is based on an English brown ale style. Its color is a demonic, dark reddish-brown. This beer is subtly sweet and punctuated with roasty, nutty flavors. The hops take a back seat and simply complement the malt character. Headbangerz Brown Ale is perfect for any Autumn outdoor activities or for relaxing on Summer evenings. Headbangerz Brown Ale is named in honor of Barbarian Chief's, Mike Hiller, hardworking former co-workers – heavy metal freaks and masters of metal fabrication."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
-goose_island_beer_company_fulton_street-stockyard_oatmeal_stout,0,0,244626096129,"{""name"":""Stockyard Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,45,1
-goose_island_beer_company_fulton_street-oatmeal_stout,0,0,244619214850,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
-c_b_potts_of_cheyenne-big_horn_light,0,0,244486176768,"{""name"":""Big Horn Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-glacial_lakes_brewing-pale,0,0,244622163968,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glacial_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
-magic_hat-thumbsucker,0,0,244877623297,"{""name"":""Thumbsucker"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Vermont Imperial Stout\r\nPast the dark and into the deep lies this stout and hearty hale ale from a far off forsaken age. Black like shimmering shades of furthest night, this ale will warm your cold limbs and light your mind's fire.\r\n\r\nThumbsucker(tm), big full-bodied, dark beer with a rich, roasted malt flavor and balanced by an assertive hop bitterness, is our salute to the rarest Imperial Stouts of lore."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,51,1
-belfast_bay_brewing_company,0,0,244380794882,"{""name"":""Belfast Bay Brewing Company"",""city"":""Belfast"",""state"":""Maine"",""code"":""4915"",""country"":""United States"",""phone"":""207-338-4216"",""website"":""http://www.belfastbaybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""100 Searsport Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.4295,""lon"":-68.975}}",1,60,1
-great_divide_brewing-samurai,0,0,244752056320,"{""name"":""Samurai"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Looking for something a little different? Brewed with rice and barley malts, Samurai is an easy drinking, unfiltered ale that changes the status quo for unfiltered beers. The addition of rice gives Samurai a slightly fruity, crisp, refreshing and clean taste. This is definitely not your everyday unfiltered beer.""}",1,45,1
-gottberg_brew_pub-heavenly_helles,0,0,244619280384,"{""name"":""Heavenly Helles"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-camerons_brewery_company-long_leg_english_fuggles_hop_ale,0,0,244486176769,"{""name"":""Long Leg English Fuggles Hop Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""camerons_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-golden_pacific_brewing-golden_gate_copper_ale,0,0,244622163969,"{""name"":""Golden Gate Copper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
-main_street_beer_company_1,0,0,244877688832,"{""name"":""Main Street Beer Company #1"",""city"":""Richmond"",""state"":""Virginia"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.543,""lon"":-77.4691}}",1,51,1
-bell_s_brewery_inc-kalamazoo_stout,0,0,244380794883,"{""name"":""Kalamazoo Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A full-bodied stout with plenty of roast flavor. Kalamazoo Stout is available year round, leading our vast portfolio of stouts."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,60,1
-great_divide_brewing-titan_ipa,0,0,244752121856,"{""name"":""Titan IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally India Pale Ales, the hoppiest of all pales, were brewed with more alcohol and large quantities of hops in order to survive the lengthy ocean journey from the U.K. to India. Unlike our brewing forefathers, Great Divide enjoys the modern benefits of refrigeration and we don’t have any plans to ship Titan IPA to India. Instead, we brew Titan IPA for hop disciples – independent beer drinkers seeking out robust, flavorful beers characterized by their abundance of hops flavor, aroma and bitterness. As a big, aggressively hopped India Pale Ale, Titan IPA fills this bill – beginning with piney hop aromas and citrus hop flavors, and finishing with a rich, malty sweetness that is carefully balanced with crisp hop bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
-granite_city_food_brewery_saint_cloud-broad_ax_stout,0,0,244746289152,"{""name"":""Broad Ax Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
-carlsberg_bryggerierne-jacobsen_dark_lager,0,0,244486176770,"{""name"":""Jacobsen Dark Lager"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_bryggerierne"",""updated"":""2010-07-22 20:00:20"",""description"":""Original Dark Lager is brewed according to J.C. Jacobsen's original recipe. The colour is chestnut. It has a Hersbrucker hiop aroma while the floor malted Munich malt adds a caramel character. The carbonisation is gentle and the hop bitterness is soft. Enjoy at 6-8C.""}",1,29,1
-goose_island_beer_company_fulton_street-summertime_kolsch,0,0,244622229504,"{""name"":""Summertime Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-martini_brauerei,0,0,244877688833,"{""name"":""Martini-Brauerei"",""city"":""Kassel"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)561-/-7885-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Klnische Strae 94-104""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.3175,""lon"":9.4793}}",1,51,1
-big_rock_brewery-traditional_ale,0,0,244380794884,"{""name"":""Traditional Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
-green_bay_brewing-hinterland_maple_bock,0,0,244752121857,"{""name"":""Hinterland Maple Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-great_divide_brewing-great_divide_saison,0,0,244746354688,"{""name"":""Great Divide Saison"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our homage to the beers that have quenched the thirst of Belgian farm workers for centuries. Brewed with barley, wheat and rice and fermented at high temperatures with a special blend of four different yeast strains, Saison is fruity and slightly tart, with a dry finish that makes it that rarest of treats–a beer as refreshing as it is complex."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,30,1
-celis_brewery-raspberry,0,0,244486242304,"{""name"":""Raspberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,29,1
-grumpy_troll_restaurant_and_brewery-grumpy_two,0,0,244748517376,"{""name"":""Grumpy Two"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-mckenzie_brew_house-french_country_spring_beer,0,0,244877688834,"{""name"":""French Country Spring Beer"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-big_sky_brewing-scape_goat_pale_ale,0,0,244380794885,"{""name"":""Scape Goat Pale Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scape Goat is our award-winning Pale Ale. It is a very smooth brew, refreshing and well-balanced. Scape Goat took home the Gold Medal from the North American Brewers' Association competitions as the best English-style pale ale brewed west of the Mississippi, but only because it is the best. Scape Goat is brewed with pale, crystal malts, and Kent Goldings and Crystal Hops. Scape Goat is 3.8% alcohol by weight and 4.7% by volume."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-green_bay_brewing-hinterland_pub_draught,0,0,244752187392,"{""name"":""Hinterland Pub Draught"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-green_mill_brewing_saint_paul-kabeelo_lodge_lager,0,0,244746354689,"{""name"":""Kabeelo Lodge Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
-celis_brewery,0,0,244486242305,"{""name"":""Celis Brewery"",""city"":""Austin"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.2672,""lon"":-97.7431}}",1,29,1
-hair_of_the_dog_brewing,0,0,244748517377,"{""name"":""Hair of the Dog Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97202"",""country"":""United States"",""phone"":""1-503-232-6585"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4509 SE 23rd Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4901,""lon"":-122.643}}",1,36,1
-mckenzie_brew_house-unicorn_amber_ale,0,0,244877688835,"{""name"":""Unicorn Amber Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
-bison_brewing,0,0,244380860416,"{""name"":""Bison Brewing"",""city"":""Berkeley"",""state"":""California"",""code"":""94704"",""country"":""United States"",""phone"":""1-510-841-7734"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2598 Telegraph Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.8634,""lon"":-122.259}}",1,60,1
-green_mill_brewing_saint_paul-gunflint_gold_ale,0,0,244752187393,"{""name"":""Gunflint Gold Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-grolsche_bierbrouwerij-grolsch_pilsner_speciale,0,0,244746354690,"{""name"":""Grolsch Pilsner Speciale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""Grolsch Speciale Pilsner is a special version of the Grolsch Premium Pilsner. It has a fruitier taste than the Premium Pilsner."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,30,1
-central_waters_brewing_company,0,0,244486242306,"{""name"":""Central Waters Brewing Company"",""city"":""Amherst"",""state"":""Wisconsin"",""code"":""54406"",""country"":""United States"",""phone"":""1-715-824-2739"",""website"":""http://www.centralwaters.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewing since 1998, Central Waters Brewing Company is built on the solid reputation of producing the finest quality beer in Central Wisconsin: Ouisconsing Red Ale, Happy Heron Pale Ale, Mudpuppy Porter, and many more."",""address"":[""351 Allen Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4419,""lon"":-89.2797}}",1,29,1
-hapa_s_brew_haus_and_restaurant-red_sky_amber_lager,0,0,244748582912,"{""name"":""Red Sky Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-mehana_brewing-beer,0,0,244877754368,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mehana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-21st_amendment_brewery_cafe-potrero_esb,0,0,244380860416,"{""name"":""Potrero ESB"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional English E.S.B. made with English malt and hops. Fruity aroma with an imparted tart flavor brought about by replicating the water profile in England at Burton on Trent."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,61,1
-brasserie_de_vervifontaine,0,0,244380860417,"{""name"":""Brasserie de Vervifontaine"",""city"":""Jalhay-Vervifontaine"",""state"":""Lige"",""code"":"""",""country"":""Belgium"",""phone"":""32-087-64-83-03"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vervierfontaine 100""]}",1,60,1
-heavenly_daze_brewery_and_grill-amber_daze,0,0,244752252928,"{""name"":""Amber Daze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
-heartland_brewery_union_square-farmer_jon_s_oatmeal_stout,0,0,244746420224,"{""name"":""Farmer Jon's Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":""Hearty, creamy oatmeal stout has hints of espresso and an elegant dark chocolate sweetness. Flavor and aroma are characteristic of Espresso and Dark Chocolate. It has a rich, silky, full, and complex body with a long, rich, smooth finish."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,30,1
-cervejaria_de_macau-lager,0,0,244486307840,"{""name"":""Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_de_macau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-harbor_city_brewing-main_street_brown_ale,0,0,244748582913,"{""name"":""Main Street Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harbor_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
-midnight_sun_brewing_co-meltdown_double_ipa,0,0,244877819904,"{""name"":""Meltdown Double IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The days are long but the season is short. So what gives? Sleep! After doing more before midnight than most Outsiders do in a week, Alaskans deserve some down time. And these moments of relaxation demand more than that ordinary, non-distinct lawn mower beer. Celebrate a day well done with a beer done well—a seriously delicious IPA with some scorchin’ hops. \r\n\r\nOur new seasonal double IPA is designed to keep you incredibly hopped up spring through summer."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,51,1
-abbaye_de_maredsous-8,0,0,244380925952,"{""name"":""8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_maredsous"",""updated"":""2010-07-22 20:00:20"",""description"":""Moortgat's Maredsous 8 is a fine strong dubbel that is sweet when young but develops a stout like flavour as it ages."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,61,1
-brauerei_reissdorf,0,0,244499283968,"{""name"":""Brauerei Reissdorf"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2236-/-9655-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Emil-Hoffmann-Strae 4-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8753,""lon"":6.9944}}",1,60,1
-heineken_international-lager_beer,0,0,244752252929,"{""name"":""Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-hoppin_frog_brewery-smashing_berry_dark,0,0,244746420225,"{""name"":""Smashing Berry Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Fresh, natural fruit flavor and a hint of chocolate malt makes this dark beer something really special. The just picked, fresh fruit flavor is very evident in this beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,30,1
-cj_s_brewery_grill,0,0,244486307841,"{""name"":""CJ's Brewery & Grill"",""city"":""La Jolla"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.8575,""lon"":-117.876}}",1,29,1
-hc_berger_brewing-rauchbier,0,0,244748582914,"{""name"":""Rauchbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-midnight_sun_brewing_co-obliteration_vi,0,0,244877819905,"{""name"":""Obliteration VI"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion & purpose, we present this series of experimental hop-driven beers. Using different hop varieties & brewing techniques, we aim to educate the palate & challenge the hophead in you.\r\n\r\nObliteration VI is a Double IPA brewed with Summit, Summit and Summit; 95 IBU’s"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,51,1
-anheuser_busch-bud_light_golden_wheat,0,0,244380991488,"{""name"":""Bud Light Golden Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,61,1
-breckenridge_brewery-avalanche_amber,0,0,244499349504,"{""name"":""Avalanche Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,60,1
-hoffbrau_steaks_brewery_1-buffalo_ale,0,0,244752252930,"{""name"":""Buffalo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-idaho_brewing-dr_hops_pale_ale,0,0,244746485760,"{""name"":""Dr. Hops Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""idaho_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-cricket_hill-colonel_blide_s_cask_ale,0,0,244486373376,"{""name"":""Colonel Blide's Cask Ale"",""abv"":5.5,""ibu"":31.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-12-06 13:08:34"",""description"":""A tasty, moderately hoppy, easy to drink beer with an orange marmalade hue with a frothy, off-white head. An herbal hop aroma with a hint of lemon and pine. This beer is not overly bitter, with orangy citrus and pine hop with slight earthy notes! There is a malty biscuit flavor that balances the hops. Makes me wish I had some Fish & Chips!!"",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,29,1
-hereford_hops_restaurant_and_brewpub_1-lichthaus_lager,0,0,244748648448,"{""name"":""Lichthaus Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-midnight_sun_brewing_co-uranus_100_brettanomyces_golden_ale,0,0,244877819906,"{""name"":""Uranus - 100% Brettanomyces Golden Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Uranus, ruler of the heavens, reigns supreme with beauty and brilliance. Gloriously gold in color, URANUS Golden Ale holds title to our first 100% Brettanomyces fermentation and conditioning. Brewed by mere mortals and blessed by the beer gods, this ale deserves to be worshipped."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,51,1
-back_road_brewery-millennium_lager,0,0,244380991489,"{""name"":""Millennium Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic pilsner."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,61,1
-brewery_corsendonk-monk_pale_ale_agnus_dei,0,0,244499349505,"{""name"":""Monk Pale Ale / Agnus Dei"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-hoppers_seafood_grill-uno_mas,0,0,244752252931,"{""name"":""Uno Mas"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppers_seafood_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-iron_springs_pub_brewery-kent_lake_kolsch,0,0,244746485761,"{""name"":""Kent Lake Kolsch"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-cropton_brewery,0,0,244486373377,"{""name"":""Cropton Brewery"",""city"":""Pickering"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01751)-417330"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cropton""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.2912,""lon"":-0.8406}}",1,29,1
-hirschbru_privatbrauerei_hss,0,0,244748648449,"{""name"":""Hirschbru Privatbrauerei Hss"",""city"":""Sonthofen"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8321-/-6633-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Grntenstrae 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5132,""lon"":10.279}}",1,36,1
-milly_s_tavern,0,0,244877885440,"{""name"":""Milly's Tavern"",""city"":""Manchester"",""state"":""New Hampshire"",""code"":""3102"",""country"":""United States"",""phone"":""1-603-625-4444"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""500 Commercial Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.9945,""lon"":-71.4674}}",1,51,1
-bear_republic_brewery-racer_5_ipa,0,0,244381057024,"{""name"":""Racer 5 IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a hoppy IPA. Did I say hops? Your brewer is a hop head! This is a full bodied beer using American grains. The goal was to create a base for showing off the unique floral qualities of two Pacific Northwest hops, Columbus and Cascade. Columbus is a new hybrid High Alpha Acid hop used mostly for bittering, but used heavily as an aromatic in this strong brew. Cascade is the balance that ties the malt and bittering hops together. It is a true specialty ale and is our brewer's statement on this style."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
-brewery_de_troch-chapeau_peche_lambic,0,0,244499349506,"{""name"":""Chapeau Pêche Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,60,1
-jack_s_brewing,0,0,244752318464,"{""name"":""Jack's Brewing"",""city"":""Fremont"",""state"":""California"",""code"":""94538"",""country"":""United States"",""phone"":""1-510-796-2036"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""39176 Argonaut Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.5441,""lon"":-121.988}}",1,45,1
-james_page_brewing,0,0,244746485762,"{""name"":""James Page Brewing"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55413"",""country"":""United States"",""phone"":""1-612-789-0400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1500 Jackson Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.0039,""lon"":-93.2502}}",1,30,1
-delafield_brewhaus-amber,0,0,244618493952,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
-jack_s_brewing-red_ale,0,0,244748713984,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-mishawaka_brewing-four_horsemen_ale,0,0,244877885441,"{""name"":""Four Horsemen Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
-bent_river_brewing,0,0,244381057025,"{""name"":""Bent River Brewing"",""city"":""Moline"",""state"":""Illinois"",""code"":""61265"",""country"":""United States"",""phone"":""1-309-797-2722"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1413 Fifth Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5059,""lon"":-90.5171}}",1,61,1
-bridgeport_brewing,0,0,244499415040,"{""name"":""BridgePort Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97209"",""country"":""United States"",""phone"":""1-503-241-7179"",""website"":""http://www.bridgeportbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1313 NW Marshall Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5311,""lon"":-122.685}}",1,60,1
-jobber_s_canyon_restaurant_brewery-tip_top_pale_ale,0,0,244752318465,"{""name"":""Tip Top Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jobber_s_canyon_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-karl_strauss_brewery_gardens_sorrento_mesa-endless_summer_gold,0,0,244746551296,"{""name"":""Endless Summer Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-dempsey_s_restaurant_brewery-bad_bear_brown,0,0,244618559488,"{""name"":""Bad Bear Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,29,1
-karl_strauss_brewery_gardens_sorrento_mesa-amber_lager,0,0,244748713985,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-mishawaka_brewing-wall_street_wheat_ale,0,0,244877885442,"{""name"":""Wall Street Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-big_buck_brewery-big_buck_beer,0,0,244381057026,"{""name"":""Big Buck Beer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A standard American-style beer and our flagship brand. A small amount of corn is added to the grist to give the brew a smooth character. Features a rich, golden color and a light malt character balanced with a mild dose of hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
-burton_bridge_brewery-olde_expensive_ale,0,0,244499415041,"{""name"":""Olde Expensive Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,60,1
-joboy_s_brew_pub-manheim_red,0,0,244752318466,"{""name"":""Manheim Red"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer, is amber to red in color with a medium body, slight caramel sweetness, and a balance more towards malt than hops. This beer is a true crowd-pleaser and keeps you coming back for more."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
-kelmer_s_brewhouse-krystal,0,0,244746551297,"{""name"":""Krystal"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
-deschutes_brewery-brocken_top_bock,0,0,244618559489,"{""name"":""Brocken Top Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Broken Top Bock is a malt forward, high gravity lager with a subtle aroma and warming sweetness. Czech Saaz hops balance a diverse malt composition that creates the flavor, color and mouth feel. The lager yeast chosen for this beer plays an important role in the flavor contribution, adding sweet fruit overtones. This bock boasts a clever 7% alcohol by volume so don’t let it “kick” you off of your stool."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,29,1
-keg_microbrewery_restaurant-pale_ale,0,0,244748713986,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
-mission_springs_brewing-oatmeal_stout,0,0,244877950976,"{""name"":""Oatmeal Stout"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
-big_ridge_brewing-17_cream_ale,0,0,244381057027,"{""name"":""#17 Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
-caledonian_brewing-double_dark,0,0,244499415042,"{""name"":""Double Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caledonian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-joshua_huddy_s_brew_pub_and_grill-amber,0,0,244752384000,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joshua_huddy_s_brew_pub_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
-kona_brewing,0,0,244746551298,"{""name"":""Kona Brewing"",""city"":""Kailua-Kona"",""state"":""Hawaii"",""code"":""96740"",""country"":""United States"",""phone"":""1-808-334-1133"",""website"":""http://www.konabrewingco.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""75-5629 Kuakini Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":19.642,""lon"":-155.996}}",1,30,1
-dix_barbecue_brewery-red_truck_lager,0,0,244618625024,"{""name"":""Red Truck Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-king_and_barnes,0,0,244748779520,"{""name"":""King and Barnes"",""city"":""Horsham"",""state"":""West Sussex"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.0638,""lon"":-0.327}}",1,36,1
-nebraska_brewing_company,0,0,244877950977,"{""name"":""Nebraska Brewing Company"",""city"":""Papillion"",""state"":""Nebraska"",""code"":""68046"",""country"":""United States"",""phone"":""1-402-934-7100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7474 Towne Center Parkway #101""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.244,""lon"":-107.879}}",1,51,1
-big_time_brewing-bhagwan_s_best_ipa,0,0,244381122560,"{""name"":""Bhagwan's Best IPA"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Building on a classic English style and adding some uniquely Northwest touches, Bhagwan's Best has developed fiercely loyal following wherever it is served. Bursting with local hop flavor, bitterness, and aroma, it is a particular treat when served dry-hopped and cask-conditioned on Big Time's beer engine. O.G. 16 Plato (1.064), alcohol is approximately 5% by weight."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
-cedar_brewing-pardon_me_porter,0,0,244499480576,"{""name"":""Pardon Me Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,60,1
-la_jolla_brew_house-stout,0,0,244752384001,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-kulmbacher_brauerei_ag-eisbock,0,0,244746616832,"{""name"":""Eisbock"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,30,1
-dixon_s_downtown_grill-angel_amber,0,0,244618625025,"{""name"":""Angel Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
-knig_ludwig_schlobrauerei_kaltenberg-konig_ludwig_weissbier_hell,0,0,244748779521,"{""name"":""König Ludwig Weissbier Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_ludwig_schlobrauerei_kaltenberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,36,1
-north_coast_brewing_company-old_rasputin_russian_imperial_stout,0,0,244877950978,"{""name"":""Old Rasputin Russian Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Produced in the tradition of 18th Century English brewers who supplied the court of Russia's Catherine the Great, Old Rasputin seems to develop a cult following wherever it goes. It's a rich, intense brew with big complex flavors and a warming finish."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,51,1
-blue_point_brewing-oatmeal_stout,0,0,244381122561,"{""name"":""Oatmeal Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,61,1
-celis_brewery-white,0,0,244499546112,"{""name"":""White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-labatt_ontario_breweries,0,0,244752384002,"{""name"":""Labatt Ontario Breweries"",""city"":""London"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-663-5050"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""150 Simcoe Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.9778,""lon"":-81.2467}}",1,45,1
-lake_placid_pub_brewery-lake_placid_frostbite_ale,0,0,244746616833,"{""name"":""Lake Placid Frostbite Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_placid_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
-dragonmead_microbrewery-erik_the_red,0,0,244618690560,"{""name"":""Erik the Red"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An Irish style red (amber) beer. Light in finish but bold in taste. Melanoidin malt is added for the red color and the spicy finish comes through from the Chinook hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
-kostritzer_schwarzbierbrauerei-schwarzbier,0,0,244748779522,"{""name"":""Schwarzbier"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kostritzer_schwarzbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,36,1
-oconomowoc_brewing-alt,0,0,244878016512,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oconomowoc_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,51,1
-blue_point_brewing-oktoberfest,0,0,244381122562,"{""name"":""Oktoberfest"",""abv"":5.01,""ibu"":28.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-12-20 15:35:15"",""description"":""Blue Point Octoberfest is another palate-pleasing seasonal brew. Originally brewed in 1810 to celebrate the betrothal of the Crown Prince of Bavaria, Blue Point continues the celebration by traditionally brewing this special malty amber lager every October. Octoberfest lager is stored cold for 2 months to ensure its distinct smooth flavor. Tap a pint and celebrate the season!"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
-cervejaria_sudbrack-eisenbahn_weizenbock,0,0,244499546113,"{""name"":""Eisenbahn Weizenbock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,60,1
-lakefront_brewery-pumpkin_lager,0,0,244752449536,"{""name"":""Pumpkin Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-lakefront_brewery-klisch,0,0,244746682368,"{""name"":""Klisch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-elliott_bay_brewery_and_pub,0,0,244618690561,"{""name"":""Elliott Bay Brewery and Pub"",""city"":""Seattle"",""state"":""Washington"",""code"":""98116"",""country"":""United States"",""phone"":""1-206-932-8695"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4720 California Avenue SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5604,""lon"":-122.387}}",1,29,1
-kulmbacher_brauerei_ag-monchshof_premium_schwarzbier,0,0,244748845056,"{""name"":""Mönchshof Premium Schwarzbier"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""Schwarzbier means \""black beer\"" in German. It is a medium-bodied, malt-accented dark brew, very opaque and deep-sepia in color, with a chewy texture and a firm, creamy, long-lasting head. In spite of its dark color, it comes across as a soft and elegant brew that is rich, mild, and surprisingly balanced. It never tastes harsh, toasty or acrid. The beer is often referred to as a Schwarzpils, a \""black Pils,\"" but, unlike a blond Pils, which can be assertively bitter, the hop bitterness in Schwarzbier is always gentle and subdued.\r\n\r\nIn a glass, Schwarzbier looks much like a British dark ale, but looks can be deceiving. Schwarzbier, unlike a British ale, has a clean lager taste that leaves next to no perception of fruitiness on the palate. Instead, Schwarzbier produces very mild, almost bittersweet, notes of chocolate, coffee, and vanilla. Like most traditional German lagers, Schwarzbier has a malty middle, but the sweetness is never cloying or overpowering. The beer is moderately to well attenuated and the finish tends to be dry. Its alcohol level by volume is in the range of 4.5 to 5%, rarely higher. To accentuate the Schwarzbier's dark elegance and appealing head, always serve it in a tall, fluted or tulip-shaped glass."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,36,1
-otto_s_pub_and_brewery-apricot_wheat,0,0,244878016513,"{""name"":""Apricot Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A light American wheat ale with the delicate aroma and flavor of apricot. ABV 4.7%"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,51,1
-bluegrass_brewing_company_inc,0,0,244381122563,"{""name"":""Bluegrass Brewing Company, Inc."",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40207"",""country"":""United States"",""phone"":""502-899-7070"",""website"":""http://www.bbcbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The original Bluegrass Brewing Company opened in 1993 at this location, 3929 Shelbyville Road, near Westport Rd., & Chenoweth, & Breckenridge Lanes. It is the city's oldest remaining brewpub and was the first to make a significant mark on the national brewpub and microbrewery scene. Louisville's best beer is made at this location, and large glass windows in the back dining room allow you to witness the brewing operation. The headbrewer is Jerry Gnagy, assisted by Sam Cruz and Cody Mingus."",""address"":[""3929 Shelbyville Rd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.253,""lon"":-85.654}}",1,61,1
-cheshire_cat_brewery-fat_cat,0,0,244499611648,"{""name"":""Fat Cat"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-lammin_sahti_oy,0,0,244752449537,"{""name"":""Lammin Sahti Oy"",""city"":""Lammi"",""state"":"""",""code"":""0"",""country"":""Finland"",""phone"":""358-3-633-5444"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Liesontie 554""]}",1,45,1
-mcmenamins_mill_creek-nebraska_bitter,0,0,244869431296,"{""name"":""Nebraska Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-etna_brewing-export,0,0,244618690562,"{""name"":""Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""etna_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-liberty_steakhouse_and_brewery-rocket_s_red_ale,0,0,244748845057,"{""name"":""Rocket's Red Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A blend of Pacific Northwest hops and three different caramel malts combine to give this beer its unique character."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
-otto_s_pub_and_brewery-otto_s_weizenbock,0,0,244878016514,"{""name"":""Otto's Weizenbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong dark German style wheat bock. This wheat beer is estery like the hefeweizen, but bigger with more of everything."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,51,1
-boston_beer_company-samuel_adams_cream_stout,0,0,244381122564,"{""name"":""Samuel Adams Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Cappucino of beers. Roasty, smooth and sweet.\r\nSamuel Adams® Cream Stout is a true cream stout, balancing body and sweetness with the natural spiciness of grain and hand selected English hops. Our Brewers use generous portions of roasted chocolate and caramel malts as well as unroasted barley to impart a fullness of body, a roasty malt character and rich, creamy head. Its dark mahogany color make it almost as easy on the eyes as it is on the palate."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
-coopers_brewery-coopers_sparkling_ale,0,0,244499611649,"{""name"":""Coopers Sparkling Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The ale by which all others should be measured. With its famous cloudy sediment and its distinctive balance of malt, hops and fruity characters, the old 'Red Label' is a tasty slice of Coopers history. \r\n\r\nLittle has changed since Thomas Cooper produced his first batch of Coopers Sparkling Ale in 1862. It's still brewed naturally using the century old top fermentation method and it still tastes great! \r\n\r\nSparkling Ale contains no additives or preservatives."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,60,1
-latrobe_brewing,0,0,244752449538,"{""name"":""Latrobe Brewing"",""city"":""Latrobe"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.3212,""lon"":-79.3795}}",1,45,1
-michigan_brewing-big_mac,0,0,244869496832,"{""name"":""Big Mac"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Made popular in the 19th century in Dortmunder, Germany, these pale golden lagers exhibit a classic clean character with notes of biscuity malts. Bitterness is akin to a German Pilsner with an aromatic aroma. Mouthfeel is firm and even, with an overall dry tone."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
-fish_brewing_company_fish_tail_brewpub-blonde_ale,0,0,244618690563,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-live_oak_brewing,0,0,244871331840,"{""name"":""Live Oak Brewing"",""city"":""Austin"",""state"":""Texas"",""code"":""78702"",""country"":""United States"",""phone"":""1-512-385-2299"",""website"":""http://www.liveoakbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Live Oak Brewing Company is truly a home-grown Austin enterprise. Two of Austin's own homebrews, Chip McElroy and Brian Peters, literally hand-built the brewery and were the two main brewers, keg washers, delivery persons, and proselytizers. Live Oak has grown since then, but we are still just as passionate about providing delicious old-world style beers that are rarely commercially available. Our special beers are brewed in limited quantities in a small east Austin brewery and are available in fine pubs and restaurants in Austin, Dallas, Houston, Alpine, Marathon, San Marcos and San Antonio."",""address"":[""3301-B East Fifth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2541,""lon"":-97.7055}}",1,36,1
-paulaner-hefeweizen,0,0,245001814016,"{""name"":""Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""Paulaner Hefe-Weißbier is the best-selling beer by the Paulaner Brewery. Specially produced top-fermented yeast is what gives it its unmistakeable character: sparkling light, fruity, and just a tiny bit bitter. Because it is not filtered during the brewing process, it retains its originality and the many vitamins, minerals and trace elements.\r\n\r\nHefe Weissbier Naturtrüb:\r\n12.5% original wort; 5.5% alcohol; 44 kcal/100 ml"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
-brasserie_mcauslan-st_ambroise_oatmeal_stout,0,0,244499742720,"{""name"":""St-Ambroise Oatmeal Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,61,1
-cooperstown_brewing_company-old_slugger_pale_ale,0,0,244499611650,"{""name"":""Old Slugger Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Old Slugger\"" is a hearty Pale Ale, copper in color, crisp malty fullness on the front of the palate and lingering hop bitterness on the back with a dry finish. It is brewed with four barley malts, including two-row English pale and crystal malts, balanced with Mt. Hood, Cascade and Fuggle hops, and fermented in open vessels by Ringwood Yeast, a true top-fermenting ale yeast. \""Old Slugger\"" is the flagship beer of the Cooperstown Brewing Company and was first brewed in July 1995 and bottled in November 1995."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-le_cheval_blanc,0,0,244752449539,"{""name"":""Le Cheval Blanc"",""city"":""Montreal"",""state"":""Quebec"",""code"":""0"",""country"":""Canada"",""phone"":""1-514-522-0211"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""809 Rue Ontario Est""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.5181,""lon"":-73.5642}}",1,45,1
-midnight_sun_brewing_co-envy,0,0,244869562368,"{""name"":""Envy"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""ENVY Imperial Pilsner obsessively desires to be better than the world’s most common lager. Envy vies for attention with its beautifully bright, golden color and tightly-formed crown. Intense yet true pilsner malt provides the perfect base for profuse citrus, floral and spicy hop flavor. Envy achieves distinction, making other beers turn green.""}",1,30,1
-goose_island_beer_company_clybourn-strong_brown_ale,0,0,244618756096,"{""name"":""Strong Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,29,1
-lost_coast_brewery-hefeweizen,0,0,244871331841,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-privatbrauerei_bolten-alt,0,0,245001879552,"{""name"":""Alt"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_bolten"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,51,1
-brennerei_distillerie_radermacher-rader_ambree,0,0,244499808256,"{""name"":""Rader Ambrée"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brennerei_distillerie_radermacher"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-corner_pub,0,0,244499611651,"{""name"":""Corner Pub"",""city"":""Reedsburg"",""state"":""Wisconsin"",""code"":""53959"",""country"":""United States"",""phone"":""1-608-524-8989"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""100 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.5323,""lon"":-90.0099}}",1,60,1
-lion_nathan_australia_hunter_street,0,0,244875001856,"{""name"":""Lion Nathan Australia Hunter Street"",""city"":""Sydney"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":""61-(02)-9320-2200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Level 15, 20 Hunter Street""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-33.8687,""lon"":151.217}}",1,45,1
-minocqua_brewing_company-rye_porter,0,0,244869562369,"{""name"":""Rye Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark, full bodied ale has a hint of rye accompanied by chocolate malt. The perfect brew for relaxed sipping!"",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
-gordon_biersch_brewing-golden_export,0,0,244618756097,"{""name"":""Golden Export"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-main_street_alehouse-eager_beaver_ipa,0,0,244871397376,"{""name"":""Eager Beaver IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
-privatbrauerei_erdinger_weissbru-weissbier_pikantus,0,0,245001879553,"{""name"":""Weißbier Pikantus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,51,1
-broughton_ales-border_gold_oranic_ale,0,0,244499808257,"{""name"":""Border Gold Oranic Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""According to legend, gold panned from the crystal clear Border streams of the Yarrow valley, nearby the site of the Broughton Ales brewery, was used to make the third wedding ring of Mary Queen of Scots.\r\n \r\nThis golden coloured ale is brewed with a skilful blend of organically grown hops and malt, and pure Scottish water to the exacting standards required by Soil Association Certification Ltd. of the United Kingdom.\r\n\r\nThe end result is a light golden coloured, clean tasting beer with an excellent hop aroma and aftertaste.\r\n\r\nAt 6.0% ABV a premium ale for those who know and care about what they eat and drink.\r\n\r\nBorder Gold has won several awards, the most recent being a bronze medal in the International Brewing Awards in Munich 2005."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,61,1
-crooked_river_brewing,0,0,244499677184,"{""name"":""Crooked River Brewing"",""city"":""Cleveland"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,60,1
-long_trail_brewing_co,0,0,244875067392,"{""name"":""Long Trail Brewing Co"",""city"":""Bridgewater Corners"",""state"":""Vermont"",""code"":""5035"",""country"":""United States"",""phone"":""802) 672-5011"",""website"":""http://www.longtrail.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Long Trail Brewery is a microbrewery located in Bridgewater, Vermont, USA. It was opened in May of 1989 by Andy Pherson, who now serves both as the company's president and brewmaster. The company's first brewery was located in the basement of the Bridgewater Woolen Mill in Vermont's Green Mountains, but by 1995 the company had become popular enough that it was able to relocate to a state-of-the-art brewery and visitor center (featuring an open-air deck overlooking the Ottaquechee River) in Bridgewater Corners, VT."",""address"":[""Route 4 & 100A""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.5882,""lon"":-72.6563}}",1,45,1
-montana_brewing-harvest_ale,0,0,244869627904,"{""name"":""Harvest Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-gottberg_brew_pub-bugeater_brown_ale,0,0,244618821632,"{""name"":""Bugeater Brown Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,29,1
-michigan_brewing-celis_pale_bock,0,0,244871397377,"{""name"":""Celis Pale Bock"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian, lightly spiced pale ale. This caramel colored, light-bodied brew has a mild caramel flavor, a hint of orange peel and coriander and slight hop bitterness."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,36,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-dpa,0,0,245001945088,"{""name"":""DPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-3_fonteinen_brouwerij_ambachtelijke_geuzestekerij-drie_fonteinen_kriek,0,0,244381188096,"{""name"":""Drie Fonteinen Kriek"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""3_fonteinen_brouwerij_ambachtelijke_geuzestekerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,62,1
-brouwerij_liefmans-goudenband_1999,0,0,244499808258,"{""name"":""Goudenband 1999"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-crooked_waters_brewing,0,0,244499677185,"{""name"":""Crooked Waters Brewing"",""city"":""Peoria"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.6936,""lon"":-89.589}}",1,60,1
-lowenbrau_brauerei-dunkel,0,0,244875132928,"{""name"":""Dunkel"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-nordsj_grdsbryggeri-ostgota_blabars,0,0,244869627905,"{""name"":""Östgöta Blåbärs"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nordsj_grdsbryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-great_dane_pub_and_brewing_1-old_scratch_barleywine_2000,0,0,244745961472,"{""name"":""Old Scratch Barleywine 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-mickey_finn_s_brewery-wee_heavy,0,0,244871462912,"{""name"":""Wee Heavy"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,36,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-summer_brau,0,0,245001945089,"{""name"":""Summer Brau"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-abita_brewing_company-strawberry,0,0,244381188097,"{""name"":""Strawberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:55:43"",""description"":""Strawberry Harvest Lager is a wheat beer made with real Louisiana strawberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,62,1
-bulmer_cider-strongbow_cider,0,0,244499873792,"{""name"":""Strongbow Cider"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bulmer_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""Strongbow is a brand of cider manufactured in England by Bulmers. It is the UK's most popular cider[citation needed], accounting for more than half of the draught cider sold in British pubs. Strongbow is also unique in that it is produced with a Royal Warrant."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
-daleside_brewery,0,0,244499742720,"{""name"":""Daleside Brewery"",""city"":""Harrogate"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01423)-880022"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Camwal Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":53.9999,""lon"":-1.501}}",1,60,1
-mad_anthony_brewing-harry_baals_stout,0,0,244875198464,"{""name"":""Harry Baals Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-oggi_s_pizza_and_brewing_vista-torrey_pines_ipa,0,0,244869627906,"{""name"":""Torrey Pines IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
-great_divide_brewing-bee_sting_honey_ale,0,0,244746027008,"{""name"":""Bee Sting Honey Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
-mill_steakhouse-5280_roadhouse_ghost_town_brown,0,0,244871462913,"{""name"":""5280 Roadhouse Ghost Town Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mill_steakhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
-pyramid_alehouse_brewery_and_restaurant_berkeley,0,0,245001945090,"{""name"":""Pyramid Alehouse, Brewery and Restaurant - Berkeley"",""city"":""Berkeley"",""state"":""California"",""code"":""94710"",""country"":""United States"",""phone"":""1-510-528-9880"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""901 Gilman Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5917,""lon"":-122.335}}",1,51,1
-alltech_s_lexington_brewing_company-limestone_crisp_hoppy_pale_ale_discontinued,0,0,244381188098,"{""name"":""Limestone Crisp-Hoppy Pale Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-cains-2008_culture_beer,0,0,244499873793,"{""name"":""2008 Culture Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:27:08"",""description"":""A full, clean and refreshing pale coloured bitter with an abundance of citrus hop character created by the blend of dry and late hopping techniques.\n\nIt also has subtle hints of malt and fruit on aroma and palate which gives the beer a well rounded balance."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,61,1
-de_dochter_van_de_korenaar,0,0,244631928832,"{""name"":""de dochter van de korenaar"",""city"":""baarle-hertog"",""state"":"""",""code"":""2387"",""country"":""Belgium"",""phone"":""0032 14699800"",""website"":""http://www.dedochtervandekorenaar.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""pastoor de katerstraat 24""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4421,""lon"":4.9232}}",1,60,1
-mad_river_brewing-double_india_pale_ale,0,0,244875198465,"{""name"":""Double India Pale Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-old_hat_brewery-alt,0,0,244869627907,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,30,1
-great_lakes_brewing-edmund_fitzgerald_porter,0,0,244746027009,"{""name"":""Edmund Fitzgerald Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,29,1
-minhas_craft_brewery-berghoff_original_lager_beer,0,0,244871462914,"{""name"":""Berghoff Original Lager Beer"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-ramapo_valley_brewery-demon_fuel,0,0,245002010624,"{""name"":""Demon Fuel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-amherst_brewing_company,0,0,244381253632,"{""name"":""Amherst Brewing Company"",""city"":""Amherst"",""state"":""Massachusetts"",""code"":""1002"",""country"":""United States"",""phone"":""413-253-4400"",""website"":""http://www.amherstbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Amherst Brewing Company is a full-service brewpub located in downtown Amherst, Massachusetts. Our 10-Barrel brewery is visible from the bar and produces some of the finest ales and lagers for serving in our 150-seat restaurant and 100-seat lounge and game room. Brewery tours can be made by appointment. Our giant, brass-top bar seats over 30 people and is fully stocked, including Single Malt Scotches and Small Batch Bourbons. An additional 40 seats are available on our seasonal patio; the best place in town to relax and enjoy an ABC draft or specialty brew while watching passersby. --From Amherst Website"",""address"":[""24 North Pleasant Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.3763,""lon"":-72.5199}}",1,62,1
-cj_s_brewery_grill-mocha_joe,0,0,244499939328,"{""name"":""Mocha Joe"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cj_s_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-devil_mountain_brewing-black_honey_ale,0,0,244631994368,"{""name"":""Black Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""devil_mountain_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
-mambo_beer-beer,0,0,244875198466,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mambo_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-oyster_bar_bistro_and_brewery-lighthouse_ale,0,0,244869693440,"{""name"":""Lighthouse Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-great_waters_brewing_company,0,0,244746092544,"{""name"":""Great Waters Brewing Company"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55102"",""country"":""United States"",""phone"":""1-651-224-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""426 St.Peter Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9467,""lon"":-93.097}}",1,29,1
-moon_river_brewing_company-dixie_crystal,0,0,244871528448,"{""name"":""Dixie Crystal"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Belgian Trippel tradition calls for a moderately heavy grist of golden pilsner malt and \""Candy\"" sugar that sends the yeast into overdrive. We used local Dixie Crystal."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,36,1
-restaurant_isarbru-stationsweizen,0,0,245002010625,"{""name"":""Stationsweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""restaurant_isarbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
-anheuser_busch-bud_light,0,0,244381253633,"{""name"":""Bud Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced nationally in 1982, Bud Light is brewed using a blend of domestic and imported hops as well as a combination of barley malts and rice. It contains more malt and hops by ratio of ingredients than Budweiser, which gives the brew a distinctively clean and crisp taste."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,62,1
-cooper_s_cave_ale_company-radeau_red_ale,0,0,244500004864,"{""name"":""Radeau Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Cooper's Cave Ale Company's flagship ale is an Irish Red Ale. Three English Malts and one Belgian Munich Malt make up the grain bill. It is a full bodied Red Ale packed with flavor, blended with American Nugget hops for bitterness and East Kent Golding for flavor and aroma. This ale has turned the heads of many \""dyed in the wool\"" American lager drinkers."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
-dixon_s_downtown_grill-wazee_wheat,0,0,244632059904,"{""name"":""Wazee Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
-manayunk_brewery_and_restaurant-slam_dunkel,0,0,244875264000,"{""name"":""Slam Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-pike_pub_and_brewery-weisse,0,0,244992770048,"{""name"":""Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
-harpoon_brewery_boston-harpoon_leviathan,0,0,244746092545,"{""name"":""Harpoon Leviathan"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Harpoon Leviathan Imperial IPA will challenge your senses and your palate. As the vibrant aroma rushes out of your glass you will notice the blend of piney and tropical fruit notes. At first sip, this big beer starts with apowerful hop bitterness up front and an aggressive hop flavor and character throughout. \r\n\r\nLeviathan Imperial IPA is brewed with tons of pale malt and just enough caramel malt to provide a sweet malt body to balance the hop intensity. We used copious amounts of a variety of hops including Chinook, Centennial, Simcoe, and Amarillo at various points during the boil to create a complex hop flavor and clean lingering bitter finish. We then fermented the beer with Harpoon’s own versatile proprietary yeast. Finally, we dry hopped at a rate of over 1 lb a barrel to produce this beer’s massive aroma."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,29,1
-nicolet_brewing-oktoberfest,0,0,244871528449,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
-rogue_ales-morimoto_black_obi_soba_ale,0,0,245002010626,"{""name"":""Morimoto Black Obi Soba Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The Morimoto Black Obi Soba Ale is part of the Rogue Ales Signature Series with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \r\n\r\nBlack Obi Soba Ale is dedicated to Phred Kaufmann, Rogues Distributor in Japan for the past decade--an International Rogue who runs Beer Inn Mugishutei in Sapporo (http://www.ezo-beer.com/index-e.html). Black Obi Soba is brewed with roasted buckwheat and malts (2-row pale, Munich, C-15, c-60 and Weyermann - note, this beer contains Gluten) providing a rich nut-laced flavor, while the 3 hop varieties (Horizon. Sterling and Cascade) blend to provide a refreshing zest. Morimoto Black Obi Soba Ale is packaged in a 22oz screened bottle and is available in select markets.\r\nTo learn more about the Chef, visit Morimotos web page."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,51,1
-anheuser_busch-jack_s_pumpkin_spice_ale,0,0,244381253634,"{""name"":""Jack's Pumpkin Spice Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Our fall seasonal is a subtle, well-balanced ale, copper in color, offering rich, full flavors and aromas of pumpkin and spices."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,62,1
-coronado_brewing_company-mermaids_red_ale,0,0,244500004865,"{""name"":""Mermaids Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A well balanced, medium-to full bodied beer, red in color and very flavorful. The red color and slight caramel-roasted flavor comes from generous amounts of caramel malts and a touch of chocolate malts. Well hopped to balance the malty sweetness, and dry-hopped with cascade for a full hop flavor and aroma."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,61,1
-dogfish_head_craft_brewery-chateau_jiahu,0,0,244632059905,"{""name"":""Chateau Jiahu"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""9000 year old Chateau Jiahu stands apart as the most ancient, chemically-attested alcoholic beverage in the world. Its recreation is based on painstaking excavation by Chinese archaeologists of Jiahuin the Yellow River basin, state-of-the-art microanalysis of pottery residues by American laboratories, and the inspired \""Neolithic\"" brewing of Dogfish Head Craft Brewery. Chateau Jiahu, then as now, opens a window into the world of our ancestors."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,60,1
-margaritaville_brewing_company-lone_palm_ale,0,0,244875264001,"{""name"":""Lone Palm Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""margaritaville_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
-pyramid_ales_brewery-pyramid_hefe_weizen,0,0,244992835584,"{""name"":""Pyramid Hefe Weizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Pyramid Hefe Weizen is left unfiltered for extra flavor and aroma. \r\n\r\nHandcrafted with 60% malted wheat (10% more than Bavarian tradition calls for), our award-winning Hefe Weizen is unsurpassed in quality and exceptionally smooth and refreshing for the whole beer experience."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,30,1
-harvey_son_lewes-elizabethan_ale,0,0,244746092546,"{""name"":""Elizabethan Ale"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-nodding_head_brewpub,0,0,244871528450,"{""name"":""Nodding Head Brewpub"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19102"",""country"":""United States"",""phone"":""1-215-569-9525"",""website"":""http://www.noddinghead.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1516 Sansom Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9502,""lon"":-75.1666}}",1,36,1
-ruppaner_brauerei,0,0,245002076160,"{""name"":""Ruppaner-Brauerei"",""city"":""Konstanz"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7531-/-9373-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hoheneggstrae 41-51""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6855,""lon"":9.208}}",1,51,1
-appleton_brewing,0,0,244381253635,"{""name"":""Appleton Brewing"",""city"":""Appleton"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.2619,""lon"":-88.4154}}",1,62,1
-crane_river_brewpub_and_cafe-zoo_brew_25,0,0,244500004866,"{""name"":""Zoo Brew 25"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
-dogfish_head_craft_brewery-fort,0,0,244632059906,"{""name"":""Fort"",""abv"":18.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong ale brewed with a ridiculous amount of pureed raspberries (over a ton of em!)."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,60,1
-marin_brewing-hefe_weiss,0,0,244875329536,"{""name"":""Hefe Weiss"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-red_oak_brewery,0,0,244992901120,"{""name"":""Red Oak Brewery"",""city"":""Whitsett"",""state"":""North Carolina"",""code"":""27377"",""country"":""United States"",""phone"":""1-888-Red-Oaks"",""website"":""http://www.redoakbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Oak Brew Pub was opened in February of 1991. In addition to brewing according to the Law of Purity, we decided not to filter or pasteurize our Bavarian Lagers to ensure the vitamins remain whole for that rich, mellow taste. Within months of opening the pub we began selling Red Oak to other accounts in the Greensboro area. In no time the 6 original aging tanks were maxed out so we added on to the building and installed 13 new tanks. By 2001 Red Oaks popularity had grown so much that we were brewing 24/7...and out of aging capacity. We began the search for a location to build a larger brewery with space to accommodate future growth. After settling on a 12 acre tract along I 40/85 between Greensboro and Burlington in 2003...we began discussions with 3 Bavarian Brewery fabricators. Rolec of Cheming, Bavaria was chosen to supply the new brewery; and in 2005 construction began on the building to house it. By the summer of 2007 Red Oak was ready to open the nation's most modern computerized brewing facility...consistently producing the Freshest, Purest, Bavarian Lagers in America."",""address"":[""6901 Konica Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.0613,""lon"":-79.5695}}",1,30,1
-harviestoun_brewery,0,0,244746158080,"{""name"":""Harviestoun Brewery"",""city"":""Alva"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01259)-769100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hillfoots Business Village""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.1531,""lon"":-3.8006}}",1,29,1
-north_country_brewery-paddlers_pale_ale,0,0,244871593984,"{""name"":""Paddlers Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This clean, crisp ale was dry-hopped and is as refreshing as a plunge in the Slippery Rock Creek."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
-saint_louis_brewery_schlafy_tap_room-schlafly_barleywine,0,0,245002076161,"{""name"":""Schlafly Barleywine"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,51,1
-arthur_guinness_son-foreign_extra_stout,0,0,244381253636,"{""name"":""Foreign Extra Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-12-20 15:44:53"",""description"":""Foreign Extra Stout is brewed with generous hops and roasted barley for a bittersweet balance & full-flavored, natural bite. Developed over 200 years ago for global export from Ireland, the addition of extra hops ensured this Stout would arrive to its destination in perfect condition. Today, Guinness Foreign Extra Stout is enjoyed by millions of people around the world."",""style"":""Foreign (Export)-Style Stout"",""category"":""Irish Ale""}",1,62,1
-diamond_knot_brewery_alehouse-brown_ale,0,0,244632387584,"{""name"":""Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,61,1
-eddie_mcstiff_s_brewpub,0,0,244632059907,"{""name"":""Eddie McStiff's Brewpub"",""city"":""Moab"",""state"":""Utah"",""code"":""84532"",""country"":""United States"",""phone"":""1-435-259-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""57 South Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5725,""lon"":-109.551}}",1,60,1
-mckenzie_brew_house-east_kent_ipa,0,0,244875329537,"{""name"":""East Kent IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
-rock_bottom_restaurant_brewery_milwaukee-hefeweizen,0,0,244992901121,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,30,1
-hops_grillhouse_brewery_cherry_creek-lightning_bold_gold,0,0,244746158081,"{""name"":""Lightning Bold Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-oregon_trader_brewing-russian_imperial_stout,0,0,244871593985,"{""name"":""Russian Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oregon_trader_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-san_marcos_brewery_grill,0,0,245002076162,"{""name"":""San Marcos Brewery & Grill"",""city"":""San Marcos"",""state"":""California"",""code"":""92069"",""country"":""United States"",""phone"":""1-760-471-0050"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1080 West San Marcos Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.1345,""lon"":-117.191}}",1,51,1
-australian_brewing_corporation-king_lager,0,0,244381319168,"{""name"":""King Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""australian_brewing_corporation"",""updated"":""2010-07-22 20:00:20"",""description"":""King Lager is brewed to an all Australian full strength formula in Germany, by the Giessener Brauhaus who have over 100 years of brewing knowledge. Made 100% naturally, King Lager complies with the strict German Purity Law of 1516 resulting in a superior tasting lager of world standing.\r\n\r\nOnly the highest quality barley malt, hops, water and yeast, have been combined to give King Lager its unique malt character and crisp, distinctive taste.\r\n\r\nThe sophisticated King Lager packaging reflects the quality of this exceptional, full flavoured beer. The sleek, contoured bottle, stylish 4 pack design and premium labelling makes this lager stand out amongst the best in any environment. \r\n\r\nKing Lager is full strength with 5.2% alc/vol, 20 beers to a case and 375ml of classic, crisp, clean beer in every bottle.\r\n\r\nMake your move now to King Lager – it’s world class"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,62,1
-diamond_knot_brewery_alehouse-industrial_ipa,0,0,244632453120,"{""name"":""Industrial IPA"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""This one's a butt-kicker! Essentially, the same recipe as the IPA, but with approximately 25% more grain and twice the hops!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,61,1
-edelweissbrauerei_farny-edelweiss,0,0,244632125440,"{""name"":""Edelweiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,60,1
-mendocino_brewing_hopland-blue_heron_pale_ale,0,0,244875329538,"{""name"":""Blue Heron Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-rock_bottom_restaurant_brewery_milwaukee-honey_creek_pale_ale,0,0,244992901122,"{""name"":""Honey Creek Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-hops_haven_brew_haus,0,0,244746223616,"{""name"":""Hops Haven Brew Haus"",""city"":""Sheboygan"",""state"":""Wisconsin"",""code"":""53081"",""country"":""United States"",""phone"":""1-920-457-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1327 North 14th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.7594,""lon"":-87.7228}}",1,29,1
-orlando_brewing-orlando_blonde_ale,0,0,244871593986,"{""name"":""Orlando Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlando_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
-sand_creek_brewing_company-whiskey_barrel_whitetail_cream_ale,0,0,245002141696,"{""name"":""Whiskey Barrel Whitetail Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-backwater_brewing-cat_tail_pale_ale,0,0,244381319169,"{""name"":""Cat Tail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backwater_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-eagle_brewing-golden,0,0,244632453121,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-egan_brewing-smokey_the_beer,0,0,244632125441,"{""name"":""Smokey the Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-michigan_brewing-superior_stout,0,0,244875395072,"{""name"":""Superior Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""All the good stuff and just a little bit more. Michigan Brewing Company is proud to offer this thick and creamy stout with all the roasted, coffee-like flavor you can handle. Need we say more?"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-sabmiller_india-peroni,0,0,244992966656,"{""name"":""Peroni"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Peroni Nastro Azzurro is an intensely crisp and refreshing lager beer, with\r\nan unmistakable touch of Italian style\r\nhttp://www.sabmiller.in/brands_peroni.html\r\nPeroni Beer, Peroni Lager Beer, Peroni Nastro Azzurro Bee"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
-humboldt_brewing-black_xantus,0,0,244746223617,"{""name"":""Black Xantus"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A bourbon barrel aged Imperial Stout infused with coffee."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,29,1
-pabst_brewing_company,0,0,244871659520,"{""name"":""Pabst Brewing Company"",""city"":""San Antonio"",""state"":""Texas"",""code"":""78296"",""country"":""United States"",""phone"":""1-800-935-2337"",""website"":""http://www.pabst.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Pabst Brewing Company, we make beer with history, with a sense of place. From Milwaukee to Motown, through the Pacific Northwest and back East again, our brands are like family and hometown friends. And we should know a little something about regional pride: Since we started in 1844, we've welcomed 24 new states into the Union. Today, Pabst crafts over 25 classic brews with strict adherence to original standards of quality. Our brands rack up national and international festival awards. Most important, they continue to make memories in the places that mean a lot to our consumers."",""address"":[""PO Box 1661""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.43,""lon"":-98.49}}",1,36,1
-saxer_brewing-pilsner,0,0,245002141697,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saxer_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-barley_island_brewing-60_shilling_scotch_ale,0,0,244381319170,"{""name"":""60 Shilling Scotch Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-abbaye_de_maredsous,0,0,244381384704,"{""name"":""Abbaye de Maredsous"",""city"":""Dene"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)82-69-82-11"",""website"":""http://www.maredsous10.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de Maredsous, 11""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.3093,""lon"":4.7646}}",1,63,1
-egan_brewing-stuvenbrau_maibock,0,0,244632518656,"{""name"":""Stüvenbräu Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,61,1
-elysian_brewery_public_house-zephyrus_pilsner,0,0,244632190976,"{""name"":""Zephyrus Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-middle_ages_brewing-old_marcus_ale,0,0,244875395073,"{""name"":""Old Marcus Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Typically Yorkshire. A strong Ale in which all English grown hop varieties are used. The grassy earthy character of Kent Goldings hops is the keynote in the aroma and finish. Try with fish and chips or a meat pie."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,45,1
-santa_barbara_brewing-pacific_pale,0,0,244992966657,"{""name"":""Pacific Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_barbara_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-humboldt_brewing-summer_nectar_wheat_ale,0,0,244746289152,"{""name"":""Summer Nectar Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-pete_s_brewing-bohemian_pilsner,0,0,244995325952,"{""name"":""Bohemian Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-schooner_brewery-oktoberfest,0,0,245002141698,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,51,1
-barley_john_s_brewpub-wild_brunette,0,0,244381319171,"{""name"":""Wild Brunette"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-allentown_brew_works-hop_explosion,0,0,244381450240,"{""name"":""Hop Explosion"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppiest Brew Works beer ever? The smell of grapefruit, a sweet malt flavor, and oh by the way, lots of hop bitterness. Brewed in the tradition of West Coast ales, we have put loads of malt and hops in our kettle to come up with this sensational ale. Brewed with pale, and crystal malts, hopped with Tomahawks for Yakima Valley, WA. This beer styled has made many a microbrewery famous and this one is sure to please all those who love hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
-elgood_sons,0,0,244632518657,"{""name"":""Elgood & Sons"",""city"":""Wisbech"",""state"":""Cambridge"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wisbech PE13 1LN""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.6643,""lon"":0.1595}}",1,61,1
-emerson_brewing,0,0,244632190977,"{""name"":""Emerson Brewing"",""city"":""Dunedin"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(03)-477-1812"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14 Wickliffe Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-45.872,""lon"":170.518}}",1,60,1
-midnight_sun_brewing_co-venus_belgian_style_quadrupel,0,0,244875460608,"{""name"":""Venus - Belgian-style Quadrupel"",""abv"":16.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Venus—goddess of love and beauty—exudes grace and voluptuousness. Indulgent with lush dark malts and sensuous star anise, VENUS is decadent and divine in body and spirit. Leisure lounging in French oak Cabernet Sauvignon wine casks results in a lovely liquid feast of fabulously luxurious flavors."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,45,1
-schloss_eggenberg-samichlaus_bier_2006,0,0,244993032192,"{""name"":""Samichlaus Bier 2006"",""abv"":14.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed only once a year on December 6. Samichlaus is aged for 10 months before bottling. This beer is perhaps the rarest in the world. Samichlaus may be aged for many years to come. Older vintages become more complex with a creamy warming finish.""}",1,30,1
-lammin_sahti_oy-kataja_olut_ivb,0,0,244746289153,"{""name"":""Kataja Olut IVB"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lammin_sahti_oy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-philadelphia_brewing_co-kenziger,0,0,244995391488,"{""name"":""Kenziger"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a real drinkin' beer! - a golden session ale that boasts both a European birthright and a thirst-quenching Philadelphia sensibility. Ke n zinger is refreshingly crisp and smooth, with a spirited flavor that grabs the attention of taste buds everywhere. Get some!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
-schussenrieder_erlebnisbrauerei-weisse,0,0,245002207232,"{""name"":""Weiße"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
-beach_brewing-harvest_gold,0,0,244381384704,"{""name"":""Harvest Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-appalachian_brewing_company-ipa_series_zeus,0,0,244381515776,"{""name"":""IPA Series (Zeus)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
-english_ales_brewery,0,0,244632518658,"{""name"":""English Ales Brewery"",""city"":""Marina"",""state"":""California"",""code"":""93933"",""country"":""United States"",""phone"":""1-831-883-3000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""223 Reindollar Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.6802,""lon"":-121.804}}",1,61,1
-fitger_s_brewhouse_brewery_and_grill-farmhouse_reserve,0,0,244632190978,"{""name"":""Farmhouse Reserve"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-mikkeller,0,0,244875460609,"{""name"":""Mikkeller"",""city"":""København"",""state"":"""",""code"":"""",""country"":""Denmark"",""phone"":""45-4162-3489"",""website"":""http://www.mikkeller.dk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Slien 2, 2. tv""]}",1,45,1
-schooner_brewery-ranger_red,0,0,244993032193,"{""name"":""Ranger Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,30,1
-marin_brewing-albion_amber_ale,0,0,244869103616,"{""name"":""Albion Amber Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,29,1
-philadelphia_brewing_co-newbold_ipa,0,0,244995391489,"{""name"":""Newbold IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Hop shortage be damned! We love IPA's, Philadelphia loves IPA's, we're going to brew an IPA. Rekindle your passion for your favorite Phi ladelphia brewery by enjoying our substantial, aromatic India Pale Ale. Newbold is aggressively hopped, with a crimson hue and depth of flavor that will satisfy the most demanding devotee of this revived style. Newbold I.P.A. tells it like it is."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
-sierra_nevada_brewing_co-india_pale_ale,0,0,245002207233,"{""name"":""India Pale Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-beach_chalet_brewery-fleishhacker_stout,0,0,244381384705,"{""name"":""Fleishhacker Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
-bamberger_mahr_s_bru-weisse,0,0,244381515777,"{""name"":""Weisse"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,63,1
-estes_park_brewery-stinger_wild_honey_wheat,0,0,244632584192,"{""name"":""Stinger Wild Honey Wheat"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We put close to a half a pound of Colorado honey per case in this wheat ale. The honey adds a sweetness and raises the alcohol content slightly. We use Mount hood and hallertau hops."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,61,1
-flour_city_brewing,0,0,244632190979,"{""name"":""Flour City Brewing"",""city"":""Rochester"",""state"":""New York"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.161,""lon"":-77.6109}}",1,60,1
-moonlight_brewing-baritone_red,0,0,244875460610,"{""name"":""Baritone Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
-selin_s_grove_brewing_co-shade_mountain_oatmeal_stout,0,0,244993097728,"{""name"":""Shade Mountain Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""selin_s_grove_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,30,1
-maritime_pacific_brewing-jolly_roger,0,0,244869169152,"{""name"":""Jolly Roger"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-pike_pub_and_brewery-old_bawdy_2006,0,0,244995457024,"{""name"":""Old Bawdy 2006"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-simmerberg_brusttt_und_taferne-dunkles_weissbier,0,0,245002207234,"{""name"":""Dunkles Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-bootleggers_steakhouse_and_brewery-double_zz_raspberry_wheat,0,0,244381384706,"{""name"":""Double ZZ Raspberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,62,1
-barley_s_brewing_1-pilsner,0,0,244381515778,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-f_x_matt_brewing-saranac_extra_special_bitter,0,0,244632584193,"{""name"":""Saranac Extra Special Bitter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Bitters are popular pub beers in England and are closely related to the more well known pales ales. Saranac Extra Special Bitter has a rich, malty taste balanced by the pleasant bitterness of Williamette Hops. The finish is dry with a hint of the Foral English Fuggle and Spicy Saaz hop. Enjoy!"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,61,1
-flyers_restraunt_and_brewery-sick_duck_imperial_stout,0,0,244632256512,"{""name"":""Sick Duck Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich and very dark Imperial Stout that has a complex flavor profile with hints of molasses and caramel. Brewed in July to allow time for aging, Sick Duck finishes very smooth for such a big beer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,60,1
-morland_and_co-old_speckled_hen,0,0,244875460611,"{""name"":""Old Speckled Hen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""morland_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,45,1
-ship_inn_brewpub,0,0,244993097729,"{""name"":""Ship Inn Brewpub"",""city"":""Milford"",""state"":""New Jersey"",""code"":""8848"",""country"":""United States"",""phone"":""1-800-651-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""61 Bridge Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5684,""lon"":-75.0954}}",1,30,1
-mash_house_restaurant_and_brewery-hoppy_hour_ipa,0,0,244869169153,"{""name"":""Hoppy Hour IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mash_house_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
-pike_pub_and_brewery,0,0,244995457025,"{""name"":""Pike Pub and Brewery"",""city"":""Seattle"",""state"":""Washington"",""code"":""98101"",""country"":""United States"",""phone"":""1-206-622-6044"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1415 First Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6081,""lon"":-122.34}}",1,36,1
-sixpoint_craft_ales-righteous_ale,0,0,245002207235,"{""name"":""Righteous Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Righteous Ale is actually a Rye Beer, brewed with a high amount of hops."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,51,1
-brauerei_locher_ag-leermond_bier,0,0,244500070400,"{""name"":""Leermond Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_locher_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-belfast_bay_brewing_company-lobster_ale,0,0,244381515779,"{""name"":""Lobster Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belfast_bay_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
-firehouse_brewing-wilderness_wheat,0,0,244632649728,"{""name"":""Wilderness Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
-founders_brewing-dirty_bastard_scotch_style_ale,0,0,244632256513,"{""name"":""Dirty Bastard Scotch Style Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Founders flagship beer. Dirty Bastard is an absolute beautiful beer to behold. Dark ruby in color and brewed with ten varieties of imported malts this beer continuously lives up to its reputation as a bold and powerful ale. Dirty Bastard is complex in the finish with hints of smoke and peat paired with a malty richness, finalized with a good bit of hop attitude. This beer ain't for the wee lads."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,60,1
-nelson_brewing-paddywhack_ipa,0,0,244875526144,"{""name"":""Paddywhack IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nelson_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
-south_shore_brewery-porter,0,0,245111062528,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
-matilda_bay_brewing-redback_original_malt_wheat_beer,0,0,244869234688,"{""name"":""Redback Original Malt Wheat Beer"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""matilda_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-rail_house_restaurant_and_brewpub-silver_cream,0,0,244995457026,"{""name"":""Silver Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-slab_city_brewing-ale,0,0,245002272768,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-brouwerij_abdij_saint_sixtus-trappist_westvleteren_8,0,0,244500070401,"{""name"":""Trappist Westvleteren 8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_saint_sixtus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,62,1
-bierbrouwerij_de_koningshoeven-la_trappe_dubbel,0,0,244381581312,"{""name"":""La Trappe Dubbel"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,63,1
-flatlander_s_restaurant_brewery-winter_delight,0,0,244632649729,"{""name"":""Winter Delight"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,61,1
-four_peaks_brewing-belgian_wit,0,0,244632256514,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian Wits originated in Belgium, in the area of Brabant just east of Brussels. This are was a part of the Netherlands in the early 1800's and was the wheat growing region. In this era, the Dutch basically controlled the spice trade, thus, coriander as well as Curacao orange peel made its way into the beer. Spices were used well before the widespread use of hops in beer. At one point there were more than thirty breweries producing a Wit, but overtime the style died off and in 1954 the last of the breweries ceased operations. One of the most famous brands of Belgian Wits is Hoegaarden (pronounced \""Who Garden\"") produced by Pierre Celis back in 1966. This revived the style and by the 1980's it was popular again!\r\n\r\nBelgian Wits are similar to a Hefeweizen with respect to the cloudiness of the beer and some phenolic (clove) and tart flavors. Wits should have white, rocky head when poured and should be almost white in appearance, hence the name. \r\n\r\nYou will smell oranges and coriander which is different than a Hefeweizen that smells of banana and clove. Our version of a Belgian Wit is called \""Hoof - Hearted Wit,\"" and it is brewed to style with dried bitter and sweet orange peel and coriander seeds."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,60,1
-new_holland_brewing_company-ichabod,0,0,244875526145,"{""name"":""Ichabod"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ichabod combines malted barley and real pumpkin with cinnamon and nutmeg in a delicious and inviting brew. A rewarding complement to many dishes, Ichabod pairs well with autumnal foods such as poultry and root vegetables. After dinner, try it with your favorite dessert!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,45,1
-spilker_ales-hopluia,0,0,245111128064,"{""name"":""Hopluia"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
-michigan_brewing-celis_grand_cru,0,0,244869234689,"{""name"":""Celis Grand Cru"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A GABF Gold Medal winner for 2007, this Belgian style strong ale, bright and golden colored is brewed with a hint of orange peel and coriander. This balanced, pleasant to drink brew, will sneak up on you. Consume with caution."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,29,1
-red_star_brewery_grille-golden_light,0,0,244995522560,"{""name"":""Golden Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,36,1
-sly_fox_brewhouse_and_eatery_royersford-featherweight_lager,0,0,245119844352,"{""name"":""Featherweight Lager"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-brouwerij_kerkom-bloesem_bink,0,0,244500135936,"{""name"":""Bloesem Bink"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_kerkom"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-bierbrouwerij_de_koningshoeven-la_trappe_quadrupel_2000_2001,0,0,244381581313,"{""name"":""La Trappe Quadrupel 2000/2001"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-flying_fish_brewing_company-esb_ale,0,0,244632649730,"{""name"":""ESB Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This ESB is a classic British extra special bitter made fresh with an American slant. A beautiful copper color with an amber head, this classic style features five different malts, including imported English malts, and three hop varieties. The rich malty start features caramel notes that develop into a smooth, pleasurable hop finish."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,61,1
-full_sail_brewing_1-very_special_pale_golden_ale,0,0,244632322048,"{""name"":""Very Special Pale Golden Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-north_country_brewery-squirrel_s_nut_brown,0,0,244875526146,"{""name"":""Squirrel's Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This smooth Ale has an even display of hop bitterness and bold malt flavor, with a hint of nutty flavor from the dark malt, to produce a superior brown ale taste"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
-steamworks-the_great_pumpkin_ale,0,0,245111193600,"{""name"":""The Great Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""A spiced ale that tastes just like pumpkin pie in a glass.\r\n\r\nThe Pumpkin Ale is a malty, copper coloured brew that's spiced with cinnamon, cloves, nutmeg and ginger. We add 100 lbs of pumpkin directly to the mash and the resulting beer tastes just like pumpkin pie in a glass."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,30,1
-midnight_sun_brewing_co-full_curl_scotch_ale,0,0,244869234690,"{""name"":""Full Curl Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Full Curl Scotch Ale is brewed in the traditional Wee Heavy Scotch strong ale style. (This is not to be confused with the lighter-bodied Scottish ale style.) All about malt, Full Curl pours dark brown with a tan head. Its medium body provides sustenance while its strength boosts courage. With a stiff mug of Full Curl under your belt, you may even have what it takes to don a kilt."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,29,1
-redhook_ale_brewery-hoptoberfest,0,0,244995522561,"{""name"":""Hoptoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
-spaten_franziskaner_brau-franziskaner_hefe_weissbier_dunkel,0,0,245119844353,"{""name"":""Franziskaner Hefe-Weissbier Dunkel"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":""Franziskaner Hefe-Weisse Dunkel wins supporters with its refreshing yet aromatic and full-bodied flavour. This dark, cloudy specialty is a special treat for weiss beer connoisseurs and bock beer aficionados.\r\n\r\nAll of Franziskaner's weiss beer products - Hefe-Weisse Hell and Hefe-Weisse Dunkel - are top-fermentation beers noted for their agreeable carbonation levels and zesty wheat flavour. The consistently high quality of our products makes Franziskaner weiss beers a refreshing taste sensation of a special sort. All Franziskaner weiss beers are brewed in strict adherence to the Bavarian Purity Law of 1516.""}",1,51,1
-brouwerij_van_steenberge-bruegel_amber_ale,0,0,244500135937,"{""name"":""Bruegel Amber Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
-bj_s_restaurant_and_brewery,0,0,244381581314,"{""name"":""BJ's Restaurant and Brewery"",""city"":""Brea"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":""714-990-2095"",""website"":""http://www.bjsrestaurants.com/beer.aspx"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 Brea Mall""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.9132,""lon"":-117.889}}",1,63,1
-fort_collins_brewery-chocolate_stout,0,0,244632649731,"{""name"":""Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fort_collins_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
-glen_ellyn_sports_brew-black_forest_dunkelweizen,0,0,244632322049,"{""name"":""Black Forest Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-northwest_brewwrks,0,0,244875591680,"{""name"":""Northwest Brewwrks"",""city"":""Kirkland"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6815,""lon"":-122.209}}",1,45,1
-stout_brothers_public_house-celtic_cross_stout,0,0,245111193601,"{""name"":""Celtic Cross Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
-midnight_sun_brewing_co-obliteration_i,0,0,244869300224,"{""name"":""Obliteration I"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration I is a Double IPA, heavily hopped with a big malt base. Its aroma is pungent with citrus, onion, and a touch of alcohol. The sweetness of caramel malt is offset with spice and pepper flavors that lead into an overwhelmingly bitter finish."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,29,1
-remington_watson_smith_brewing-nocturn,0,0,244995588096,"{""name"":""Nocturn"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""remington_watson_smith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,36,1
-sprecher_brewing-ipa,0,0,245119909888,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,51,1
-bube_s_brewery-bube_s_red_ale,0,0,244500201472,"{""name"":""Bube's Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This was the first draught on tap in November 2001. It has developed to a very quaffable ale. the slight sweet malt flavor is balanced with East Kent Golding hops to produce this delicious reddish-amber ale."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
-blitz_weinhard_brewing-hazelnut_stout,0,0,244381646848,"{""name"":""Hazelnut Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blitz_weinhard_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-four_peaks_brewing-8th_street_ale,0,0,244632715264,"{""name"":""8th Street Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Now In Bottles!! Our award winning 8th Street Ale is based on an English-style \""Best Bitter\"" which is the most common ale served in British pubs. What makes 8th Street Ale uncommon is its mellow bitterness and its slightly sweet malt flavor. It's aroma is derived from rare, imported Kentish hops, and lots of them.\r\nAlcohol content approximately 4.5% by volume (ALWAYS ON TAP!!)"",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,61,1
-golden_city_brewery-brain_damage,0,0,244632322050,"{""name"":""Brain Damage"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_city_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,60,1
-oggi_s_pizza_and_brewing_vista-sweet_spot_hefe,0,0,244875591681,"{""name"":""Sweet Spot Hefe"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,45,1
-sweetwater_brewing_atlanta-georgia_brown,0,0,245111193602,"{""name"":""Georgia Brown"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""It's definitely one of the finer American Brown Ales. A deep, copper colored, mild brown ale.\r\n\r\nSGB is accentuated by a slight nuttiness from its malt character. Designed to be a session beer it has a real smooth finish with a subtle hop character."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,30,1
-midnight_sun_brewing_co-pride,0,0,244869300225,"{""name"":""Pride"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""RIDE Belgian-style Strong Pale Ale boasts a glorious deep gold color and an amazing yet arrogant head. Plentiful pale malt creates beautiful, agile body. Assertive hops and Belgian yeast achieve charismatic floral and spice notes in aroma and flavor. But Pride’s predominant and unique character comes from its exposure to Brettanomyces in French oak Chardonnay barrels. At once tart and refreshing yet earthy and musty, Pride is unlike most beers on earth. And it’s bitter, lingering finish demands another sip. \r\n\r\nAwarded a BRONZE medal at World Beer Cup 2008, Pride has much too much to boast about."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,29,1
-rock_bottom_restaurant_brewery_minneapolis-big_horn_nut_brown_ale,0,0,244995653632,"{""name"":""Big Horn Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
-spring_house_brewing_company-two_front_teeth_holiday_ale,0,0,245119909889,"{""name"":""Two Front Teeth Holiday Ale"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We welcome the release of “Two Front Teeth Holiday Ale” a Belgian style Saison with subtle real cherry flavoring. What a good way to drown out in-laws by enjoying a pint or two of this recent release from Spring House Brewing Company. This is not for the faint palate; this holiday offering is coming in at 9.4% ABV! We hope you stop by for a taste or a Growler fill but unfortunately you have to stop in for this one. Enjoy!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,51,1
-bull_bush_pub_brewery-allgood_amber_ale,0,0,244500267008,"{""name"":""Allgood Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
-boston_beer_company-sam_adams_light,0,0,244381646849,"{""name"":""Sam Adams Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Great tasting yet drinkable, with a clean smooth finish. Sam Adams Light® is not just a lighter version of our Samuel Adams Boston Lager® but rather the culmination of over two years of tireless research and brewing trials to create a flavorful Light beer. And it has proved to be worth the wait. Brewed using only the finest two row malt and German Noble hops it has a smooth, complex roasted malt character that is superbly balanced with the subtle orange fruit notes of the Noble hops. Sam Adams Light® finishes crisp and smooth without any lingering bitterness, leaving you yearning for more."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,63,1
-front_street_brewery-hefeweizen,0,0,244632715265,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,61,1
-goose_island_beer_company_fulton_street-hex_nut_brown_ale,0,0,244632387584,"{""name"":""Hex Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
-on_tap_bistro_brewery-alt_er_ego_amber,0,0,244875591682,"{""name"":""Alt-Er-Ego Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
-the_alchemist-rapture,0,0,245111259136,"{""name"":""Rapture"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
-midnight_sun_brewing_co-rumbah_double_rum_bock,0,0,244869300226,"{""name"":""RUMBAH Double Rum Bock"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer Description:\r\nThis double bock provides smooth sailin' in rough seas. The fact that this luscious lager was aged in rum barrels creates the illusion that the open sea is a safe place. And while riding out these waves of grain, you may fall victim to the dangers of pirates, rum, bock. OK...maybe the beach is a bit over-rated."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,29,1
-rogue_ales-oregon_golden_ale,0,0,244995653633,"{""name"":""Oregon Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Oregon Golden Ale is the original Rogue brew dating back to 1988 and the days of the old Ashland brewpub location (which was destroyed by a flood several years ago). Deep golden in color with a rich malty aroma. Delicately smooth and crisp flavor and an herbal finish. Oregon Golden Ale is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops. Oregon Golden Ale is available in a 22-ounce bottle (the 12-ounce 6-pack was phased out in early 2005), and on draft."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,36,1
-st_georgenbru_modschiedler_kg-keller_bier,0,0,245119975424,"{""name"":""Keller-Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_georgenbru_modschiedler_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-bull_bush_pub_brewery-stonehenge_stout,0,0,244500267009,"{""name"":""Stonehenge Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
-boulevard_brewing_company-boulevard_unfiltered_wheat,0,0,244381646850,"{""name"":""Boulevard Unfiltered Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard Unfiltered Wheat Beer is a lively, refreshing ale with a naturally citrusy flavor and distinctive cloudy appearance. This easy-drinking American-style wheat beer has become our most popular offering, and the best-selling craft beer in the Midwest."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,63,1
-gaslight_brewery-harvest_ale,0,0,244632780800,"{""name"":""Harvest Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
-green_mill_brewing_saint_paul,0,0,244758020096,"{""name"":""Green Mill Brewing - Saint Paul"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55105"",""country"":""United States"",""phone"":""1-651-698-0353"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""57 Hamline Avenue South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9398,""lon"":-93.1568}}",1,60,1
-pacific_coast_brewing-harvest_wheat,0,0,244998930432,"{""name"":""Harvest Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-the_church_brew_works-heavenly_hefeweizen,0,0,245111259137,"{""name"":""Heavenly Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""I’m sure everyone here knows, Pittsburgh has some humid summers. What can you do to escape the heat and enjoy yourself? Well I’ve got the answer. How about a light thirst quenching Hefe Weizen (pronounced hefa Vite zen) in the cool environment of our Hop Garden patio. I can hear you wondering, what is a hefe weizen? Allay your fears my friends because I’m going to tell you. A hefe weizen is a special style of beer made with malted wheat and malted barley. Hefe weizens are from Germany. This beer is top fermented (an ale) with a very special yeast. The Hop levels are kept deliberately low in order to bring out the character of the yeast. If you notice the nose of the beer, it has a clove-like or fruity aroma. The grain bill includes 50% wheat malt and 50% barley malt. It is served very carbonated and a touch cloudy. It is cloudy because it is served unfiltered. The remaining yeast contributes flavor, adds B vitamins, and improves the beer as it ages."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,30,1
-midnight_sun_brewing_co-wrath,0,0,244869300227,"{""name"":""Wrath"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""WRATH Belgian-style Double IPA is fiercely bitter with notes of spice and earth. Its fury slowly and purposefully unfurls on the tongue, relentlessly bringing on more and more enraged flavor with each sip. \r\n\r\nWrath wreaks havoc on your taste buds. Anything you drink after this may as well be water."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,29,1
-rowland_s_calumet_brewery-calumet_bock,0,0,244995719168,"{""name"":""Calumet Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,36,1
-standing_stone_brewing_company-standing_stone_lager,0,0,245119975425,"{""name"":""Standing Stone Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry, crisp refreshing filtered lager. A good balance between sweet malt and light bitter hops. This beer is made with a Southern German lager yeast, Saaz, and Hershbrucker hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
-daas-daas_organic_witte,0,0,244500267010,"{""name"":""Daas Organic Witte"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daas"",""updated"":""2010-07-22 20:00:20"",""description"":""The Daas Organic Witte is very well received by women beer drinkers; it is a naturally cloudy Belgian wheat beer. Its fruity blend of subtle citrus (baked oranges) and spice (coriander) flavors compliment its crispy dry and bitter hop finish."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,62,1
-brasserie_artisanale_de_rulles-triple,0,0,244381712384,"{""name"":""Triple"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_artisanale_de_rulles"",""updated"":""2010-12-20 16:14:15"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,63,1
-george_gale_company-horndean_special_bitter_hsb,0,0,244632780801,"{""name"":""Horndean Special Bitter / HSB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-hanssens_artisanal,0,0,244758085632,"{""name"":""Hanssens Artisanal"",""city"":""Dworp"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-/-380-31-33"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vroenenbosstraat 15""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.729,""lon"":4.2971}}",1,60,1
-pearl_street_brewery-old_skeezer_barley_wine,0,0,244998995968,"{""name"":""Old Skeezer Barley Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pearl_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-thomas_hooker_brewing,0,0,245111259138,"{""name"":""Thomas Hooker Brewing"",""city"":""Bloomfield"",""state"":""Connecticut"",""code"":""6002"",""country"":""United States"",""phone"":""860-242-3111"",""website"":""http://www.hookerbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Tastings every Saturday from 12-6pm, and 1st and 3rd Friday of every month from 5-8."",""address"":[""16 Tobey Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8087,""lon"":-72.7108}}",1,30,1
-milwaukee_ale_house-pull_chain_pail_ale,0,0,244869365760,"{""name"":""Pull Chain Pail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
-saint_arnold_brewing-saint_arnold_brown_ale,0,0,244995719169,"{""name"":""Saint Arnold Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A beautiful, deep copper brown ale. It has a full, malty body with hints of chocolate, a touch of sweetness and a light hop flavor. A complex malt character is created by combining five different types of malts. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \r\n\r\nSaint Arnold Brown Ale is best consumed at 45-50° Fahrenheit."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
-stone_brewing_co-arrogant_bastard_ale,0,0,245119975426,"{""name"":""Arrogant Bastard Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-day_brewing,0,0,244632911872,"{""name"":""Day Brewing"",""city"":""Marrero"",""state"":""Louisiana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.8994,""lon"":-90.1004}}",1,62,1
-brasserie_des_franches_montagnes-cuvee_du_7eme,0,0,244381712385,"{""name"":""Cuvée du 7ème"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_franches_montagnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-glen_ellyn_sports_brew-evolutionary_ipa,0,0,244632780802,"{""name"":""Evolutionary IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
-hapa_s_brew_haus_and_restaurant-paradise_pale_lager,0,0,244758085633,"{""name"":""Paradise Pale Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-pivovar_starobrno,0,0,244999061504,"{""name"":""Pivovar Starobrno"",""city"":""Brno"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-543-516-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hlinky 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.1911,""lon"":16.5918}}",1,45,1
-troegs_brewing-troegs_splinter_beer_red,0,0,245111259139,"{""name"":""Tröegs Splinter Beer Red"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Before filtering the final batch of 2008 Mad Elf we racked some beer into bourbon barrels for six weeks of tender loving care. After bottling, we aged the beer for approximately eight months. This allows the tart cherries to push to the front. Subtle vanilla, bourbon, charred wood, coconut and toasted nut endnotes emanate from Splinter Red."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,30,1
-mogollon_brewing_company-horny_toad_ipa,0,0,244869365761,"{""name"":""Horny Toad IPA"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""If you like big, bold, pronounced hop character, then this beer is for you. One taste and you’ll find yourself right smack in the middle of Hop Head Heaven! But this beer has more to offer than just hops. We use tons of the finest malted barley available to balance out this beer. The result of our efforts is a beer with a magnitude of hop aroma and bite, yet perfectly balanced with a clean, crisp malty flavor. WARNING: This beer is not intended for the masses that prefer a mild domestic beer, It’s big, bold characteristics and 7.1% a.b.v. are not intended for the weak."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
-saint_somewhere_brewing_company-pays_du_soleil,0,0,244995784704,"{""name"":""Pays du Soleil"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_somewhere_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber ale with Palmetto berries and hibiscus."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,36,1
-sudwerk_privatbrauerei_hbsch-hefe_weizen,0,0,245119975427,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sudwerk_privatbrauerei_hbsch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
-de_leyerth_brouwerijen,0,0,244632911873,"{""name"":""De Leyerth Brouwerijen"",""city"":""Ruiselede"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-/-68-89-99"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Krommekeerstraat 21""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0811,""lon"":3.3699}}",1,62,1
-brasserie_la_binchoise,0,0,244500332544,"{""name"":""Brasserie La Binchoise"",""city"":""Binche"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)64-37-01-75"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Faubourg St Paul 38""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.408,""lon"":4.1659}}",1,63,1
-glen_ellyn_sports_brew-smoked_porter,0,0,244632780803,"{""name"":""Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
-hereford_hops_steakhouse_and_brewpub_3-st_edmunds_strong_porter,0,0,244758085634,"{""name"":""St. Edmunds Strong Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,60,1
-pivzavod_baltika-baltika_5,0,0,244999061505,"{""name"":""Baltika #5"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-vermont_pub_brewery,0,0,245111324672,"{""name"":""Vermont Pub & Brewery"",""city"":""Burlington"",""state"":""Vermont"",""code"":""5401"",""country"":""United States"",""phone"":""(802) 865-0500"",""website"":""http://www.vermontbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""VPB is the third oldest brewpub on the East Coast."",""address"":[""144 College St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4773,""lon"":-73.2144}}",1,30,1
-montana_brewing-whitetail_wheat,0,0,244869365762,"{""name"":""Whitetail Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-sanford_s_grub_and_pub-oil_can_stout,0,0,244995784705,"{""name"":""Oil Can Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sanford_s_grub_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-three_floyds_brewing-apocalypse_cow,0,0,245120040960,"{""name"":""Apocalypse Cow"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,51,1
-de_proef_brouwerij-tripel_krullekop,0,0,244632977408,"{""name"":""Tripel Krullekop"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-brauerei_spezial-ungespundetes,0,0,244500332545,"{""name"":""Ungespundetes"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-golden_gate_park_brewery-celebration_red,0,0,244632846336,"{""name"":""Celebration Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,61,1
-high_falls_brewing-dundee_india_pale_ale,0,0,244758151168,"{""name"":""Dundee India Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""It takes a bit of seasoning to understand that bitter can be a good thing. \r\n\r\nWhen you’re a child, you want everything to be sweet. When you’re a teenager, you want everything to be sweeeeet. But when you get a bit wiser and acquire some taste, you realize that bitter is an excellent alternative. It’s a sign of complexity. It’s a sign of maturity. It’s a sign of the times. Face it, modern life demands a little bitterness every once in a while. \r\n\r\nWhen you are in the mood for something bitter, Dundee IPA is hop bitterness at its finest. As the youngsters would say, that’s sweet.\r\n\r\nAn aggressively hopped IPA brewed with Amarillo and Simcoe hops. Blended Crystal malts balance the flavors with a distinctive spicy aroma and a long, crisp finish."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,60,1
-rahr_sons_brewing_company-rahr_s_winter_warmer,0,0,244999061506,"{""name"":""Rahr's Winter Warmer"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Warm up the long, cold nights of winter with Rahr's latest seasonal offering. Wonderfully robust, rich and full-bodied, Rahr's Winter Warmer is crated in the fine British tradition of holiday ales. Perfect for either holiday gatherings or quiet evenings at home."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,45,1
-wh_brakspear_sons,0,0,245747875840,"{""name"":""WH Brakspear & Sons"",""city"":""Henley-on-Thames"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.5375,""lon"":-0.9046}}",1,30,1
-aldaris,0,0,244378238976,"{""name"":""Aldaris"",""city"":""Rga"",""state"":"""",""code"":"""",""country"":""Latvia"",""phone"":""371-70-23-200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tvaika iela 44""]}",1,53,1
-monteith_s_brewing_co,0,0,244869365763,"{""name"":""Monteith's Brewing Co."",""city"":""Greymouth"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":"""",""website"":""http://www.monteiths.com/nz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cnr Turumaha and Herbert St""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-42.4505,""lon"":171.207}}",1,29,1
-santa_fe_brewing_company-viszolay_belgian,0,0,244995784706,"{""name"":""Viszolay Belgian"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Viszolay is a distinctly continental ale with a hint of the southwest. Belgian malt, Bavarian and Czech hops, and a secret blend of German and Belgian yeast strains provide this beer, inspired by the Trappist’s Dubbel style ale, with a strong traditional base, while a hint of New Mexico wildflower honey infuses it with that ethereal quality that we New Mexicans simply call, “enchanting”. Like the Trappist ales from which it sprung, Viszolay is light and refreshing. The hop’s subtle notes are overpowered by complex fruity flavors derived from the Belgian yeast, leaving Viszolay a very drinkable (yet rather potent) addition to the Santa Fe Brewing Company’s family of beers."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,36,1
-thunderhead_brewery-dark_wheat,0,0,245120040961,"{""name"":""Dark Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-del_mar_stuft_pizza_and_brewing,0,0,244632977409,"{""name"":""Del Mar Stuft Pizza and Brewing"",""city"":""San Diego"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7153,""lon"":-117.157}}",1,62,1
-breckenridge_brewery-lucky_u_denver_special_bitter,0,0,244500332546,"{""name"":""Lucky U Denver Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-goose_island_beer_company_fulton_street-goose_island_ipa,0,0,244632846337,"{""name"":""Goose Island IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Goose Island website:\r\n\r\n\""Our IPA recalls a time when ales shipped from England to India were highly hopped to preserve their distinct taste during the long journey. The result, quite simply a hop lover's dream. And this classic ale adds a fruity aroma, set off by a dry malt middle, to ensure that the long hop finish is one you'll remember.\"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
-hops_haven_brew_haus-port_washington_pier_96_lager,0,0,244758216704,"{""name"":""Port Washington Pier 96 Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
-richbrau_brewing_company-richbrau_india_pale_ale,0,0,244999127040,"{""name"":""Richbrau India Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A hops showcase in aroma, flavor and bitterness. We used the delightful Amarillo hop as the most prominent choice."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
-wharf_rat-oliver_esb,0,0,245747875841,"{""name"":""Oliver ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wharf_rat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,30,1
-alesmith_brewing,0,0,244378304512,"{""name"":""AleSmith Brewing"",""city"":""San Diego"",""state"":""California"",""code"":""92126"",""country"":""United States"",""phone"":""1-858-549-9888"",""website"":""http://alesmith.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9368 Cabot Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.892,""lon"":-117.144}}",1,53,1
-moonlight_brewing-4868_dark_wheat,0,0,244869431296,"{""name"":""4868 Dark Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,29,1
-scuttlebutt_brewing,0,0,244995850240,"{""name"":""Scuttlebutt Brewing"",""city"":""Everett"",""state"":""Washington"",""code"":""98201"",""country"":""United States"",""phone"":""1-425-257-9316"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1524 West Marine View Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.9975,""lon"":-122.214}}",1,36,1
-thunderhead_brewery-russian_imperial_stout,0,0,245120106496,"{""name"":""Russian Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
-delafield_brewhaus-noch_einmal_dunkel,0,0,244633042944,"{""name"":""Noch Einmal Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-breckenridge_brewery-oatmeal_stout,0,0,244500398080,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
-great_waters_brewing_company-golden_prairie_blond,0,0,244758347776,"{""name"":""Golden Prairie Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-industrija_piva_i_sokova_trebjesa,0,0,244758216705,"{""name"":""Industrija Piva I Sokova Trebjesa"",""city"":""Nikic"",""state"":"""",""code"":"""",""country"":""Serbia and Montenegro"",""phone"":""381-83-242-433"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Njegoseva 18""]}",1,60,1
-river_west_brewing-maibock,0,0,244999127041,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
-wychwood_brewery-old_devil,0,0,245747941376,"{""name"":""Old Devil"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,30,1
-bandana_brewery-eagle_lake_pale_ale,0,0,244378304513,"{""name"":""Eagle Lake Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-nodding_head_brewpub-spring_ale,0,0,244869431297,"{""name"":""Spring Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-sierra_nevada_brewing_co-porter,0,0,244995915776,"{""name"":""Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nDark and rich, Sierra Nevada Porter is a delicious, medium-bodied ale with a creamy head. The Porter’s smooth flavor (malty with hints of caramel) comes from a blend of deep-roasted barley malts.\r\n\r\n\r\n“…there can be little doubt that this is one of the best porters being brewed anywhere in the world today.”\r\n\r\n— Christopher Finch, A Connoisseur’s Guide \r\nto the World’s Best Beer\r\n\r\nFIRST PLACE\r\nCalifornia Brewers Festival (Robust Porter: 2000)\r\nColorado State Fair (Porter: 1996)"",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
-tied_house_cafe_brewery_san_jose-cascade_amber,0,0,245120106497,"{""name"":""Cascade Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
-diamond_knot_brewery_alehouse-lighthouse_ale,0,0,244633042945,"{""name"":""Lighthouse Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-brick_brewing-premium_lager,0,0,244500398081,"{""name"":""Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brick_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-green_bay_brewing-barley_wine_2001,0,0,244758347777,"{""name"":""Barley Wine 2001"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-john_harvard_s_brewhouse_wilmington-scottish_ale,0,0,244758216706,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-schlossbru,0,0,244999127042,"{""name"":""Schlossbru"",""city"":""Dornbirn"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-05572-/-386-683"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oberdorferstrae 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.4097,""lon"":9.7514}}",1,45,1
-yuengling_son_brewing-yuengling_porter,0,0,245748006912,"{""name"":""Yuengling Porter"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Dark Brewed Porter is an original specialty beer that has been brewed expressly for tavern owners and family trade since 1829. We are proud to be recognized as one of the largest porter producers in the US. An authentic craft-style beer, our Porter calls for a generous portion of caramel and dark roasted malts, which deliver a rich full-bodied flavor and creamy taste with slight tones of chocolate evident in every sip. It pours dark, topped with a thick foamy head, and imparts a faint malty aroma. This smooth and robust Porter has a unique character that complements any meal from steak or seafood to chocolate desserts. Yuengling Dark Brewed Porter is enjoyed by even the most discerning consumer for its flawless taste and unwavering quality."",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
-barley_brothers_brewery_and_grill-blonde_ale,0,0,244378304514,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-park_city_brewing-tie_die_red,0,0,244992311296,"{""name"":""Tie Die Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""park_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
-smuttynose_brewing_co-big_a_ipa,0,0,245113683968,"{""name"":""Big A IPA"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Big A IPA has earned its share of praise over the last few years. In 2004 the New York Times named it its top IPA , and in 2007 Mens Journal Magazine included it on its list of 25 best beers in America. The last of each year's edition typically leaves our warehouse around mid-May, and, as always, it doesn't last long. \r\n\r\nStash Wojciechowski, the “Killer Kielbasa,” created this bonafide India Pale Ale recipe exclusively for the Smuttynose Big Beer Series."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,36,1
-titletown_brewing-oktoberfest,0,0,245120106498,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,51,1
-duvel_moortgat,0,0,244633042946,"{""name"":""Duvel Moortgat"",""city"":""Breendonk"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-038-86-71-21"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Breendonkdorp 58""]}",1,62,1
-bridgeport_brewing-old_knucklehead_2003,0,0,244500463616,"{""name"":""Old Knucklehead 2003"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-heavenly_daze_brewery_and_grill-el_rey_cerveza,0,0,244758413312,"{""name"":""El Rey Cerveza"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
-joshua_huddy_s_brew_pub_and_grill-pale_ale,0,0,244758216707,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joshua_huddy_s_brew_pub_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-scottish_newcastle_plc,0,0,244999192576,"{""name"":""Scottish & Newcastle PLC"",""city"":""Edinburgh"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0131)-528-2000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33 Ellersly Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.9465,""lon"":-3.2485}}",1,45,1
-big_buck_brewery,0,0,244378304515,"{""name"":""Big Buck Brewery"",""city"":""Gaylord"",""state"":""Michigan"",""code"":""49735"",""country"":""United States"",""phone"":"""",""website"":""http://www.bigbuck.com/gaylord.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The large dining room provides ample seating with a separate full bar. From choice cuts of aged beef, including a 20-ounce Porterhouse, or a 9-ounce Filet Mignon, menu selections range from fine steaks, chicken, pork and seafood entrees, to a tempting selection of appetizers. Our chef's daily dessert specials complete your dining experience. Join our master brewer for a tour of the operating brewery and taste test our newest brew, or visit our Northwoods inspired gift shop for a selection of unusual gifts. Featuring our glass walled, 15,000 barrel capacity brewery, Big Buck offers 8 signature beers along with seasonal specialty brews sure to please the most discriminating palate. Enjoy dinner or drinks on our deck during the season. Watch your favorite team or make a presentation on one of our many large screen televisions. Our child and adult game rooms are available for your pre or post dining entertainment. With advance notice, special hours and special menus, including breakfast menus, may be arranged!"",""address"":[""550 South Wisconsin Avenue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":45.0223,""lon"":-84.6826}}",1,53,1
-paulaner-hacker_pschorr_weisse_bock,0,0,244992376832,"{""name"":""Hacker-Pschorr Weisse Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,29,1
-snowshoe_brewing_sonora,0,0,245113683969,"{""name"":""Snowshoe Brewing - Sonora"",""city"":""Sonora"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.9841,""lon"":-120.382}}",1,36,1
-top_of_the_hill_restaurant_and_brewery-bitter,0,0,245120172032,"{""name"":""Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-elgood_sons-flag_porter_1825_original,0,0,244633108480,"{""name"":""Flag Porter 1825 Original"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elgood_sons"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,62,1
-brouwerij_de_ranke-xx_bitter,0,0,244500463617,"{""name"":""XX Bitter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-hoffbrau_steaks_brewery_2-windmill_wheat_ale,0,0,244758413313,"{""name"":""Windmill Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,61,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_real_ginger_brew,0,0,244758216708,"{""name"":""Hitachino Nest Real Ginger Brew"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-scuttlebutt_brewing-hefe_weizen,0,0,244999192577,"{""name"":""Hefe Weizen"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-bj_s_restaurant_and_brewery-nutty_brewnette,0,0,244378370048,"{""name"":""Nutty Brewnette"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
-pivovar_hradec_krlov-black_lion_lev_czech_premium_dark_beer,0,0,244992442368,"{""name"":""Black Lion Lev Czech Premium Dark Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_hradec_krlov"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-south_shore_brewery-chocolate_mint_stout,0,0,245113749504,"{""name"":""Chocolate Mint Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-upper_mississippi_brewing,0,0,245120172033,"{""name"":""Upper Mississippi Brewing"",""city"":""Clinton"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8445,""lon"":-90.1887}}",1,51,1
-empyrean_brewing_company-maple_nut_brown,0,0,244633108481,"{""name"":""Maple Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,62,1
-brouwerij_duysters-loterbol,0,0,244500529152,"{""name"":""Loterbol"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_duysters"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-hoppin_frog_brewery-hop_master_s_abbey_belgian_style_double_ipa,0,0,244758413314,"{""name"":""Hop Master's Abbey Belgian-style Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""American hops and Belgian abbey beer flavors intermingle to create a spicy and assertive beer style all their own. Citrusy character from select hops dominate this assertive Double I.P.A., complimented by a unique Belgian flavor to add complexity and ultimate beer satisfaction. The result is a flavor combination that’s a whirlwind of taste sensations."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,61,1
-kulmbacher_mnchshof_bru,0,0,244758216709,"{""name"":""Kulmbacher Mnchshof Bru"",""city"":""Kulmbach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.1077,""lon"":11.453}}",1,60,1
-sierra_leone_brewery-star_beer,0,0,244999258112,"{""name"":""Star Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_leone_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""• Millions of golden bubbles\r\n• Sparkling brightness\r\n• Refreshing taste\r\n• Cascading foam head\r\n• Cold filtered for quality\r\n\r\nhttp://www.slbrewery.com/index.php?option=com_content&task=view&id=18&Itemid=36""}",1,45,1
-blue_cat_brew_pub-wigged_pig_wheat,0,0,244378370049,"{""name"":""Wigged Pig Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
-raccoon_river_brewing-bandit_ipa,0,0,244992507904,"{""name"":""Bandit IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
-st_peter_s_brewery-old_style_porter,0,0,245113749505,"{""name"":""Old-Style Porter"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
-walldorff_brew_pub-padawan_pale_ale,0,0,245751152640,"{""name"":""Padawan Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A mild pleasant ale with lingering hoppy notes."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
-feldschlosschen_ag,0,0,244633108482,"{""name"":""Feldschlößchen AG"",""city"":""Dresden"",""state"":""Sachsen"",""code"":""1189"",""country"":""Germany"",""phone"":"""",""website"":""http://www.feldschloesschen.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cunnersdorfer Str. 25""]}",1,62,1
-brouwerij_van_steenberge-monk_s_cafe,0,0,244500529153,"{""name"":""Monk's Cafe"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""A sweet and sour beer that gets its flavor from mixing old and new ales. An unusual, yet perfect, combination.""}",1,63,1
-jack_s_brewing-hefeweizen,0,0,244758478848,"{""name"":""Hefeweizen"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,61,1
-lakefront_brewery-cream_city_pale_ale,0,0,244758282240,"{""name"":""Cream City Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-sierra_nevada_brewing_co-sierra_nevada_pale_ale,0,0,244999258113,"{""name"":""Sierra Nevada Pale Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nOur most popular beer, Sierra Nevada Pale Ale, is a delightful interpretation of a classic style. It has a deep amber color and an exceptionally full-bodied, complex character. Generous quantities of premium Cascade hops give the Pale Ale its fragrant bouquet and spicy flavor. \r\n\r\n“Sierra Nevada Pale Ale is the flagship beer, the one that made Chico famous. It is a flawless beer that opens with bright, perky high notes of maltiness and orange blossom and segues into a delectable hoppiness.”\r\n\r\n– Elaine Louie, Premier Beer—A Guide to America's Best Bottled Microbrews\r\n \r\n \r\n \r\nGOLD MEDAL WINNER\r\nGreat American Beer Festival (American Pale Ale: 1995, 1994, 1993; \r\nClassic English Pale Ale: 1992; Pale Ale: 1990, 1989, 1987)"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-boddington_s_brewery-pub_ale_draught,0,0,244378370050,"{""name"":""Pub Ale Draught"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boddington_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-rahr_sons_brewing_company-blonde_lager,0,0,244992507905,"{""name"":""Blonde Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It's our very first beer - golden medium-bodied and brewed as a traditional Munich Helles style pale lager. It features a rounded maltiness without being too heavy. And like every proud Texan, it has a good head, is pleaseant but never overly sweet."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-stone_cellar_brewpub_restaurant-stout,0,0,245113749506,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_cellar_brewpub_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-wedge_brewery,0,0,245751218176,"{""name"":""Wedge Brewery"",""city"":""Asheville"",""state"":""NC"",""code"":""28801-3128"",""country"":""United States"",""phone"":""828-505-2792"",""website"":""http://wedgebrewing.com/"",""type"":""brewery"",""updated"":""2011-05-23 10:34:59"",""description"":""The Wedge Brewing Co. is located in the lower level of the Wedge Studios situated in the River Arts District of Asheville, N.C. The building is a classic brick warehouse adjacent to the railroad tracks. The original use of the structure was probably as a food warehouse. The space the brewery is in at onetime stored slaughtered hogs.\n We chose this location because it is in the last frontier of Asheville.\n We chose this specific space because it is a perfect fit for our brewing system and gives\nus great outdoor potential."",""address"":[""125B Roberts St""]}",1,51,1
-firestone_walker_brewing_company-union_jack_india_pale_ale,0,0,244633174016,"{""name"":""Union Jack India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firestone_walker_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The newest member of the Firestone family, Union Jack is the aggressive IPA that you’ve been searching for. Citrus, pineapple, and a full chewy malt profile finish clean on your palate. Over 70 IBUs and 7.5% alcohol by volume, Union Jack won’t have any problem competing with the big India Pale Ales. A beer true to its origins; deeply hopped and bolstered for a long voyage."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,62,1
-browar_zywiec-krakus,0,0,244500529154,"{""name"":""Krakus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_zywiec"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-357,0,0,244369719296,"{""name"":""357"",""city"":"""",""state"":"""",""code"":"""",""country"":"""",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,32,1
-jacob_leinenkugel_brewing_company-auburn_ale,0,0,244758478849,"{""name"":""Auburn Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,61,1
-lancaster_brewing_co-lancaster_limited_triple,0,0,244758282241,"{""name"":""Lancaster Limited Triple"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,60,1
-silverado_brewing,0,0,244999323648,"{""name"":""Silverado Brewing"",""city"":""Saint Helena"",""state"":""California"",""code"":""94574"",""country"":""United States"",""phone"":""1-707-967-9876"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3020 St. Helena Highway North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5243,""lon"":-122.497}}",1,45,1
-boss_browar_witnica_s_a-mocny_boss_boss_beer,0,0,244378435584,"{""name"":""Mocny BOSS / BOSS Beer"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boss_browar_witnica_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
-red_star_brewery_grille-greensburg_lager,0,0,244992507906,"{""name"":""Greensburg Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-taylor_s_crossing_brewing-mad_scow_stout,0,0,245113749507,"{""name"":""Mad Scow Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-weinkeller_brewery_berwyn-kristall_weiss,0,0,245751218177,"{""name"":""Kristall Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
-fish_brewing_company_fish_tail_brewpub-light,0,0,244633174017,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-budjovick_mansk_pivovar-samson_crystal_lager_beer,0,0,244500594688,"{""name"":""Samson Crystal Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""budjovick_mansk_pivovar"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-512_brewing_company-512_wit,0,0,244369784832,"{""name"":""(512) Wit"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Made in the style of the Belgian wheat beers that are so refreshing, (512) Wit is a hazy ale spiced with coriander and domestic grapefruit peel. 50% US Organic 2-row malted barley and 50% US unmalted wheat and oats make this a light, crisp ale well suited for any occasion."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
-jobber_s_canyon_restaurant_brewery-oktoberfest,0,0,244758478850,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jobber_s_canyon_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
-legacy_brewing_co-hedonism_ale,0,0,244758282242,"{""name"":""Hedonism Ale"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Wickedly tasty red ale packed with a full aroma from dry hopping and a massive hop flavor. Specially brewed with all European malts and West Coast whole flower hops. The result is a rich ruby red color; lacy collar and a feast of hop aroma and flavor."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,60,1
-sonoran_brewing_company-burning_bird_pale_ale,0,0,245117288448,"{""name"":""Burning Bird Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sonoran_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Burning Bird is our representation of the Phoenix, our city’s namesake, a mythical bird which lived 500 years, consumed itself by fire, then was reborn from its ashes. Like the phoenix of old, this pale ale is reborn from the time when fabulous hoppy brews were more than mere myths."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
-boulder_beer_company-never_summer_ale,0,0,244378435585,"{""name"":""Never Summer Ale"",""abv"":5.94,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,53,1
-redhook_ale_brewery-sunrye,0,0,244992507907,"{""name"":""SunRye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-the_livery-bourbon_barrel_aged_cousin_jax,0,0,245113815040,"{""name"":""Bourbon Barrel Aged Cousin Jax"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \""Cousin Jack\"" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,36,1
-flyers_restraunt_and_brewery-catalina_common_lager,0,0,244633174018,"{""name"":""Catalina Common Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This copper colored lager is brewed with hybrid yeast that ferments at warmer temps, giving that clean refreshing taste of a lager with the slight fruitiness of an ale."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
-burton_bridge_brewery,0,0,244500594689,"{""name"":""Burton Bridge Brewery"",""city"":""Burton-upon-Trent"",""state"":""Staffordshire"",""code"":""DE14 1SY"",""country"":""United Kingdom"",""phone"":""44-(01283)-510573"",""website"":""http://www.burtonbridgebrewery.co.uk/Index.shtml"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bridge Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.8065,""lon"":-1.6225}}",1,63,1
-aksarben_brewing_bop,0,0,244369850368,"{""name"":""Aksarben Brewing (BOP)"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68130"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This brewery is closed."",""address"":[""11337 Davenport St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2603,""lon"":-96.0903}}",1,32,1
-jolly_pumpkin_artisan_ales-e_s_bam,0,0,244758478851,"{""name"":""E.S. Bam"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An Extra Special Farmhouse Ale. A Bam celebration of excess. More malt, more hops, same vivacious personality."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,61,1
-lift_bridge_brewery-biscotti,0,0,244758282243,"{""name"":""Biscotti"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We drew inspiration from Steve’s Grandmother’s holiday biscotti recipe to create this one of a kind brew. By utilizing an array of malts, oats, wheat, pure local honey, light European hops and delicately spicing with Grains of Paradise, Madagascar vanilla beans, whole star anise, all brought together with traditional Belgian yeast, the result is a cloudy, deep copper colored, complex experience. This delight to the senses should be served in a 12 ounce footed glass and allowed to warm to 50 degrees to fully gather the malt and spice spectrum."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,60,1
-south_australian_brewing-old_australia_stout,0,0,245117353984,"{""name"":""Old Australia Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_australian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-boulder_beer_company,0,0,244378435586,"{""name"":""Boulder Beer Company"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80301"",""country"":""United States"",""phone"":""1-303-444-8448"",""website"":""http://boulderbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2880 Wilderness Place""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0267,""lon"":-105.248}}",1,53,1
-river_horse_brewing_company-tripel_horse,0,0,244992573440,"{""name"":""Tripel Horse"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Notice a unique aromatic nose with a hint of vanilla esters, which comes from the Belgian ale yeast. Tripel Horse has a big body and rich mouth feel and finishes mostly dry with only a touch of sweetness. If you shy from some of the sweeter Belgian ales, we think you will enjoy this one. The palate improves with age, so keep some on hand and you can ride Tripel Horse down a new path with each opened bottle."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,29,1
-titletown_brewing-winter_gale_spiced_ale,0,0,245113815041,"{""name"":""Winter Gale Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-flying_fish_brewing_company,0,0,244633239552,"{""name"":""Flying Fish Brewing Company"",""city"":""Cherry Hill"",""state"":""New Jersey"",""code"":""8003"",""country"":""United States"",""phone"":""(856) 489-0061"",""website"":""http://www.flyingfish.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""When Gene Muller founded Flying Fish Brewing Co. in 1995, he did so first on the World Wide Web - making it the world's first virtual microbrewery. That early Web site helped generate positive press coverage and helped attract the investors needed to make the virtual brewery a real one. Muller said the idea was to make the Web site This Old House meets the World Wide Web�letting people go behind the taps and see the thousands of details needed to put a microbrewery together. He also wanted to give beer lovers a chance, via their computers, to roll up their cyber-sleeves and help build the brewery. The site let beer lovers help select and name beers, design t-shirts and labels, volunteer to be a taste-tester and even apply for a job as a brewer. Visitors to the Web site can sign up for FlyingFishMail a monthly e-mail newsletter which now boasts more than 12,000 subscribers. Muller, who got into the brewing field to become a brewer, trained at Chicago's Siebel Institute of Technology, America's oldest brewing school. He quickly realized someone was going to have to run the day-to-day business of the brewery and now serves as President and Head Janitor (though not necessarily in that order). Flying Fish Brewing Company is located in Cherry Hill, New Jersey, approximately seven miles east of Philadelphia. In a state that once boasted 50 breweries, it is the first microbrewery in Southern New Jersey and the first new brewery built in that part of the state in more than half a century. From its opening in late 1996, Flying Fish has tripled its capacity and become the largest of the approximately 20 craft breweries in the state. Head brewer Casey Hughes now produces four full-time styles, as well as a variety of seasonal beers. The key word to describe all Flying Fish beers is balance. The beers are full-flavored, yet highly drinkable. Flavors harmonize, not fight for individual attention. Hopping is generous, but to style. Seeing beer as equal to, if not superior to, wine, Flying Fish beers are designed to complement food. Because of this effort, one can walk into any fine restaurant in the Philadelphia region and be pretty sure of finding a Flying Fish beer available. Flying Fish beers were the first in the region to be featured at the Great British Beer Festival, Oregon Brewers Festival and Canada's Biere de Mondial Festival. They have also won several medals at the Real Ale Festival in Chicago, the World Beer Championships and is the only New Jersey brewery featured in the 2000 book Best American Beers."",""address"":[""1940 Olney Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9121,""lon"":-74.9701}}",1,62,1
-caldera_brewing-dry_hop_red,0,0,244500594690,"{""name"":""Dry Hop Red"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A red ale dry hopped with three different hop varieties.""}",1,63,1
-alaskan_brewing-alaskan_amber,0,0,244369850369,"{""name"":""Alaskan Amber"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Alt. The name of this beer style comes from the German word \""alt\"" meaning \""old\"". This refers to the aging that alts undergo since they ferment more slowly and at colder temperatures than most ales. Slow fermentation helps condition the flavors in Alaskan Amber, contributing to its overall balance and smoothness.\r\n\r\nRichly malty and long on the palate, with just enough hop backing to make this beautiful amber colored \""alt\"" style beer notably well balanced.\r\n\r\nAlaskan Amber is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches of rainfall we receive each year."",""style"":""Old Ale"",""category"":""British Ale""}",1,32,1
-jolly_pumpkin_artisan_ales-luciernaga,0,0,244758544384,"{""name"":""Luciérnaga"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisan pale ale brewed in the Grand Cru tradition. Enjoy its golden effervescence and gentle hop aroma. Coriander and Grains of Paradise round out the spicy palate, melting o so softly into a silken finish of hoppiness and bliss! Make any season a celebration!"",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,61,1
-mad_river_brewing-jamaica_brand_red_ale,0,0,244881555456,"{""name"":""Jamaica Brand Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-st_stan_s_brewing_co,0,0,245117353985,"{""name"":""St. Stan's Brewing Co."",""city"":""Modesto"",""state"":""California"",""code"":""95354"",""country"":""United States"",""phone"":""1-209-606-2739"",""website"":""http://www.ststans.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""821 L Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.6417,""lon"":-121.004}}",1,45,1
-boulevard_brewing_company-boulevard_dry_stout,0,0,244378501120,"{""name"":""Boulevard Dry Stout"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Velvety black and perfectly opaque, our bottled Dry Stout is the somewhat livelier companion to our popular draught version of this enduring style. This surprisingly smooth, drinkable beer is a delightful harmony of smoky roasted flavors and tangy, coffee-like notes."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
-river_west_brewing-marzen,0,0,244992573441,"{""name"":""Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,29,1
-trap_rock_restaurant_and_brewery-octoberfest,0,0,245113815042,"{""name"":""Octoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
-foothills_brewing_company,0,0,244633305088,"{""name"":""Foothills Brewing Company"",""city"":""Winston-Salem"",""state"":""North Carolina"",""code"":""27101"",""country"":""United States"",""phone"":""(336) 777-3348"",""website"":""http://www.foothillsbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""638 W. 4th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.0973,""lon"":-80.2509}}",1,62,1
-capital_brewery-capital_fest_beer,0,0,244500660224,"{""name"":""Capital Fest Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,63,1
-alaus_darykla_kalnapilis,0,0,244369850370,"{""name"":""Alaus Darykla Kalnapilis"",""city"":""Panevys"",""state"":"""",""code"":"""",""country"":""Lithuania"",""phone"":""370-45-505223"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Taikos aleja 1""]}",1,32,1
-jt_whitney_s_brewpub_and_eatery-koln_kolsch,0,0,244758544385,"{""name"":""Köln Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-magic_hat-chaotic_chemistry,0,0,244881555457,"{""name"":""Chaotic Chemistry"",""abv"":10.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Aged Barleywine Ale infused with the copper glow of more than 1,000 setting suns. This exceptional offering has infinite body... a big, sweet malty tumult followed by a long, balanced, hop symphony."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,60,1
-stevens_point_brewery-spring_bock,0,0,245117353986,"{""name"":""Spring Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
-brasserie_d_orval-orval_trappist_ale,0,0,244378566656,"{""name"":""Orval Trappist Ale"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_orval"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,53,1
-rock_art_brewery-rock_art_american_red_ale,0,0,244992573442,"{""name"":""Rock Art American Red Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The unofficial name for this beer is “Super Glide”. Malty rich with a hint of spicy hops and roasted grains. This beer is one smooth ride with a clean finish! We brewed this one with American Pale, oats, flaked barley, black, chocolate, red malt, melandolin malt. American hops include Magnum, Centennial, Liberty and Crystal. Enjoy!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
-troegs_brewing-troegs_splinter_beer_gold,0,0,245113815043,"{""name"":""Tröegs Splinter Beer Gold"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The transformation of Scratch #3-2007 to Splinter Gold has been a slow rest in oak wine barrels dosed with brettanomyces. During a two-year aging period the horsy flavors of the brett combined with the Westmalle yeast used during primary fermentation to create a complex blend of flavors. Bone-dry and 12% abv, Splinter Gold is highly carbonated."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,36,1
-fordham_brewing-copper_head_ale,0,0,244633305089,"{""name"":""Copper Head Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fordham_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
-captain_lawrence_brewing_company-brown_bird_brown_ale,0,0,244500660225,"{""name"":""Brown Bird Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after the little birds that fly by the brewery looking for grain after the weather turns cold, this was originally to be a Fall/Winter seasonal. Clearly we underestimated the market for this smooth and malty brown ale, and we have decided to keep it for year round enjoyment."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
-alesmith_brewing-speedway_stout,0,0,244369915904,"{""name"":""Speedway Stout"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A HUGE Imperial Stout that weighs in at an impressive 12% ABV! As if that's not enough, we added pounds of coffee for a little extra kick. Our special-edition Brewer's Reserve Speedway Stout, which is aged in Bourbon barrels, has been rated the #1 BEST BEER IN THE WORLD at ratebeer.com. It was also featured on CNBC's \""Squawk Box\"" in a segment on the best dark beers in America."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,32,1
-jt_whitney_s_brewpub_and_eatery-mad_badger_barley_wine,0,0,244758609920,"{""name"":""Mad Badger Barley Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-main_street_alehouse,0,0,244881555458,"{""name"":""Main Street Alehouse"",""city"":""Gresham"",""state"":""Oregon"",""code"":""97030"",""country"":""United States"",""phone"":""1-503-669-0569"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""333 North Main Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.5001,""lon"":-122.431}}",1,60,1
-stone_brewing_co-old_guardian_barley_wine_2003,0,0,245117419520,"{""name"":""Old Guardian Barley Wine 2003"",""abv"":9.91,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-brasserie_de_l_abbaye_des_rocs-blanche_double,0,0,244378566657,"{""name"":""Blanche Double"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-rogue_ales-chipotle_ale,0,0,244992638976,"{""name"":""Chipotle Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Dedicated to Spanish author Juan de la Cueva, who, in 1575, wrote of a an dish that combined seedless chipotles with beer: Chipotle Ale is based on Rogues American Amber Ale, but delicately spiced with smoked jalapeno (chipotle) chile peppers. Deep amber in color with a tight head, rich malty aroma, delicately smooth and crisp flavor, and subtle chipotle chili finish. Chipotle Ale is created from Northwest Harrington, Klages, and Maier Munich Malts; Willamette and Cascade hops; and Chipolte (smoked jalapeno) Peppers. Available in a 22-ounce (12/case), 12-ounce (24 loose/case) screened bottles, and on draft. Blend it with Rogue Chocolate Stout and create a Mole black and tan!""}",1,29,1
-tyranena_brewing-fighting_finches_bock,0,0,245113880576,"{""name"":""Fighting Finches Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Finches will get you if you don’t watch out!\"" In the early days of southern Wisconsin, falling into the clutches of the \""Fighting Finches\"" was the ultimate threat. Moses Finch fathered 21 offspring whose most notable talents were stealing horses and robbing stagecoaches. From their stronghold in the impenetrable marshes west of Lake Mills, the Finches raided the farms of local settlers and held up the early travelers between Madison and Milwaukee.\r\n\r\nThe Finches are long gone, but their legend lives on. So enjoy a pint of our Fighting Finches Bock… or you better watch out, ‘cause the Finches are gonna get you!"",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,36,1
-greene_king-olde_suffolk,0,0,244758806528,"{""name"":""Olde Suffolk"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,62,1
-carlsberg_bryggerierne-47_bryg,0,0,244500660226,"{""name"":""47 Bryg"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_bryggerierne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
-america_s_brewing-sweeney_stout,0,0,244369981440,"{""name"":""Sweeney Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-keg_microbrewery_restaurant-stout,0,0,244758609921,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
-manayunk_brewery_and_restaurant-bohemian_blonde,0,0,244881620992,"{""name"":""Bohemian Blonde"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer – pale blonde in color with a crisp, softly sweet malt flavor, smooth finish and very subtle bitterness. Went to the final judging table at the GABF alongwith the Mega Breweries last year!"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,60,1
-stroh_brewery_company,0,0,245117419521,"{""name"":""Stroh Brewery Company"",""city"":""Tampa"",""state"":""Florida"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":27.9494,""lon"":-82.4651}}",1,45,1
-brauerei_reissdorf-kolsch,0,0,244496728064,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_reissdorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-rogue_ales-rogue_smoke,0,0,244992638977,"{""name"":""Rogue Smoke"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Rogue Smoke(previously known as Welkommen on draft) is a German style Rauchbier (Smoke Beer), which was inspired by the Fall of the Berlin Wall. Most rauch brews are bottom fermented, however Rogue Smoke, is top fermented. It is orange-amber in hue with a delicate smoke aroma and flavor with an intense hop finish.\r\n\r\nIn All About Beer, August, 1995 issue, Christopher Brooks writes \""Alder wood, indigenous to the Northwest, is the smoking agent, though a small amount of Bamberg malt is used in the mash, too. Beech is drier than alder, reports brewmaster John Maier, so we use a little of that for added complexity. Welkommen, a smoky, nutty ale, is also very dry, which given the 15 pounds of hops (perle and Saaz) added to each 15-barrel batch, is no surprise.\"" The seven medals in nine years which Rogue Smoke won at theGreat American Beer Festival in Denver are also a tribute to this unusual brew.\r\n\r\nRogue Smoke is brewed with Great Western Harrington, Klages, Munich, Hugh Baird Crystal, Carastan (30-37 and 13-17), Chucks Alderwood Smoked Munich and Bamberg Beechwood Smoked malts; plus Perle and Saaz hops. Rogue Smoke is available in the classic 22-ounce seriograph bottle (replacing the older 7 ounce bottle) and on draft.""}",1,29,1
-umpqua_brewing-no_doubt_stout,0,0,245113880577,"{""name"":""No Doubt Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""umpqua_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-greenshields_brewery_and_pub-pilsner,0,0,244758806529,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-chimay_abbaye_notre_dame_de_scourmont-chimay_doree,0,0,244500725760,"{""name"":""Chimay Dorée"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed from very similar ingredients as the Red, but paler and spiced differently. It is intended only to be drunk at the abbey or at the nearby inn Auberge de Poteaupré which is associated with the abbey. The monks themselves drink this variety rather than the stronger three. The Dorée is not sold commercially and the rare bottles which make their way out are through unofficial sources. Even the brewery's own web site makes no mention of this variety."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,63,1
-anderson_valley_brewing-boont_amber_ale,0,0,244369981441,"{""name"":""Boont Amber Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
-kostritzer_schwarzbierbrauerei-oktoberfest,0,0,244758675456,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kostritzer_schwarzbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
-mendocino_brewing_saratoga_springs-white_ale,0,0,244881620993,"{""name"":""White Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_saratoga_springs"",""updated"":""2010-07-22 20:00:20"",""description"":""This Limited Edition unfiltered Belgian Style Ale, brewed with premium unmatted wheat has a crisp & refreshing flavor. This thirst quenching ale has a blend of sweet orange peel, a subtle hint of coriander and a delicate twist of lemon."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,60,1
-sweet_water_tavern_and_brewery,0,0,245117419522,"{""name"":""Sweet Water Tavern and Brewery"",""city"":""Sterling"",""state"":""Virginia"",""code"":""20121"",""country"":""United States"",""phone"":""(703) 449-1108"",""website"":""http://www.greatamericanrestaurants.com/sweetMainSter/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""45980 Waterview Plaza""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.0324,""lon"":-77.4097}}",1,45,1
-brauerei_spezial-rauchbier_lager,0,0,244496793600,"{""name"":""Rauchbier Lager"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-saint_louis_brewery_schlafy_tap_room-schlafly_tripel,0,0,244992704512,"{""name"":""Schlafly Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-union_barrel_works-union_barrel_works_lager,0,0,245113946112,"{""name"":""Union Barrel Works Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Dortmunder style lager with full body and deep golden color. Brewed using four specialty malts with moderate hopping for a smooth clean flavor and aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
-grolsche_bierbrouwerij-grolsch_amber_ale,0,0,244758872064,"{""name"":""Grolsch Amber Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,62,1
-cooperstown_brewing_company-nine_men_ale,0,0,244500725761,"{""name"":""Nine Men Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Nine Man\"" is a golden ale, brewed from English pale and crystal malts, and with torrified wheat. It is bittered with Cascade and Cluster hops and finished with Cascade hops. \""Nine Man Ale\"" was first brewed as a summer seasonal beer in 1996. It was kegged the first season but not bottled until the opening of the baseball season in April 1997."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,63,1
-appalachian_brewing_company-jolly_scot_scottish_ale,0,0,244369981442,"{""name"":""Jolly Scot Scottish Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This flavorful sweet ale has a smooth malt finish balanced against a light hop flavor. This beer is very quaffable and has become a brewpub favorite throughout the United States. \r\n\""Jolly Scot\"" was a famed local beer produced by R.H. Graupners Brewery that was located at 10th and Market – one block from our brewery."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,32,1
-krogh_s_restaurant_and_brewpub-packs_a_punch_porter,0,0,244758675457,"{""name"":""Packs A Punch Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,61,1
-mendocino_brewing_saratoga_springs,0,0,244881686528,"{""name"":""Mendocino Brewing - Saratoga Springs"",""city"":""Saratoga Springs"",""state"":""New York"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.mendobrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0831,""lon"":-73.7846}}",1,60,1
-sweetwater_brewing_casper-surefire_stout,0,0,245117485056,"{""name"":""Surefire Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_casper"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
-brauhaus_johann_albrecht_konstanz-kupfer,0,0,244496793601,"{""name"":""Kupfer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
-saint_somewhere_brewing_company-saison_athene,0,0,244992704513,"{""name"":""Saison Athene"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_somewhere_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A bottle conditioned Saison with a spicy and moderately hoppy profile true to the traditions of the farmhouse ales of Wallonia.\r\n\r\n A spiced saison with chamomile, rosemary and black pepper."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,29,1
-upstream_brewing_old_market-old_market_stout,0,0,245113946113,"{""name"":""Old Market Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-grupo_modelo-negra_modelo,0,0,244758872065,"{""name"":""Negra Modelo"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":""Negra Modelo has long been the dark beer alternative for Mexican beer drinkers. It has been identified as one of the few surviving examples of Vienna style lager - a style that was largely replaced in European breweries with Oktoberfest, a slightly lighter lager, in the early twentieth century. \r\nNegra Modelo pours with an off-white, medium head. The body is clear with a rich amber/copper color. The aroma is sweet with hints of apple. The impression at the first sip is sweet. This gives way only a bit to some hops bitterness which gives some balance but leaves the beer firmly in the sweet category. It has no real lager snap at the end, just lingering hops. This actually makes the second sip more balanced than the first.\r\n\r\nThere is some complexity and depth here but the flavors are very delicate. They are obliterated by the aggressive flavors of the Mexican food that Modelo is often served with making it a sweet balance to the savory and sometimes hot cuisine."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
-copper_kettle_brewery-celebration_wheat,0,0,244500725762,"{""name"":""Celebration Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A nice traditional cloudy wheat beer. It is light in color with a banana and yeasty fragrance. This would go nice on a hot summer day or anytime you want a refreshing drink."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,63,1
-appleton_brewing-adler_brau_winter_ale,0,0,244369981443,"{""name"":""Adler Bräu Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,32,1
-kulmbacher_brauerei_ag-monchshof_original_pils,0,0,244758740992,"{""name"":""Mönchshof Original Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-moosejaw_pizza_dells_brewing_company-oktoberfest,0,0,244881686529,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,60,1
-taylor_s_restaurant_and_brewery-nut_brown,0,0,245117485057,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
-brauhaus_johann_albrecht_konstanz-messing,0,0,244496859136,"{""name"":""Messing"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-schooner_brewery,0,0,244992704514,"{""name"":""Schooner Brewery"",""city"":""Dallas"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.803,""lon"":-96.7699}}",1,29,1
-wachusetts_brewing_company-wachusetts_ipa,0,0,245748858880,"{""name"":""Wachusetts IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wachusetts_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Nice Hoppy IPA - available in MA & NY only"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
-harbor_city_brewing,0,0,244758937600,"{""name"":""Harbor City Brewing"",""city"":""Port Washington"",""state"":""Wisconsin"",""code"":""53074"",""country"":""United States"",""phone"":""1-262-284-3118"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""535 West Grand Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.3871,""lon"":-87.8795}}",1,62,1
-daas,0,0,244500791296,"{""name"":""Daas"",""city"":""Tournai"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":""442032865958"",""website"":""http://www.daasbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Daas beers are organically brewed Belgium beer produced in Hainaut the famous Belgian province known for its fine hand crafted beers."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.6059,""lon"":3.3884}}",1,63,1
-barley_brothers_brewery_and_grill-kickstart_oatmeal_stout,0,0,244370046976,"{""name"":""Kickstart Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-aksarben_brewing_bop-bavarian_bock,0,0,244366180352,"{""name"":""Bavarian Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
-lancaster_brewing_co-celtic_rose,0,0,244758740993,"{""name"":""Celtic Rose"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our version of the traditional Irish Amber Ale. This beer combines the richness of German and Austrian malts with the delicate and spicy British hops for a taste worthy of the Red Rose City."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
-moylan_s_brewery_restaurant-white_christmas,0,0,244881752064,"{""name"":""White Christmas"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-tied_house_cafe_brewery_san_jose-new_world_wheat,0,0,245117485058,"{""name"":""New World Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-brewpub_on_the_green-independence_ale,0,0,244496859137,"{""name"":""Independence Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewpub_on_the_green"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-shipyard_brewing_portland-pugsley_s_signature_series_xxxx_ipa,0,0,244992770048,"{""name"":""Pugsley's Signature Series XXXX IPA"",""abv"":9.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""XXXX IPA is a non-traditional American IPA with a brilliant copper color and the classic citrus nose of Cascade hops. This beer demonstrates a unique balance of malt-inspired, delicate red grapefruit sweetness and lingering hop dryness. The OG and final ABV provide the structure and body to balance the harmony of distinct flavours. Cascade, Warrior, Summit and Glacier Hops are used for bittering and Cascade Hops are added for dry hopping after fermentation. This hop blend is well balanced with Malted Wheat, Pale Ale, Crystal, and Caramalt Malts. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit. This beer pairs well with Cajun dishes, blackened fish, and BBQ. XXXX draws its name from the British brewing convention of using X’s to denote style. 70 BU’s, 1.092 OG, 9.25% ABV."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,29,1
-weyerbacher_brewing_company-house_ale,0,0,245748924416,"{""name"":""House Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""House Ale, our 4.5% session ale, was first brewed in 2006. Our goal was to brew a beer that was a little bit lower in alcohol, but did not lack for body and flavor. We're sure you'll agree, that's just what we achieved with this tasty brew. Brewed with Pale, Caramunich, and Carapils malt for flavor and body, then hopped exclusively with expensive Tettnang hops, a very delicate, delicious hops that perfectly fits this beer with just the right snap of flavor. Available only in Pennsylvania, in our Variety Pack Case."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
-hook_ladder_brewing_company,0,0,244758937601,"{""name"":""Hook & Ladder Brewing Company"",""city"":""Silver Spring"",""state"":""Maryland"",""code"":""20910"",""country"":""United States"",""phone"":""301.565.4522"",""website"":""http://www.hookandladderbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Hook & Ladder Brewing we believe in great beer in the company of good friends, so we bring you three great beers for your drinking pleasure (please drink responsibly). Each of our beers is carefully crafted with the finest quality ingredients for a distinctive taste we know you will enjoy. Try one tonight, you just might get hooked. Through our own experiences in the fire and rescue service we have chosen the Hook & Ladder as a symbol of pride and honor to pay tribute to the brave men and women who serve and protect our communities."",""address"":[""8113 Fenton St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9911,""lon"":-77.0237}}",1,62,1
-denmark_brewing-valhalla_ale,0,0,244633305088,"{""name"":""Valhalla Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denmark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-big_buck_brewery_and_steakhouse_2,0,0,244370046977,"{""name"":""Big Buck Brewery and Steakhouse #2"",""city"":""Grand Rapids"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.9634,""lon"":-85.6681}}",1,32,1
-aksarben_brewing_bop-witbier,0,0,244366180353,"{""name"":""Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-legends_brewhouse_eatery_of_green_bay-light,0,0,244758740994,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legends_brewhouse_eatery_of_green_bay"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-nodding_head_brewpub-3c_extreme,0,0,244881752065,"{""name"":""3C Extreme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-tunner_s_guild_brewing_systems-rock_river_lager_beer,0,0,245117485059,"{""name"":""Rock River Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
-brouwerij_de_achelse_kluis-trappist_blond,0,0,244496859138,"{""name"":""Trappist Blond"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-sierra_nevada_brewing_co-dark_wheat,0,0,244992770049,"{""name"":""Dark Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-wild_river_brewing_and_pizza_cave_junction-esb,0,0,245748989952,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
-hoppin_frog_brewery-smashing_berry_ale,0,0,244759003136,"{""name"":""Smashing Berry Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An abundance of fresh, natural fruit flavor makes this beer something special. You would think we picked the fruit moments before brewing."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,62,1
-deschutes_brewery-jubel_2000,0,0,244633370624,"{""name"":""Jubel 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,63,1
-big_dog_s_brewing_company-black_lab_stout,0,0,244370112512,"{""name"":""Black Lab Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_dog_s_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-amherst_brewing_company-puffers_smoked_porter,0,0,244366245888,"{""name"":""Puffers Smoked Porter"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, full bodied ale with a prominent smoked malt flavor"",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-lowenbrau_brauerei-original,0,0,244881883136,"{""name"":""Original"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-o_grady_s_brewery_and_pub_1-haymarket_pilsner,0,0,244881817600,"{""name"":""Haymarket Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
-tunner_s_guild_brewing_systems,0,0,245117550592,"{""name"":""Tunner's Guild Brewing Systems"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.9442,""lon"":-93.0861}}",1,45,1
-bullfrog_brewery-billtown_blonde,0,0,244496924672,"{""name"":""Billtown Blonde"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This lightly colored ale has a delicate floral aroma and flavor reminiscent of Williamsports first breweries, clean and crisp with just a touch of lingering sweetness leading to a dry, balanced finish.""}",1,53,1
-spaten_franziskaner_brau-munchner_hell_premium_lager,0,0,245110538240,"{""name"":""Münchner Hell / Premium Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
-wynkoop_brewing-sagebrush_stout,0,0,245748989953,"{""name"":""Sagebrush Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark, deeply roasted and full-bodied ale. Rich with kisses of chocolate, coffee and oats, it's a glorious version of an American-style stout. A longtime house favorite."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
-jj_bitting_brewing-hop_garden_pale_ale,0,0,244759003137,"{""name"":""Hop Garden Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-devil_mountain_brewing-5_malt_ale,0,0,244633370625,"{""name"":""5 Malt Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""devil_mountain_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
-birra_moretti,0,0,244370112513,"{""name"":""Birra Moretti"",""city"":""Udine"",""state"":"""",""code"":"""",""country"":""Italy"",""phone"":""39-800-1859.00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Viale Venezia 9""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.0597,""lon"":13.2269}}",1,32,1
-anderson_valley_brewing-hop_ottin_ipa,0,0,244366311424,"{""name"":""Hop Ottin IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hop Ottin' IPA is as hoppy as they come. The name means \""hard working hops,\"" in Boontling, and that tells it all. Generous additions of high-alpha Pacific Northwest hops added during a vigorous boil, plus traditional dry hopping, with whole hop cones, give this ale a delicious citrus aroma, and an intense hoppy bite. This IPA is a hop lover's dream."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,24,1
-magic_hat-feast_of_fools,0,0,244881948672,"{""name"":""Feast of Fools"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Holiday Offering\r\nIn pre-christian times, the Celebration of darkness and light was marked with great halls filled with smoke & mirrors. Guilded goblets brimming with seasonal brews were lifted to lips, speaking a language no longer known. \r\nCenturies pass.\r\n\r\nThe winter wind finds its way through heavy wood doors. There is a solemn business of monks to be done. But also brewing, a season of celebration is about to begin....\r\nMore years pass.\r\nThe modern age. \r\nThe present connects the past through the brewer's art and a new beer is born.\r\nFeast of Fools... \r\nA perfect dessert beer brewed exclusively for the holiday season. Hand bottled, champagne corked. \r\nOur inky, rich, black stout, with the addition of raspberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
-oak_creek_brewery-village_nut_brown_ale,0,0,244881817601,"{""name"":""Village Nut Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
-upper_mississippi_brewing-hefeweizen,0,0,245117550593,"{""name"":""Hefeweizen"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,45,1
-callahan_s_pub_and_brewery-mesa_pale_ale,0,0,244496924673,"{""name"":""Mesa Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""callahan_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-sprecher_brewing-winter_brew,0,0,245110669312,"{""name"":""Winter Brew"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A flavorful blend of dark roasted and sweet caramel malts defines this smooth and robust lager. The rich, nourishing flavors of a full-bodied Munich bock make this Bavarian-style brew perfect for those long winter nights."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,29,1
-yards_brewing-yards_brawler,0,0,245748989954,"{""name"":""Yards Brawler"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Boasting superior taste and champion flavor, the Brawler is crafted in the style of English session ales. This malt-forward, ruby colored ale is great for when you want to go a few rounds."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,36,1
-keesmann_bru,0,0,244759003138,"{""name"":""Keesmann Bru"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-26646"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wunderburg 5""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8904,""lon"":10.9056}}",1,62,1
-diebels_privatbrauerei-alt,0,0,244633436160,"{""name"":""Alt"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diebels_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
-bj_s_restaurant_and_brewery-harvest_hefeweizen,0,0,244370178048,"{""name"":""Harvest Hefeweizen"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
-appalachian_brewing_company-batch_666,0,0,244366311425,"{""name"":""Batch 666"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,24,1
-maritime_pacific_brewing-portage_bay_pilsener,0,0,244882014208,"{""name"":""Portage Bay Pilsener"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-pacific_beach_brewhouse-over_the_line_stout,0,0,244881883136,"{""name"":""Over The Line Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,60,1
-upstream_brewing_old_market-irish_red,0,0,245117550594,"{""name"":""Irish Red"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-cedar_brewing-flying_aces_ale,0,0,244496990208,"{""name"":""Flying Aces Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-standing_stone_brewing_company-standing_stone_india_pale_ale,0,0,245110669313,"{""name"":""Standing Stone India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This unfiltered ale retains a medium maltiness and body and features a flowery hop perfume and pleasant bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
-yuengling_son_brewing,0,0,245749055488,"{""name"":""Yuengling & Son Brewing"",""city"":""Pottsville"",""state"":""Pennsylvania"",""code"":""17901"",""country"":""United States"",""phone"":""570-622-0153"",""website"":""http://www.yuengling.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""310 Mill Creek Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7,""lon"":-76.1747}}",1,36,1
-king_and_barnes-worthington_white_shield,0,0,244759068672,"{""name"":""Worthington White Shield"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""king_and_barnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-duck_rabbit_craft_brewery-duck_rabbit_porter,0,0,244633436161,"{""name"":""Duck-Rabbit Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Duck-Rabbit Porter is very dark in color. This robust porter features a pronounced flavor of roasted grains reminiscent of dark chocolate. Also, Paul and Brandon add oats to the grist to give a subtle round silkiness to the mouthfeel. We’re confident that you’re really going to love this yummy porter!"",""style"":""Porter"",""category"":""Irish Ale""}",1,63,1
-black_sheep_brewery-ale,0,0,244370178049,"{""name"":""Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_sheep_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-appleton_brewing-adler_brau_doppel_bock_beer,0,0,244366311426,"{""name"":""Adler Bräu Doppel Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
-mckenzie_brew_house,0,0,244882014209,"{""name"":""McKenzie Brew House"",""city"":""Glen Mills"",""state"":""Pennsylvania"",""code"":""19342"",""country"":""United States"",""phone"":""1-610-361-9800"",""website"":""http://www.mckenziebrewhouse.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""451 Wilmington-West Chester Pike""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.8658,""lon"":-75.5442}}",1,61,1
-paulaner-paulaner_oktoberfest,0,0,245005680640,"{""name"":""Paulaner Oktoberfest"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""Paulaner Oktoberfestbier is festive, full-flavoured and ultra delicious, and is brewed specially for the most famous festival in the world. Every year, more than one million liters are served at the Oktoberfest. You can create your own \""beer tent atmosphere\"" at home with this golden yellow, mildly hoppy seasonal speciality - but only between July and October.\r\n\r\nOktoberfest Bier:\r\n13.7% original wort; 6.0% alcohol; 50 kcal/100 ml"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,60,1
-valley_brewing_company,0,0,245117616128,"{""name"":""Valley Brewing Company"",""city"":""Stockton"",""state"":""California"",""code"":""95204"",""country"":""United States"",""phone"":""(209) 464-2739"",""website"":""http://www.valleybrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1950 W. Fremont St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.9551,""lon"":-121.322}}",1,45,1
-central_city_brewing_company-red_racer_india_pale_ale,0,0,244496990209,"{""name"":""Red Racer India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,53,1
-stoudt_s_brewery-scarlet_lady_ale,0,0,245110669314,"{""name"":""Scarlet Lady Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This English-style ale is brewed with Marris Otter and Caramel malts for a rich, reddish-copper color and smooth malty palate. The use of bittering and aroma addition hops balances the regal, sweet maltiness and imparts a softly perfumed aroma"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,29,1
-lancaster_brewing_co-amish_four_grain,0,0,244759068673,"{""name"":""Amish Four Grain"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our multi-grain pale ale summons the sweetness of oats, the complexity of rye and the smoothness of malted wheat, balanced by a generous dry-hopping of imported, noble Saaz hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-eastern_shore_brewing,0,0,244633436162,"{""name"":""Eastern Shore Brewing"",""city"":""St Michaels"",""state"":""Maryland"",""code"":""21663"",""country"":""United States"",""phone"":""410.745.8010"",""website"":""http://www.easternshorebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Offering beers for every taste including: St. Michaels Blonde Ale, St. Michaels LT, Not So Pale Ale and seasonal beers...Ameri-Hefe & Ameri-Wheat. Stop by the tasting room and sample a few beers. We anticipate being open by Labor Day 2008."",""address"":[""605 S. Talbot St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.7814,""lon"":-76.2222}}",1,63,1
-black_sheep_brewery,0,0,244370178050,"{""name"":""Black Sheep Brewery"",""city"":""Ripon"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01765)-689227"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wellgarth""]}",1,32,1
-augusta_brewing,0,0,244366376960,"{""name"":""Augusta Brewing"",""city"":""Augusta"",""state"":""Missouri"",""code"":""63332"",""country"":""United States"",""phone"":""1-636-482-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5221 Water Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5702,""lon"":-90.8802}}",1,24,1
-middle_ages_brewing-middle_ages_raspberry_ale,0,0,244882014210,"{""name"":""Middle Ages Raspberry Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A scintillating ale with just the right amount of hops and ripe berry flavor."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
-quigleys,0,0,245005746176,"{""name"":""Quigleys"",""city"":""Pawleys Island"",""state"":""South Carolina"",""code"":""29585"",""country"":""United States"",""phone"":""(843) 237-7010"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Former brewer at Liberty Brewpub in Myrtle Beach is the owner/brewer at this new brewpub in the middle of golf country."",""address"":[""257 Willbrook Blvd""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":33.4905,""lon"":-79.116}}",1,60,1
-walldorff_brew_pub-amber_waves,0,0,245750169600,"{""name"":""Amber Waves"",""abv"":4.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A clean crisp ale with a beautiful reddish caramel color and a superb balance of hops and malts."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
-cervecera_del_pacfico,0,0,244497055744,"{""name"":""Cervecera del Pacfico"",""city"":""Mazatln"",""state"":""Sinaloa"",""code"":"""",""country"":""Mexico"",""phone"":""52-1-28-71-6011"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Calz.Gabriel Leyva y Melchor Ocampo""]}",1,53,1
-taylor_s_restaurant_and_brewery-pale_ale,0,0,245110669315,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
-main_street_brewing-brown_ale,0,0,244882341888,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,62,1
-edelweissbrauerei_farny-alt_durrener_weisse,0,0,244633501696,"{""name"":""Alt-Dürrener-Weiße"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-blue_cat_brew_pub-red_toad_amber_ale,0,0,244370243584,"{""name"":""Red Toad Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
-barley_island_brewing-rust_belt_porter,0,0,244366376961,"{""name"":""Rust Belt Porter"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-monte_carlo_casino_and_brewpub,0,0,244882079744,"{""name"":""Monte Carlo Casino and Brewpub"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89109"",""country"":""United States"",""phone"":""1-702-730-7438"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.1286,""lon"":-115.171}}",1,61,1
-remington_watson_smith_brewing,0,0,245005746177,"{""name"":""Remington Watson Smith Brewing"",""city"":""Waukesha"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0117,""lon"":-88.2315}}",1,60,1
-weissbierbrauerei_hopf,0,0,245750169601,"{""name"":""Weissbierbrauerei Hopf"",""city"":""Miesbach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8025-/-2959-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schtzenstrae 8-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.794,""lon"":11.8311}}",1,45,1
-commonwealth_brewing_1,0,0,244497121280,"{""name"":""Commonwealth Brewing #1"",""city"":""Boston"",""state"":""Massachusetts"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.3584,""lon"":-71.0598}}",1,53,1
-the_bruery-autumn_maple,0,0,245110734848,"{""name"":""Autumn Maple"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with 17 lbs. of yams per barrel (in other words, a lot of yams!), this autumn seasonal is a different take on the “pumpkin” beer style. Brewed with cinnamon, nutmeg, allspice, vanilla, molasses, and maple syrup, and fermented with our traditional Belgian yeast strain, this bold and spicy beer is perfect on a cold autumn evening."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,29,1
-maritime_pacific_brewing-salmon_bay_e_s_b,0,0,244882341889,"{""name"":""Salmon Bay E.S.B."",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-eel_river_brewing-triple_exultation_old_ale,0,0,244633501697,"{""name"":""Triple Exultation Old Ale"",""abv"":9.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,63,1
-blue_ridge_brewing,0,0,244370243585,"{""name"":""Blue Ridge Brewing"",""city"":""Greenville"",""state"":""South Carolina"",""code"":""29601"",""country"":""United States"",""phone"":""1-864-232-4677"",""website"":""http://www.blueridgebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Born in the foothills of the Blue Ridge Mountains, Greenville's Brew-Pub continues to pay homage to one simple creed, to provide our customers the very best we can! We're as proud of Chef Rich's House-Made Menu as we are of Jay's Freshly Crafted Brews!"",""address"":[""217 North Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.8531,""lon"":-82.3983}}",1,32,1
-black_sheep_brewery-riggwelter_yorkshire_ale,0,0,244366376962,"{""name"":""Riggwelter Yorkshire Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_sheep_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-512_brewing_company,0,0,244366573568,"{""name"":""(512) Brewing Company"",""city"":""Austin"",""state"":""Texas"",""code"":""78745"",""country"":""United States"",""phone"":""512.707.2337"",""website"":""http://512brewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(512) Brewing Company is a microbrewery located in the heart of Austin that brews for the community using as many local, domestic and organic ingredients as possible."",""address"":[""407 Radam, F200""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2234,""lon"":-97.7697}}",1,25,1
-monteith_s_brewing_co-monteith_s_celtic_beer,0,0,244882079745,"{""name"":""Monteith's Celtic Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""monteith_s_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Monteith’s Celtic Beer is considered an ‘Irish-style ale’ in the heritage of beers of a burnt-red colour traditionally brewed in the Emerald Isle.\r\n\r\nMonteith’s Celtic Beer has a dry roasted malt flavour characteristic of this style of brewing. This malty characteristic and crisp dryness is derived from malts of the roasted chocolate malt style. The hop character is medium to allow the chocolate malts to show through.\r\n\r\nMonteith’s brewers have been able to develop traditional ale fermentation characters while allowing the interesting roasted malt notes to come through in the aroma."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
-rogue_ales-jittery_frog,0,0,245005811712,"{""name"":""Jittery Frog"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""This special coffee stout includes NAFTA approved, organic, shade grown coffee beans from Costa Rica, Indonesia, and Ethiopia roasted by the brewmaster at local coffee roaster Red Twig in Edmonds, Wa. Hints of your morning cup are evident in the aroma, flavor and finish of this breakfast beer (but not just for breakfast). \r\nNo Chemicals, Additives or Preservatives.""}",1,60,1
-white_oak_cider,0,0,245750169602,"{""name"":""White Oak Cider"",""city"":""Newberg"",""state"":""Oregon"",""code"":""97132"",""country"":""United States"",""phone"":""1-503-538-0349"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""18452 NE Ribbon Ridge Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.3498,""lon"":-123.073}}",1,45,1
-coors_brewing_golden_brewery-harvest_moon_pumpkin,0,0,244497121281,"{""name"":""Harvest Moon Pumpkin"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This amber-colored, naturally pumpkin flavored ale is brewed only in the autumn and combines the flavor of vine-ripened pumpkin and spices. If you're in the mood for something unique and different to go along with the change of season, autumn is the perfect time to try Blue Moon™ Pumpkin Ale. Available mid-September through December."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,53,1
-the_livery-555_ipa,0,0,245110734849,"{""name"":""555 IPA"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""A true North American IPA! All North American malts, Northwest Mt. Hood hops, and American Ale yeast all blend for a perfectly balanced bitter ale."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
-midnight_sun_brewing_co-gluttony,0,0,244882407424,"{""name"":""Gluttony"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""GLUTTONY Triple IPA overindulges the palate with profound malt, powerful hops and abundant body. Its deep decadent golden orange color presents an appetizing invitation for extravagant enjoyment. Its aroma entices with citrus, pine and alcohol while the flavor provides a smorgasbord of sweet malt, fresh tangerine/grapefruit and a resinous hop character that lingers well beyond the finish. \r\n\r\nGLUTTONY...More than a mouthful."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,62,1
-egan_brewing-enkel_biter,0,0,244633567232,"{""name"":""Enkel Biter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-boston_beer_company-longshot_hazelnut_brown,0,0,244370243586,"{""name"":""Longshot Hazelnut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-bootleggers_steakhouse_and_brewery-voluptuous_blonde,0,0,244366442496,"{""name"":""Voluptuous Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-abhi_brewery,0,0,244366573569,"{""name"":""Abhi Brewery"",""city"":"""",""state"":"""",""code"":"""",""country"":""India"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-09-27 00:35:48"",""description"":"""",""address"":[]}",1,25,1
-monteith_s_brewing_co-monteith_s_summer_ale,0,0,244882079746,"{""name"":""Monteith's Summer Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""monteith_s_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Monteith’s Summer Ale is a refreshingly different beer. The opportunity to rediscover some flavour highlights of beer styles enjoyed on summer days past, and bring them back to life.\r\n\r\nAt the end of last century, in England, Europe and the Americas and in New Zealand, there was still an adherence to brew with barley, wholesome grains, hops and other traditional brewing spices.\r\n\r\nMonteith’s Summer Ale is a bright gold beer with great body from four different malts. Spiced with a single hop variety and a touch of history - a little Rata honey. Subtle, but enough to make all the difference. The result is a truly refreshing herbal spiced beer brewed for the Summer Season — a splendid thirst quencher.\r\n\r\nMonteith’s Summer Ale enjoyed ice-cold with a simple range of fruits, perhaps refreshing wedge of orange or lime. Alternatively, match with summer salads and stir-frys to complement the light flavours."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,61,1
-rothaus_brauerei-dunkles,0,0,245005811713,"{""name"":""Dunkles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-wild_duck_brewing-imperial_sasquatch,0,0,245750235136,"{""name"":""Imperial Sasquatch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_duck_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-copper_kettle_brewery-potbelly_porter,0,0,244497186816,"{""name"":""Potbelly Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Porter has a deep dark color and a light creamy head. The aroma and flavor lingers of burnt grains and roasted coffe. We hope you enjoy this special brew."",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
-the_lost_abbey-serpents_stout,0,0,245110800384,"{""name"":""Serpents Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""The history of the bible and religion is indeed the struggle of good vs. evil. Our Serpent’s Stout recognizes the evil of the dark side that we all struggle with. This is a massively thick and opaque beer that begs the saints to join the sinners in their path to a black existence. 10.5% ABV and available in 750 ml bottles and on draft at select locations."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,29,1
-midnight_sun_brewing_co-oak_aged_imperial_chocolate_pumpkin_porter,0,0,244882407425,"{""name"":""Oak-Aged Imperial Chocolate Pumpkin Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This version is even lovelier than the original. Share with your sweetie."",""style"":""Porter"",""category"":""Irish Ale""}",1,62,1
-elysian_brewery_public_house-the_immortal_ipa,0,0,244633567233,"{""name"":""The Immortal IPA"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
-boulevard_brewing_company-bouldevard_zon,0,0,244370243587,"{""name"":""Bouldevard ZŌN"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard’s summer seasonal is our interpretation of a classic Belgian witbier. ZŌN (Flemish for “sun”) combines the subtle flavors of coriander and orange peel with other traditional ingredients to create a delightful, refreshing summertime brew. Available from May through August, in bottles and draught."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
-brasserie_de_la_senne-zinnebir,0,0,244366442497,"{""name"":""Zinnebir"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
-abita_brewing_company-christmas_ale,0,0,244366639104,"{""name"":""Christmas Ale"",""abv"":5.5,""ibu"":38.0,""srm"":35.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-12-19 09:11:43"",""description"":""Abita Christmas Ale is an American style Brown Ale. It is hopped with Willamette, Cascade, and Columbus hops and has a good hop flavor and aroma."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_pale_ale,0,0,244882145280,"{""name"":""Nøgne Ø Pale Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing light and hoppy ale. Probably our best allrounder. Recommended serving temperature 8°C/45°F. Ideal with barbequed or smoked meat dishes."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
-saint_arnold_brewing-divine_reserve_9,0,0,245005811714,"{""name"":""Divine Reserve 9"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Important: let this beer warm to at least 50° before enjoying. This beer is black with some ruby highlights. The nose is full of pumpkin pie spices and some alcohol. There are notes of nutmeg, caraway and vanilla. The taste starts with chocolate malt with a hint of spice and rolls into a warm spicy alcohol taste which has the effect of creating the balance that usually comes from the hop bitter. There is some hop bitter on the finish, but not much. Overall, this beer finishes relatively dry for such a big beer. As it warms, the spices move forward in the taste and the chocolate moves to the finish. The pumpkin provides a pleasant undertone and a nice mouthfeel. The spices will probably fade some over time; they mellowed considerably while still in the fermenter."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,60,1
-york_brewery-yorkshire_terrier_premium_cask_bitter,0,0,245750235137,"{""name"":""Yorkshire Terrier Premium Cask Bitter"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""york_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
-coronado_brewing_company-islandweizen,0,0,244497186817,"{""name"":""Islandweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Coronado 'Islandweizen' is our version of an American-styled Hefeweizen or unfiltered wheat beer. It's lightly hopped with Nobel Tettnang and Saaz hops to create a great full-bodied beer. This refreshing beer can be enjoyed with a slice of lemon."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
-the_round_barn_winery_brewery-round_barn_cocoa_stout,0,0,245110865920,"{""name"":""Round Barn Cocoa Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Cocoa Stout boasts a beautiful black body and tan head with notes of roasted barley, coffee, and bittersweet chocolate. Enjoy with dessert ‹ especially good in a float with vanilla ice cream. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience. Contains lactose (milk sugar)."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,29,1
-minneapolis_town_hall_brewery-hope_king_scotch_ale,0,0,244882472960,"{""name"":""Hope & King Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hope and King is a full-body brew and is rich in malt complexity. Brewed with both English and American barley and many, many specialty malts this deeply colored ale has hints of roasted chocolate, caramel and raisins with very little hop presence. Our interpretation of the classic ale that originated in Glasgow, Scotland."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,62,1
-empyrean_brewing_company-solar_flare_summer_ale,0,0,244633632768,"{""name"":""Solar Flare Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-brasserie_de_tahiti,0,0,244370309120,"{""name"":""Brasserie de Tahiti"",""city"":""Tahiti"",""state"":"""",""code"":"""",""country"":""French Polynesia"",""phone"":""689-467600"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""BP 597""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-17.6797,""lon"":-149.407}}",1,32,1
-brasserie_de_vervifontaine-biere_du_lion,0,0,244366442498,"{""name"":""Bière du Lion"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_vervifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-abita_brewing_company-honey_rye_ale,0,0,244366639105,"{""name"":""Honey Rye Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:54:55"",""description"":""This beer is not very bitter which allows the flavors of the rye and honey to come through. The result is a full bodied, sweet, and malty beer."",""style"":""Specialty Honey Lager or Ale"",""category"":""Other Style""}",1,25,1
-o_hanlon_s_brewing_company_ltd,0,0,244882145281,"{""name"":""O'Hanlon's Brewing Company Ltd."",""city"":""Exeter"",""state"":""Devon"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01404)-822412"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Great Barton Farm""]}",1,61,1
-scharer_s_little_brewery-scharer_s_lager,0,0,245005877248,"{""name"":""Scharer's Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scharer_s_little_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional German-style lager, fermented at 7-9°C and lagered at 4°C for 4-6 weeks. The storage produces a soft, natural carbonation. Full-bodied with high bitterness and hop flavour and a dry finish. Hoppy aromatic nose. Available on draught or in 780 mL champagne-style bottles. Can be difficult to acquire."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
-courthouse_pub-canadian_light,0,0,244497252352,"{""name"":""Canadian Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
-the_st_louis_brewrey,0,0,245110865921,"{""name"":""The St. Louis Brewrey"",""city"":""St. Louis"",""state"":""MO"",""code"":""63103"",""country"":""United States"",""phone"":""314-241-2337"",""website"":""http://http://www.schlafly.com"",""type"":""brewery"",""updated"":""2011-02-10 07:49:03"",""description"":""The Schlafly Tap Room first opened its doors in 1991 and proudly holds the distinction of being the first new brewpub in Missouri since Prohibition."",""address"":[""2100 Locust Street""]}",1,29,1
-new_albanian_brewing-solidarity,0,0,244882472961,"{""name"":""Solidarity"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_albanian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
-engine_house_9-tacoma_brew,0,0,244633632769,"{""name"":""Tacoma Brew"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-brauerei_gasthof_zur_krone-kellerpils,0,0,244487290880,"{""name"":""Kellerpils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-brasserie_des_cimes,0,0,244366508032,"{""name"":""Brasserie des Cimes"",""city"":""Aix les Bains"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-04.79.88.16.80"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""152 Avenue St Simond""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7075,""lon"":5.9153}}",1,24,1
-agassiz_brewing,0,0,244366704640,"{""name"":""Agassiz Brewing"",""city"":""Winnipeg"",""state"":""Manitoba"",""code"":""0"",""country"":""Canada"",""phone"":""1-204-233-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 42008""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.7652,""lon"":-97.1539}}",1,25,1
-oasis_brewery_annex-brown_ale,0,0,244882210816,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oasis_brewery_annex"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,61,1
-scottish_newcastle_breweries-newcastle_brown_ale,0,0,245005877249,"{""name"":""Newcastle Brown Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scottish_newcastle_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
-daleside_brewery-morocco_ale,0,0,244497252353,"{""name"":""Morocco Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-three_floyds_brewing-alpha_klaus_xmas_porter,0,0,245110865922,"{""name"":""Alpha Klaus Xmas Porter"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,29,1
-new_glarus_brewing_company-staghorn_oktoberfest,0,0,244882472962,"{""name"":""Staghorn Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,62,1
-erie_brewing_company-sunshie_wit,0,0,244633632770,"{""name"":""Sunshie Wit"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hot, Hazy summer days call for a craft beer that refreshes. Have no fear – Sunshine Wit is here! Sunshine Wit is a refreshingly smart-assed ale that will satisfy, especially when the mercury is rising. Add a slice of orange for an extra blast of flavor! Sunshine Wit is a “white ale” or “wit” – a hazy yellow wheat beer with a subtle citrus flavor and remarkable drinkability at 4.0% alcohol by volume. Let sunshine wit help you chill out on the hottest, humid, heat-stricken days of summer."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,63,1
-brauerei_im_fchschen,0,0,244487356416,"{""name"":""Brauerei im Fchschen"",""city"":""Düsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-211-/-13747-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ratinger Strasse 28""]}",1,32,1
-brasserie_des_gants-gouyasse_goliath,0,0,244366508033,"{""name"":""Gouyasse / Goliath"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_gants"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-alpine_beer_company-duet,0,0,244366704641,"{""name"":""Duet"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpine_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A West Coast IPA. Our original single IPA made with Simcoe and Amarillo hops “in harmony.” 1.065 OG 45 IBU 7%ABV"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
-odell_brewing-odell_ipa,0,0,244882210817,"{""name"":""Odell IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We took the traditional IPA, originally shipped from England to India in the 1700's, and made it bolder and more flavorful - American Style. We've added new varieties of highly aromatic American hops to create a distinctive bitterness profile and an incredible hop character."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
-south_county_brewing_co-south_county_munich_dunkel_lager,0,0,245122924544,"{""name"":""South County Munich Dunkel Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_county_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp and smooth. This beer is deep amber in color. Toasty, malty flavor. Full-bodied with a clean finish.""}",1,60,1
-de_dochter_van_de_korenaar-embrasse,0,0,244628979712,"{""name"":""embrasse"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_dochter_van_de_korenaar"",""updated"":""2010-07-22 20:00:20"",""description"":""pure-malt dark ale.\r\nrich and intense. good mix between imperial stout (but not as intense) and quadrupel. The beer has real balance and a luxurious mouthfeel"",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,53,1
-thunderhead_brewery-autumn_strong_lager,0,0,245110931456,"{""name"":""Autumn Strong Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,29,1
-new_holland_brewing_company-night_tripper,0,0,244882538496,"{""name"":""Night Tripper"",""abv"":10.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Night Tripper is an Imperial Stout for a Fat Tuesday release. Dark, mysterious and poetic, Night Tripper's abundance of roasted malts, combined with flaked barley create a rich, roasty beer with deeply intense and lush flavors. Night Tripper's layered, nuanced tones invite intrigue and reward a curious palate."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,62,1
-f_x_matt_brewing-saranac_nut_brown_ale,0,0,244633632771,"{""name"":""Saranac Nut Brown Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Nut Brown Ale's soft mellow malt character is rich and smooth with a medium body. Look for hints of toasted malt flavor, slight hop bitterness and amber brown color."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
-brauhaus_sion-kolsch,0,0,244487356417,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sion"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-brasserie_ellezelloise-la_quintine_blonde,0,0,244483686400,"{""name"":""La Quintine Blonde"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-amerisports_brew_pub,0,0,244366770176,"{""name"":""Amerisports Brew Pub"",""city"":""Kansas City"",""state"":""Missouri"",""code"":""64161"",""country"":""United States"",""phone"":""1-816-414-7000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8201 NE Birmingham Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1551,""lon"":-94.482}}",1,25,1
-odell_brewing,0,0,244882210818,"{""name"":""Odell Brewing"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":""80524"",""country"":""United States"",""phone"":""1-888-887-2797"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""800 East Lincoln Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5894,""lon"":-105.063}}",1,61,1
-speakeasy_ales_and_lagers-prohibition_pale_ale,0,0,245122990080,"{""name"":""Prohibition Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-denver_chophouse_and_brewery,0,0,244629045248,"{""name"":""Denver ChopHouse and Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-296-0800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1735 19th Street #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7553,""lon"":-104.997}}",1,53,1
-thunderhead_brewery_2-modern_monks_belgian_blonde,0,0,245110931457,"{""name"":""Modern Monks Belgian Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
-niagara_falls_brewing-apple_ale,0,0,244882538497,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,62,1
-fitzpatrick_s_brewing-hawk_rye,0,0,244633698304,"{""name"":""Hawk Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-brauhaus_sternen-oktoberfest,0,0,244487356418,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,32,1
-brasserie_lefebvre-abbaye_de_floreffe_double,0,0,244483686401,"{""name"":""Abbaye de Floreffe Double"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_lefebvre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-asahi_breweries-asahi_super_dry,0,0,244366770177,"{""name"":""Asahi Super Dry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asahi_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-ohio_brewing,0,0,244882210819,"{""name"":""Ohio Brewing"",""city"":""Niles"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.1828,""lon"":-80.7654}}",1,61,1
-springfield_brewing,0,0,245123055616,"{""name"":""Springfield Brewing"",""city"":""Springfield"",""state"":""Missouri"",""code"":""65806"",""country"":""United States"",""phone"":""1-417-832-8277"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""305 South Market Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.2079,""lon"":-93.2955}}",1,60,1
-aksarben_brewing_bop-harvest_brown,0,0,244366966784,"{""name"":""Harvest Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
-dick_s_brewing,0,0,244629110784,"{""name"":""Dick's Brewing"",""city"":""Centralia"",""state"":""Washington"",""code"":""98531"",""country"":""United States"",""phone"":""1-800-586-7760"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5945 Prather Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.7713,""lon"":-123.007}}",1,53,1
-timmermans-timmermans_gueuze,0,0,245110996992,"{""name"":""Timmermans Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_saison,0,0,244882538498,"{""name"":""Nøgne Ø Saison"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""One of our most refreshing brews, made for those hot summer days, but satisfying year 'round. Recommended serving temperature 8°C/45°F. Goes well with seafood, particularly oysters."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,62,1
-florida_beer_company,0,0,244633698305,"{""name"":""Florida Beer Company"",""city"":""Melbourne"",""state"":""Florida"",""code"":""32901"",""country"":""United States"",""phone"":""321-728-3412"",""website"":""http://www.floridabeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2500 S. Harbor City Blvd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.0707,""lon"":-80.6012}}",1,63,1
-brauhaus_sternen-weizentrumpf,0,0,244487421952,"{""name"":""Weizentrumpf"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
-brauerei_beck-beck_s_light,0,0,244483751936,"{""name"":""Beck's Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-12-20 16:12:12"",""description"":"""",""style"":""European Low-Alcohol Lager"",""category"":""German Lager""}",1,24,1
-avery_brewing_company-the_beast_grand_cru,0,0,244366770178,"{""name"":""The Beast Grand Cru"",""abv"":14.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Beast is a seducer - accommodating, complicated, powerful, dark and created to last the ages. With a deep burgundy color and aromas of honey, nutmeg, mandarin orange and pineapple, this massive and challenging brew has flavors akin to a beautiful Carribean rum. Dates, plums, raisins and molasses are dominant in a rich vinous texture. Cellarable for 10+ years."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,25,1
-okanagan_spring_brewery,0,0,244882276352,"{""name"":""Okanagan Spring Brewery"",""city"":""Vernon"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-800-663-7037"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2801 - 27A Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.2613,""lon"":-119.277}}",1,61,1
-storm_brewing-highland_scottish_ale,0,0,245123055617,"{""name"":""Highland Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""While hugely popular in Scotland, this style of beer escapes most North Americans. Designed and brewed by the Scottish punk rocker David “Malty” Macanulty, this creamy, nutty, malty, dark ale is true to its origins. David drives James crazy over this beer, insisting on rigid fermentation temperatures, traditional mild hops for bittering, and even some weird caramelizing ritual as the kettle is being filled. The beer continues to undergo subtle evolutionary changes because the stubborn Scottish bastard will never be satisfied."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,60,1
-anheuser_busch-michelob_irish_red,0,0,244367032320,"{""name"":""Michelob Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Born of Irish tradition, this all-malt ale uses kilned and toasted malts to produce its all-natural, signature red shade. A beer with exceptional balance, Irish Red displays an initial sweetness that fades to a clean, dry finish."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,26,1
-dix_barbecue_brewery,0,0,244629110785,"{""name"":""Dix Barbecue & Brewery"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-682-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""871 Beatty Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2766,""lon"":-123.115}}",1,53,1
-tollemache_and_cobbold_brewery,0,0,245110996993,"{""name"":""Tollemache and Cobbold Brewery"",""city"":""Ipswich"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.0593,""lon"":1.1557}}",1,29,1
-oldenberg_brewery-nut_brown_ale,0,0,244882604032,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oldenberg_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,62,1
-flying_bison_brewing-bird_of_prey_ipa,0,0,244633698306,"{""name"":""Bird of Prey IPA"",""abv"":8.26,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our true English style IPA. Bready English Malt gives this beer a firm backbone to hang truckloads of East Kent Golding Hops on. Available on draft at the brewery and select “Beer Geek Bars” Feb. March April (if it lasts that long)."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,63,1
-brew_kettle_taproom_smokehouse_bop,0,0,244487421953,"{""name"":""Brew Kettle Taproom & Smokehouse BOP"",""city"":""Strongsville"",""state"":""Ohio"",""code"":""44136"",""country"":""United States"",""phone"":""1-440-239-8788"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8377 Pearl Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.347,""lon"":-81.8226}}",1,32,1
-brauerei_beck-haacke_beck,0,0,244483751937,"{""name"":""Haacke-Beck"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-back_road_brewery-maple_city_gold,0,0,244366770179,"{""name"":""Maple City Gold"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""No, there is no maple flavor here, just a great beer with a good name. LaPorte, Indiana is known as the \""Maple City\"" because of its trees. This German style Oktoberfest lager beer has a golden copper color and intense malty flavor. We make this beer 4 times a year, but it is hard to find because it goes so fast. Give it a try and you may find it worthy of the gold.... or at least another round"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,25,1
-olde_peninsula_brewpub_and_restaurant-double_cream_oatmeal_stout,0,0,244882276353,"{""name"":""Double Cream Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
-sturgeon_bay_brewing,0,0,245123055618,"{""name"":""Sturgeon Bay Brewing"",""city"":""Sturgeon Bay"",""state"":""Wisconsin"",""code"":""54235"",""country"":""United States"",""phone"":""1-920-746-7611"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8342,""lon"":-87.377}}",1,60,1
-appleton_brewing-adler_brau_pumpkin_spice,0,0,244367032321,"{""name"":""Adler Bräu Pumpkin Spice"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-dubuque_brewing_and_bottling-star_big_muddy_brown,0,0,244629110786,"{""name"":""Star Big Muddy Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dubuque_brewing_and_bottling"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
-tooth_s-sheaf_stout,0,0,245111062528,"{""name"":""Sheaf Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tooth_s"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,29,1
-otter_creek_brewing_wolaver_s_organic_ales-otter_creek_russian_imperial_stout,0,0,244882669568,"{""name"":""Otter Creek Russian Imperial Stout"",""abv"":10.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The style was first brewed in England for the Russian Czar and it is the king of stouts. Plenty of big malt flavors- chocolate and roasted- and high alcohol with lower carbonation and mild hops. \r\nWe brewed this beer with double the malts and four times the hops of regular stouts!\r\n\r\nOtter Creek Russian Imperial Stout clocks in around 10% ABV- a beer to be savored responsibly. True to style, this beer will last for years so you may want to stock up on a few bottles for your cellar while it's available.\r\n\r\nRussian Imperial Stouts pair well with creamy cheeses such as camembert (we recommend Vermont-made!), decadent chocolate desserts, or a hearty meal."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,62,1
-flying_fish_brewing_company-exit_11_hoppy_american_wheat,0,0,244633763840,"{""name"":""Exit 11 - Hoppy American Wheat"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Exit 11 Hoppy American Wheat Ale is the second in their wildly popular Exit Series of Big Bottle Beers. Exit 11 is a confluence of styles and ingredients, just as Exit 11 is the point in New Jersey where the Garden State Parkway, the New Jersey Turnpike and several other highways come together.\r\n\r\n“Exit 11 is the point on the Turnpike where the Garden State Parkway branches off and takes hundreds of thousands of travelers to the renowned Jersey Shore,” says Flying Fish Founder Gene Muller. “Our Exit 11 Wheat Ale is a fresh, citrus-y summer beer perfect for beachgoers and those who only wish they were headed ‘downa shore’.”\r\n\r\nExit 11 is an American-style wheat beer brewed with English ale yeast and three Pacific Northwest hops, Columbus, Palisade and Amarillo. It is brewed with 50% Belgian pale malt and 50% white wheat, and is an ideal summer thirst quencher, with its bouquet of tangerines and apricots. Exit 11 is available only during this one-time release, and only until it sells out across New Jersey, Pennsylvania and Delaware."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,63,1
-brewer_s_art-resurrection,0,0,244487421954,"{""name"":""Resurrection"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewer_s_art"",""updated"":""2010-07-22 20:00:20"",""description"":""During the fermentation of the first batch of this Abbey-style dubbel, the yeast \""died\"" and was \""resurrected\"" by brewer Chris Cashell. Made with five types of barley malt and lots of sugar, this beer is quite flavorful, without being too sweet."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,32,1
-brauerei_beck-oktoberfest,0,0,244483751938,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
-baltika_breweries,0,0,244366835712,"{""name"":""Baltika Breweries"",""city"":""St. Petersburg"",""state"":"""",""code"":""194292"",""country"":""Russia"",""phone"":""(812)325-93-25"",""website"":""http://baltikabeer.com/"",""type"":""brewery"",""updated"":""2011-02-15 19:35:41"",""description"":""* The leader on the Russian beer market\n* One of the leading European producers of beer\n* The Baltika brand is Europe's second largest in terms of sales\n* The Company accounts for more than 80% of all Russian beer exports\n* Product is exported to 42 countries\n* 10 breweries: 2 factories in St. Petersburg and factories in Rostov-on-Don, Tula, Samara, Khabarovsk, Yaroslavl, Voronezh, Chelyabinsk, and Krasnoyarsk.\n* Around 12,000 employees"",""address"":[""6 Verkhny per., d. 3""]}",1,25,1
-olde_peninsula_brewpub_and_restaurant-midnight_stout,0,0,244882276354,"{""name"":""Midnight Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
-sullivan_s_black_forest_brew_haus_grill-sherwood_forest_ipa,0,0,245123055619,"{""name"":""Sherwood Forest IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,60,1
-arcadia_brewing-imperial_stout,0,0,244367097856,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
-duck_rabbit_craft_brewery,0,0,244629176320,"{""name"":""Duck-Rabbit Craft Brewery"",""city"":""Farmville"",""state"":""North Carolina"",""code"":""27828"",""country"":""United States"",""phone"":""(252) 753-7745"",""website"":""http://www.duckrabbitbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4519 W. Pine Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6003,""lon"":-77.5971}}",1,53,1
-utenos_alus,0,0,245111062529,"{""name"":""Utenos Alus"",""city"":""Utena"",""state"":"""",""code"":"""",""country"":""Lithuania"",""phone"":""370-39-69-023"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Pramons gatv 12""]}",1,29,1
-otto_s_pub_and_brewery-red_mo_ale,0,0,244882669569,"{""name"":""Red Mo Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American red ale brewed with Northern Brewer for the bittering and Liberty in the hopback. Very malty and crisp, this ale has all the fun without the AMD. ABV 5.0%"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-founders_brewing-founders_kentucky_breakfast,0,0,244633763841,"{""name"":""Founders Kentucky Breakfast"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A bit of backwoods pleasure without the banjo. This stout is brewed with a hint of coffee and vanilla then aged in oak bourbon barrels. Our process ensures that strong bourbon undertones come through in the finish in every batch we brew. We recommend decanting at room temperature and best enjoyed in a brandy snifter."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,63,1
-brooklyn_brewery-black_chocolate_stout,0,0,244487487488,"{""name"":""Black Chocolate Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-brauerei_fssla-gold_pils,0,0,244483817472,"{""name"":""Gold-Pils"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-biddy_early_brewery,0,0,244366835713,"{""name"":""Biddy Early Brewery"",""city"":""Ennis"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353-065-6836742"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Inagh""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.3293,""lon"":-96.6253}}",1,25,1
-pacific_rim_brewing-vashon_old_stock_ale,0,0,245005877248,"{""name"":""Vashon Old Stock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-the_alchemist,0,0,245123121152,"{""name"":""The Alchemist"",""city"":""Waterbury"",""state"":""Vermont"",""code"":""5676"",""country"":""United States"",""phone"":""(802) 244-4120"",""website"":""http://www.alchemistbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Alchemist is a 7 barrel brew pub specializing in hand-crafted beer and casual pub fare. All of our ales are brewed in our basement brewery, which was designed and installed by our brewer and co-proprietor John Kimmich. We use only the finest imported malts and domestic hops available to bring you the tastiest and finest selection of beers in Vermont!"",""address"":[""23 South Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.3372,""lon"":-72.756}}",1,60,1
-arcadia_brewing-sky_high_rye,0,0,244367097857,"{""name"":""Sky High Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-egan_brewing-irish_ale,0,0,244629176321,"{""name"":""Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,53,1
-water_street_brewery-pale_ale,0,0,245747744768,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
-otto_s_pub_and_brewery,0,0,244882735104,"{""name"":""Otto's Pub and Brewery"",""city"":""State College"",""state"":""Pennsylvania"",""code"":""16803"",""country"":""United States"",""phone"":""814-867-6886"",""website"":""http://www.ottospubandbrewery.com/index.php"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Otto's typically offers a selection of 9-11 beers on draft. These include seasonal offerings as well as some of our favorite year-round ales and lagers including our special cask-conditioned ales. All of our beers are brewed on-premises at Otto's for the utmost freshness and quality control. They are made with the finest ingredients available, all of our skill, and a true love for the craft of brewing. Enjoy!"",""address"":[""2105 N. Atherton St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.8098,""lon"":-77.9101}}",1,62,1
-founders_hill_brewing-blackburn_doppelbock,0,0,244633829376,"{""name"":""Blackburn Doppelbock"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
-brouwerij_bavik_de_brabandere-witte_ezel,0,0,244487487489,"{""name"":""Witte Ezel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-brauerei_fssla-lagerbier,0,0,244483817473,"{""name"":""Lagerbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-big_rock_brewery-albino_rhino_discontinued,0,0,244366835714,"{""name"":""Albino Rhino (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-panther_brewing_company,0,0,245005942784,"{""name"":""Panther Brewing Company"",""city"":""Utica"",""state"":""New York"",""code"":""13502"",""country"":""United States"",""phone"":""1-800-568-2553"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Utica NY 13502""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.1467,""lon"":-75.1779}}",1,61,1
-the_round_barn_winery_brewery-round_barn_amber_ale,0,0,245123121153,"{""name"":""Round Barn Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Amber Ale is a deep, copper ale with rich notes of caramel balanced with a hop finish, making it a great all-around beer that pairs well with roasted meats or a favorite sandwich. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,60,1
-arthur_guinness_son-guinness_250th_anniversary_stout,0,0,244367163392,"{""name"":""Guinness 250th Anniversary Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-07-22 20:00:20"",""description"":""To mark the 250 year anniversary of the signing of the lease on St. Jame's Gate Brewery by Arthur Guinness, we introduce a special commemorative stout. This premium recipe provides a refreshing taste, which underlies the complex flavor of stout."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
-egan_brewing-thyme_of_the_saison,0,0,244629176322,"{""name"":""Thyme of the Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-water_street_lake_country-bavarian_weiss_beer,0,0,245747810304,"{""name"":""Bavarian Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,29,1
-pennichuck_brewing_company-bagpiper_s_scottish_ale,0,0,245006139392,"{""name"":""Bagpiper's Scottish Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,62,1
-fratellos_restaurant_and_brewery-rye,0,0,244633829377,"{""name"":""Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-brouwerij_de_landtsheer-malheur_black_chocolate_2003,0,0,244487487490,"{""name"":""Malheur Black Chocolate 2003"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-brauerei_gasthof_zur_krone,0,0,244483817474,"{""name"":""Brauerei & Gasthof zur Krone"",""city"":""Tettnang"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7542-/-7452"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brenplatz 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6715,""lon"":9.5888}}",1,24,1
-big_sky_brewing,0,0,244366901248,"{""name"":""Big Sky Brewing"",""city"":""Missoula"",""state"":""Montana"",""code"":""59808"",""country"":""United States"",""phone"":""1-800-559-2774"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5417 Trumpeter Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.9223,""lon"":-114.073}}",1,25,1
-paulaner-hacker_pschorr_dunkel_weisse,0,0,245005942785,"{""name"":""Hacker-Pschorr Dunkel Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-tommyknocker_brewery_and_pub-pick_axe_pale_ale,0,0,245123121154,"{""name"":""Pick Axe Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Pick Axe Pale Ale is a classic American Pale Ale which uses premium hops and barley to impart a full bodied characteristic that dances on your tongue and titillates your palate."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-backcountry_brewery-peak_one_porter,0,0,244367163393,"{""name"":""Peak One Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backcountry_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-fox_river_brewing_1-trolleycar_stout,0,0,244629176323,"{""name"":""Trolleycar Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
-weinkeller_brewery_berwyn-dusseldorfer_doppelbock,0,0,245747810305,"{""name"":""Dusseldorfer Doppelbock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,29,1
-pennichuck_brewing_company-saint_florian_s_doppelbock,0,0,245006204928,"{""name"":""Saint Florian's Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,62,1
-glen_ellyn_sports_brew-red,0,0,244633894912,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
-brouwerij_t_ij,0,0,244487553024,"{""name"":""Brouwerij 't IJ"",""city"":""Amsterdam"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-020-3201786"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Funenkade 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.3666,""lon"":4.9263}}",1,32,1
-brewdog_ltd-dogma,0,0,244483883008,"{""name"":""Dogma"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Dogma is an innovative, enigmatic ale brewed with guarana, poppy seeds and kola nut all blended together with Scottish heather honey. A conspiracy of transcontinental ingredients infused with some devastatingly BrewDog imaginative thinking.\r\n\r\nThe flavours, intricacies and nuances of this beer are best enjoyed while musing over some obscure 17th Century philosophical meanderings, such as:\r\n\r\n\""If we disbelieve everything because we cannot certainly know all things we will do much, what as wisely as he who would not use his wings but sit still and perish because he had no wings to fly.\""\r\nJohn Locke.\r\n\r\nThis beer is not cool. You may think it is, but that is just a beautiful lie fabricated by clowns and gypsies."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,24,1
-boston_beer_works-boston_red,0,0,244366901249,"{""name"":""Boston Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
-plzesk_prazdroj_pivovar_radegast-premium,0,0,245006008320,"{""name"":""Premium"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""plzesk_prazdroj_pivovar_radegast"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-tongerlo-tongerlo_dubbel_bruin,0,0,245123121155,"{""name"":""Tongerlo Dubbel Bruin"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""DOUBLE BROWN 6°\r\nRed brown beer with a smooth gentle aroma, a full flavour and a slightly roasted aftertaste."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,60,1
-bandana_brewery-mankato_gold,0,0,244367228928,"{""name"":""Mankato Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-free_state_brewing,0,0,244629241856,"{""name"":""Free State Brewing"",""city"":""Lawrence"",""state"":""Kansas"",""code"":""66044"",""country"":""United States"",""phone"":""1-785-843-4555"",""website"":""http://freestatebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""636 Massachusetts""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9718,""lon"":-95.2357}}",1,53,1
-weyerbacher_brewing_company-prophecy,0,0,245747810306,"{""name"":""Prophecy"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Prophecy is our third ale to be aged in bourbon barrels. We've taken our Merry Monks' Ale and carefully aged it in bourbon barrels. The result is a fabulous unique ale, softened with hints of vanilla and oak, with an intriguing finish to it. Prophecy is a limited release so when it's here, be sure to grab a case or two to lay away before its gone. 9.3% ABV."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,29,1
-pleasanton_main_street_brewery-honey_wheat,0,0,245006204929,"{""name"":""Honey Wheat"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
-gordon_biersch_brewing-bock,0,0,244633894913,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
-bube_s_brewery-bube_s_kiwi_strawberry_wheat,0,0,244487553025,"{""name"":""Bube's Kiwi-Strawberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The perfect thirst quenching summertime ale. The subtle flavor of kiwi and strawberry blend with traditional German wheat and hops. Great for a hot summer day."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,32,1
-brewery_belle_vue,0,0,244483883009,"{""name"":""Brewery Belle-Vue"",""city"":""Molenbeek"",""state"":""Brussel"",""code"":"""",""country"":""Belgium"",""phone"":""32-024-12-44-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Delaunoystraat 58/60""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.8527,""lon"":4.3311}}",1,24,1
-brasserie_clarysse,0,0,244366901250,"{""name"":""Brasserie Clarysse"",""city"":""Oudenaarde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-055-31-17-21"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Krekelput 16-18""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8431,""lon"":3.6077}}",1,25,1
-prescott_brewing_company-manzanita_red,0,0,245006008321,"{""name"":""Manzanita Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
-traquair_house_brewery,0,0,245123186688,"{""name"":""Traquair House Brewery"",""city"":""Innerleithen"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01896)-830323"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Innerleithen EH44 6PW""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.619,""lon"":-3.0636}}",1,60,1
-barley_creek_brewing-antler_brown_ale,0,0,244367228929,"{""name"":""Antler Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional American style brown ale has medium body with a sweet Carastan maltiness. A rich deep chocolate color, our Antler Brown Ale is mildly hopped with Mt. Hood hops. Check out the Antler tap handle... locally grown! This has been our most popular beer over the years... a very easy drinking brew."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
-fuller_smith_turner_pbc-london_porter,0,0,244629241857,"{""name"":""London Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
-wychwood_brewery_company_ltd-duchy_originals_organic_english_ale,0,0,245747875840,"{""name"":""Duchy Originals Organic English Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,29,1
-pripps_ringnes_bryggerier-d_carnegie_and_company_porter,0,0,245006204930,"{""name"":""D. Carnegie and Company Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pripps_ringnes_bryggerier"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
-gordon_biersch_brewing-gordon_biersch_marzen,0,0,244633894914,"{""name"":""Gordon Biersch Marzen"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-capital_brewery-capital_wisconsin_amber,0,0,244487618560,"{""name"":""Capital Wisconsin Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
-brooklyn_brewery-local_2,0,0,244483883010,"{""name"":""Local 2"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,24,1
-brasserie_d_achouffe-chouffe_bok,0,0,244366901251,"{""name"":""Chouffe-Bok"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-thomas_kemper_belgian_white,0,0,245006008322,"{""name"":""Thomas Kemper Belgian White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-valley_brewing_company-hitman_gold,0,0,245123186689,"{""name"":""Hitman Gold"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hitman Gold is an American Pale Ale. The flavor is smooth but aggressively hopped with Simcoe Hops. The beer is best described as a “mini-IPA”. The beer is inspired by the famous wrestler Bret The Hitman Hart, who also is the artist who designed and drew the logo."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
-bavaria,0,0,244367228930,"{""name"":""Bavaria"",""city"":""Barranquilla"",""state"":"""",""code"":"""",""country"":""Colombia"",""phone"":"""",""website"":""http://www.bavaria.com.co"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Fundada en abril de 1889 Cervecería Águila tiene una capacidad de producción de 3.234.000 hectolitros de cerveza al año, con los cuales atiende los departamentos del Sucre, Magdalena, Atlántico, Bolívar, Guajira, Cesar y la Isla de San Andrés. Produce y distribuye las marcas Águila, Club Colombia, Costeñita, además de cerveza en barril; Agua Brisa en diferentes presentaciones y Pony Malta. Esta planta tiene su origen en la Cervecería Barranquilla que empieza operaciones el 10 de abril de 1913 y años más tarde, en 1933, se une a la Cervecería Bolívar, convirtiéndose en la Cervecería Barranquilla y Bolívar S.A. El 3 de marzo de 1967 la compañía tomó el nombre de Cervecería Águila S.A. En diciembre de 2002 se fusionó con Bavaria S.A. convirtiéndose en una planta estratégica para el proceso de exportaciones de la compañía. Desde octubre de 2005, Bavaria es parte de SABMiller, segunda cervecera mundial en volumen, con operaciones en cuatro continentes y una producción que supera los 170 millones de hectolitros de cerveza anuales en más de 170 marcas."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":10.9639,""lon"":-74.7964}}",1,26,1
-glenwood_canyon_brewing_company,0,0,244629241858,"{""name"":""Glenwood Canyon Brewing Company"",""city"":""Glenwood Springs"",""state"":""Colorado"",""code"":""81601"",""country"":""United States"",""phone"":""1-970-945-1276"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""402 Seventh Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.5476,""lon"":-107.323}}",1,53,1
-yards_brewing-yards_philadelphia_pale_ale,0,0,245747875841,"{""name"":""Yards Philadelphia Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Not to be boastful, but we honestly believe that all other ales pale in comparison to this one. Brewed with pilsner malt, Philadelphia Pale Ale is crisp and hoppy, bursting with citrus flavors and aromas.\r\n\r\nPhiladelphia Pale Ale was named one of the best Pale Ales in the country by the New York Times."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
-pyramid_alehouse_brewery_and_restaurant_seattle-krystal_weizen,0,0,245006204931,"{""name"":""Krystal Weizen"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
-great_lakes_brewing-burning_river_pale_ale,0,0,244759068672,"{""name"":""Burning River Pale Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An assertively hopped American Pale Ale with citrusy and piney Cascade hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
-clipper_city_brewing_co-peg_leg_stout,0,0,244487618561,"{""name"":""Peg Leg Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry Imperial stout with rich black color and aromas of roasted coffee, molasses, dark chocolate, toffee and caramel. Rich, powerful, and lingering."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,32,1
-brouwerij_het_anker-gouden_carolus_tripel,0,0,244483948544,"{""name"":""Gouden Carolus Tripel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-brasserie_de_saint_sylvestre-gavroche_french_red_ale,0,0,244366966784,"{""name"":""Gavroche French Red Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_saint_sylvestre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-weizenberry,0,0,245006008323,"{""name"":""Weizenberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,61,1
-valley_forge_brewing,0,0,245123186690,"{""name"":""Valley Forge Brewing"",""city"":""Wayne"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.0439,""lon"":-75.3881}}",1,60,1
-baxter_brewing,0,0,244367228931,"{""name"":""Baxter Brewing"",""city"":""Lewiston"",""state"":""ME"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Planned to begin brewing in fall 2010."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.1004,""lon"":-70.2148}}",1,26,1
-goose_island_beer_company_clybourn-smooth_oatmeal_stout,0,0,244629241859,"{""name"":""Smooth Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
-aass_brewery,0,0,244367425536,"{""name"":""Aass Brewery"",""city"":""Drammen"",""state"":"""",""code"":"""",""country"":""Norway"",""phone"":""47-32-26-60-00"",""website"":""http://www.aass.no"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Aass Brewery was established in 1834 and is the oldest brewery in Norway today. It is located in the city of Drammen, approximately 25 miles south of our capital, Oslo. You will spot it at the banks of the Drammen River at the very same place as it has been since 1834. The annual production of beer is aprox. 10 mill liter (85 000 barrels), and together with the production of 18 mill liters of soft drinks and mineralwater it gives employment to approximately 150 people. You may wonder how we got our name ? It was a young fellow with the name Poul Lauritz Aass that bought the brewery in 1860. Since then it has been in the same family, and is today run by the 4th generation of Aass. (By the way - A real Norwegian viking would pronounce it Ouse) The brewery is proud of its history. To us the quality of what we produce has always been and always will be the main issue. In 1516, Duke Wilhelm of Bavaria established a law admitting only malted barley, hops yeast, and water as ingredients in the production of beer. The law is known as the purity law and Aass Brewery is still loyal to Duke Wilhelm of Bavaria. In Norway the brewery is known for outstanding quality and large number of different beer types."",""address"":[""Ole Steensgt. 10 Postboks 1530""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":59.7451,""lon"":10.2135}}",1,27,1
-rogue_ales-american_amber_ale,0,0,245006270464,"{""name"":""American Amber Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Tawny amber in color with a coffee aroma and tight head. A delicate roasted malt accent, generous use of hops and a smooth finish. American Amber, originally known as Ashland Amber (created at Rogues original brewpub in Ashland, Oregon which was destroyed by flooding several years ago), is created from Northwest Harrington and Klages, 95-115 and 135-165 Crystal Malts. Kent Golding and Cascade Hops. American Amber is available in a 22-ounce bottle, 12-ounce 6-pack (new for 2005), and on draft."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
-greene_king-wexford_irish_cream_ale,0,0,244759134208,"{""name"":""Wexford Irish Cream Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":""Based on a traditional Irish recipe from county Wexford that dates back to 1810, we use only the best ingredients to ensure that our Wexford Ale has a smooth mellow creaminess we believe you will enjoy."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,63,1
-clipper_city_brewing_co-winter_storm,0,0,244487618562,"{""name"":""Winter Storm"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our \""winter warmer\"" ale, brewed with copious helpings of English malts and US and English hops, a ruddy hued \""Imperial ESB\"" in style. Full malty flavors dancing with powerful hop aromas and a lingering, firm hop bitterness. Seasonally available from mid October to February.\r\n\r\nGold Medal, International Pale Ale Category- World Beer Cup"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,32,1
-brouwerij_huyghe-delirium_noel,0,0,244483948545,"{""name"":""Delirium Noël"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,24,1
-brasserie_du_bocq,0,0,244366966785,"{""name"":""Brasserie du Bocq"",""city"":""Purnode"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-083-61-07-80"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de la Brasserie 4""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3114,""lon"":4.9435}}",1,25,1
-ramapo_valley_brewery,0,0,245006073856,"{""name"":""Ramapo Valley Brewery"",""city"":""Hillburn"",""state"":""New York"",""code"":""10931"",""country"":""United States"",""phone"":""1-845-369-7827"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""143 Highway 59 Building 6""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.1151,""lon"":-74.147}}",1,61,1
-voodoo_brewing_co_llc-gran_met,0,0,245752266752,"{""name"":""Gran Met"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Gran Met (Grand Master) is an Ale made from our Propriatery yeast from a small brewery in Belgium. We use Cane and Beet sugar, along with German Pilsner Malt to create the unique flavor of this age old style. We also use a unique fermentation process of slowly adding the sugars to the fermentation during fermentation. This allows the yeast to more slowly ferment the beer without overloading the yeast. This process allows for a more clean, tight flavor profile.10% alc by vol. \r\n\r\nBottle Conditioned and Refermented."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,60,1
-beach_brewing-red_rock,0,0,244367294464,"{""name"":""Red Rock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
-gottberg_brew_pub-pioneer_pale_ale_discontinued,0,0,244629307392,"{""name"":""Pioneer Pale Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-abita_brewing_company-strawberry_harvest_lager,0,0,244367425537,"{""name"":""Strawberry Harvest Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
-rogue_ales-morimoto_imperial_pilsner,0,0,245006270465,"{""name"":""Morimoto Imperial Pilsner"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Pilsner, part of the Morimoto Signature Series, was launched in September 2003. The beer was selected by internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \r\n\r\nBrewed with four ingredients: 100% French Pilsner Malt, 100% Sterling Hops, Free Range Coastal Water and Czech Pilsner Yeast. Imperial Pilsner is golden in color with a dry hop floral aroma and intense hop bitterness supported by a big malty backbone. Available in a swing-top 750 mil ceramic bottle and 13.2 gallon sankey kegs.\r\nTo learn more about the Chef, visit Morimotos web page.""}",1,62,1
-grupo_modelo-corona_light,0,0,244759134209,"{""name"":""Corona Light"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-12-20 16:15:31"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,63,1
-coniston_brewing-old_man_ale,0,0,244487684096,"{""name"":""Old Man Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coniston_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-brouwerij_van_eecke-het_kapittel_abt,0,0,244484014080,"{""name"":""Het Kapittel Abt"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_eecke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-brauerei_und_altbierkche_pinkus_mller-organic_ur_pils,0,0,244484276224,"{""name"":""Organic Ur Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-red_kettle_brewing,0,0,245006073857,"{""name"":""Red Kettle Brewing"",""city"":""Encinitas"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.037,""lon"":-117.292}}",1,61,1
-warwick_valley_wine_co-doc_s_hard_apple_cider,0,0,245752332288,"{""name"":""Doc's Hard Apple Cider"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warwick_valley_wine_co"",""updated"":""2010-12-20 16:23:00"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,60,1
-bison_brewing-organic_barley_wine_ale_2005,0,0,244367294465,"{""name"":""Organic Barley Wine Ale 2005"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-great_dane_pub_and_brewing_1-crop_circle_wheat,0,0,244755529728,"{""name"":""Crop Circle Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
-alaskan_brewing-alaskan_white_ale,0,0,244367491072,"{""name"":""Alaskan White Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Alaskan White Ale has a soft, slightly sweet base with the unique spice aroma of coriander and crisp, citrus finish of orange peel. A light and effervescent body combined with the smooth palate creates a complex and delicate beer that is deliciously refreshing in any season."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,27,1
-rogue_ales-old_crustacean_barleywine_2005,0,0,245006270466,"{""name"":""Old Crustacean Barleywine 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-hanssens_artisanal-oudbeitje,0,0,244759199744,"{""name"":""Oudbeitje"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hanssens_artisanal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,63,1
-cugino_brewing_company-beer,0,0,244487684097,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cugino_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
-browar_okocim-okocim_porter,0,0,244484014081,"{""name"":""Okocim Porter"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_okocim"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-breckenridge_bbq_of_omaha-india_pale_ale,0,0,244484341760,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-rock_bottom_restaurant_brewery_milwaukee-pilsner,0,0,245006073858,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-wynkoop_brewing-railyard_ale,0,0,245752332289,"{""name"":""Railyard Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship brew is a smooth, amber beer that combines the malty goodness of an Octoberfest lager with the slight fruitiness of an ale. Hearty but refreshing."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,60,1
-bootleggers_steakhouse_and_brewery-bourbon_street_stout,0,0,244367294466,"{""name"":""Bourbon Street Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
-great_northern_tavern_and_brewery-empire_builder_stout,0,0,244755595264,"{""name"":""Empire Builder Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_northern_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
-american_river_brewing-oatmeal_stout,0,0,244367556608,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""american_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
-rogue_ales-red_fox,0,0,245006336000,"{""name"":""Red Fox"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
-harpoon_brewery_boston-harpoon_celtic_ale,0,0,244759199745,"{""name"":""Harpoon Celtic Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,63,1
-de_proef_brouwerij-andelot_cuvee_diabolique,0,0,244619739136,"{""name"":""Andelot Cuvee Diabolique"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-c_b_potts_of_cheyenne-big_horn_big_red_ale,0,0,244484079616,"{""name"":""Big Horn Big Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
-breckenridge_brewery-summer_bright_ale,0,0,244484407296,"{""name"":""Summer Bright Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-sam_choy_s_breakfast_lunch_crab_big_aloha_brewery-bumbucha_stout,0,0,245006073859,"{""name"":""Bumbucha Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sam_choy_s_breakfast_lunch_crab_big_aloha_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
-zea_rotisserie_and_brewery-abby_road_belgian_ale,0,0,245752332290,"{""name"":""Abby Road Belgian Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
-boulevard_brewing_company-boulevard_maibock,0,0,244367360000,"{""name"":""Boulevard Maibock"",""abv"":5.95,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First introduced in 2008, Boulevard Maibock is a new, limited-release seasonal brew. A welcome sign of Spring, this beer is a traditional German lager, lighter in color than other bocks. Boulevard’s Maibock is a distinctive, refreshing take on this springtime classic."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,26,1
-great_waters_brewing_company-brown_trout_brown,0,0,244755595265,"{""name"":""Brown Trout Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
-andechser_klosterbrauerei-doppelbock_dunkel,0,0,244367556609,"{""name"":""Doppelbock Dunkel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""andechser_klosterbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
-salt_lake_brewing_squatters-black_forest_schwarzbier,0,0,245006336001,"{""name"":""Black Forest Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salt_lake_brewing_squatters"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,62,1
-hereford_hops_restaurant_and_brewpub_1-whitetail_ale,0,0,244759199746,"{""name"":""Whitetail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
-dick_s_brewing-silk_lady,0,0,244619804672,"{""name"":""Silk Lady"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
-captain_lawrence_brewing_company-captain_s_reserve_imperial_ipa,0,0,244484079617,"{""name"":""Captain's Reserve Imperial IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is a salute to the ingenuity and creativity of the American craft brewers. A uniquely American style of beer, the Double or Imperial IPA, has become the calling card of many craft brewers who aren't afraid to push the limits of what hops can add to a beer. This beer is big and hoppy - not for the faint of heart! Be prepared to experience sensory overload as you savor this Imperial IPA."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,24,1
-brewery_ommegang-hennepin_farmhouse_ale,0,0,244484407297,"{""name"":""Hennepin Farmhouse Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-sarah_hughes_brewery,0,0,245006073860,"{""name"":""Sarah Hughes Brewery"",""city"":""Dudley"",""state"":""West Midlands"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dudley DY3 1JE""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.5435,""lon"":-2.1156}}",1,61,1
-brasserie_des_franches_montagnes,0,0,244367360001,"{""name"":""Brasserie des Franches-Montagnes"",""city"":""Saignelgier"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-32-951-26-26"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chemin des Buissons 8""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.2543,""lon"":7.0026}}",1,26,1
-green_flash_brewing-green_flash_imperial_india_pale_ale,0,0,244755660800,"{""name"":""Green Flash Imperial India Pale Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,53,1
-anheuser_busch-bud_extra,0,0,244367622144,"{""name"":""Bud Extra"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally known as \""B to the E\""""}",1,27,1
-schooner_s_grille_brewery,0,0,245006336002,"{""name"":""Schooner's Grille & Brewery"",""city"":""Antioch"",""state"":""California"",""code"":""94531"",""country"":""United States"",""phone"":""1-925-776-1800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4250 Lone Tree Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.9669,""lon"":-121.783}}",1,62,1
-hoppin_frog_brewery-hoppin_to_heaven_ipa,0,0,244759265280,"{""name"":""Hoppin' To Heaven IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Raise your glass to the heavens in a toast to HOPS – the spice of beer! This classic American I.P.A. features the finest American hops to add a spicy, assertive, and citrusy character to its full-bodied, rich malt taste"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
-double_mountain_brewery_taproom-double_mountain_altbier,0,0,244619804673,"{""name"":""Double Mountain Altbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""This special German-style ale is still made faithfully in Dusseldorf, just down the road from Cologne. Our interpretation is light brown in color and cleanly malty, with a crisp hoppy bitterness in the finish. \r\nBrewed with organic Pilsner and Munich malt; Chocolate and wheat malt, and imported Spalt hops."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,32,1
-carolina_beer_company,0,0,244484079618,"{""name"":""Carolina Beer Company"",""city"":""Mooresville"",""state"":""North Carolina"",""code"":""28115"",""country"":""United States"",""phone"":""(704) 799-2337"",""website"":""http://www.carolinabeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""110 Barley Park Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6231,""lon"":-80.8011}}",1,24,1
-bricktown_brewery-laughing_ass,0,0,244484407298,"{""name"":""Laughing Ass"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-sequoia_brewing_conoabt,0,0,245006139392,"{""name"":""Sequoia Brewing Conoabt"",""city"":""Fresno"",""state"":""California"",""code"":""93728"",""country"":""United States"",""phone"":""1-559-264-5521"",""website"":""http://www.sequoiabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""777 East Olive Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.7582,""lon"":-119.802}}",1,61,1
-brasserie_dubuisson-scaldis_bush_amber_12,0,0,244367360002,"{""name"":""Scaldis / Bush Amber 12%"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-hansa_bryggeri-premium,0,0,244755660801,"{""name"":""Premium"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hansa_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-appalachian_brewing_company-ipa_series_simcoe,0,0,244367622145,"{""name"":""IPA Series (Simcoe)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,27,1
-shipyard_brewing_portland-export_ale,0,0,245006336003,"{""name"":""Export Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-hubcap_brewery_and_kitchen-rainbow_trout_stout,0,0,244759265281,"{""name"":""Rainbow Trout Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hubcap_brewery_and_kitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
-dragonmead_microbrewery-broken_paddle,0,0,244619870208,"{""name"":""Broken Paddle"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If you like your beer on the bitter side then this one's for you. This American Style IPA uses Pale Ale, Munich, and Caramunich malt blest with Cascade, Chinook, Willamette and Centennial (dry hopped) hops to create a brew that is fit for the crazy American hop addicts."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,32,1
-chelsea_brewing_company-checker_cab_blonde_ale,0,0,244484145152,"{""name"":""Checker Cab Blonde Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-brouwerij_de_landtsheer-malheur_12,0,0,244484472832,"{""name"":""Malheur 12"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-sly_fox_brewhouse_and_eatery_royersford-sly_fox_christmas_ale,0,0,245123252224,"{""name"":""Sly Fox Christmas Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty, full-bodied red ale is made with traditional mulling spices: Ginger, Clove, All Spice, Cinnamon & Nutmeg. If this one doesn't get you into the Christmas spirit, you truly are a Scrooge."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,61,1
-brasserie_lefebvre-saison_1900,0,0,244484603904,"{""name"":""Saison 1900"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_lefebvre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-highland_brewing_company-oatmeal_porter,0,0,244755726336,"{""name"":""Oatmeal Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A unique Highland creation, this robust beer is black in color, very malty with hints of chocolate-roasted flavor and a well balanced hop character.\r\n\r\nIBU: 32\r\nAlcohol content: 5.8% by volume\r\nHops: Chinook, Willamette and Cascade\r\n\r\nCalories per 12 oz. 191.16\r\nCarbs per 12 oz. 19.42"",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
-appalachian_brewing_company-volks_weizenbock,0,0,244367622146,"{""name"":""Volks Weizenbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Volks Weizenbock combines the strong malty component of a bock bier with the tangy, spiciness of the Hefe Weizen. This beer is brewed 1 1/2 times stronger than our Hefe Weizen and is aged commensurately longer for extra smoothness! \r\nVolks Weizenbock is \""The Peoples Beer\""!"",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,27,1
-allagash_brewing-grand_cru,0,0,244364279808,"{""name"":""Grand Cru"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-sierra_nevada_brewing_co-harvest_ale_2007,0,0,245006336004,"{""name"":""Harvest Ale 2007"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
-indian_wells_brewing-desert_pale_ale,0,0,244759265282,"{""name"":""Desert Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
-empyrean_brewing_company-summer_common,0,0,244619870209,"{""name"":""Summer Common"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-clipper_city_brewing_co-hang_ten,0,0,244484145153,"{""name"":""Hang Ten"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Hang Ten is the Heavy Seas wheat beer you’ve been waiting for. A classic German-style weizen bock, slightly cloudy and bursting with flavor. Hang on and surf the Heavy Seas wave! Seasonally available in July while supplies last."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,24,1
-california_cider_company-ace_fermented_honey_cider,0,0,244484472833,"{""name"":""Ace Fermented Honey Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""california_cider_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-south_australian_brewing,0,0,245123252225,"{""name"":""South Australian Brewing"",""city"":""Adelaide"",""state"":""South Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(09)-8354-8666"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""107 Port Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-34.9111,""lon"":138.575}}",1,61,1
-brasserie_mcauslan,0,0,244484669440,"{""name"":""Brasserie McAuslan"",""city"":""Montreal"",""state"":""Quebec"",""code"":""H4C 2G"",""country"":""Canada"",""phone"":""1-514-939-3060"",""website"":""http://www.mcauslan.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5080 Rue St-Ambroise""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.4682,""lon"":-73.5913}}",1,26,1
-hornsby_s_pubdrafts_ltd,0,0,244755726337,"{""name"":""Hornsby's Pubdrafts Ltd."",""city"":""Modesto"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 Yosemite Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.6345,""lon"":-120.982}}",1,53,1
-back_road_brewery-back_road_american_pale_ale,0,0,244367687680,"{""name"":""Back Road American Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If you are looking for a straight shooting quaffable beer with plenty of hops, this is it. Straw colored from plump North American 2-row malted barley and deliciously hopped with Cascades from the USA, any patriot can enjoy this beer. Cascade hops have a pleasant taste and fresh smell best described as florally or mildly citrusy. A nice balance is struck between the malt and hops. So how about it Yank? Put that capitalism to work and buy some today!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-appleton_brewing-adler_brau_bucky_brau_barleywine,0,0,244364345344,"{""name"":""Adler Bräu Bucky Brau Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-spoetzl_brewery-shiner_bock,0,0,245123645440,"{""name"":""Shiner Bock"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
-jacob_leinenkugel_brewing_company-red_lager,0,0,244759330816,"{""name"":""Red Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-faultline_brewing_2-stout,0,0,244619870210,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-court_avenue_brewing-black_hawk_stout,0,0,244484145154,"{""name"":""Black Hawk Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
-captain_lawrence_brewing_company-nor_easter,0,0,244484472834,"{""name"":""Nor' Easter"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a truly unique brew, combining some unusual elements to create a powerful, yet flavorful brew. I brewed a similar beer to this one back in 1998, while I was home brewing out in California. Only this time around I decided to age it in bourbon barrels to add a new element to the already rich sensory profile. The combination of dark malt, elderberries and bourbon barrels makes for an interesting tasting experience. This is a sippin’ beer, so sit back by the fire and enjoy. 12% alcohol by volume."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,25,1
-southern_tier_brewing_co-iniquity_imperial_black_ale,0,0,245123317760,"{""name"":""Iniquity Imperial Black Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The hexagram talisman has been used around the world for centuries to invoke magic and good luck. The six–point star is also the customary symbol of the brewer, representing the essential aspects of purity: water, hops, grain, malt, yeast, and of course, the brewer. Wishes of good fortune often collaborate with the brewer’s creativity to yield dramatic results. We carefully chose the name for this Imperial India Black Ale, Iniquity – a word opposing goodness. Why? This beer is contrary to what one may expect from an IPA; this is an ale as black as night. It is the antithesis of Unearthly. Some may consider it an immoral act to blacken an ale. We suggest they don’t rely on conventional standards. Allow the darkness to consume you. Cheers!""}",1,61,1
-brasserie_pietra-ambree_chestnut_beer,0,0,244484669441,"{""name"":""Ambrée / Chestnut Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_pietra"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-joshua_huddy_s_brew_pub_and_grill-porter,0,0,244755726338,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joshua_huddy_s_brew_pub_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
-bamberger_mahr_s_bru-pilsner,0,0,244367687681,"{""name"":""Pilsner"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-barley_s_brewing_1-j_scott_francis_esb,0,0,244364410880,"{""name"":""J. Scott Francis ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-st_francis_abbey_brewery,0,0,245123710976,"{""name"":""St. Francis Abbey Brewery"",""city"":""Kilkenny"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":""http://www.diageo.ie/Company/Brewing/KilKenny/CompanyBrewingKilkenny"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.6538,""lon"":-7.248}}",1,62,1
-jarre_creek_ranch_brewing,0,0,244759330817,"{""name"":""Jarre Creek Ranch Brewing"",""city"":""Castle Rock"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.3722,""lon"":-104.856}}",1,63,1
-fitzpatrick_s_brewing,0,0,244619935744,"{""name"":""Fitzpatrick's Brewing"",""city"":""Iowa City"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.6611,""lon"":-91.5302}}",1,32,1
-court_avenue_brewing-esb,0,0,244484210688,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-cat_s_paw_home_brew-monkeyboy_ale,0,0,244484472835,"{""name"":""MonkeyBoy Ale"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cat_s_paw_home_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Made for Wedding"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,25,1
-southern_tier_brewing_co-oak_aged_unearthly_imperial_pale_ale,0,0,245123317761,"{""name"":""Oak Aged Unearthly Imperial Pale Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,61,1
-brauerei_aying_franz_inselkammer_kg-jahrhundert_bier,0,0,244484669442,"{""name"":""Jahrhundert-Bier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-jw_lees_and_co_brewers_ltd,0,0,244755726339,"{""name"":""JW Lees and Co (Brewers) Ltd."",""city"":""Manchester"",""state"":""Manchester"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0161)-6432487"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Middleton Junction""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.5412,""lon"":-2.1734}}",1,53,1
-barley_john_s_brewpub,0,0,244367687682,"{""name"":""Barley John's Brewpub"",""city"":""New Brighton"",""state"":""Minnesota"",""code"":""55112"",""country"":""United States"",""phone"":""1-651-636-4670"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""781 Old Highway 8 SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.036,""lon"":-93.1984}}",1,27,1
-barrel_house_brewing_co-redlegg_ale,0,0,244364410881,"{""name"":""RedLegg Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barrel_house_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""In the old days, runners who made it to third base were rewarded with a mug of beer! This is the way the game was meant to be played; pitchers throwing side- armed and a half barrel on the field. Our Red Legg Ale is an American Amber Ale with a rich, malty flavor, slightly sweet on the finish. An All-Star in any line- up!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
-staatliches_hofbrauhaus_in_munchen-hofbrau_oktoberfestbier,0,0,245123710977,"{""name"":""Hofbräu Oktoberfestbier"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""Hofbräu brews a rich, full-bodied beer which goes down ideally with traditional Bavarian cuisine. With its deliciously bitter taste and alcoholic content of 6.3% volume, Hofbräu Oktoberfestbier is as special as the Beer Festival itself.\r\n\r\nType: Bottom-fermented, light festive beer"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,62,1
-jolly_pumpkin_artisan_ales-madrugada_obscura,0,0,244759330818,"{""name"":""Madrugada Obscura"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian inspired stout that is as dark as a moonless midnight, brimming of roasted malts and bitter hops. It will keep you good company in all places, be thay light or dark."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
-fort_collins_brewery-the_kidd_lager,0,0,244619935745,"{""name"":""The Kidd Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fort_collins_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,32,1
-de_leyerth_brouwerijen-urthel_hibernius_quentum_ale,0,0,244616593408,"{""name"":""Urthel Hibernius Quentum Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-cedar_brewing-ribleymeister_light,0,0,244484538368,"{""name"":""Ribleymeister Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-st_austell_brewery,0,0,245123383296,"{""name"":""St. Austell Brewery"",""city"":""St. Austell"",""state"":""Cornwall"",""code"":""PL25 4BY"",""country"":""United Kingdom"",""phone"":""0845 2411122"",""website"":""http://www.staustellbrewery.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""63 Trevarthian Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3416,""lon"":-4.7883}}",1,61,1
-brauerei_grieskirchen_ag-jorger_weisse_hell,0,0,244484669443,"{""name"":""Jörger Weiße Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_grieskirchen_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,26,1
-kaiserdom_privatbrauerei_bamberg-meranier_schwarzbier,0,0,244755791872,"{""name"":""Meranier Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,53,1
-baron_brewing_company-baron_helles_bock,0,0,244367687683,"{""name"":""Baron Helles Bock"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Helles-Bock is similar to a traditional Maibock. Bocks are traditionally brewed in the winter / early spring months and are served during the spring / early summer months. The Helles Bock has a copper golden color with a brilliant white head. The body showcases a clean sweet maltiness that is offset by just enough hops to balance it. Very smooth and easy, drinkable yet deceptive at 6.4%.\r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,27,1
-basil_t_s_brew_pub_and_italian_grill,0,0,244364410882,"{""name"":""Basil T's Brew Pub and Italian Grill"",""city"":""Toms River"",""state"":""New Jersey"",""code"":""8753"",""country"":""United States"",""phone"":""1-732-244-7566"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1171 Hooper Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.9767,""lon"":-74.1829}}",1,20,1
-stadsbrouwerij_de_hemel-nieuw_ligt_grand_cru_2006,0,0,245123710978,"{""name"":""Nieuw Ligt Grand Cru 2006"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stadsbrouwerij_de_hemel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-jt_whitney_s_brewpub_and_eatery-badger_red_ale,0,0,244759396352,"{""name"":""Badger Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
-glacier_brewhouse-black_rye_bock,0,0,244620001280,"{""name"":""Black Rye Bock"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glacier_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark lager combines the characteristics of three winter beer styles. All three of these styles traditionally come from the colder harsher areas of Europe. The styles are (1) Black Beer (aka schwartzbier) originating from the former East Germany); (2) Rye Beer which at one time was only made in hardier areas of Eastern and Baltic Europe; and (3) Bock Beer which is widely known as a higher alcohol lager of Northern Germany. Our Black Rye Bock has a distinctive bitter chocolate palate and black color reminiscent of a black beer. The spiciness from the rye malt shines through in the flavor. The high alcohol balanced with malty sweetness rounds out this cold season bock. Smooth drinking with a punch makes this lager a perfect quaffer for our Arctic winter. 6.2% alcohol by volume."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,32,1
-de_proef_brouwerij-flemish_primitive_wild_ale_pig_nun,0,0,244616658944,"{""name"":""Flemish Primitive Wild Ale (Pig Nun)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-central_city_brewing_company,0,0,244484538369,"{""name"":""Central City Brewing Company"",""city"":""Surrey"",""state"":""British Columbia"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":""http://www.centralcitybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13450 - 102 Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.1873,""lon"":-122.85}}",1,25,1
-steamworks-sour_cherry_ale,0,0,245123383297,"{""name"":""Sour Cherry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""An intriguing fruit beer brewed with fresh sour cherries.\r\n\r\nOur Sour Cherry Ale is inspired by the centuries old Belgian tradition of brewing beer with cherries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Montmorency cherries from a local orchard in the Fraser Valley. The result is a most intriguing beer with an elegant cherry perfume, a tart, fruity flavour, and a subtle almondy finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
-brauhaus_johann_albrecht_dsseldorf,0,0,244484734976,"{""name"":""Brauhaus Johann Albrecht - Dsseldorf"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-570129"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Niederkasseler Strae 104""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2404,""lon"":6.7516}}",1,26,1
-kessler_brewing-wild_west_beer,0,0,244755791873,"{""name"":""Wild West Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kessler_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-beach_chalet_brewery-essex_s_o_b,0,0,244367753216,"{""name"":""Essex S.O.B."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-bell_s_brewery_inc-lager_beer,0,0,244364476416,"{""name"":""Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""As refreshingly crisp as a morning swim in a Great Lake, this brew is crafted with Pils and Munich malts. The pronounced hop character of this golden lager sparks thoughts of sandy beaches and rocky islands."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
-stone_brewing_co-levitation_ale,0,0,245123776512,"{""name"":""Levitation Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
-keihan_uji_kotsu-busby_stout,0,0,244759396353,"{""name"":""Busby Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keihan_uji_kotsu"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
-golden_gate_park_brewery-four_sheets_cream_ale,0,0,244620001281,"{""name"":""Four Sheets Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
-dempsey_s_restaurant_brewery-spring_bock,0,0,244616658945,"{""name"":""Spring Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
-cigar_city_brewing-guava_grove_ale,0,0,244484538370,"{""name"":""Guava Grove Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Guava Grove is a Saison which is fermented with guava. The guava adds sweetness and acidity to the prodigious fruity esters imparted by the warm fermentation temperatures of the Belgian yeast strain."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,25,1
-stone_brewing_co-4th_anniversary_ipa,0,0,245123383298,"{""name"":""4th Anniversary IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
-brewdog_ltd-77_lager,0,0,244484734977,"{""name"":""77 Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A Lager that actually tastes of something?\r\n\r\nYou have to be kidding, right?\r\n\r\n77 lager is made with 100% malt and whole leaf hops.\r\n\r\nIt contains no preservatives, additives, cheap substitutes or any other junk.\r\n\r\nMaybe we are crazy. So what?\r\n\r\nTaste 77 Lager and we are pretty sure you will agree that the fine line between genius and insanity has just become a little more blurred."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,26,1
-lakefront_brewery-beer_line_2000,0,0,244755791874,"{""name"":""Beer Line 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-belize_brewing,0,0,244367753217,"{""name"":""Belize Brewing"",""city"":""Belize City"",""state"":"""",""code"":"""",""country"":""Belize"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 1068""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":17.4977,""lon"":-88.1867}}",1,27,1
-bersaglier,0,0,244364476417,"{""name"":""Bersaglier"",""city"":""San Martin"",""state"":""Buenos Aires"",""code"":""1650"",""country"":""Argentina"",""phone"":""(54)-011-4713-6557"",""website"":""http://www.bersaglier.com.ar/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Calle 92 N� 101""]}",1,20,1
-stoudt_s_brewery-smooth_hoperator,0,0,245123776513,"{""name"":""Smooth Hoperator"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,62,1
-kleinbrouwerij_de_glazen_toren-canaster_winter_scotch,0,0,244759396354,"{""name"":""Canaster Winter Scotch"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kleinbrouwerij_de_glazen_toren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-goose_island_beer_company_fulton_street-matilda,0,0,244620001282,"{""name"":""Matilda"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-dixon_s_downtown_grill-uncle_dunkel,0,0,244616724480,"{""name"":""Uncle Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-costal_extreme_brewing_company-newport_storm_hurricane_amber_ale,0,0,244484603904,"{""name"":""Newport Storm Hurricane Amber Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""costal_extreme_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The first offering from the Coastal Extreme Brewing Company blends some of the world's finest ingredients into a delightful beer. In producing our amber ale, we selected the highest quality European and American malts and hops. This ale has a malt character which is delicately balanced with its hop profile so that consumers of all levels enjoy drinking it. Hurricane Amber Ale is a full flavored beer which clearly has more taste than other domestic and imported light beers while at the same time does not overpower the drinker with heavy body or excessive bitterness. So find yourself a cold 'Hurricane' and ENJOY!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
-stone_brewing_co-stone_pale_ale,0,0,245123448832,"{""name"":""Stone Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship ale, Stone Pale Ale is our Southern California interpretation of the classic British pale ale style. Deep amber in color, Stone Pale Ale is robust and full flavored. A delicate hop aroma is complemented by a rich maltiness. This is an ale for those who have learned to appreciate distinctive flavor. Stone Pale Ale is great by itself, or with food that requires a beer of character."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
-brouwerij_bosteels-deus_brut_des_flandres,0,0,244484734978,"{""name"":""Deus Brut des Flandres"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bosteels"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-liefmans_breweries,0,0,244755857408,"{""name"":""Liefmans Breweries"",""city"":""Dentergem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-63-36-81"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wontergemstraat 42""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9649,""lon"":3.422}}",1,53,1
-bent_river_brewing-pale_ale,0,0,244367753218,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bent_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-big_time_brewing-prime_time_pale_ale,0,0,244364476418,"{""name"":""Prime Time Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
-the_livery-the_livery_hefe_weizen,0,0,245123842048,"{""name"":""The Livery Hefe Weizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""A lightly hopped, refreshing, Bavarian style wheat ale that has hints of banana and clove in the finish. Available May until October."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,62,1
-left_hand_brewing_company,0,0,244759461888,"{""name"":""Left Hand Brewing Company"",""city"":""Longmont"",""state"":""Colorado"",""code"":""80501"",""country"":""United States"",""phone"":""1-303-772-0258"",""website"":""http://www.lefthandbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1265 Boston Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1587,""lon"":-105.113}}",1,63,1
-gordon_biersch_brewing-dunkles,0,0,244620066816,"{""name"":""Dunkles"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-dreher_srgyrak_zrt-dreher_classic,0,0,244616724481,"{""name"":""Dreher Classic"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dreher_srgyrak_zrt"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,24,1
-dixon_s_downtown_grill-platte_valley_pale_ale,0,0,244616986624,"{""name"":""Platte Valley Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-stone_brewing_co-sublimely_self_righteous_ale,0,0,245123448833,"{""name"":""Sublimely Self-Righteous Ale"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brace yourself, bereaved fans of Stone 11th Anniversary Ale, for your joyous new day has finally come! It’s like your first crush–you know, the one who broke your heart when she/he decided to go to the junior prom with what’s-their-name–has suddenly come back to you to go for a cruise down the main drag on Friday night. It’s like…it’s like finding that long lost gold watch, given to you by your father, who got it from his father, who got it from his father. It’s like when your best buddy in the world, Sam the family dog, finally sauntered up the front porch steps one sunny afternoon after having been on a six-week runaway. Yes, it’s just like that.\r\n\r\nAnd it’s like this: A brilliantly hopped double IPA–providing a wake up call of floral and citrus aromas–backed up by a deliciously smooth and dark roasted maltiness. You get the best of both worlds with this black double IPA.""}",1,61,1
-brouwerij_rodenbach-alexander,0,0,244484800512,"{""name"":""Alexander"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_rodenbach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-lion_brewery_ceylon_ltd-imperial_premium_malt_pilsner,0,0,244878409728,"{""name"":""Imperial Premium Malt Pilsner"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_ceylon_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Lion Imperial Lager, from Sri Lanka, is brewed using the finest natural ingredients - delivering a rich smooth taste and refreshment. Enjoy its bite.""}",1,53,1
-bierbrouwerij_bavaria-holland_beer,0,0,244367753219,"{""name"":""Holland Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-birrificia_le_baladin-super,0,0,244364476419,"{""name"":""Super"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-three_needs_brewery_and_taproom-peat_smoked_altbier,0,0,245123842049,"{""name"":""Peat Smoked Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_needs_brewery_and_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
-lwenbru_zrich-lowen_weisse,0,0,244882735104,"{""name"":""Löwen Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lwenbru_zrich"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,63,1
-granville_island_brewing-brockton_black_lager,0,0,244747010048,"{""name"":""Brockton Black Lager"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,32,1
-dux_de_lux,0,0,244616724482,"{""name"":""Dux de Lux"",""city"":""Queenstown"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""03 442 9688"",""website"":""http://www.thedux.co.nz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 Church Street PO Box 684""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-45.0331,""lon"":168.661}}",1,24,1
-dragonmead_microbrewery-dubbel_dragon,0,0,244617052160,"{""name"":""Dubbel Dragon"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Dubbel style Belgian beer is created in the great Belgian tradition. Pale Malt, Caramel and Special B Malts impart a unique sweetness to this beer. The traditional Belgian yeast fully ferments the Belgian Candi Sugar to give a satisfying taste that is twice what a Belgian pale delivers."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,25,1
-taiwan_tobacco_and_wine_monopoly_board,0,0,245123514368,"{""name"":""Taiwan Tobacco and Wine Monopoly Board"",""city"":""Taipei"",""state"":"""",""code"":"""",""country"":""Taiwan, Province of China"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Taipei""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":25.026,""lon"":121.472}}",1,61,1
-brown_street_brewery-aussie_lager,0,0,244484800513,"{""name"":""Aussie Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-lost_coast_brewery-dunkel_hefeweizen,0,0,244878475264,"{""name"":""Dunkel Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-big_horn_brewing_the_ram_2-schaumbergfest,0,0,244367753220,"{""name"":""Schaumbergfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_horn_brewing_the_ram_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,27,1
-black_creek_historic_brewery,0,0,244364541952,"{""name"":""Black Creek Historic Brewery"",""city"":""Toronto"",""state"":""Ontario"",""code"":""M3J 2P3"",""country"":""Canada"",""phone"":""416 736-1733"",""website"":""http://www.blackcreekbrewery.ca/"",""type"":""brewery"",""updated"":""2011-06-08 07:07:47"",""description"":""Black Creek Historic Brewery recreates the techniques, tools and recipes used by brewers in 1860s Ontario. Our Brewmasters do everything by hand on a small scale. It's a great place to learn about beer because, unlike a modern commercial brewery, you can see every step in the process for yourself. And, no one else has a Brewmaster ready to welcome visitors in period costume.\n\nIn the 1860s there were 155 registered breweries in Ontario, and countless smaller operations. Black Creek Historic Brewery is the first in this province to replicate the brewing processes of that era, when there was no electricity or refrigeration, no stainless steel tanks or bottling plants.\n\nThe equipment at Black Creek Historic Brewery is made mainly of wood and copper, and the beer ferments the way it was done in the old days, with wooden barrels to age the beer. Malted barley is shoveled by hand into the wort tun where it is boiled into a mash. After filtering the solids through a linen cloth, the sugary liquid is boiled and hops are added, both for flavouring and as a natural preservative. Once the boiling is complete, the beer is put in barrels where the yeast is added. A short time later, the beer is ready!\n\nVisitors can sample the beer at cellar temperature, the way it was enjoyed in the past, or drink a chilled pint in the pub, the way many people prefer it today. Either way, you"",""address"":[""Black Creek Pioneer Village"",""1000 Murray Ross Parkway""]}",1,20,1
-troegs_brewing-oatmeal_stout,0,0,245123842050,"{""name"":""Oatmeal Stout"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Oatmeal Stout is our interpretation of the classic dry stout style. Dark and creamy with hints of chocolate and black currants, our Oatmeal Stout includes a healthy dose of Centennial and Chinook hops creating a unique stout perfect for the late Fall and Winter."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
-marzoni_s_brick_oven_brewing_co-stone_mason_stout,0,0,244882800640,"{""name"":""Stone Mason Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Creamy and Dark with a Dry Roasted Finish"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
-great_dane_pub_and_brewing_2-black_earth_porter,0,0,244747075584,"{""name"":""Black Earth Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,32,1
-finnegans-irish_amber,0,0,244616790016,"{""name"":""Irish Amber"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""finnegans"",""updated"":""2010-12-03 17:58:29"",""description"":""Finnegans Irish Amber is brewed with potatoes and three varieties of imported two-row malts. The beer is pale amber in color but light in body. A gentle hop bitterness compliments its complex malt character. \n\nFinnegans is currently available on tap and in liquor stores throughout the state of Minnesota. Finnegans is unique in that 100% of the profits are donated to The Finnegans Community Fund which disburses grants to help the working poor and at-risk youth throughout Minnesota. "",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,24,1
-dragonmead_microbrewery-excalibur_barleywine,0,0,244617052161,"{""name"":""Excalibur Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-the_bruery-black_orchard,0,0,245123514369,"{""name"":""Black Orchard"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Black Orchard is an unfiltered, bottle conditioned Belgian-style black wheat beer, or “black wit”, if you will. This dark but surprisingly light bodied beer is very drinkable while still having character and complexity. Chamomile is added for its floral aroma, while the coriander and citrus peel give the characteristics of a traditional witbier.""}",1,61,1
-21st_amendment_brewery_cafe-general_pippo_s_porter,0,0,244364607488,"{""name"":""General Pippo's Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep toffee color with rich roasty and subtle hop aroma. Chocolate flavors dominate the palate and interact with back-end sweetness."",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
-bull_bush_pub_brewery-portsmouth_pale,0,0,244484866048,"{""name"":""Portsmouth Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-main_street_station_casino_brewery_and_hotel-hibernator_doppelbock,0,0,244878540800,"{""name"":""Hibernator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_station_casino_brewery_and_hotel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,53,1
-big_river_brewing-vienna_lager,0,0,244367753221,"{""name"":""Vienna Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-blue_point_brewing-sour_cherry_imperial_stout,0,0,244364541953,"{""name"":""Sour Cherry Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-12-20 15:37:54"",""description"":""An extremely complex version of the classic Russian beer style. Roasted, black, and chocolate malts deliver multi-layered coffee and sherry notes in a surprisingly smooth package. The beer is then matured with just a kiss of real sour red cherries."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,20,1
-tyranena_brewing-bitter_woman_ipa,0,0,245123907584,"{""name"":""Bitter Woman IPA"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Lest we forget Aunt Cal, an early resident of Lake Mills. Local history remembers her for blindly running into a hitching post and saying, \""Excuse me, Dr. Dodge!\"" It was said that she was an old sweetheart of the famous American poet, Henry Wadsworth Longfellow. And she still had the love letters to prove it! Sadly, Aunt Cal never wed. We brewed our Bitter Woman IPA the way we imagine Aunt Cal may have been, very fruity and intensely bitter. So lift up a pint of Bitter Woman IPA and toast Aunt Cal and the bitter woman you know. Cheers!\r\n\r\nBitter Woman IPA is our Wisconsin variation of an India Pale Ale. This beer is intensely bitter with a mighty hop flavor and aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,62,1
-metropolitan_brewing-dynamo_copper_lager,0,0,244882800641,"{""name"":""Dynamo Copper Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""metropolitan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""If malt and hops are the two poles of brewing, this beer is the gently spinning sweet spot between them. First, you’ll notice the spicy aromas of Perle and Hallertau hops. Then - wipe the foam off the tip of your nose - dive into the toasty flavors of Vienna and Munich malts. Dynamo starts strong and finishes crisp and smooth. The balanced flavors, aromas, and even the coppery-red tones of this beer go great with everything. Fear no pairing. The best time to enjoy Dynamo is when you’re thirsty.\r\n\r\nDynamo Copper Lager goes great with pizza, neighborhood block parties, spring rolls, first dates, football games, whiskey, tapas, the Sunday newspaper, late-night burritos, veggie omelets, business lunches, grilled mushrooms, pretzels, political debate, corn-on-the-cob, classic sci-fi flicks, mixed greens, campfires, salmon, billiards, cherry pie, rock shows, pumpernickel, salsa, grand openings, peanuts, sewing bees, extra sharp cheddar cheese, and holidays.""}",1,63,1
-great_dane_pub_and_brewing_2,0,0,244747141120,"{""name"":""Great Dane Pub and Brewing #2"",""city"":""Fitchburg"",""state"":""Wisconsin"",""code"":""53711"",""country"":""United States"",""phone"":""1-608-442-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2980 Cahill Main""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0177,""lon"":-89.4232}}",1,32,1
-fox_river_brewing_1-golden_ale,0,0,244616790017,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
-duclaw-snake_oil,0,0,244617052162,"{""name"":""Snake Oil"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""Just like the miracle cure-alls of old, Professor Wagner’s Imperial Pilsner possesses no verifiable medicinal qualities whatsoever. And yet, taken internally, this golden elixir is guaranteed to cure what ails you. Snake Oil is a crisp, Medium-bodied lager with a complex maltiness and heavy hop presence – well-rounded and refreshing.""}",1,25,1
-the_church_brew_works-church_brew_oktoberfest,0,0,245123514370,"{""name"":""Church Brew Oktoberfest"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Oktoberfest is a light amber colored beer. It is malty in both flavor and aroma making it a delicate beer which is very drinkable. The hop bitterness is kept low to accentuate the maltiness. Notice the crisp clean character and enjoy. We brewed three batches of this beer so that we can bottle some of it in order to enhance our bottle beer selection."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
-aberdeen_brewing,0,0,244364673024,"{""name"":""Aberdeen Brewing"",""city"":""Valparaiso"",""state"":""Indiana"",""code"":"""",""country"":""United States"",""phone"":""(219) 548-3300"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""210 Aberdeen Dr.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4392,""lon"":-87.1078}}",1,21,1
-caldera_brewing-pilot_rock_porter,0,0,244484866049,"{""name"":""Pilot Rock Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, creamy, chocolate laden porter."",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-martini_brauerei-kasseler_premium_pils,0,0,244878540801,"{""name"":""Kasseler Premium Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-big_rock_brewery-buzzard_breath_discontinued,0,0,244367818752,"{""name"":""Buzzard Breath (discontinued)"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-boston_beer_company-samuel_adams_summer_ale,0,0,244364541954,"{""name"":""Samuel Adams Summer Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""right and citrusy, brewed with mysterious grains of paradise.\r\nSamuel Adams® Summer Ale is an American wheat ale. This summer seasonal uses malted wheat as well as lemon zest and grains of paradise, a rare pepper from Africa first used as a brewing spice in the 13th Century to create a crisp and spicy flavor and body. The ale fermentation imparts a background tropical fruit note reminiscent of mangos and peaches. All of these come together to create a quenching, clean finishing beer perfect for those warm Summer days"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,20,1
-uehara_shuzou_co_ltd_echigo_beer_pub,0,0,245123907585,"{""name"":""Uehara Shuzou Co. Ltd. / Echigo Beer Pub"",""city"":"""",""state"":"""",""code"":"" 953-0076"",""country"":""Japan"",""phone"":""+81 0256-72-0640"",""website"":""http://www.echigo-beer.jp/"",""type"":""brewery"",""updated"":""2011-07-23 20:36:03"",""description"":"""",""address"":[""Niigata-ken Nishikanbara-gun""]}",1,62,1
-michigan_brewing-sunset_amber_lager,0,0,244882866176,"{""name"":""Sunset Amber Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing, crisp and clean amber colored lager. Made in a Vienna-style with distinct caramel malt flavor and aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-greenshields_brewery_and_pub,0,0,244747141121,"{""name"":""Greenshields Brewery and Pub"",""city"":""Raleigh"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.7721,""lon"":-78.6386}}",1,32,1
-full_sail_brewing_1-old_boardhead_2006,0,0,244616790018,"{""name"":""Old Boardhead 2006"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-fifty_fifty_brewing_co-donner_party_porter,0,0,244617117696,"{""name"":""Donner Party Porter"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Sustenance to get you through those long, cold winters, the Donner Party Porter is another of FiftyFifty's flagship beers. Reminiscent of dark chocolate, espresso, and dark dried fruits with a long complex finish, this beer is good for one of those nights where you've dug yourself into a snow bank because the ski trip didn't go quite as planned. Deep brown with mahogany highlights, the hops and malt are very well balanced leaving one to contemplate the myriad of flavors as the beer warms. Moderate to slightly heavy, this beer is heaven in a glass."",""style"":""Porter"",""category"":""Irish Ale""}",1,25,1
-thirsty_dog_brewing-12_dogs_christmas_ale,0,0,245123579904,"{""name"":""12 Dogs Christmas Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Spiced for the holidays with honey, cinnamon, ginger, nutmeg and Santa's secret recipe.""}",1,61,1
-abita_brewing_company,0,0,244364738560,"{""name"":""Abita Brewing Company"",""city"":""Abita Springs"",""state"":""Louisiana"",""code"":""70420"",""country"":""United States"",""phone"":""800-737-2311"",""website"":""http://www.abita.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founded in 1986, the Abita Brewing Company is nestled in the piney woods 30 miles north of New Orleans. In its first year, the brewery produced 1,500 barrels of beer. We had no idea what we started. Customers loved our beer! By 1994, we outgrew the original site (now our 100 seat brew pub) and were forced to move up the road to a larger facility to keep up with demand. Today, we brew over 62,000 barrels of beer and 3,000 barrels of root beer, and we're still growing! But don't let our growth fool you. Our lagers and ales are still brewed in small batches, hand-crafted by a team of dedicated workers with only the highest ideals of quality. This pride, along with our brewing process, is what creates our great brews. Abita uses only the finest ingredients British and American barley, German yeast, European and Washington State hops and the pure artesian water of Abita Springs. In Abita, we are blessed with the purest of water. Drawn from our deep wells, our pristine water is not altered in any way. Abita Beer has no preservatives, additives or stabilizers and is cold filtered. The result is beer that is the finest and freshest tasting as proven by our loyal customers and great chefs of the south who use Abita Beer in their recipes. We're proud of our brewery and the beers we make. Try Abita Beer today and taste a bit of the South!"",""address"":[""PO Box 1510""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.5049,""lon"":-89.944}}",1,21,1
-cambridge_brewing-tall_tale_pale_ale,0,0,244484931584,"{""name"":""Tall Tale Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Big and bold, our Pale Ale distinguishes itself by its huge, fresh hop aroma and flavor. A combination of Cascade and Centennial hops, both in the kettle and during an extensive dry-hopped conditioning time, gives this beer its nectarious flavor."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-michigan_brewing-sebewaing_beer,0,0,244878540802,"{""name"":""Sebewaing Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A commemorative brew styled after the Sebewaing Brewing Company's signature beer. The Sebewaing Brewing Company brewed from 1880 until 1965. This brew was commissioned for the town of Sebewaing's 150th anniversary celebration."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-brasserie_la_binchoise-reserve_speciale_speciale_noel,0,0,244485128192,"{""name"":""Reserve Speciale / Spéciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_binchoise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-boulder_beer_company-hazed_infused_dry_hopped_ale,0,0,244364607488,"{""name"":""Hazed & Infused Dry-Hopped Ale"",""abv"":4.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
-upstream_brewing_company_at_legacy-espresso_stout,0,0,245123907586,"{""name"":""Espresso Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
-mickey_finn_s_brewery,0,0,244882866177,"{""name"":""Mickey Finn's Brewery"",""city"":""Libertyville"",""state"":""Illinois"",""code"":""60048"",""country"":""United States"",""phone"":""1-847-362-6688"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""412 North Milwaukee Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2872,""lon"":-87.9538}}",1,63,1
-hair_of_the_dog_brewing-adam,0,0,244747206656,"{""name"":""Adam"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,32,1
-gatz_brauhaus,0,0,244616855552,"{""name"":""Gatz Brauhaus"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2249,""lon"":6.7757}}",1,24,1
-fitger_s_brewhouse_brewery_and_grill-xxx_english_ale,0,0,244617117697,"{""name"":""XXX English Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-thunderhead_brewery,0,0,245123579905,"{""name"":""Thunderhead Brewery"",""city"":""Kearney"",""state"":""Nebraska"",""code"":""68847"",""country"":""United States"",""phone"":""1-308-237-1558"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""18 East 21st Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.6966,""lon"":-99.0815}}",1,61,1
-appalachian_brewing_company-rauchbock,0,0,244364738561,"{""name"":""Rauchbock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This smoked bock is made with the finest smoked malt from Bamberg, Germany. The malts are kilned over aged beechwood chips which gives this deep copper ale a mellow smoky flavor.""}",1,21,1
-chimay_abbaye_notre_dame_de_scourmont-chimay_triple_chimay_white,0,0,244484931585,"{""name"":""Chimay Triple (Chimay White)"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""Named Cinq Cents in 75 cl (25.4 fl.oz.) bottles, this beer with its typical golden colour, its slightly hazy appearance and its fine head is especially characterised by its aroma which results from an agreeable combination of fresh hops and yeast. \r\n\r\nThe beer's flavour, as sensed in the mouth, comes from the smell of hops: above all it is the fruity notes of muscat and raisins that give this beer a particularly attractive aroma. \r\n\r\nThe aroma complements the touch of bitterness. There is no acidity, but an after-bitterness which melts in the mouth.\r\n\r\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,26,1
-microbrouwerij_achilles,0,0,244878606336,"{""name"":""Microbrouwerij Achilles"",""city"":""Itegem"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dulft 9A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1028,""lon"":4.7269}}",1,53,1
-brauhaus_sternen,0,0,244485193728,"{""name"":""Brauhaus Sternen"",""city"":""Frauenfeld"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-052-728-99-09"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hohenzornstrasse 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5585,""lon"":8.9006}}",1,27,1
-brasserie_du_bocq-blanche_de_namur,0,0,244364607489,"{""name"":""Blanche de Namur"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bocq"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-upstream_brewing_old_market-india_pale_ale,0,0,245123973120,"{""name"":""India Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our India Pale Ale is a full-bodied, golden-colored ale that is exceptionally refreshing. The “Double” refers to the beer’s huge hop character and malt base that give this beer its great complexity."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,62,1
-middle_ages_brewing-tenth_anniversery_ale,0,0,244882866178,"{""name"":""Tenth Anniversery Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the style of an American Double IPA in celebration of our 10th anniversary. This beer is golden in color, has medium to full body, intense hop bitterness, flavor and aroma. Ten additions of American hops are made throughout the brewing process."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,63,1
-hair_of_the_dog_brewing-blue_dot_double_india_pale_ale,0,0,244747206657,"{""name"":""Blue Dot Double India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,32,1
-goose_island_beer_company_clybourn-christmas_ale,0,0,244616921088,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-flyers_restraunt_and_brewery-first_flight_amber_ale,0,0,244617183232,"{""name"":""First Flight Amber Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first beer brewed right here at Flyers. This ale has brownish red hues with a mild maltiness balanced by an herbal hop character without being bitter."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
-timmermans-timmermans_lambicus_blanche,0,0,245123579906,"{""name"":""Timmermans lambicus Blanche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-appleton_brewing-adler_brau_holiday_ale,0,0,244364738562,"{""name"":""Adler Bräu Holiday Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
-cigar_city_brewing-maduro_oatmeal_brown_ale,0,0,244484997120,"{""name"":""Maduro Oatmeal Brown Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Maduro is a Northern English-style brown ale with some American affectations. It is unlike the typical American Brown Ale, as it doesn’t have the big hop character common in American-brewed Brown Ales. And Maduro is higher in alcohol than the common English brown ale. Maduro also has oats, in the malt bill which imparts a silky body and aids in making the roasted, toasted and chocolate components mesh together in Maduro's complex malt profile. The end result is a remarkably full flavored yet approachable and sessionable brown ale that pairs well with cigars."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
-milwaukee_ale_house-downtown_lites_honey_ale,0,0,244878606337,"{""name"":""Downtown Lites Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
-brick_brewing-waterloo_dark,0,0,244485259264,"{""name"":""Waterloo Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brick_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-brasserie_fantme-speciale_noel,0,0,244482048000,"{""name"":""Speciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-van_honsebrouch,0,0,245123973121,"{""name"":""Van Honsebrouch"",""city"":""Ingelmunster"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.9205,""lon"":3.2541}}",1,62,1
-midnight_sun_brewing_co-pluto_belgian_style_golden_strong_ale,0,0,244882931712,"{""name"":""Pluto - Belgian-style Golden Strong Ale"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""P9 = 9th [non-] planet from The [Midnight] Sun\r\n\r\nNamed after the ruler of the underworld, PLUTO was re-classified as a non-planet in AUG 2006. Here we celebrate our “Fallen Planet” by creating a Belgian-style Golden Strong Ale, aged in French oak Chardonnay barrels with Brettanomyces. Appropriately, the devil’s in the details. \r\n\r\nLOGISTICS LOG: \r\ndesigned to represent the \""Fallen Planet\"" with a Belgian beer style that includes beers traditionally named after the devil. primary fermentation and aging in stainless steel. phenomenal funk flavors realized with aging in oak barrels affected with Brettanomyces. bottle-conditioning achieved with secondary fermentation. devil-may-care data continues to develop.\r\n\r\nAvailability:\r\nAK - draft and 22-oz bottles (limited release begins 08/29/2008)"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,63,1
-harvey_son_lewes-christmas_ale,0,0,244747272192,"{""name"":""Christmas Ale"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-gordon_biersch_brewing-czech_lager,0,0,244616921089,"{""name"":""Czech Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-flying_dog_brewery-classic_pale_ale,0,0,244617248768,"{""name"":""Classic Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Doggie Style Pale Ale \r\nMeet the Alpha of the pack ... Flying Dog Classic Pale Ale is brilliant amber in color and dry hopped with buckets full of Cascades for an unrivaled hop flavor and aroma. This is a true representation of an American-style pale ale, using the finest ingredients. Flying Dog Classic Pale Ale is a multi-award winning product and is consistently ranked as one of the best pale ales in the U.S. This is what craft beer is all about."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-tooth_s,0,0,245123645440,"{""name"":""Tooth's"",""city"":""Sydney"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-33.8671,""lon"":151.207}}",1,61,1
-ballast_point_brewing-dorado_double_ipa,0,0,244364804096,"{""name"":""Dorado Double IPA"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,21,1
-cooperstown_brewing_company-pride_of_milford_special_ale,0,0,244484997121,"{""name"":""Pride of Milford Special Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Pride of Milford\"" is a very special ale with a tapestry of complex flavors and aromas. It is brewed with five malts and fermented with the Ringwood yeast at a higher temperature which gives this beer a uniqueness all its own. \""Pride\"" has a distinctive reddish copper color. It is strong and rich beer. When \""Pride\"" was first brewed in December 1999, many thought the flavor and aromas of this beer had fruit overtones. No fruit or adjunct flavoring is added to this beer. The unique flavor comes from our special brewing process.""}",1,26,1
-monte_carlo_casino_and_brewpub-jackpot_pale,0,0,244878606338,"{""name"":""Jackpot Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""monte_carlo_casino_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-broughton_ales,0,0,244485259265,"{""name"":""Broughton Ales"",""city"":""The Borders"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01899)-830345"",""website"":""http://www.broughtonales.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Broughton""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.6145,""lon"":-3.4107}}",1,27,1
-brasserie_la_choulette,0,0,244482113536,"{""name"":""Brasserie La Choulette"",""city"":""Hordain"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.27.35.72.44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 rue des Ecoles""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.2601,""lon"":3.3125}}",1,20,1
-walldorff_brew_pub-state_street_oatmeal_stout,0,0,245752397824,"{""name"":""State Street Oatmeal Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark rich full-bodied stout with a dense creamy head. Full of character and very satisfying."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,62,1
-mikkeller-simcoe_single_hop_ipa,0,0,244882931713,"{""name"":""Simcoe Single Hop IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mikkeller"",""updated"":""2010-07-22 20:00:20"",""description"":""The first in a new series of single hop IPA's from Mikkeller. Brewed with Simcoe, known for many great US micro-brews. An extremely fresh-hopped IPA."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
-hoffbrau_steaks_brewery_2-red_lager,0,0,244747272193,"{""name"":""Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
-great_dane_pub_and_brewing_1-old_scratch_barleywine_1996,0,0,244743602176,"{""name"":""Old Scratch Barleywine 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-founders_brewing-founders_pale_ale,0,0,244617248769,"{""name"":""Founders Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A testament to Cascade hops in a bottle. Our medium-bodied, Pale Ale has a distinctive floral hop aroma and refreshing citrus flavor. Founders Pale Ale has a slight malty sweetness with a balanced hop finish. A perfect beer to enjoy while mowing the lawn, boating, grilling with friends or just taking it easy."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-umpqua_brewing-summer_wheat,0,0,245123645441,"{""name"":""Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""umpqua_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
-beck_s-beck_s,0,0,244364804097,"{""name"":""Beck´s"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beck_s"",""updated"":""2010-07-22 20:00:20"",""description"":""German Pilsner beer, with quite a bit of hops taste."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,21,1
-corner_pub-porter,0,0,244484997122,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""corner_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-moosejaw_pizza_dells_brewing_company-blonde_bock,0,0,244878671872,"{""name"":""Blonde Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,53,1
-cameron_s_brewing,0,0,244485259266,"{""name"":""Cameron's Brewing"",""city"":""Oakville"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-905-849-8282"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1165 Invicta Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.4745,""lon"":-79.6775}}",1,27,1
-brauerei_gasthof_zur_krone-kronenbier,0,0,244482179072,"{""name"":""Kronenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-weyerbacher_brewing_company-unfiltered_double_simcoe_ipa,0,0,245752397825,"{""name"":""Unfiltered Double Simcoe IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""In 750ml corked ’n’ caged bottles this will be and unfiltered, fully bottle conditioned version of the super popular Double Simcoe. Expect Cask taste in a bottle, with more pronounced hoppy flavor and aroma due to being unfiltered. Also, carbonation will be a bit higher as is usual in our cork n cage series in keeping with tradition. It all comes together to form a uniquely great experience for hopheads."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,62,1
-milagro_brewery_and_grill-silver,0,0,244882997248,"{""name"":""Silver"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milagro_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-512_brewing_company-512_bruin,0,0,244365131776,"{""name"":""(512) Bruin"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At once cuddly and ferocious, (512) BRUIN combines a smooth, rich maltiness and mahogany color with a solid hop backbone and stealthy 7.6% alcohol. Made with Organic 2 Row and Munich malts, plus Chocolate and Crystal malts, domestic hops, and a touch of molasses, this brew has notes of raisins, dark sugars, and cocoa, and pairs perfectly with food and the crisp fall air."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,22,1
-hopworks_urban_brewery-survival_stout,0,0,244747272194,"{""name"":""Survival Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer of the Ancients! Barley (Egyptian), Wheat (Mesopotamian), Oats (Egyptian), Amaranth (Aztec), Quinoa (Incan), Spelt (Mesopotamian), and Kamut (Egyptian) sustain the soul with a nutrients cultivated through the millennia. Finished with 15 pounds of cold-pressed Stumptown Hairbender espresso. Unlock the mystery entombed in darkness."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,32,1
-great_lakes_brewing-ohio_city_oatmeal_stout,0,0,244743667712,"{""name"":""Ohio City Oatmeal Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth and creamy medium-bodied stout with soft malty notes and dry finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
-four_peaks_brewing-hefeweizen,0,0,244617248770,"{""name"":""Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a Bavarian ale which uses 51% wheat malt in the recipe. Very low bitterness. It is unfiltered so the characteristic cloudiness is achieved. The haze comes from suspended yeast. Hefe-Weizen literally means \""yeast-wheat.\"" The aroma is reminiscent of cloves and banana and is put out by the yeast. While some of this aroma carries over to the flavor, the dominant flavor is the malty wheat. \r\n\r\nAlcohol content approximately 5.0% by volume (ALWAYS ON TAP!!)"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,25,1
-victory_brewing-hard_times_lager,0,0,245123645442,"{""name"":""Hard Times Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-bell_s_brewery_inc-hell_hath_no_fury_ale,0,0,244364804098,"{""name"":""Hell Hath No Fury Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A brew that gives you either sympathy for the devil or the courage to face him. Goes especially well with your favorite lost my girl/truck/dog/trailer song."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,21,1
-court_avenue_brewing-pointer_brown_ale,0,0,244484997123,"{""name"":""Pointer Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
-ninkasi_brewing,0,0,244878671873,"{""name"":""Ninkasi Brewing"",""city"":""Eugene"",""state"":""Oregon"",""code"":""97402"",""country"":""United States"",""phone"":""877-7-NINKASI"",""website"":""http://www.ninkasibrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""272 Van Buren St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0569,""lon"":-123.11}}",1,53,1
-capital_city_brewing_company-irish_red_ale,0,0,244485259267,"{""name"":""Irish Red Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Just in time for St. Patrick’s day, this Irish style red ale definitely has a big malt profile. This beer is the antithesis of our Amber Waves ale. It has a low hop bitterness and aroma, this allows the caramel malt flavors to dominate. It has a medium body, and is very easy going down."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,27,1
-brauerei_leibinger-edel_pils,0,0,244482179073,"{""name"":""Edel-Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_leibinger"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-widmer_brothers_brewing-widmer_w_08,0,0,245752528896,"{""name"":""Widmer W'08"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Our Brewmasters' Release - The three different red, caramelized, and dark wheat malts give this beer an intense red color that runs as deep as the flavor. The toasted grain flavors blend perfectly with the subtle spiciness of the hops just as the entirety fades to a smooth quick finish. 2007 Great American Beer Festival Silver Medal Award Winner.\""\r\n-Widmer Brothers Brewing Company"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,62,1
-mogollon_brewing_company-wapiti_amber_ale,0,0,244882997249,"{""name"":""Wapiti Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our flagship ale. The label for this beer is adorned with the majestic Wapiti (aka elk). Wapiti are abundant in northern Arizona. They are large and beautiful creatures, which is why we chose this animal to represent this beer. Wapiti Amber Ale is hand crafted with mountain pure water, two row malted barley, yeast and Yakima Valley hops. Our brewers use traditional methods to create this full-bodied amber ale with a distinct hoppy aroma. Wapiti Amber Ale should be enjoyed cool, not cold, to best experience the complex character and flowery aroma. Serve at 43-47 deg F."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
-abita_brewing_company-abita_jockamo_ipa,0,0,244365197312,"{""name"":""Abita Jockamo IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,22,1
-humboldt_brewing,0,0,244747337728,"{""name"":""Humboldt Brewing"",""city"":""Arcata"",""state"":""California"",""code"":""95521"",""country"":""United States"",""phone"":""1-707-826-2739"",""website"":""http://www.humboldtbrews.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""856 10th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.87,""lon"":-124.087}}",1,32,1
-greenshields_brewery_and_pub-amber,0,0,244743667713,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
-fox_river_brewing_1-nut_brown_ale,0,0,244617314304,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
-warsteiner_brauerei-warsteiner_premium_dunkel,0,0,245752397824,"{""name"":""Warsteiner Premium Dunkel"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
-bellows_brew_crew-red,0,0,244364869632,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
-crabby_larry_s_brewpub_steak_crab_house-golden_treasure,0,0,244485062656,"{""name"":""Golden Treasure"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""For those who enjoy a clean, crisp, refreshing beer this medium copper colored brew is perfect. With its low level of hop bitterness and slightly sweet flavor it is one of our lightest ales. We use the lightest grains with Kent Goldings and Liberty hops. This beer is an excellent choice for the not so brave."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,26,1
-north_country_brewery-amber_waves_of_grain,0,0,244878671874,"{""name"":""Amber Waves of Grain"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber-colored beer, lightly hopped, with a nice malty finish; go ahead, salute your brew."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,53,1
-carmel_brewing,0,0,244485324800,"{""name"":""Carmel Brewing"",""city"":""Salinas"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.6777,""lon"":-121.656}}",1,27,1
-brewdog_ltd-hardcore_ipa,0,0,244482244608,"{""name"":""Hardcore IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""This little bottle has a grandiloquent story to tell.\r\n\r\n2,204 malted Maris Otter grains gave all they had to offer the world to provide the robustly delicate toffee malt canvas for the ensuing epic.\r\n\r\n6 Hop Cones willingly sacrificed themselves in fiery cauldron that is our brew kettle to ensure your mouth is left feeling punished and puckering for more.\r\n\r\n9,900,000,000 yeast cells frantically fermented their little hearts out as the sugars were magically turned into alcohol in the dark depths of our fermentation tanks.\r\n\r\nThis explicit ale has more hops and bitterness that any other beer brewed in the UK. This is an extreme beer rollercoaster for freaks, gypsies and international chess superstars."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,20,1
-wild_river_brewing_and_pizza_cave_junction-dark,0,0,245752528897,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,62,1
-moylan_s_brewery_restaurant-imperial_stout,0,0,244883062784,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
-aksarben_brewing_bop-heater,0,0,244365328384,"{""name"":""Heater"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-lost_coast_brewery-indica_india_pale_ale,0,0,244869955584,"{""name"":""Indica India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
-half_moon_bay_brewing-pillar_point_pale_ale,0,0,244743733248,"{""name"":""Pillar Point Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
-freeminer_brewery-trafalgar_ipa,0,0,244617314305,"{""name"":""Trafalgar IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""freeminer_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
-big_buck_brewery-raspberry_wheat,0,0,244364869633,"{""name"":""Raspberry Wheat"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American wheat beer made with malted barley and malted wheat. Lightly flavored with pure fruit to impart a subtle raspberry nose, a delicate fruit flavor and a slight pink hue."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,21,1
-crescent_city_brewhouse-pilsner,0,0,244485128192,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-o_grady_s_brewery_and_pub_1-blacksmith_bitter_ale,0,0,244878671875,"{""name"":""Blacksmith Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-carolina_brewery-stout,0,0,244485324801,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
-brouwerij_de_smedt-affligem_tripel,0,0,244482244609,"{""name"":""Affligem Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_smedt"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-new_glarus_brewing_company-fat_squirrel_nut_brown_ale,0,0,244883062785,"{""name"":""Fat Squirrel Nut Brown Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""One deceptively spring like winter day, Brewmaster Dan walked home from the brewery, sat down to dinner and said, \""Boy, there are some fat squirrels out there. They're running all over the place. I think I should brew a Fat Squirrel Nut Brown Ale.\"" Deb agreed and so another beer legend was born. \r\n\r\n100% Wisconsin malt of six different varieties impart the natural toasted color to this bottle conditioned unfiltered ale. Clean hazelnut notes result from these carefully chosen barley malts. Hops from Slovenia, Bavaria and the Pacific Northwest give Fat Squirrel its backbone. \r\n\r\nWhen the going gets tough, remember to relax a moment and enjoy the \""Fat Squirrel\"" in your neighborhood."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
-alaskan_brewing-breakup_bock,0,0,244365328385,"{""name"":""Breakup Bock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,22,1
-lwenbru_munich-premium_lager,0,0,244870021120,"{""name"":""Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lwenbru_munich"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-hanssens_artisanal-oude_gueuze,0,0,244743733249,"{""name"":""Oude Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hanssens_artisanal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,24,1
-gaslight_brewery,0,0,244617314306,"{""name"":""Gaslight Brewery"",""city"":""South Orange"",""state"":""New Jersey"",""code"":""7079"",""country"":""United States"",""phone"":""1-973-762-7077"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""15 South Orange Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7465,""lon"":-74.2594}}",1,25,1
-big_time_brewing,0,0,244364935168,"{""name"":""Big Time Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98105"",""country"":""United States"",""phone"":""1-206-545-4509"",""website"":""http://www.bigtimebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Big Time's brewery is a 14 barrel JV Northwest system consisting of a gas fired brew kettle, an infusion mash tun with mixer, a hot liquor back, a wort cooler, (5) 14 barrel fermenters, a diatomaceous earth filter, a bright beer tank, and (12) 7 bbl serving tanks. We sell most of our beer at the pub but do wholesale a limited number of kegs to a few Seattle area taverns. We currently brew approximately 1,500 barrels of beer per year"",""address"":[""4133 University Way NE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6576,""lon"":-122.313}}",1,21,1
-dark_horse_brewing_co-double_crooked_tree_i_p_a,0,0,244485128193,"{""name"":""Double Crooked Tree I.P.A."",""abv"":13.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From their website:\r\n\""Have you read the description for the regular Crooked Tree yet? Well this beer is almost the same just double. We actually took the Crooked Tree recipe and doubled all of the ingredients except the water, just the way a DOUBLE should be made. Big hops balanced with tons of malt give this beer a huge body. Although this beer is as cool as \""the Fonz\"" when first purchased, it gets really mellow and smooth with some age. After a year or two stored in a cool dark place you'll notice the heavy caramel and malt flavors are trying to sneak past the hops, they’re just not fast enough. This beer is hugely delicious so it will need your undivided attention (the chores can wait....trust us).\"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,26,1
-portland_brewing-zig_zag_lager,0,0,245002731520,"{""name"":""Zig Zag Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-cervejaria_de_macau,0,0,244485390336,"{""name"":""Cervejaria de Macau"",""city"":""Macao"",""state"":"""",""code"":"""",""country"":""Macao"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unit 1-B, Blk. A, Edf. Ind. Fei Tong""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":19.7219,""lon"":-101.225}}",1,27,1
-brouwerij_sterkens-poorter,0,0,244482310144,"{""name"":""Poorter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-new_glarus_brewing_company-zwickel,0,0,244883128320,"{""name"":""Zwickel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-alesmith_brewing-x_extra_pale_ale,0,0,244365328386,"{""name"":""X Extra Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-magic_hat-hocus_pocus,0,0,244870021121,"{""name"":""Hocus Pocus"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Our take on a classic summer ale. A toast to weeds, rays, and summer haze. A light, crisp ale for mowing lawns, hitting lazy fly balls, and communing with nature, Hocus Pocus is offered up as a summer sacrifice to clodless days.\r\n\r\nIts malty sweetness finishes tart and crisp and is best apprediated with a wedge of orange."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,32,1
-harvest_moon_brewery_cafe,0,0,244743733250,"{""name"":""Harvest Moon Brewery / Cafe"",""city"":""New Brunswick"",""state"":""New Jersey"",""code"":""8901"",""country"":""United States"",""phone"":""1-732-249-6666"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""392 George Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4962,""lon"":-74.4441}}",1,24,1
-golden_valley_brewery_and_pub-tannen_bomb,0,0,244617314307,"{""name"":""Tannen Bomb"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-bj_s_restaurant_and_brewery-tatonka_stout,0,0,244364935169,"{""name"":""Tatonka Stout"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,21,1
-dark_horse_brewing_co-too_cream_stout,0,0,244617379840,"{""name"":""Too Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is made with milk sugar (lactose) which gives this beer a nice creamy mouth feel which mingles with hints of chocolate and roasty flavors."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,26,1
-privat_brauerei_schmucker_ober_mossau_kg,0,0,245002731521,"{""name"":""Privat-Brauerei Schmucker Ober-Mossau KG"",""city"":""Mossautal"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.6747,""lon"":8.925}}",1,53,1
-coopers_brewery-coopers_premium_light,0,0,244485390337,"{""name"":""Coopers Premium Light"",""abv"":2.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coopers Premium Light is brewed using malted barley and no sugar. Coopers has used traditional lager brewing techniques to produce a full-flavoured light beer. The light has a fresh aroma with clean floral hop notes, excellent head and colour presentation."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,27,1
-brouwerij_van_steenberge-steenbrugge_tripel_blond,0,0,244482310145,"{""name"":""Steenbrugge Tripel Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-new_holland_brewing_company-cabin_fever,0,0,244883193856,"{""name"":""Cabin Fever"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Robust in character yet smooth in delivery, Cabin Fever is a roasty brown ale and a hearty, comforting companion for long, mind-bending winters. Its rye, roast and raisin notes play off a subtle caramel sweetness and culminate in a dry finish. Excellent with roasts, stews, caramelized onions and snowfall."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
-america_s_brewing-honey_wheat_ale,0,0,244365393920,"{""name"":""Honey Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
-marine_pub_brewhouse,0,0,244870021122,"{""name"":""Marine Pub & Brewhouse"",""city"":""Burnaby"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-435-2245"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5820 Marine Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2055,""lon"":-122.978}}",1,32,1
-heavenly_daze_brewery_and_grill-derailer_esb,0,0,244743733251,"{""name"":""Derailer ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-gottberg_brew_pub-stuvenbrau_maibock,0,0,244617379840,"{""name"":""Stüvenbräu Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,25,1
-blue_cat_brew_pub-arkham_stout,0,0,244364935170,"{""name"":""Arkham Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-de_struise_brouwers,0,0,244617445376,"{""name"":""De Struise Brouwers"",""city"":""Woesten"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":""http://www.struisebrouwers.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Woesten""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.9229,""lon"":2.7518}}",1,26,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-imperial_hefeweizen,0,0,245002797056,"{""name"":""Imperial Hefeweizen"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-coors_brewing_golden_brewery-coors_original,0,0,244485390338,"{""name"":""Coors Original"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coors beer, first introduced by Adolph Coors in April, 1874, is brewed in the Rockies for a uniquely crisp, clean and drinkable \""Mile High Taste.\""\r\n\r\nDuring World War II, Coors aided the war effort by setting aside half its beer for sale to the military. When the service men and women returned home to states outside of Coors' original 11-state marketing region, they spread the word about the beer's taste and quality -- which became known as the \""Coors Mystique.\""\r\n\r\nPrior to its national expansion in the 1980s, Coors' limited distribution left consumers in the eastern U.S. wanting a taste of the Rocky Mountains' finest beer. President Gerald Ford was known to take several cases of Coors on his Air Force One during return trips to the White House.\r\n\r\nIn September 1893, Coors competed for the first time at the Chicago World's Fair and won awards for brilliancy, flavor, chemical analysis and commercial flavor. The award-winning legacy of the brew continues and in recent years Coors beer has won a number of honors at beer festivals."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,27,1
-burgerbrau_wolnzach,0,0,244482310146,"{""name"":""Bürgerbräu Wolnzach"",""city"":""Wolnzach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8442-/-955514"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Brunnen 2""]}",1,20,1
-new_jersey_beer_company,0,0,244883193857,"{""name"":""New Jersey Beer Company"",""city"":""North Bergen"",""state"":""NJ"",""code"":""07047"",""country"":""United States"",""phone"":"""",""website"":""http://www.njbeerco.com"",""type"":""brewery"",""updated"":""2010-11-17 14:11:59"",""description"":""New Jersey Beer Co. is dedicated to crafting quality beer for all; from the occasional beer drinker to the beer aficionado. We believe that good products come from good people, and strive to do our very best for our community and our customers. We believe we can provide happiness through doing what we love, and that a good beer can make the good times great."",""address"":[""4201 Tonnelle Avenue""]}",1,63,1
-anheuser_busch,0,0,244365393921,"{""name"":""Anheuser-Busch"",""city"":""Saint Louis"",""state"":""Missouri"",""code"":""63118"",""country"":""United States"",""phone"":""1-800-342-5283"",""website"":""http://www.anheuser-busch.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Anheuser-Busch operates 12 breweries in the United States, 14 in China and one in the United Kingdom. Anheuser-Busch's operations and resources are focused on adding to life's enjoyment not only through the responsible consumption of beer by adults, but through theme park entertainment and packaging. In the United States, the company holds a 48.5 percent share of U.S. beer sales. Worldwide, Anheuser-Busch's beer sales volume was 128.4 million barrels in 2007. The St. Louis-based company's subsidiaries include one of the largest U.S. manufacturers of aluminum beverage containers and one of the world's largest recyclers of aluminum beverage cans. Anheuser-Busch also has interests in malt production, rice milling, real estate development, turf farming, metalized and paper label printing, bottle production and transportation services."",""address"":[""One Busch Place""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5983,""lon"":-90.209}}",1,22,1
-maritime_pacific_brewing-yo_ho_ho_christmas_ale_2001,0,0,244870021123,"{""name"":""Yo Ho Ho Christmas Ale 2001"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-heller_bru_trum-schlenkerla_helles_lagerbier,0,0,244743798784,"{""name"":""Schlenkerla Helles Lagerbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-great_bear_brewing,0,0,244744126464,"{""name"":""Great Bear Brewing"",""city"":""Wasilla"",""state"":""Alaska"",""code"":""99654"",""country"":""United States"",""phone"":""1-907-373-4782"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""238 North Boundary Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":61.5816,""lon"":-149.439}}",1,25,1
-boon_rawd_brewery-singha_gold,0,0,244365000704,"{""name"":""Singha Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boon_rawd_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-512_brewing_company-512_pale,0,0,244365656064,"{""name"":""(512) Pale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""With Organic 2-row malted barley, (512) Pale is a copper colored American Pale Ale that balances earthy hop bitterness and hop flavor with a rich malty body."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-delafield_brewhaus-hopfenteufel_alt_bier,0,0,244617445377,"{""name"":""Hopfenteufel Alt Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
-raccoon_lodge_and_brewpub_cascade_brewing-cascade_apricot_ale,0,0,245002797057,"{""name"":""Cascade Apricot Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Features the intense aroma of fresh-picked, slow ripened Northwest apricots warmed by the summer sun. Based on a Belgian Tripel, this beer went through 16 months lactic fermentation and aging in French oak wine barrels."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,53,1
-crane_river_brewpub_and_cafe-weizen,0,0,244485455872,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-central_waters_brewing_company-satin_solstice_imperial_stout,0,0,244482375680,"{""name"":""Satin Solstice Imperial Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This smooth, creamy stout and a crackling fireplace are the perfect answer to a wintery evening in Wisconsin. The rich coffee flavor compliments the \""warm, fuzzy feeling\"" you get from the abundant alcohol. Enjoy in moderation."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,20,1
-nicolet_brewing-winter_fest_beer,0,0,244883259392,"{""name"":""Winter Fest Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
-appleton_brewing-adler_brau_cherry_creek_cherry_flavored_lager,0,0,244365459456,"{""name"":""Adler Bräu Cherry Creek Cherry Flavored Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-mercury_brewing_company-ipswich_dark_ale,0,0,244870086656,"{""name"":""Ipswich Dark Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich in color and bold in taste, our U.S. style Brown Ale combines roasted malt with two additions of specialty selected hops to produce a well-balanced ale with a satisfying finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,32,1
-high_point_wheat_beer_company-ramstein_winter_wheat,0,0,244743798785,"{""name"":""Ramstein Winter Wheat"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_point_wheat_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Also referred to as a Doppelbock, this is the strongest beer made by High Point. Rich creamy head with bouquet of wheat malt, black current, clove, and apple. Deep full flavors of caramel and chocolate malt balance with hops for a smooth warming character. The finish is smooth and malty leading to a subtle alcohol and dark caramel finish. The wonderful balance of this beer provides a complex profile that hides the 9.5% alcohol content. The perfect companion for a cold winter night."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,24,1
-great_divide_brewing-great_divide_dunkel_weiss,0,0,244744192000,"{""name"":""Great Divide Dunkel Weiss"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Think of it as a hefeweizen’s older brother. A hearty mix of wheat and dark German barley malts gives it a medium body and muddy brown hue, while our proprietary yeast strain provides the signature notes of banana and clove. If you like wheat beers, come to the Dunkel side. You won’t be disappointed. Just don’t put any lemon in it.""}",1,25,1
-boon_rawd_brewery,0,0,244365000705,"{""name"":""Boon Rawd Brewery"",""city"":""Bangkok"",""state"":"""",""code"":"""",""country"":""Thailand"",""phone"":""66-(662)-669-2050"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""999 Samsen Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":13.7783,""lon"":100.509}}",1,21,1
-abita_brewing_company-abita_amber,0,0,244365721600,"{""name"":""Abita Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:46:53"",""description"":""Abita Amber is a Munich style lager. It has a smooth, malty, slightly caramel flavor and a rich amber color."",""style"":""Vienna-Style Lager"",""category"":""German Lager""}",1,23,1
-delafield_brewhaus-pewaukee_porter,0,0,244617445378,"{""name"":""Pewaukee Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-raccoon_lodge_and_brewpub_cascade_brewing,0,0,245002862592,"{""name"":""Raccoon Lodge and Brewpub / Cascade Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97225"",""country"":""United States"",""phone"":""(503) 296-0110"",""website"":""http://www.raclodge.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7424 SW Beaverton-Hillsdale Hwy""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.4856,""lon"":-122.754}}",1,53,1
-denver_chophouse_and_brewery-oatmeal_stout,0,0,244617904128,"{""name"":""Oatmeal Stout"",""abv"":6.54,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
-cerveceria_bucanero-fuerte,0,0,244482375681,"{""name"":""Fuerte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cerveceria_bucanero"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
-north_coast_brewing_company-old_stock_ale_2007,0,0,244883259393,"{""name"":""Old Stock Ale 2007"",""abv"":11.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,63,1
-appleton_brewing-adler_brau_weiss,0,0,244365459457,"{""name"":""Adler Bräu Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,22,1
-midnight_sun_brewing_co-cosmic_black_witbier,0,0,244870086657,"{""name"":""Cosmic Black Witbier"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Close your eyes. The delicate aroma, flavor, texture of this beer whisper “witbier”. Now open your eyes. The color is deceiving. You take another sip. Yes, witbier … but black as night. It is something quite peculiar—BuT it is brilliant—something shimmering and [not so] white."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
-highland_brewing_company-cattail_peak,0,0,244743864320,"{""name"":""Cattail Peak"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An invigorating wheat beer with 100% organic grains, a hint of rye and the tang and hue of organic hibiscus, this refreshing brew is as cool as the breeze that blows down from Mount Mitchell to Cattail Peak. Enjoy this delicious creation when the hottest summer day demands the best of the Blue Ridge."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
-green_mill_brewing_saint_paul-big_island_porter,0,0,244744192001,"{""name"":""Big Island Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,25,1
-boulder_beer_company-killer_penguin,0,0,244365000706,"{""name"":""Killer Penguin"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,21,1
-aksarben_brewing_bop-brout,0,0,244365721601,"{""name"":""Brout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-dockside_brewing-johnston_pilsener,0,0,244617510912,"{""name"":""Johnston Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-ridgeway_brewing-warm_welcome_nut_browned_ale,0,0,245002862593,"{""name"":""Warm Welcome Nut Browned Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
-deschutes_brewery-cinder_cone_red,0,0,244617969664,"{""name"":""Cinder Cone Red"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Cinder Cone Red's diverse selection of hops and barley captivates thirsty palates with its toffee-like flavor, intense citrus aroma and defined bitterness.\r\n\r\nLocated on the northern slope of Mt. Bachelor, the Cinder Cone was also known as \""Red Hill\"" due to its reddish color that is revealed as the seasons change, the weather warms and the snow melts. It's spring. Time to get outside."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,27,1
-cervejaria_kaiser_brasil-xingu,0,0,244482375682,"{""name"":""Xingu"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_kaiser_brasil"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,20,1
-oak_creek_brewery-oak_creek_micro_light,0,0,244883259394,"{""name"":""Oak Creek Micro Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,63,1
-barley_s_casino_brewing_company,0,0,244365524992,"{""name"":""Barley's Casino & Brewing Company"",""city"":""Henderson"",""state"":""Nevada"",""code"":""89014"",""country"":""United States"",""phone"":""1-702-458-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4500 East Sunset Road #30""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.0721,""lon"":-115.075}}",1,22,1
-minocqua_brewing_company-pale_ale,0,0,244870152192,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber-colored ale with a pronounced floral aroma and a flavor contributed by Cascade hops. Hop lovers will savor this bold version of an American classic."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
-hook_ladder_brewing_company-hook_ladder_golden_ale,0,0,244743864321,"{""name"":""Hook & Ladder Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_ladder_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A crisp, clean American Ale. Perfect for extinguishing your fiery thirst or when you crave an ice-cold beer. A great step up in flavor from the macro-produced American and imported beers."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
-green_mill_brewing_saint_paul-grand_marais_pale_ale,0,0,244744192002,"{""name"":""Grand Marais Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-brasserie_brouwerij_cantillon,0,0,244365066240,"{""name"":""Brasserie-Brouwerij Cantillon"",""city"":""Anderlecht"",""state"":""Brussel"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)2-521-49-28"",""website"":""http://www.cantillon.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Gheudestraat 56""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8416,""lon"":4.3355}}",1,21,1
-allentown_brew_works-steelgaarden_wit,0,0,244365787136,"{""name"":""Steelgaarden Wit"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered Belgian Style beer is brewed with special yeast that lends a unique refreshing flavor to the beer. Brewed with Chamomile, Curacao Orange peel and Coriander to create a smooth citrus finish. Usually enjoyed with a slice of lemon."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,23,1
-dogfish_head_craft_brewery-burton_baton,0,0,244617510913,"{""name"":""Burton Baton"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-route_66_brewery-imperial_pale_ale,0,0,245002862594,"{""name"":""Imperial Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
-endehouse_brewery_and_restaurant-dunkelweiss,0,0,244617969665,"{""name"":""Dunkelweiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""endehouse_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-chama_river_brewing,0,0,244482441216,"{""name"":""Chama River Brewing"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":""87109"",""country"":""United States"",""phone"":""1-505-342-1800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4939 Pan American Freeway NE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.14,""lon"":-106.6}}",1,20,1
-oasis_brewery_annex,0,0,244883324928,"{""name"":""Oasis Brewery Annex"",""city"":""Boulder"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.015,""lon"":-105.271}}",1,63,1
-big_river_brewing-extra_special_bitter,0,0,244365524993,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-minocqua_brewing_company-red_ale,0,0,244870217728,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Deserving of its name, this red/amber colored ale is sure to knock you off your feet. Crystal and caramel malts contribute to a balance of sweetness and smoothness."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
-hook_norton_brewery-old_hooky,0,0,244743864322,"{""name"":""Old Hooky"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-gulpener_bierbrouwerij-dort,0,0,244744257536,"{""name"":""Dort"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gulpener_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,25,1
-brasserie_d_ecaussinnes-ultrabrune,0,0,244365066241,"{""name"":""Ultrabrune"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_ecaussinnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-amstel_brouwerij,0,0,244365787137,"{""name"":""Amstel Brouwerij"",""city"":""Amsterdam"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""800-022-9885"",""website"":""http://www.amstel.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Antwoordnummer 7181""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.3738,""lon"":4.8909}}",1,23,1
-eddie_mcstiff_s_brewpub-chestnut_brown_ale,0,0,244617576448,"{""name"":""Chestnut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eddie_mcstiff_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
-rush_river_brewing,0,0,245002928128,"{""name"":""Rush River Brewing"",""city"":""River Falls"",""state"":""Wisconsin"",""code"":""54022"",""country"":""United States"",""phone"":""1-715-426-2054"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""990 Antler Court""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.8902,""lon"":-92.6378}}",1,53,1
-f_x_matt_brewing-saranac_lager,0,0,244618035200,"{""name"":""Saranac Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A simple well-made Classic American Lager brewed with only choice ingredients. It is extremely mellow refreshingly smooth, glass after glass."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-chicago_brewing,0,0,244482441217,"{""name"":""Chicago Brewing"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89117"",""country"":""United States"",""phone"":""1-702-254-3333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2201 South Fort Apache Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.1476,""lon"":-115.298}}",1,20,1
-orlando_brewing,0,0,244883324929,"{""name"":""Orlando Brewing"",""city"":""Orlando"",""state"":""Florida"",""code"":""32806"",""country"":""United States"",""phone"":""(407) 872-1117"",""website"":""http://www.orlandobrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""They have a wide variety of beers made on premises, with more than a dozen on tap. Bar is is in an industrial area and is kinda bare, but it's got good beer, and good people, and that's what counts. Try the 'Monk-in-the-trunk' stay the hell away from the Winter Park beer. Bottles, and kegs available as well."",""address"":[""1301 Atlanta Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.5265,""lon"":-81.3827}}",1,63,1
-bj_s_restaurant_and_brewery-jeremiah_red,0,0,244365524994,"{""name"":""Jeremiah Red"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,22,1
-mohrenbrauerei_august_huber-spezial,0,0,244870217729,"{""name"":""Spezial"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mohrenbrauerei_august_huber"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-hops_haven_brew_haus-triple_h,0,0,244743929856,"{""name"":""Triple \""H\"""",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,24,1
-hacker_pschorr_bru,0,0,244744257537,"{""name"":""Hacker-Pschorr Bru"",""city"":""Mnchen"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.1391,""lon"":11.5802}}",1,25,1
-brasserie_de_brunehaut-abbaye_de_saint_martin_brune,0,0,244365066242,"{""name"":""Abbaye de Saint-Martin Brune"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""Abbaye Saint-Martin Brune was named World's Best Abbey (Dark) Beer @ the 2009 World Beer Awards (London). Aroma of caramel and liquorice. Less sweet than most traditional Dark Abbey Ales. Many people prefer this double at room temperature. It is especially popular when paired with dessert.\r\nAbbye St. Martin Ales are pure Belgium."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,21,1
-atlanta_brewing_company-red_brick_double_chocolate_oatmeal_porter,0,0,244365852672,"{""name"":""Red Brick Double Chocolate Oatmeal Porter"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atlanta_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter brewed with lots of chocolate malt and roasted barley. This gives the beer its nearly black color and coffee and dark chocolate flavors. These flavors are then tempered with the use of flaked oats which provide an almost creamy texture to the beer. The 7.7% abv is deceptive but is not completely unnoticed."",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
-egan_brewing-cinco_de_mayo_cerveza_jalapeno,0,0,244617576449,"{""name"":""Cinco de Mayo Cerveza Jalapeño"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-s_a_damm-estrella_levante_especial,0,0,245002928129,"{""name"":""Estrella Levante Especial"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2011-07-14 08:53:33"",""description"":"""",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,53,1
-faultline_brewing_1-pilsner,0,0,244618035201,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-cooper_s_cave_ale_company-pathfinder_s_porter,0,0,244482441218,"{""name"":""Pathfinder's Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pathfinder's Porter is a robust, dark and hoppy ale originally brewed for street urchins of London. Our version does the job for the Glens Falls urchins of today."",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
-oskar_blues_grill_and_brew-dale_s_pale_ale,0,0,244883324930,"{""name"":""Dale's Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Dale's Pale Ale is our flagship beer and America's first hand-canned craft beer. It's an assertive but deftly balanced beer (somewhere between an American pale ale and an India Pale Ale) brewed with hefty amounts of European malts and American hops.\r\n\r\nIt features a merengue-like head, a copper color, and a hoppy nose, thanks to a big post-boil addition of Centennial hops. To complement its hoppy first impression, Dale's also sports a rich middle of malts and hops, and a bracing finish. Dale's is 6.5% alcohol by volume, and features 65 International Bittering Units.\r\n\r\nWe think of it as the perfect, everyday beer for hopheads like us. Dale's Pale Ale's rich flavor has helped us make many new fans, and its numerous honors have helped us kick huge holes in the misconceptions regarding cans."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
-boston_beer_company-samuel_adams_old_fezziwig_ale,0,0,244365590528,"{""name"":""Samuel Adams Old Fezziwig Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Spicy and Bold, a big Christmas cookie of a beer.\r\nSamuel Adams® Old Fezziwig® Ale is the Christmas cookie of beer. Bursting with spices of the season and a remarkably full body, it helps those long winter nights pass much quicker. The full body hits the palate first with a depth of malt character ranging from sweeter toffee and caramel notes to the more dark, roasty chocolate notes. Then come the spices in full force. Cinnamon, ginger and orange peel dance on the tongue bringing with them the celebratory spirit that goes hand in hand with the season.""}",1,22,1
-moosejaw_pizza_dells_brewing_company-light_ale,0,0,244870217730,"{""name"":""Light Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-ithaca_beer_company-partly_sunny,0,0,244743929857,"{""name"":""Partly Sunny"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Partly Sunny is hazy-straw colored wheat beer with coriander, and generous amounts of lemon zest. It's a light refreshing beer with a subtle spicy start and a smooth citrus finish."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
-half_moon_bay_brewing,0,0,244744257538,"{""name"":""Half Moon Bay Brewing"",""city"":""Princeton by the Sea"",""state"":""California"",""code"":""94019"",""country"":""United States"",""phone"":""1-650-728-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""390 Capistrano Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.4903,""lon"":-122.435}}",1,25,1
-brasserie_de_l_abbaye_val_dieu-grand_cru,0,0,244365131776,"{""name"":""Grand Cru"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-atwater_block_brewing-hell,0,0,244365852673,"{""name"":""Hell"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Atwater Block beers are brewed using traditional German methods to create a distinctly fresh and flavorful character. Our classic Helles (German for Pale) is a crisp lager that is sure to please."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
-einbecker_brauhaus_ag-ur_bock_hell,0,0,244617576450,"{""name"":""Ur-Bock Hell"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""einbecker_brauhaus_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
-saint_louis_brewery_schlafy_tap_room-schlafly_esb,0,0,245002928130,"{""name"":""Schlafly ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-512_brewing_company-512_whiskey_barrel_aged_double_pecan_porter,0,0,244375617536,"{""name"":""(512) Whiskey Barrel Aged Double Pecan Porter"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first barrel project is in kegs and on it’s way to beer bars around Austin. This is a bigger, bolder version of our mainstay Pecan Porter, with a richer finish. Two months on recently emptied Jack Daniels select barrels imparted a wonderful vanilla character from the oak and a pleasant amount of whiskey nose and flavor. All in all, I’m really proud of the hard work and effort put into this beer. Our first attempt at brewing it and our first attempt at managing barrels has paid off for everyone! Seek out this beer, but don’t put it off. There is a very limited number of kegs available and it might go fast…"",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
-firehouse_brewery_restaurant,0,0,244618100736,"{""name"":""Firehouse Brewery & Restaurant"",""city"":""Red Oak"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.0117,""lon"":-95.2272}}",1,27,1
-coors_brewing_golden_brewery-rising_moon_spring_ale,0,0,244482506752,"{""name"":""Rising Moon Spring Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed only in spring. Has a crisp taste, thanks to the kieffer lime leaves and lime added in. Has a light amber color and absolutely delicious!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
-pelican_pub_brewery,0,0,245006401536,"{""name"":""Pelican Pub & Brewery"",""city"":""Pacific City"",""state"":""Oregon"",""code"":""97135"",""country"":""United States"",""phone"":""1-503-965-7007"",""website"":""http://www.pelicanbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33180 Cape Kiwanda Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.2152,""lon"":-123.97}}",1,63,1
-brasserie_brouwerij_cantillon-kriek_lambic,0,0,244365590529,"{""name"":""Kriek-Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,22,1
-moylan_s_brewery_restaurant-old_blarney_barleywine,0,0,244870283264,"{""name"":""Old Blarney Barleywine"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-jennings_brewery-sneck_lifter,0,0,244743929858,"{""name"":""Sneck Lifter"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jennings_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark beer with a reddish tinge derived from the use of coloured malts, full of complex flavours, which create an intriguing beer of great character.\r\n\r\nIn Northern English dialect sneck means door latch and a sneck lifter was a man’s last sixpence which enabled him to lift the latch of a pub door and buy himself a pint, hoping to meet friends there who might treat him to one or two more."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,24,1
-heavenly_daze_brewery_and_grill-backpacker_ipa,0,0,244744323072,"{""name"":""Backpacker IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
-breckenridge_brewery-trademark_english_pale,0,0,244482637824,"{""name"":""Trademark English Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
-back_road_brewery-back_road_ale,0,0,244365852674,"{""name"":""Back Road Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Back Road Brewery's flagship beer, and first original recipe of 1997, is also our house beer. This mildly hopped copper colored brew has a rich smooth taste. Hop varieties such as Styrian Goldings and English Fuggles are used to balance the beers maltiness. A technique called dry hopping is used after fermentation to add fresh herbal aroma. It is a great session beer and was made to satisfy a wide variety of palates. Drink and enjoy LaPorte County's first production craft beer."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-ellersick_brewing_big_e_ales,0,0,244617641984,"{""name"":""Ellersick Brewing Big E Ales"",""city"":""Lynnwood"",""state"":""Washington"",""code"":""98036"",""country"":""United States"",""phone"":""425-672-7051"",""website"":""http://www.ellersickbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mission Statement: Dedicated to serving our clients on a personal level. We specialize in unusually cool dispensing methods. To make sure your quality brew takes on an impressive experience. Please view our product page for innovate systems and amazing Ales. Call today for a personal evaluation of your beer enhanced production, home remedy, or beer emergency!"",""address"":[""5030 208th ST SW Ste. A""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8099,""lon"":-122.302}}",1,26,1
-scuttlebutt_brewing-homeport_blonde,0,0,245002928131,"{""name"":""Homeport Blonde"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-abbaye_notre_dame_du_st_remy-rochefort_10,0,0,244375617537,"{""name"":""Rochefort 10"",""abv"":11.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_notre_dame_du_st_remy"",""updated"":""2010-07-22 20:00:20"",""description"":""Reddish-brown colour, with a very compact head and an aroma of figs, feels like honey in the mouth. The alcohol profile is a major component in the flavour of this rich ale. It is very similar to 6 and 8, but has much more of everything. Some may find the high alcohol content to be disagreeable."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,46,1
-flatlander_s_restaurant_brewery-bockbier,0,0,244618100737,"{""name"":""Bockbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
-coronado_brewing_company-idiot_ipa,0,0,244482506753,"{""name"":""Idiot IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The CBC Idiot IPA is an all natural India Pale Ale. A big beer with an 8.5% ABV and brewed with over 3 lbs of hops per barrell. Watch out, this unfiltered \""San Diego IPA\"" has been known to reduce even the most intelligent to a blithering \""idiot\""."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
-pete_s_brewing-wicked_springfest,0,0,245006401537,"{""name"":""Wicked Springfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,63,1
-brasserie_dubuisson-scaldis_noel_bush_noel,0,0,244365656064,"{""name"":""Scaldis Noël / Bush Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-moylan_s_brewery_restaurant,0,0,244870283265,"{""name"":""Moylan's Brewery & Restaurant"",""city"":""Novato"",""state"":""California"",""code"":""94945"",""country"":""United States"",""phone"":""1-415-898-4677"",""website"":""http://www.moylans.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""15 Rowland Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.0941,""lon"":-122.557}}",1,32,1
-john_harvard_s_brewhouse_wilmington-winterfest_lager,0,0,244743995392,"{""name"":""Winterfest Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
-hereford_hops_restaurant_and_brewpub_1,0,0,244744323073,"{""name"":""Hereford & Hops Restaurant and Brewpub #1"",""city"":""Escanaba"",""state"":""Michigan"",""code"":""49829"",""country"":""United States"",""phone"":""1-906-789-1945"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""624 Ludington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7458,""lon"":-87.056}}",1,25,1
-brewery_creek_brewing-belgian_wheat,0,0,244482703360,"{""name"":""Belgian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-back_road_brewery-english_mild,0,0,244365918208,"{""name"":""English Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,23,1
-elysian_brewery_public_house-bete_blanche,0,0,244617641985,"{""name"":""Bête Blanche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-skagit_river_brewing-trumpeter,0,0,245002993664,"{""name"":""Trumpeter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
-aldaris-luksusa,0,0,244375617538,"{""name"":""Luksusa"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aldaris"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-flying_bison_brewing-buffalo_lager,0,0,244618100738,"{""name"":""Buffalo Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Light bodied golden beer, very balanced flavor with soft, clean finish. Available bottles at your favorite store and at an increasing # of bars."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-crabby_larry_s_brewpub_steak_crab_house-pale_ale,0,0,244482572288,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
-pike_pub_and_brewery-auld_acquaintance_spiced_ale,0,0,245006467072,"{""name"":""Auld Acquaintance Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-brouwerij_abdij_der_trappisten_van_westmalle-westmalle_trappist_tripel,0,0,244482965504,"{""name"":""Westmalle Trappist Tripel"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_der_trappisten_van_westmalle"",""updated"":""2010-07-22 20:00:20"",""description"":""Was first brewed in 1934 and the recipe has not changed since 1956. It is made with pale candy sugar and has a very pale color produced from a mash of light pilsener malts. Styrian Goldings hops are used along with some German varieties and the classic Saaz pilsener hop. After a long secondary fermentation, the Tripel Westmalle is bottled with a dose of sugar and yeast. This beer holds up well in the bottle over time and seems to soften with age."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,22,1
-northwoods_brewpub_grill,0,0,244870283266,"{""name"":""Northwoods Brewpub Grill"",""city"":""Eau Claire"",""state"":""Wisconsin"",""code"":""54701"",""country"":""United States"",""phone"":""1-715-552-0510"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3560 Oakwood Mall Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.7776,""lon"":-91.4433}}",1,32,1
-jolly_pumpkin_artisan_ales-bam_biere,0,0,244743995393,"{""name"":""Bam Bière"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisan farmhouse ale that is golden, naturally cloudy, bottle conditioned and dry hopped for a perfectly refreshing balance of spicy malts, hops and yeast."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,24,1
-hereford_hops_steakhouse_and_brewpub_3-christmas_ale,0,0,244744323074,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-brewery_creek_brewing-dunkel_doppel_weizen_bock,0,0,244482703361,"{""name"":""Dunkel Doppel Weizen Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,21,1
-barley_island_brewing-blind_tiger_pale_ale,0,0,244365983744,"{""name"":""Blind Tiger Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-engine_house_9-belgian_white,0,0,244617707520,"{""name"":""Belgian White"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-skol_breweries,0,0,245002993665,"{""name"":""Skol Breweries"",""city"":""Maharashtra"",""state"":"""",""code"":"""",""country"":""India"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Uran""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":18.88,""lon"":72.94}}",1,53,1
-alesmith_brewing-lil_devil,0,0,244375683072,"{""name"":""Lil Devil"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-golden_valley_brewery_and_pub,0,0,244618100739,"{""name"":""Golden Valley Brewery and Pub"",""city"":""McMinnville"",""state"":""Oregon"",""code"":""97128"",""country"":""United States"",""phone"":""1-503-472-2739"",""website"":""http://www.goldenvalleybrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""980 NE Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.2104,""lon"":-123.189}}",1,27,1
-de_halve_maan-brugse_zot,0,0,244614889472,"{""name"":""Brugse Zot"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""Brugse Zot is a goldenblond beer with a rich froth and a fruity flavouring. The beer is brewed with four different kinds of malt and two aromatic varieties of hop which give the beer its unique taste.\r\nWith an alcochol degrees proof of 6 % Vol it is a well balanced, easy drinking beer with character.\r\nBrugse Zot is a natural beer born out of a selection of only the best ingredients. Thanks to the refermentation in the bottle, the beer has a longer natural life."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,20,1
-pinehurst_village_brewery-double_eagle_brown_ale,0,0,245006467073,"{""name"":""Double Eagle Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
-brouwerij_artois,0,0,244483031040,"{""name"":""Brouwerij Artois"",""city"":""Leuven"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-016-24-71-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vaartstraat 94""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8853,""lon"":4.7008}}",1,22,1
-o_hara_s_brewpub_and_restaurant-quarry_rock_red,0,0,244870283267,"{""name"":""Quarry Rock Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_hara_s_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
-jw_lees_and_co_brewers_ltd-harvest_ale_1998,0,0,244744060928,"{""name"":""Harvest Ale 1998"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,24,1
-highland_brewing_company-st_terese_s_pale_ale,0,0,244744323075,"{""name"":""St.Terese's Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden pale having a slightly malty body balanced by an assertive American hop flavor. This pale ale displays a delicate hop nose due to the process of dry hopping. A crisp and refreshing beer perfect for any occasion.\r\n\r\nIBU: 24\r\nAlcohol content: 5.2% by volume\r\nHops: Chinook and Cascade\r\n\r\nCalories per 12 oz. 170.1\r\nCarbs per 12 oz. 15.65"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-brooklyn_brewery-saison_de_brooklyn,0,0,244482768896,"{""name"":""Saison De Brooklyn"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The second beer of the Brewmaster's reserve line, Saison de Brooklyn is brewed in the style produced by old farmhouse breweries in Belgium and France. Well-hopped and fermented to a crisp dryness, Saisons were brewed in the spring to sustain farmers through the summer. Saison de Brooklyn is boldly hoppy, dry and flinty, with a bright spicy, citric aroma and pillowy white head. This beer has remarkable versatility with food, complementing spicy dishes particularly well."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,21,1
-bayern_brewing-hefeweizen,0,0,244365983745,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayern_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
-f_x_matt_brewing-saranac_single_malt,0,0,244617707521,"{""name"":""Saranac Single Malt"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We use 100% Scottish Maris Otter Malt. Traditionally used in the distilling industry. The combination of the Scottish Malt and slow aging process produces a unique brew as distinctive as single malt whiskey with a flavor than any other beer."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,26,1
-spring_house_brewing_company-goofy_foot_summer_wheat,0,0,245120368640,"{""name"":""Goofy Foot Summer Wheat"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is lighter style and dry to the palate and with the distinct flavor of wheat makes for a perfect thirst-quenching beer. It is the ideal drink for beer drinker who appreciates tradition and personality in their beer, but also seeks a lighter, refreshing style, perfect for the summer months."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,53,1
-amherst_brewing_company-amherst_esb,0,0,244375683073,"{""name"":""Amherst ESB"",""abv"":5.35,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber in color, medium body with very hoppy aroma and bitter finish. Dry hopped with Oregon Goldings"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,46,1
-granite_city_food_brewery_omaha-broad_axe_stout,0,0,244744978432,"{""name"":""Broad Axe Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
-dock_street_beer-bubbly_wit,0,0,244615020544,"{""name"":""Bubbly Wit"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""A swanky interpretation of a double strength wheat beer, fermented solely by champagne yeast. Notes of tart citrus and white grape soothe the pallet in this sparkling ale."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,20,1
-pleasanton_main_street_brewery,0,0,245006532608,"{""name"":""Pleasanton Main Street Brewery"",""city"":""Pleasanton"",""state"":""California"",""code"":""94566"",""country"":""United States"",""phone"":""1-925-462-8218"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""830 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.6645,""lon"":-121.873}}",1,63,1
-brouwerij_de_keersmaeker-mort_subite_gueuze_lambic,0,0,244483031041,"{""name"":""Mort Subite Gueuze Lambic"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_keersmaeker"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,22,1
-olde_main_brewing-off_kil_ter_scottish_ale,0,0,244870348800,"{""name"":""Off KIL Ter Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_japanese_classic_ale,0,0,244744060929,"{""name"":""Hitachino Nest Japanese Classic Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,24,1
-hops_haven_brew_haus-port_washington_old_port_porter,0,0,244744388608,"{""name"":""Port Washington Old Port Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,25,1
-brouwerij_lindemans-peche_pecheresse,0,0,244482768897,"{""name"":""Pêche / Pecheresse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,21,1
-beamish_crawford,0,0,244365983746,"{""name"":""Beamish & Crawford"",""city"":""Cork"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353-21-911100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""South Main Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.897,""lon"":-8.4769}}",1,23,1
-fitger_s_brewhouse_brewery_and_grill-big_boat_oatmeal_stout,0,0,244617773056,"{""name"":""Big Boat Oatmeal Stout"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
-st_john_brewers,0,0,245120434176,"{""name"":""St John Brewers"",""city"":""St. John"",""state"":""Virgin Islands"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.stjohnbrewers.com/index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":18.3368,""lon"":-64.7281}}",1,53,1
-anacortes_brewing,0,0,244375748608,"{""name"":""Anacortes Brewing"",""city"":""Anacortes"",""state"":""Washington"",""code"":""98221"",""country"":""United States"",""phone"":""360-588-1720"",""website"":""http://www.anacortesrockfish.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our brewers focus on high quality ingredients, a carefully controlled process and delicate handling to provide one of the best beers you will find in the industry. We operate a seven barrel brewery designed and installed by Sound Brewing Systems of Seattle with vessels fabricated by Ripley Stainless in British Columbia. Our brewery features a cold room specially designed for lagering to provide our beers with a traditional character and complexity."",""address"":[""320 Commercial Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.5193,""lon"":-122.613}}",1,46,1
-gray_brewing-bower_city_pale_ale,0,0,244744978433,"{""name"":""Bower City Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-dogfish_head_craft_brewery-punkin_ale,0,0,244615020545,"{""name"":""Punkin Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A full-bodied brown ale with smooth hints of pumpkin and brown sugar. Perfect to warm-up with, as the season cools."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,20,1
-raccoon_river_brewing-barnstormer_pale_ale,0,0,245006532609,"{""name"":""Barnstormer Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
-brouwerij_liefmans-lucifer,0,0,244483096576,"{""name"":""Lucifer"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-onopa_brewing-oatmeal_stout,0,0,244870348801,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-klosterbru_bamberg-bockbier,0,0,244744060930,"{""name"":""Bockbier"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
-icobes_b_v_b_a,0,0,244744454144,"{""name"":""ICOBES b.v.b.a."",""city"":""Evergem"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)9-/-253-61-82"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Durmakker 23""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1007,""lon"":3.6934}}",1,25,1
-capital_brewery-capital_maibock,0,0,244482768898,"{""name"":""Capital Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,21,1
-bibiana_brewing-hop_stuffed_pale_ale,0,0,244366049280,"{""name"":""Hop-Stuffed Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bibiana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-flossmoor_station_brewery-panama_limited_red_ale,0,0,244617773057,"{""name"":""Panama Limited Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-staatliches_hofbrauhaus_in_munchen,0,0,245120499712,"{""name"":""Staatliches Hofbräuhaus in München"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-92105-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofbräuallee 1""]}",1,53,1
-angelic_brewing-london_porter,0,0,244375748609,"{""name"":""London Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""angelic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
-great_dane_pub_and_brewing_2-coffee_ale,0,0,244745043968,"{""name"":""Coffee Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-dortmunder_actien_brauerei_dab-hansa_pils,0,0,244615086080,"{""name"":""Hansa Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,20,1
-rahr_sons_brewing_company-iron_thistle,0,0,245006532610,"{""name"":""Iron Thistle"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Break out the bagpipes with your lederhosen! We’re proud to present our Iron Thistle Scotch Ale – Rahr’s first National Grand Champion winner. This dark, Scottish ale has a bold taste dominated by a smooth, sweet maltiness balanced with a low, hoppy bitterness. So don your kilts and enjoy. Here’s to your health – Slàinte! Prosit!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,63,1
-brouwerij_van_steenberge-head_trip,0,0,244483096577,"{""name"":""Head Trip"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweet with some\r\ntropical flavors, some banana, a hint of clove."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,22,1
-oskar_blues_grill_and_brew-mama_s_little_yella_pils,0,0,244870348802,"{""name"":""Mama's Little Yella Pils"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Mama’s Little Yella Pils - Our upcoming new canned good is a small-batch version of the beer that made Pilsen, Czechoslovakia famous. Mama’s is made with hearty amounts of pale malt, German specialty malts, and a blend of traditional (Saaz) and 21st century Bavarian hops. Our first canned lager, it’s also fermented at cool temperatures with a German yeast.\r\n\r\nThis tasteful reality Czech is the perfect antidote for the watered-down versions of pilsner clogging America’s shelves. And Mama’s gentle hopping (about 35 IBUs) and low ABV (just 5.3%) mean we’re finally honoring consumer requests for a delicious but less-challenging beer. (Hey, we like a good low-dose session beer, too.) Look for our Gold Metal Winner on US shelves in March.\r\n\r\nSadly, the Feds rejected our “Take Two and Call Us in the Morning” line on the can."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,32,1
-labatt_ontario_breweries-genuine_lager,0,0,244744060931,"{""name"":""Genuine Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally introduced in 1992, Genuine Lager has evolved into a truly definitive Canadian Lager. Balancing a blend of quality aromatic and bittering hops with its medium body, Genuine Lager is a smooth, refreshing and easy-drinking beer with a subtle hop aroma and a hint of malty sweetness."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
-industrias_la_constancia_ilc-premier,0,0,244744454145,"{""name"":""Premier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-carlsberg_sverige_ab-falcon_lagrad_gammelbrygd,0,0,244482834432,"{""name"":""Falcon Lagrad Gammelbrygd"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_sverige_ab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
-big_boss_brewing_company-angry_angel,0,0,244366049281,"{""name"":""Angry Angel"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_boss_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Kölsch is a refreshingly pale German style Ale. It is cold fermented and cold conditioned to achieve a beautiful balance between biscuit malt flavors and floral hop notes. It is light bodied and finishes somewhat dry to enhance it's easy drinking nature.""}",1,23,1
-frederic_robinson_ltd-double_hop_premium_ale,0,0,244617773058,"{""name"":""Double Hop Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederic_robinson_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-standing_stone_brewing_company-standing_stone_amber_ale,0,0,245120565248,"{""name"":""Standing Stone Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A light copper-colored ale with moderate hoppiness which exhibits a spicy hint of fruit, notable maltiness and a medium body."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,53,1
-australian_brewing_corporation,0,0,244375748610,"{""name"":""Australian Brewing Corporation"",""city"":""Little River"",""state"":""Victoria"",""code"":""3211"",""country"":""Australia"",""phone"":""+61 (03) 5283 1161"",""website"":""http://www.australianbrewingcorporation.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""229-255 Old Melbourne Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-37.968,""lon"":144.525}}",1,46,1
-heavenly_daze_brewery_and_grill-daze_scottish_ale,0,0,244745043969,"{""name"":""Daze Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-dubuque_brewing_and_bottling-champions_clubhouse_classic,0,0,244615086081,"{""name"":""Champions Clubhouse Classic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dubuque_brewing_and_bottling"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,20,1
-red_lodge_ales-bent_nail_ipa,0,0,245006532611,"{""name"":""Bent Nail IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_lodge_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
-budjovick_budvar,0,0,244483096578,"{""name"":""Budjovick Budvar"",""city"":""esk Budjovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-387-705-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Karoliny Svtl 4""]}",1,22,1
-penn_brewery,0,0,244993556480,"{""name"":""Penn Brewery"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15212"",""country"":""United States"",""phone"":""412-237-9400"",""website"":""http://www.pennbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Pennsylvania Brewing Company, founded in 1986 by Tom Pastorius to brew authentic German beers, was the first craft brewer in Pennsylvania and a pioneer in the microbrewery movement. The brewery and its restaurant are located in the former Eberhardt and Ober Brewery in the historic Deutschtown section of Pittsburgh's North Side, where beer has been made since 1848. The buildings are listed on the National Register of Historic Sites. Penn Brewery is an authentic German brewery in every detail; from its solid copper brewhouse imported from Germany, fermentation and aging tanks, filtration equipment, kegging and bottling equipment to its imported ingredients, recipes, methods and German brewmaster. All beers are made in accordance with the German beer purity law called the Reinheitsgebot which means that only the four classic ingredients are used in our beer: malted barley (and/or wheat), hops, water and yeast. Adjuncts such as corn and rice are never used. Preservatives and stabilizers are never used. High gravity brewing is never done. Just real, honest, all natural beer made the way it's made in Germany!"",""address"":[""800 Vinial St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4569,""lon"":-79.9915}}",1,32,1
-alaskan_brewing,0,0,244376076288,"{""name"":""Alaskan Brewing"",""city"":""Juneau"",""state"":""Alaska"",""code"":""99801"",""country"":""United States"",""phone"":""1-907-780-5866"",""website"":""http://www.alaskanbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The popularity of our beers has led to heroic efforts to keep up with the demand. We claim the unofficial record for production on a 10 barrel brewing system, with a whopping 42 batches in a single week. The addition of a new, 100-barrel brewhouse in 1995, and a Sankey-type keg system installed the following year, finally made it possible for us to serve the entire Pacific Northwest and later the Desert Southwest. Brewing beer in Alaska isn't easy. In the coastal community of Juneau, without road connections to the lower 48 states, everything arrives and leaves by water or air, and the weather always has the last word. We have learned to coordinate shipments for barges that couldn't dock in high winds, ferries that broke down, airplanes that overheaded, and trucks delayed by spring thaws that turned the roads to mush. We learned which suppliers were willing to airlift supplies and spare parts on short notice (at $1 per pound). We mastered wiring, plumbing, waste disposal and air quality control. We discovered that, if you had to, you could pour concrete in January by thawing the ground with heaters. Ah, but it all seems worthwhile if you can go home to a dinner of king crab or fresh halibut."",""address"":[""5429 Shaune Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":58.3573,""lon"":-134.49}}",1,47,1
-lancaster_brewing_co-shoo_fly_porter,0,0,244744126464,"{""name"":""Shoo-Fly Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Lancaster Brewing Company’s newest release is their limited series of Shoo-Fly Porter. From the heart of Pennsylvania Dutch Country comes a delicious porter made with Lancaster County molasses, eight different malts and grains, and four different styles of hops. This beer has a deep, rich, brown color, medium to full body, and finishes with a smooth mouth feel."",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-ithaca_beer_company-cascazilla,0,0,244744454146,"{""name"":""Cascazilla"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The name CascaZilla is a play on both the name of our local Cascadilla Gorge and the monster amounts of Cascade hops in this beer. This red ale gets its distinctive color from a healthy portion of caramel malt, which also lends some body and sweetness to the beer. The predominant flavor and aroma of this beer, however, is brought to you by the fresh American hops. If you haven't done so yet, treat yourself to Ithaca Beer's new monstrously hoppy Red Ale."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
-cervejaria_sudbrack-eisenbahn_dourada,0,0,244482834433,"{""name"":""Eisenbahn Dourada"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-big_horn_brewing_the_ram_2,0,0,244366114816,"{""name"":""Big Horn Brewing @ The RAM 2"",""city"":""Wheeling"",""state"":""Illinois"",""code"":""60090"",""country"":""United States"",""phone"":""1-847-520-1222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""700 North Milwaukee Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1511,""lon"":-87.9144}}",1,23,1
-front_street_brewery-cherry_ale,0,0,244617838592,"{""name"":""Cherry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,26,1
-standing_stone_brewing_company-standing_stone_hefeweizen,0,0,245120565249,"{""name"":""Standing Stone Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This unfiltered wheat ale has very low bitterness. A Bavarian hefeweizen yeast is used which imparts a banana and clove aroma."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
-ballast_point_brewing-big_eye_ipa,0,0,244375814144,"{""name"":""Big Eye IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""ndia Pale Ale is a style of beer that was developed in England during the period of the British Empire. It is derived from bitter ales but contains even more alcohol and hops. This helped preserve the beer on its long sea journey around Cape Hope to India.\r\n\r\nBritish troops returning from India brought their love of this beer back with them so breweries began brewing it for the home market as well. Sadly, the style had mostly died out in England by the late twentieth century.\r\n\r\nAmerican home brewers began to brew I.P.A. because of their love for the intense hoppiness of the style. In time American I.P.A.s became much more aggressively bitter and hoppy than their historical predecessors.\r\n\r\nBig Eye I.P.A. is our version of this wonderful style. American Centennial hops are used exclusively to bitter, flavor, finish, and dry hop the Big Eye. Its full hop flavor is guaranteed to please the palate of the true hop head."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
-heineken_switzerland-original_ittinger_klosterbrau,0,0,244745043970,"{""name"":""Original Ittinger Klosterbräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_switzerland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-dunedin_brewery,0,0,244615151616,"{""name"":""Dunedin Brewery"",""city"":""Dunedin"",""state"":"""",""code"":""34698"",""country"":""United States"",""phone"":""727 736 0606"",""website"":""http://www.dunedinbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""From their webpage - Fermenting since 1996 and still going strong, we handcraft all of our ales for your enjoyment from our Piper's Pale Ale to our Apricot Wheat. Located on the west coast of Florida in the Scottish heritage town of Dunedin, Florida we work hard to produce quality ales for our thirsty friends all over Florida. With 9 ales brewed year round and 5 or more seasonal offerings throughout the year there is sure to be be an ale to fit your taste!"",""address"":[""937 Douglas Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.014,""lon"":-82.7876}}",1,20,1
-redhook_ale_brewery-blonde_ale,0,0,245006598144,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-caledonian_brewing-golden_promise_traditional_scottish_ale,0,0,244483162112,"{""name"":""Golden Promise Traditional Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caledonian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-port_brewing_company,0,0,244993556481,"{""name"":""Port Brewing Company"",""city"":""San Marcos"",""state"":""California"",""code"":""92069"",""country"":""United States"",""phone"":""(760) 891-0272"",""website"":""http://www.portbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We officially opened on May 5th 2006. Now we will be able to make up to 5000 barrels of beer enabling you more chances to drink your favorite Port Brewed beers at home and around town. More impressive is our oak barrel room where we age our barrel aged specialty beers. Come check out our tasting bar on Fridays and Saturdays where you can get bottles, jugs & merchandise to go while you sample what we've been brewing!"",""address"":[""155 Mata Way Suite 104""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.1406,""lon"":-117.15}}",1,32,1
-ali_i_brewing-pau_hana_porter,0,0,244376076289,"{""name"":""Pau Hana Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
-little_creatures_brewery,0,0,244867072000,"{""name"":""Little Creatures Brewery"",""city"":""Fremantle"",""state"":""WA"",""code"":""6160"",""country"":""Australia"",""phone"":""+61 8 9430 5155"",""website"":""http://www.littlecreatures.com.au/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""40 Mews Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-32.0597,""lon"":115.745}}",1,24,1
-ithaca_beer_company-pale_ale,0,0,244744519680,"{""name"":""Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Made with generous amounts of west coast hops, our Pale Ale boasts a fragrant aroma and a pleasant hop bite. It has a deep golden color, and nicely balances the bitterness of the hops with the sweetness of the malt. Whether you know hops or not, our Pale Ale will appeal to all those looking for a refreshing, well balanced ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-charles_wells_ltd,0,0,244482834434,"{""name"":""Charles Wells Ltd."",""city"":""Bedford"",""state"":""Bedford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01234)-272766"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Havelock Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.1321,""lon"":-0.4815}}",1,21,1
-brasserie_d_ecaussinnes-ultra_ambree,0,0,244366114817,"{""name"":""Ultra Ambrée"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_ecaussinnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-goose_island_beer_company_clybourn-smooth_india_pale_ale,0,0,244617838593,"{""name"":""Smooth India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-standing_stone_brewing_company-standing_stone_saison,0,0,245120565250,"{""name"":""Standing Stone Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian \""seasonal\"" ale brewed during winter for the spring and summer months. This is a crisp, refreshing beer with hints of spice and fruit."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,53,1
-bass_brewers-ale,0,0,244375814145,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bass_brewers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-highland_brewing_company-gaelic_ale,0,0,244745109504,"{""name"":""Gaelic Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep amber colored American ale, featuring a rich malty body. Cascade and Willamette hops add a complex hop flavor and aroma. This ale is exceptionally balanced between malty sweetness and delicate hop bitterness.\r\n\r\nIBU: 32\r\nAlcohol content: 5.8% by volume\r\nHops: Chinook, Willamette and Cascade\r\n\r\nCalories per 12 oz. 172.5\r\nCarbs per 12 oz. 17.86"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,27,1
-egan_brewing-rye_i_oughta,0,0,244615151617,"{""name"":""Rye I Oughta...!"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
-ridgeway_brewing-seriously_bad_elf,0,0,245006598145,"{""name"":""Seriously Bad Elf"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-capital_brewery-capital_rustic_ale,0,0,244483162113,"{""name"":""Capital Rustic Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-port_washington_brewing-pier_96_lager,0,0,244993622016,"{""name"":""Pier 96 Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
-america_s_brewing-hemp_ale,0,0,244376141824,"{""name"":""Hemp Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-long_trail_brewing_co-belgian_white,0,0,244867137536,"{""name"":""Belgian White"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Belgian White Ale is modeled after the original Belgian Witbiers brewed in monasteries during the early 14th century. The soft notes of citrus and spice are topped with a light, fluffy head that finishes clean and crisp. This all natural ale is our latest seasonal brew, perfect for lounging lake-side or celebrating at trail's end."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,24,1
-jack_russell_brewing,0,0,244744519681,"{""name"":""Jack Russell Brewing"",""city"":""Camino"",""state"":""California"",""code"":""95709"",""country"":""United States"",""phone"":""1-877-457-2725"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2380 Larsen Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.7563,""lon"":-120.679}}",1,25,1
-coach_s_norman,0,0,244482899968,"{""name"":""Coach's Norman"",""city"":""Norman"",""state"":""Oklahoma"",""code"":""73069"",""country"":""United States"",""phone"":""1-405-360-5726"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 West Main""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.2205,""lon"":-97.4439}}",1,21,1
-brauerei_aying_franz_inselkammer_kg-oktober_fest_marzen,0,0,244483293184,"{""name"":""Oktober Fest - Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,23,1
-goose_island_beer_company_fulton_street-oktoberfest,0,0,244617838594,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,26,1
-steamworks-heroica_oatmeal_stout,0,0,245120565251,"{""name"":""Heroica Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""There are some things in life that require a certain sense of bravado: these might include ordering a quadruple espresso, deciding to sleep without a nightlight, or choosing to live in a region of the continent that is gradually sinking into the Pacific Ocean. If you're no longer scared of the dark, then there's no reason to be afraid of our stout. A generous portion of rolled oats and lots of black roasted barley give this beer a warm, roasted nose, and a distinct dryness that succumbs to waves of lingering satisfaction."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,53,1
-bbc_brewing_co_llc-hoppy_hefe,0,0,244375814146,"{""name"":""Hoppy Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""It is a nice example of a Hefeweizen."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
-hoppin_frog_brewery-frog_s_hollow_double_pumpkin_ale,0,0,244745109505,"{""name"":""Frog's Hollow Double Pumpkin Ale"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""There's a Place just south they call Frog's Hollow, with cauldrons afire in Fall, and they only speak in whispers of the name. There's a brewery they say who has the secret, of spices picked just right. With a crying shout, they'll knock it out, and hand you this Frog's delight."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,27,1
-elysian_brewery_public_house-bifrost_winter_ale,0,0,244615151618,"{""name"":""BiFröst Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
-rock_bottom_restaurant_brewery_denver,0,0,245006598146,"{""name"":""Rock Bottom Restaurant & Brewery - Denver"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-534-7616"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1001 16th Street #A-100""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7472,""lon"":-104.995}}",1,63,1
-celis_brewery-pale_rider,0,0,244483227648,"{""name"":""Pale Rider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh-weisse_hefe_weizen,0,0,244993622017,"{""name"":""Weisse Hefe-Weizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
-anchor_brewing-old_foghorn_2006,0,0,244376141825,"{""name"":""Old Foghorn 2006"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-magic_hat-odd_notion_summer_08,0,0,244867203072,"{""name"":""Odd Notion Summer 08"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A stupendous Midland Mild Ale whose epic malt infused acts of sweet caramel sensations leave all who pour it speechless. Its roasted notes of sun soaked grain are appearing in the Summer Variety Show in a not to be missed engagement. Brewed with Belgian Candi Sugar.""}",1,24,1
-jolly_pumpkin_artisan_ales-bam_noire,0,0,244744519682,"{""name"":""Bam Noire"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, smooth, delicious. Aromas of worn leather and cool autumn nights. Notes of sweet plum and toasted raisin, hints of coffee and cacao. Lingering tart and refreshing finish. Only available for a few short months. Not to be missed."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,25,1
-cold_spring_brewing,0,0,244482899969,"{""name"":""Cold Spring Brewing"",""city"":""Cold Spring"",""state"":""Minnesota"",""code"":""56320"",""country"":""United States"",""phone"":""1-320-685-8686"",""website"":""http://www.coldspringbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Cold Spring Brewery in Cold Spring is on the original Red River trail. Used by the pioneering trail blazers, trappers and settlers to replenish water supplies from the pure cold spring which the town is named today. The spring is one of the purest sources of water in North America. The spring comes from an underground prehistoric glacial lake filtered through granite over hundreds of years. There are certain pure elements in the water that are absolutely perfect for brewing world class beers. The brewery has been modernized and rebuilt over the past several years, and is now a state-of-the-art brewery and beverage product development and production facility."",""address"":[""219 Red River Avenue North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4582,""lon"":-94.4291}}",1,21,1
-brauerei_schwelm-pils,0,0,244483358720,"{""name"":""Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schwelm"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-gordon_biersch_brewing-blonde_bock,0,0,244617904128,"{""name"":""Blonde Bock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
-steamworks-pilsner,0,0,245120565252,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Pilsner is a true beer drinker's beer inspired by the first golden lagers brewed in the Czech town of Pilsn. This full-bodied lager is hopped with copious amounts of Sterling hops, lending it a refreshing, citrusy finish."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,53,1
-bell_s_brewery_inc-special_double_cream_stout,0,0,244375879680,"{""name"":""Special Double Cream Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweeter and smoother than Kalamazoo Stout. A beer for special winter occasions. Great with chocolate desserts."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,46,1
-issaquah_brewhouse-farm_frog,0,0,244745109506,"{""name"":""Farm Frog"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-emery_pub-amber,0,0,244615217152,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emery_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
-rock_bottom_restaurant_brewery_minneapolis-st_paul_pilsner,0,0,245006663680,"{""name"":""St. Paul Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-city_brewing_company_llc-lager_beer,0,0,244483227649,"{""name"":""Lager Beer"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
-reaperale-mortality_stout,0,0,244993687552,"{""name"":""Mortality Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""reaperale"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-appalachian_brewing_company-dom_blonde_kolsch,0,0,244376141826,"{""name"":""Dom Blonde Kölsch"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The first in a series of two new specialty beers coming this year! This Kölsch-styled ale is clean, crisp, and delicately balanced. It has very subtle pear flavors and aromas. The subdued maltiness leads to a pleasantly refreshing finish. A fantastic summer brew!\r\n\r\nThe Kölner Dom (Cologne Cathedral), is one of the best-known architectural monuments in Germany and has been Cologne's most famous landmark since its completion in the late 19th century. True Kölsch can only be brewed if the brewery has a view of this famous cathedral, thus its’ appearance on our tap markers.""}",1,47,1
-marin_brewing-point_reyes_porter,0,0,244867203073,"{""name"":""Point Reyes Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-jt_whitney_s_brewpub_and_eatery-raspy_raspberry_weiss,0,0,244744519683,"{""name"":""Raspy Raspberry Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,25,1
-courage_brewery,0,0,244482899970,"{""name"":""Courage Brewery"",""city"":""Tadcaster"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01937)-832091"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tadcaster LS24 9SA""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.8846,""lon"":-1.2652}}",1,21,1
-brouwerij_bavik_de_brabandere-petrus_oud_bruin,0,0,244483358721,"{""name"":""Petrus Oud Bruin"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-grupo_modelo-corona_extra,0,0,244744585216,"{""name"":""Corona Extra"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-sturgeon_bay_brewing-last_stop_stout,0,0,245120630784,"{""name"":""Last Stop Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
-bierbrouwerij_de_koningshoeven-tilburg_s_dutch_brown_ale,0,0,244375879681,"{""name"":""Tilburg's Dutch Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,46,1
-jacob_leinenkugel_brewing_company-leinenkugel_s_berry_weiss,0,0,244745175040,"{""name"":""Leinenkugel's Berry Weiss"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
-f_x_matt_brewing-saranac_bock,0,0,244615217153,"{""name"":""Saranac Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Bock is not from the bottom of the barrel! It is a rich malty beer brewed with traditional German ingredients and aged for months to give it a smooth malty character. Look for a rich full-bodied beer."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,20,1
-rogue_ales-kells_irish_style_lager,0,0,245006663681,"{""name"":""Kells Irish Style Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1998 the McAleese Brothers, owners of Kells Irish Pubs in Portland, OR, Seattle, WA, and San Francisco, CA, wanted to make an American beer that would float Guinness. \r\n\r\nGerard and Patrick McAleese asked John Maier to create a beer with a green apple bite flavor profile. It took four batches to get it just right. John used acidulated malts imported from Europe to get the crisp, lemony/apple flavor the McAleese Brothers wanted. The bottle label reflects the McAleese family heritage, puctures the Kells Irish Pub logo, and a traditional Irish flutist. \r\n\r\nThe first Kells Irish Pub opened in Seattle in October 1983 in Post Alley, above the historic Pike Place Market. The restaurant will remind you of the Old Country with its warm, cozy atmosphere and traditional surroundings. Theres also a patio outside thats a great place to feel the breeze from the Puget Sound and the buzz from the Market. Kells has Seattles largest selection of Single Malt Scotch. \r\n\r\nThe Kells Irish Pub in Portland is a local landmark and has been named the #1 Irish Entertainment venue in America. Sit by the fire, belly up to the bar, check out the cigar room, and dont miss the St. Patricks Day Festival, the largest Irish Fest in Oregon. \r\n\r\nThe Pub in San Francisco is next to the historic North Beach neighborhood and reflects the Old World charm and hospitality the McAleese family brought with them from Ireland. \r\n\r\nKells Irish Lager has won world-wide acclaim by winning 8 medals from the World Beer Championship and a Gold Medal at the Australian International Beer Awards. \r\n\r\nKells Irish Lager is brewed with 7 ingredients: Great Western Pale, Crystal, Wheat and Acidulated Malts; Sterling Hops; Free Range COastal Water and Czech Pilsner Yeast."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-clner_hofbrau_frh-kolsch,0,0,244483227650,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clner_hofbrau_frh"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-richbrau_brewing_company-old_nick_pale_ale,0,0,244993687553,"{""name"":""Old Nick Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our pale ale is located toward the lighter side of the beer spectrum and we hope it will serve as a stepping stone into the more flavorful world of craft beer. Amber, caramel, fruity, hoppy and bitter."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
-arcadia_brewing,0,0,244376207360,"{""name"":""Arcadia Brewing"",""city"":""Battle Creek"",""state"":""Michigan"",""code"":""49017"",""country"":""United States"",""phone"":""1-269-963-9690"",""website"":""http://www.arcadiaales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""103 West Michigan Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.322,""lon"":-85.1851}}",1,47,1
-mckenzie_brew_house-light_lager,0,0,244867203074,"{""name"":""Light Lager"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
-karl_strauss_brewery_gardens_sorrento_mesa-downtown_after_dark,0,0,244744585216,"{""name"":""Downtown After Dark"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
-crescent_city_brewhouse-weiss_beer,0,0,244482899971,"{""name"":""Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
-brouwerij_de_landtsheer-malheur_10,0,0,244483424256,"{""name"":""Malheur 10"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-harpoon_brewery_boston-harpoon_winter_warmer,0,0,244744650752,"{""name"":""Harpoon Winter Warmer"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Winter Warmer was Harpoon’s first seasonal beer. It was designed to be enjoyed during the holiday season. \r\n\r\nWhen you bring a glass of this dark copper ale to your lips to take your first sip you will notice the aroma of cinnamon. There is no aromatic hop added that might overpower the distinct spice scent. The medium body of this beer is formed from caramel and pale malts. These create enough body to support the spices without making the beer excessively rich. Bittering hops are added to counter the sweetness of the malt and spice. The finish of the beer is a blend of cinnamon and nutmeg. The combination of these two spices results in a balanced, pumpkin-pie flavor. \r\n\r\nThe overall character is a smooth, medium bodied ale spiced with cinnamon and nutmeg"",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,26,1
-alaskan_brewing-alaskan_smoked_porter,0,0,244375027712,"{""name"":""Alaskan Smoked Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Smoked Beer. Known as \""rauchbier\"" in Germany, smoke-flavored beers were virtually unknown in the U.S. until Alaskan Smoked Porter was developed in 1988.\r\n\r\nThe dark, robust body and pronounced smoky flavor of this limited edition beer make it an adventuresome taste experience. Alaskan Smoked porter is produced in limited \""vintages\"" each year and unlike most beers, may be aged in the bottle much like fine wine.\r\n\r\nWater, five types of malt, 2 varieties of hops and yeast with no adjuncts, no preservatives and no pasteurization. Our glacier-fed water originates in the 1,500 square-mile Juneau Ice Field. Prior to brewing, selected malts are smoked in small batches under carefully controlled conditions in a commercial food smoker using local alder wood."",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
-tempo,0,0,245120630785,"{""name"":""Tempo"",""city"":"""",""state"":"""",""code"":"""",""country"":""Israel"",""phone"":"""",""website"":""http://www.tempo.co.il/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,53,1
-bison_brewing-red_oak_ale,0,0,244375879682,"{""name"":""Red Oak Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-jasper_ridge_brewery-red_earth_pale_ale,0,0,244745240576,"{""name"":""Red Earth Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-flossmoor_station_brewery-imperial_eclipse_stout,0,0,244615217154,"{""name"":""Imperial Eclipse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
-roost_brewery-esb,0,0,245006729216,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-cold_spring_brewing-hefe_weiss,0,0,244483227651,"{""name"":""Hefe Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cold_spring_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
-ridgeway_brewing-ivanhoe,0,0,244993687554,"{""name"":""Ivanhoe"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
-avery_brewing_company-dugana_ipa,0,0,244376207361,"{""name"":""DuganA IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Lupulin Rapture Incarnate! As fervent devotees of hops, we found ourselves on a quest to create a transcendental IPA capable of quenching our voracious lupulin desires. Our mantra became \""unity of bitterness, hop flavor and aroma.\"" Enlightened, duganA IPA was born: A brutally bitter, dank, piney and resinous ale designed for those seeking a divine hop experience."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,47,1
-midnight_sun_brewing_co-arctic_rhino_coffee_porter,0,0,244867268608,"{""name"":""Arctic Rhino Coffee Porter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by local artist & roaster Michael Allen's eccentricly-named blend of coffee beans, Midnight Sun's brewers designed a beer recipe and infusion process that perfectly captures the alluring aroma, satisfying flavor and curious legend of Allen's Arctic Rhino Coffee. \r\n\r\nArctic Rhino Coffee Porter combines two quintessential Pacific Northwest favorites: coffee and ale. The result is wonderfully romantic and robust--a duel-fueled porter that melds charismatic dark malt with freshly roasted coffee beans. The (un)rest is up to you."",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-lakefront_brewery-riverwest_stein_beer,0,0,244744585217,"{""name"":""Riverwest Stein Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Delicious"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-dick_s_brewing-barley_wine_ale,0,0,244615282688,"{""name"":""Barley Wine Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-brouwerij_duvel_moortgat,0,0,244483424257,"{""name"":""Brouwerij Duvel Moortgat"",""city"":""Breendonk"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""oday, the Duvel Moortgat group, founded in 1871, is an independent producer of authentic speciality beers and premium brands. Around the world, the group is considered to be the leading producer of blond, bottle conditioned, high fermentation beers, a dominant position owed largely to the success of its best-selling product Duvel. A niche player, Duvel Moortgat occupies a leading position in the strategic segments of speciality beers and premium brands like Duvel, Maredsous, Bel Pils and Vedett. The group markets Steendonk white beer in a joint venture with the Palm brewery. Duvel Moortgat has also entered the market of natural fruit juices with a 70% participation in the quality juice producer Freya. Today, the group's beers are exported to over 40 countries. Duvel Moortgat has also taken a firm foothold in Central Europe, thanks to a 50% participation in the Czech Bernard brewery, renowned for its premium Pilsners. The group has launched itself into the market of artisan premium beers through the acquisition of the American Ommegang brewery. Duvel Moortgat has also been listed on the Brussels Euronext stock exchange since 1999."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2206,""lon"":4.3997}}",1,23,1
-hida_takayama_brewing_agricultural_company,0,0,244744650753,"{""name"":""Hida Takayama Brewing Agricultural Company"",""city"":""Takayama"",""state"":""Chubu"",""code"":"""",""country"":""Japan"",""phone"":""81-0577-35-0365"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""999 Matsumoto-cho""]}",1,26,1
-allagash_brewing-double_ale,0,0,244375093248,"{""name"":""Double Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-titletown_brewing-toasted_oats_molasses_brown_ale,0,0,245120630786,"{""name"":""Toasted Oats & Molasses Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
-boston_beer_company-samuel_adams_coastal_wheat,0,0,244375945216,"{""name"":""Samuel Adams Coastal Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""For our take on the classic hefeweizen style our search for unique ingredients led us to the Eureka and Lisbon varieties of lemon grown in three different regions of California. These particular lemons added the perfect balance of citrus tartness and sweetness to accent the taste of the beer. The spiciness of the Hallertau Mittelfruh and Spalt Spalter hops balance out the slightly sweet character of our brewery’s own signature wheat malt, resulting in a crisp and refreshing wheat beer with a subtle lemon aroma and flavor."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
-jobber_s_canyon_restaurant_brewery-porter,0,0,244745240577,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jobber_s_canyon_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,27,1
-fuller_smith_turner_pbc-1845_celebration_ale,0,0,244615217155,"{""name"":""1845 Celebration Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-russian_river_brewing-pliny_the_elder,0,0,245006729217,"{""name"":""Pliny the Elder"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true leader in the hop-wars of the west coast, Pliny the Elder hits you over the head with hoppy bitterness and manages to smooth the rough edges out enough to become an enjoyable brew."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,63,1
-crane_river_brewpub_and_cafe-carhenge_wheat,0,0,244483293184,"{""name"":""Carhenge Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-rio_salado_brewing,0,0,244993687555,"{""name"":""Rio Salado Brewing"",""city"":""Tempe"",""state"":""Arizona"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.4148,""lon"":-111.909}}",1,32,1
-bavarian_barbarian_brewing_company-2x4_india_pale_ale,0,0,244376207362,"{""name"":""2x4 India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""2x4 India Pale Ale (7% ABV, 65 IBUs) sports Columbus, Nugget and Amarillo hops for a spicy, citrusy blend in both flavor and aroma. Backed by golden pale malts and a kick from flaked rye, the hops are pleasantly robust with just the right touch of bitterness at the end."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,47,1
-miller_brewing-milwaukees_best,0,0,244867268609,"{""name"":""Milwaukees Best"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,24,1
-marin_brewing-triple_dipsea_belgian,0,0,244867530752,"{""name"":""Triple Dipsea Belgian"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-dick_s_brewing-ipa,0,0,244615348224,"{""name"":""IPA"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,21,1
-brouwerij_st_bernardus-grotten_flemish_ale,0,0,244483489792,"{""name"":""Grotten Flemish Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,23,1
-highland_brewing_company-black_mountain_bitter,0,0,244744716288,"{""name"":""Black Mountain Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A style of Pale Ale, Black Mountain Bitter will be lightly hopped with traditional British hop varieties to balance the malt sweetness yet encourage it to tend toward the dry side. We recently received our organic certification from Clemson University after undergoing a rigid inspection and two-month compliance process. Although this represents a big step for Highland, the idea of an all organic product is consistent with our corporate ethos and embrace of natural traditional brewing methods."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,26,1
-amherst_brewing_company-two_sisters_imperial_stout,0,0,244375158784,"{""name"":""Two Sisters Imperial Stout"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, rich, hearty, smooth and chocolaty. The two siloettes on the logo are Marina and Kshusha adopted from Russia by Amherst Brewing Company's owners, John and Terrie."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
-traquair_house_brewery-jacobite_ale,0,0,245120630787,"{""name"":""Jacobite Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traquair_house_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-boston_beer_company-samuel_adams_octoberfest,0,0,244375945217,"{""name"":""Samuel Adams OctoberFest"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The first thing you notice when pouring a glass of this seasonal beer is the color. Samuel Adams® Octoberfest has a rich, deep golden amber hue which itself is reflective of the season. Samuel Adams® Octoberfest is a malt lover's dream, masterfully blending together five roasts of barley to create a delicious harmony of sweet flavors including caramel and toffee. The beer is kept from being overly sweet by the elegant bitterness imparted by the German Noble hops. Samuel Adams® Octoberfest provides a wonderful transition from the lighter beers of summer to the winter's heartier brews."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,46,1
-kross_brewing-brueghel_blonde,0,0,244745240578,"{""name"":""Brueghel Blonde"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kross_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,27,1
-goose_island_beer_company_clybourn-barleywine,0,0,244615282688,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-smuttynose_brewing_co-old_brown_dog_ale,0,0,245123973120,"{""name"":""Old Brown Dog Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Brown Dog has been cited as a classic example of the “American Brown Ale” style of beer. Compared to a typical English Brown Ale, Old Brown Dog is fuller-bodied and more strongly hopped.\r\n\r\nOld Brown Dog has been around for many years. It was first brewed in 1988 at the Northampton Brewery. In 1989 it won a silver medal in its category (American Brown Ale) at the Great American Beer Festival in Denver."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
-amicas_pizza_microbrews_and_more-loyal_duke_scotch_ale,0,0,244376272896,"{""name"":""Loyal Duke Scotch Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amicas_pizza_microbrews_and_more"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,48,1
-de_proef_brouwerij-flemish_primitive_wild_ale_demon_fish,0,0,244615741440,"{""name"":""Flemish Primitive Wild Ale (Demon Fish)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-salopian_brewery-entire_butt_english_porter,0,0,244993753088,"{""name"":""Entire Butt English Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salopian_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,32,1
-beermann_s_beerwerks_brewpub,0,0,244376207363,"{""name"":""Beermann's Beerwerks BrewPub"",""city"":""Lincoln"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8916,""lon"":-121.293}}",1,47,1
-milwaukee_ale_house-session_ale,0,0,244867268610,"{""name"":""Session Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,24,1
-marzoni_s_brick_oven_brewing_co-highway_22_wheat,0,0,244867596288,"{""name"":""Highway 22 Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Light-Bodied, Pleasantly Tart, American-Style Wheat"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,25,1
-el_ahram_company-stella,0,0,244615348225,"{""name"":""stella"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""el_ahram_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Stella is the most famous brand of beer in Egypt. It has been manufactured in Egypt since the 19th century and so many Egyptian, and actually many experienced travelers, prefer it to any other kind of beer. One will not find a single bar in Egypt that doesn’t sell Stella or even have the Stella logo on the bar or shop. Stella can even be found in many bars in Europe""}",1,21,1
-cambridge_brewing-wheaten_ale,0,0,244483489793,"{""name"":""Wheaten Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
-iron_hill_brewery_newark-pig_iron_porter,0,0,244744781824,"{""name"":""Pig Iron Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_newark"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-appleton_brewing-adler_brau_fox_classic_river_ale,0,0,244375158785,"{""name"":""Adler Bräu Fox Classic River Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-victory_brewing-sunrise_weissbier,0,0,245751480320,"{""name"":""Sunrise Weissbier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""As invigorating as the morning rays of the summer sun, Sunrise Weissbier satisfies when the heat is on, too. This unfiltered, Bavarian style ale is true to its origins with all ingredients except for the water having been imported from Germany. It remains unfiltered to feature the tangy, fruity flavors of its unique yeast. The imported German malt contributes greatly to add a crisp, citric snap that makes this beer a superb summertime refresher."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
-boston_beer_works-fenway_american_pale_ale,0,0,244376010752,"{""name"":""Fenway American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-kulmbacher_brauerei_ag-reichelbrau_eisbock,0,0,244745240579,"{""name"":""Reichelbräu Eisbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
-govnor_s_public_house-shamrock_stout,0,0,244741963776,"{""name"":""Shamrock Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
-spaten_franziskaner_brau-franziskaner_hefe_weissbier_hell_franziskaner_club_weiss,0,0,245124038656,"{""name"":""Franziskaner Hefe-Weissbier Hell / Franziskaner Club-Weiss"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,63,1
-appalachian_brewing_company-celtic_knot_irish_red,0,0,244376338432,"{""name"":""Celtic Knot Irish Red"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This wonderful red ale has a perfect balance of hops and malt. The clean finish will leave your palate begging for more."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-deschutes_brewery-inversion_ipa,0,0,244615806976,"{""name"":""Inversion IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""After several months of experimentation, energy and obsession, Deschutes Brewery’s brewers have triumphed once again. Inversion I.P.A.'s trio of American hops delivers an over-the-top nose with hints of orange and grapefruit. Inversion is then dry-hopped for seven days resulting in an added hoppy kick. To balance the hop character, Deschutes’ brewers used crystal and caraston malts that weave throughout the beer providing soft, complex caramel flavors. \r\n\r\nJust like clear days up on the mountain, Inversion I.P.A. will deliver a path to higher ground. Inversion I.P.A. is a phenomenal NW-style I.P.A., beckoning all beer drinkers and enticing I.P.A. lovers to invert their world and find clarity above the routine of the everyday."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,22,1
-sandlot_brewery_at_coors_field-barleywine,0,0,244993818624,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sandlot_brewery_at_coors_field"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-black_toad_brewing_company,0,0,244376207364,"{""name"":""Black Toad Brewing Company"",""city"":""Chicago"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chicago IL 60612""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8817,""lon"":-87.6926}}",1,47,1
-mogollon_brewing_company,0,0,244867334144,"{""name"":""Mogollon Brewing Company"",""city"":""Flagstaff"",""state"":""Arizona"",""code"":""86001"",""country"":""United States"",""phone"":"""",""website"":""http://www.mogbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mogollon Brewing Company, LLC, and High Spirits Distillery is a small, 20 bbl micro brewery and distillery. Our beers and spirits are hand crafted from the finest ingredients available and we use pure mountain water. The artwork found on our labels is the embodiment of, and is inspired by, Northern Arizona wildlife. Mogollon Brewing takes its name from the Mogollon Plateau which sits at 7000 feet above sea level. We are now located at 4366 Huntington Drive in Flagstaff, AZ. This is a brand new 4500 square foot building designed and built specifically for brewing beer and distilling spirits."",""address"":[""4366 Huntington Dr""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.2156,""lon"":-111.59}}",1,24,1
-mckenzie_brew_house-abbey_8,0,0,244867596289,"{""name"":""Abbey 8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-elk_creek_cafe_and_aleworks-brookie_brown_ale,0,0,244615348226,"{""name"":""Brookie Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Proof that all dark beers, like trout, are not created equal. Chocolate and caramel malt flavors are at the heart of this very accessible and drinkable brown ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,21,1
-catamount_brewing,0,0,244483489794,"{""name"":""Catamount Brewing"",""city"":""White River Junction"",""state"":""Vermont"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.649,""lon"":-72.3193}}",1,23,1
-iron_springs_pub_brewery-casey_jones_imperial_ipa,0,0,244744781825,"{""name"":""Casey Jones Imperial IPA"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,26,1
-atlanta_brewing_company,0,0,244375158786,"{""name"":""Atlanta Brewing Company"",""city"":""Atlanta"",""state"":""Georgia"",""code"":""30318"",""country"":""United States"",""phone"":""404-355-5558"",""website"":""http://www.atlantabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2323 Defoor Hills Rd NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.818,""lon"":-84.4353}}",1,44,1
-water_street_lake_country,0,0,245751480321,"{""name"":""Water Street Lake Country"",""city"":""Delafield"",""state"":""Wisconsin"",""code"":""53018"",""country"":""United States"",""phone"":""1-262-646-7878"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3191 Golf Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0525,""lon"":-88.3663}}",1,53,1
-brasserie_de_blaugies-moneuse_speciale_noel,0,0,244376010753,"{""name"":""Moneuse Speciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_blaugies"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-la_jolla_brew_house-wheat,0,0,244745306112,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
-granville_island_brewing_company-hefeweizen,0,0,244742029312,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
-st_francis_abbey_brewery-smithwick_s,0,0,245124038657,"{""name"":""Smithwick's"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_francis_abbey_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,63,1
-arcadia_brewing-arcadia_esb,0,0,244376338433,"{""name"":""Arcadia ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-diamond_bear_brewing_co-southern_blonde,0,0,244615872512,"{""name"":""Southern Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_bear_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-schlossbru-weizen,0,0,244993818625,"{""name"":""Weizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
-brasserie_brouwerij_cantillon-vigneronne,0,0,244376207365,"{""name"":""Vigneronne"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":""The name Vigneronne Cantillon was given in 1987. This name reminds us that, while it belongs to the beer patrimony, the spontaneous fermentation, the ageing in the barrels for several years and the addition of grapes make it a distant cousin of certain white wines.\r\n\r\nIn spite of its success, the Vigneronne represents less than 5% of the total production of the Cantillon brewery. In order to obtain grapes which are as mature as possible, we buy them at the end of the season. Every year, 1000 kilos of white italian grapes are delivered at the Cantillon brewery in the beginning of October."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,47,1
-moon_river_brewing_company-wild_wacky_wit,0,0,244867334145,"{""name"":""Wild Wacky Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Wit (white) beer is an old style Belgian wheat-ale, spiced with Curacao bitter orange peel and corriander. Light and exotic... A party in your mouth!"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,24,1
-michigan_brewing-celis_white,0,0,244867661824,"{""name"":""Celis White"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional Belgian Whitbierre is the multiple gold medal winning Pierre Celis original. White and cloudy in appearance, brewed with wheat and seasoned with orange peel and coriander. A refreshing unfiltered ale that is both sweet and tart."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,25,1
-f_x_matt_brewing-saranac_scotch_ale,0,0,244615413760,"{""name"":""Saranac Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Scotch Ale is a full-bodied, malty sweet ale. True to Scottish brewing tradition, this malty flavor and deep copper brown color are a result of Scottish two row malt and roasted barley."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,21,1
-cherryland_brewing-apple_bach,0,0,244483555328,"{""name"":""Apple Bach"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
-iron_springs_pub_brewery-chazz_cat_rye,0,0,244744847360,"{""name"":""Chazz Cat Rye"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-barfer_das_kleine_brauhaus,0,0,244375224320,"{""name"":""Barfer - das kleine Brauhaus"",""city"":""Ulm"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)731-/-6021110"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lautenberg 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3979,""lon"":9.9899}}",1,44,1
-wdi_bru_huus-ur_pils,0,0,245751480322,"{""name"":""Ur-Pils"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
-brasserie_grain_d_orge-belzebuth,0,0,244493123584,"{""name"":""Belzebuth"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_grain_d_orge"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer of top fermentation, Belzebuth represents the achievement of a more than one hundred year-old know-how, the one of the Brewery Grain d'Orge. Under its copper colour, it hides a strong character for the lovers of sensations. It owes its strength to the subtle mixture of pure malts, hops and yeasts especially selected by our Master-Brewer.\r\n\r\nAt one time this beer was 15%. After the name change it was lowered to 13%."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,46,1
-lancaster_brewing_co-rare_rooster_summer_rye_ale,0,0,244745306113,"{""name"":""Rare Rooster Summer Rye Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Extra Pale Ale with a subtle Rye flavor, this beer Pours a light orange-amber color with a thin light beige head. A refreshing summer beer.\r\n\r\nAvailable at the Brewery from April - September"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-green_bay_brewing-hinterland_weizen_bier,0,0,244742094848,"{""name"":""Hinterland Weizen Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
-stieglbrauerei_zu_salzburg_gmbh-stiegl_goldbrau,0,0,245124038658,"{""name"":""Stiegl Goldbräu"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""This wonderfully refreshing beer specialty from Stiegl, Austria’s largest privately owned brewery is brewed in strict adherence with the 1516 purity law of only using water, malt and hops. Stiegl-Goldbräu is an Austrian styled beer with its own distinctive Salzburg lager flavor. The 12o original gravity is unparalleled in its even taste and ability to refresh. It is mildly hopped is golden in color has a great head with a superb finish. Stiegl-Goldbräu is considered by many connoisseurs to be the world’s finest beer."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,63,1
-arthur_guinness_son-harp_lager,0,0,244376403968,"{""name"":""Harp Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-07-22 20:00:20"",""description"":""The best selling premium irish import lager in the world today. This rich, golden pilsner style lager, with a smooth, refreshing hoppy taste, is brewed the irish way, using only the finest barley and pure spring water from the Cooley Mountains of Dundalk, Ireland."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-diebels_privatbrauerei,0,0,244615872513,"{""name"":""Diebels Privatbrauerei"",""city"":""Issum"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2835-/-30-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brauerei-Diebels-Strae 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.5331,""lon"":6.4213}}",1,22,1
-sherlock_s_home-gold_crown_lager,0,0,244993818626,"{""name"":""Gold Crown Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-brasserie_de_silly-la_divine_tripel_amber,0,0,244376272896,"{""name"":""La Divine Tripel Amber"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-new_belgium_brewing-new_belgium_trippel_belgian_style_ale,0,0,244867334146,"{""name"":""New Belgium Trippel Belgian Style Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Trippel Belgian Style Ale (pronounced triple) opens with a bold blast of hops that slowly gives way to the fruity esters implied by our Belgian yeast strain. The Three Graces hand-painted on the label are Zeus’s daughters Aglaia (splendor), Euphrosyne (mirth) and Thalia (good cheer). In the Belgian tradition of brewing singles, doubles and triples, Trippel is the strongest with the longest fermentation. Remarkably smooth and complex, our bottle-conditioned Trippel is spiced with a trace of coriander."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,24,1
-mudshark_brewing-full_moon_belgian_white_ale,0,0,244867661825,"{""name"":""Full Moon Belgian White Ale"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgium Wheat Ale, Spiced With Orange Reel & Coriander, Strong & Smooth"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,25,1
-fish_brewing_company_fish_tail_brewpub-whistling_pig_hefeweizen,0,0,244615413761,"{""name"":""Whistling Pig Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-coast_range_brewing,0,0,244483555329,"{""name"":""Coast Range Brewing"",""city"":""Gilroy"",""state"":""California"",""code"":""95020"",""country"":""United States"",""phone"":""1-408-842-1000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7050 Monterey Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.0013,""lon"":-121.566}}",1,23,1
-klosterbrauerei_weltenburg-barock_dunkel,0,0,244744847361,"{""name"":""Barock-Dunkel"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-barley_john_s_brewpub-dark_knight,0,0,244375224321,"{""name"":""Dark Knight"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-widmer_brothers_brewing,0,0,245751545856,"{""name"":""Widmer Brothers Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97227"",""country"":""United States"",""phone"":""1-503-281-2437"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""929 North Russell Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5408,""lon"":-122.676}}",1,53,1
-brauerei_spezial-rauchbier_weissbier,0,0,244493123585,"{""name"":""Rauchbier Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-left_coast_brewing-pale,0,0,244745371648,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-hansa_bryggeri-fatol,0,0,244742094849,"{""name"":""Fatøl"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hansa_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-stone_brewing_co-ruination_ipa,0,0,245124038659,"{""name"":""Ruination IPA"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,63,1
-barley_island_brewing-whose_ear_red_ale,0,0,244376403969,"{""name"":""Whose Ear? Red Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-dix_barbecue_brewery-tropical_lager,0,0,244615872514,"{""name"":""Tropical Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
-sierra_nevada_brewing_co-celebration_ale,0,0,244993884160,"{""name"":""Celebration Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nThe long, cold nights of winter are a little brighter with Celebration® Ale. Wonderfully robust and rich, Celebration® Ale is dry-hopped for a lively, intense aroma. Brewed especially for the holidays, it is perfect for a festive gathering or for a quiet evening at home. \r\n\r\n"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,32,1
-amherst_brewing_company-massatucky_brown,0,0,244374306816,"{""name"":""Massatucky Brown"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light brown medium bodied ale. Smooth, malty and slightly roasted flavor."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
-brewery_at_martha_s_vineyard-extra_stout,0,0,244493647872,"{""name"":""Extra Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_at_martha_s_vineyard"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
-new_holland_brewing_company-sundog,0,0,244867399680,"{""name"":""Sundog"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sundog is an amber ale as deep as the copper glow of a Lake Michigan sunset. Its biscuit malt give Sundog a toasty character and a subtle malty sweetness. Sundog brings out the best in grilled foods, caramelized onions, nutty cheese, barbecue, or your favorite pizza."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
-new_belgium_brewing-frambozen,0,0,244867727360,"{""name"":""Frambozen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,25,1
-flyers_restraunt_and_brewery-afterburner_ipa,0,0,244615413762,"{""name"":""Afterburner IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover's delight! Our I.P.A. is loaded with Ahtanum, Tohmahawk, Palisade, East Kent, Goldings and finished with the ever popular Cascades, balanced with generous amounts of floor malted crisp Maris Otter barley."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,21,1
-coniston_brewing,0,0,244483555330,"{""name"":""Coniston Brewing"",""city"":""Coniston"",""state"":""Cumbria"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01539)-441133"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Coppermines Road""]}",1,23,1
-kona_brewing-lilikoi_wheat_ale,0,0,244744912896,"{""name"":""Lilikoi Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,26,1
-bbc_brewing_co_llc-american_pale_ale,0,0,244375224322,"{""name"":""American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-abita_brewing_company-fall_fest,0,0,244374765568,"{""name"":""Fall Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abita Fall Fest is an Octoberfest lager available September-November. It is brewed with German Hersbrucker hops and pale, crystal and chocolate malts.\r\n\r\nThe result is a full-bodied, malty beer with a strong hop character and a beautiful amber color.\r\n\r\nCelebrate the season with Abita Fall Fest and your favorite German food"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,43,1
-wye_valley_brewery,0,0,245751611392,"{""name"":""Wye Valley Brewery"",""city"":""Stoke Lacy"",""state"":""Hereford and Worcester"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01885)-490505"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stoke Lacy HR7 4HG""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.1496,""lon"":-2.5507}}",1,53,1
-breckenridge_bbq_of_omaha-avalanche_amber,0,0,244493189120,"{""name"":""Avalanche Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
-liberty_steakhouse_and_brewery-liberty_pale_ale,0,0,244745371649,"{""name"":""Liberty Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This copper-colored ale has an intense bitterness and a floral hop aroma. Hops added during aging contribute to its distinct dryness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-hereford_hops_steakhouse_and_brewpub_3-esb,0,0,244742094850,"{""name"":""ESB"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-stout_brothers_public_house,0,0,245124104192,"{""name"":""Stout Brothers Public House"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0389,""lon"":-87.9065}}",1,63,1
-barley_s_casino_brewing_company-sublimator_doppelbock,0,0,244376403970,"{""name"":""Sublimator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_casino_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,48,1
-dogfish_head_craft_brewery-festina_peche,0,0,244615938048,"{""name"":""Festina Pêche"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing neo-BerlinerWeisse fermented with honest-to-goodness peaches to (get this!) 4.5% abv! Because extreme beers don't have to be extremely boozy! Available in 4-pack and draft during the sweaty months.""}",1,22,1
-sierra_nevada_brewing_co-celebration_ale_1992,0,0,244993884161,"{""name"":""Celebration Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
-anderson_valley_brewing-barney_flats_oatmeal_stout,0,0,244374372352,"{""name"":""Barney Flats Oatmeal Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With its deep, dark brown-black color, thick, full-bodied, velvety-smooth mouth feel, mocha character, and, strong yet subtle hop bite, Barney Flats Oatmeal Stout is one of the thickest, richest, and most complex stouts on the market today. In 1990, it became our first gold medal winner, at the Great American Beer Festival. Barney Flats was judged so superior to the other stouts that no other medals were even awarded in its catagory. Try it and see why Stewart Kallen described it as, \""Slippery, creamy, dark, and sweet as a Pacific May morning,\"" in his book, The 50 Greatest Beers in the World\r\n\r\nBarney Flats Oatmeal Stout Most recently won the Silver Medal at the 2004 World Beer Cup® and the Bronze Medal at the 2004 GABF , as well as several other medals . Click the blue ribbon to see the entire list.\r\n\r\nAs with all of our products, Barney Flats Oatmeal Stout is never sterile filtered nor heat pasteurized, and should be stored in refrigeration. However, to fully enjoy its rich and complex flavor, it should be served between 40° and 45°F"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
-brewery_corsendonk,0,0,244493713408,"{""name"":""Brewery Corsendonk"",""city"":""Oud-Turnhout"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Steenweg op Mol 118""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.3144,""lon"":4.989}}",1,47,1
-new_holland_brewing_company-zoomer,0,0,244867399681,"{""name"":""Zoomer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing wheat ale, Zoomer is brewed to quench your summer thirst. American-grown wheat provides Zoomer's straw color and its soft, clean body. With subtle, yet flavorful hints of citrus fruit in its finish, Zoomer is the perfect companion to all things summer. Food pairings include artisan cheeses, fresh greens, fish and chicken."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
-new_river_brewing-pale_ale,0,0,244867727361,"{""name"":""Pale Ale"",""abv"":5.52,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-four_peaks_brewing-alt_ball_and_chain,0,0,244615479296,"{""name"":""Alt Ball and Chain"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer was brewed in honor of our brewer Melissa's wedding to fellow brewer Derek Osbourne of B.J.'s in Chandler. The Alt Ball and Chain is a German Altbier. These beers are generally full-bodied with sweet malt flavor. The crispness, dry finish, and moderate hop aroma make an alt a great beer for summertime enjoyment. Our Alt has been lagering in our cellar for two weeks and contains 5.2% abv."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,21,1
-coopers_brewery-coopers_original_pale_ale,0,0,244483620864,"{""name"":""Coopers Original Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Guaranteed to turn heads, this is the beer that inspired a new generation of ale drinkers. With its fruity character, and robust flavour, Coopers Pale Ale is perfect for every occasion. \r\n\r\nNaturally fermented in the 'Burton-on-Trent' style, a secondary fermentation creates the trademark sediment that gives 'Pale' its fine cloudy appearance. This cloudy residue can be stirred through the beer by tipping or rolling the bottle before drinking. \r\n\r\nPale Ale has no additives or preservatives."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,23,1
-liberty_steakhouse_and_brewery-miss_liberty_lager,0,0,244744912897,"{""name"":""Miss Liberty Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is an all-malt lager, brewed with a subtle blend of German hops. Cool fermentation, followed by extended aging, produces a delicate and mild flavor."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-belize_brewing-belikin_stout,0,0,244375289856,"{""name"":""Belikin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belize_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
-adnams_co-adnams_fisherman,0,0,244374831104,"{""name"":""Adnams Fisherman"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The Winter seasonal from Adnams, Fisherman is described as an old ale. If your local pub has the good sense to serve cask beer, look for Fisherman on draught from January through March.\r\n\r\nClean and refreshing yet dark and mysterious, Fisherman is a deep coppery red, conjuring roasted nuts and dark chocolate, with a lingering taste of liquorice and dried fruits."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-broad_ripple_brewing-red,0,0,244493189121,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
-long_trail_brewing_co-long_trail_hefeweizen,0,0,244868251648,"{""name"":""Long Trail Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Here is our \""Wheat Beer with Yeast\"", or Hefeweizen. Beers brewed with a high proportion of wheat yield a crisp and refreshing flavor profile, while the addition of our special yeast adds a blend of complex citrus and spice flavors."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
-hoepfner_privatbrauerei,0,0,244742160384,"{""name"":""Hoepfner Privatbrauerei"",""city"":""Karlsruhe"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)721-/-6183-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Haid-und-Neu-Strae 18""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.0125,""lon"":8.4264}}",1,20,1
-strangford_lough_brewing_company_ltd-st_patrick_s_ale,0,0,245124104193,"{""name"":""St Patrick's Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep copper coloured traditional Irish Ale with highly developed and complex flavours. St Patrick’s Ale/Dark is brewed with four malts and two hops, carefully married together to complement eachother producing a satisfying full flavour, ending with a Styrian late hop for a truly brilliant finish."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,63,1
-bayerische_staatsbrauerei_weihenstephan-hefe_weissbier,0,0,244376469504,"{""name"":""Hefe Weissbier"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
-dogfish_head_craft_brewery-red_white,0,0,244615938049,"{""name"":""Red & White"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, belgian-style Wit brewed with coriander and orange peel and fermented with Pinot Noir juice. After fermentation a fraction of the batch is aged in Oregon Pinot Noir barrels, and another fraction is aged on oak staves. The beer is blended together before packaging.\r\n\r\nThis has been one of our most popular Limited Edition beers at both our Rehoboth Beach, DE brewpub and at festivals. It successfully marries the refreshing citrusy qualities of a Belgian-style white beer with the robust complexity of a bold red wine."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,22,1
-skagit_river_brewing-dutch_girl_lager,0,0,244993949696,"{""name"":""Dutch Girl Lager"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-appalachian_brewing_company-peregrine_pilsner,0,0,244374372353,"{""name"":""Peregrine Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Czechoslovakian style Pilsner is golden in color and hopped with a bunch of genuine Czechoslovakian Saaz hops. These hops provide a special floral aroma and a delightfully hoppy finish.\r\nPeregrine Falcons were recently reintroduced to the Harrisburg area as well as other large cities in Pennsylvania. This Falcon is one of the fastest birds, reaching speeds in excess of 200 miles per hour. Its unique ability to rid urban areas of its nemesis, the pigeon, has cities throughout the region clamoring for the Peregrine as a permanent resident."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,42,1
-brewery_ommegang,0,0,244493713409,"{""name"":""Brewery Ommegang"",""city"":""Cooperstown"",""state"":""New York"",""code"":""13326"",""country"":""United States"",""phone"":""1-800-544-1809"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""656 County Highway 33""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6818,""lon"":-74.9255}}",1,47,1
-northwoods_brewpub_grill-bandit_brown,0,0,244867399682,"{""name"":""Bandit Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,24,1
-new_road_brewhouse-peckiomen_pils,0,0,244867792896,"{""name"":""Peckiomen Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_road_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-fratellos_restaurant_and_brewery-what_the_helles_bock,0,0,244615544832,"{""name"":""What the Helles Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
-copper_eagle_brewing-copper_wheat,0,0,244483620865,"{""name"":""Copper Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-long_trail_brewing_co-hibernator,0,0,244867858432,"{""name"":""Hibernator"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust and malty brew will take the bite from a cold winter night."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,26,1
-big_ridge_brewing,0,0,244375289857,"{""name"":""Big Ridge Brewing"",""city"":""Surrey"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-574-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""15133 Highway 10""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.1049,""lon"":-122.69}}",1,44,1
-alameda_brewhouse-irvington_porter,0,0,244374896640,"{""name"":""Irvington Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alameda_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-brouwerij_de_landtsheer,0,0,244493189122,"{""name"":""Brouwerij De Landtsheer"",""city"":""Buggenhout"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-33-39-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mandekenstraat 179""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0228,""lon"":4.1572}}",1,46,1
-meantime_brewing_company_limited,0,0,244868317184,"{""name"":""Meantime Brewing Company Limited"",""city"":""Greenwich"",""state"":""London"",""code"":""SE7 8RX"",""country"":""United Kingdom"",""phone"":""44-(020)-8293-1111"",""website"":""http://www.meantimebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2 Penhall Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4899,""lon"":0.038}}",1,27,1
-hofbru_kaltenhausen_salzachtal-edelweiss_hefetrub,0,0,244742160385,"{""name"":""Edelweiss Hefetrüb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbru_kaltenhausen_salzachtal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
-summit_brewing,0,0,245124104194,"{""name"":""Summit Brewing"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55102"",""country"":""United States"",""phone"":""1-651-265-7800"",""website"":""http://www.summitbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""910 Montreal Circle""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9139,""lon"":-93.1396}}",1,63,1
-bell_s_brewery_inc-amber_ale,0,0,244376469505,"{""name"":""Amber Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer is made from mostly pale malt with some Munich and caramel malts. This gives it a slightly sweet flavor that is balanced by a melange of American hops. The result is a deep copper color and rich flavor."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-drake_s_brewing,0,0,244616003584,"{""name"":""Drake's Brewing"",""city"":""San Leandro"",""state"":""California"",""code"":""94577"",""country"":""United States"",""phone"":""1-510-562-0866"",""website"":""http://drinkdrakes.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1933 Davis Street #177""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7176,""lon"":-122.182}}",1,22,1
-skagit_river_brewing,0,0,244994015232,"{""name"":""Skagit River Brewing"",""city"":""Mount Vernon"",""state"":""Washington"",""code"":""98273"",""country"":""United States"",""phone"":""1-360-336-2884"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""404 South Third Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.4192,""lon"":-122.335}}",1,32,1
-appleton_brewing-adler_brau_marquette_pilsner,0,0,244374437888,"{""name"":""Adler Bräu Marquette Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-bridgeport_brewing-bridgeport_india_pale_ale,0,0,244493778944,"{""name"":""Bridgeport India Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our award-winning IPA sparkles with effervescence, the result of natural-conditioning, a process where the beer is double-fermented in each bottle, keg or cask. Brewed with a blend of five hop varieties, BridgePort IPA presents a floral, citrusy aroma and full hop flavor, while downplaying the bitterness. The beer pours smooth in the glass, emitting its signature golden glow."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-orchard_street_brewery,0,0,244867465216,"{""name"":""Orchard Street Brewery"",""city"":""Bellingham"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.7596,""lon"":-122.488}}",1,24,1
-olde_peninsula_brewpub_and_restaurant,0,0,244867792897,"{""name"":""Olde Peninsula Brewpub and Restaurant"",""city"":""Kalamazoo"",""state"":""Michigan"",""code"":""49007"",""country"":""United States"",""phone"":""1-269-343-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 East Michigan Avenue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.2936,""lon"":-85.5778}}",1,25,1
-frstliche_brauerei_thurn_und_taxis_regensburg-schierlinger_roggen,0,0,244615544833,"{""name"":""Schierlinger Roggen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frstliche_brauerei_thurn_und_taxis_regensburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-duclaw-hellrazer,0,0,244616331264,"{""name"":""Hellrazer"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""From the first sip this American-style India Pale Ale gets in your face with an unruly hop bitterness, big floral flavors and aroma, and just enough malt character to keep you from giving in and acting up."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
-mad_river_brewing-steelhead_extra_stout,0,0,244867923968,"{""name"":""Steelhead Extra Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
-birra_moretti-birra_moretti_la_rossa,0,0,244375289858,"{""name"":""Birra Moretti La Rossa"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birra_moretti"",""updated"":""2010-07-22 20:00:20"",""description"":""Birra Moretti La Rossa is a double boch beer produced using high quality 100% malted barley, giving it a rich sweet taste and an intense fragrance of roasted malt. The amber color that characterizes the beer, comes from the kind of malt used in the recipe (malt is dried, roasted barley). Another key ingredient is hops, the variety used is particularly aromatic, giving a characteristic bitter aftertaste and a delicate fragrance to the beer. The Master Brewers advise a service temperature between 10° and 12° C."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,44,1
-allguer_brauhaus_ag_kempten-winterfestival,0,0,244374896641,"{""name"":""Winterfestival"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,43,1
-brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_blond_5,0,0,244493254656,"{""name"":""Achel Blond 5°"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,46,1
-middle_ages_brewing-dragonslayer,0,0,244868317185,"{""name"":""Dragonslayer"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the style of a Russian Imperial Stout. Strong, chocolatety and aggressively hopped with finest English hops."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,27,1
-hoffbrau_steaks_brewery_1-windmill_wheat_ale,0,0,244742160386,"{""name"":""Windmill Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
-the_narragansett_brewing_company,0,0,245124169728,"{""name"":""The Narragansett Brewing Company"",""city"":""Providence"",""state"":""Rhode Island"",""code"":""2903"",""country"":""United States"",""phone"":""401.437.8970"",""website"":""http://www.narragansettbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Famous New England Brand, went defunct in the 1980's but has been revived in 2005, with a tasty lager. Locally available in New England"",""address"":[""60 Ship Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.819,""lon"":-71.4097}}",1,63,1
-big_boss_brewing_company,0,0,244376469506,"{""name"":""Big Boss Brewing Company"",""city"":""Raleigh"",""state"":""North Carolina"",""code"":""27604"",""country"":""United States"",""phone"":""919-834-0045"",""website"":""http://www.bigbossbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1249-A Wicker Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.8104,""lon"":-78.6179}}",1,48,1
-east_end_brewing_company,0,0,244616003585,"{""name"":""East End Brewing Company"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15208"",""country"":""United States"",""phone"":""412-537-2337"",""website"":""http://www.eastendbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6923 Susquehanna St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4553,""lon"":-79.9043}}",1,22,1
-stoudt_s_brewery-abbey_triple,0,0,245111848960,"{""name"":""Abbey Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Triple is a strong, full-bodied Belgian abbey-style ale. The authentic Belgian yeast strain used in fermentation contributes to a rich array of spicy, phenolic, and fruit-like flavors and noticeable alcoholic warmth. This unfiltered ale has an irresistible pale orange-colored hazy glow."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,32,1
-augustiner_brau_munchen-edelstoff,0,0,244374437889,"{""name"":""Edelstoff"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-brouwerij_de_dolle_brouwers-dulle_teve_mad_bitch,0,0,244493778945,"{""name"":""Dulle Teve / Mad Bitch"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-oskar_blues_grill_and_brew-ten_fidy,0,0,244867465217,"{""name"":""Ten Fidy"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Ten FIDY Imperial Stout - Now (11-21-07) available in cans, our winter seasonal beer is immensely viscous and loaded with neck-deep flavors of chocolate, malt, coffee, cocoa and oats.\r\n\r\nIt's the beer equivalent of decadently rich milkshake made with malted-milk balls and Heaven’s best chocolate ice cream. Ten FIDY is about 10% ABV and is made with enormous amounts of two-row malts, chocolate malts, roasted barley, flaked oats and hops. Its huge-but-comforting flavors hide a whopping 98 IBUs that are deftly tucked underneath the beer’s mountains of malty goodness.\r\n\r\nTen FIDY is the ultimate Rocky Mountain winter warmer, and further proof of the creative muscle of our beloved brewing staff. Look for fourpacks of Ten FIDY in select beer stores in Colorado. Out of state? We hope to send a few cases to a few of our other states in early '08."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,24,1
-on_tap_bistro_brewery-golden_triangle_triple,0,0,244867792898,"{""name"":""Golden Triangle Triple"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-full_sail_brewing_1-session_premium_lager,0,0,244615544834,"{""name"":""Session Premium Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-elk_creek_cafe_and_aleworks,0,0,244616331265,"{""name"":""Elk Creek Cafe and Aleworks"",""city"":""Millheim"",""state"":""Pennsylvania"",""code"":""16854"",""country"":""United States"",""phone"":""(814) 349-8850"",""website"":""http://www.elkcreekcafe.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Head Brewer Tim Yarrington makes beers that people want to drink. With over 12 years brewing experience under his belt, founding the brewery operations at Long Valley Pub & Brewery in New Jersey and resurrecting Time Square Brewery in Manhatten, Brewer Tim brings a good sense of what beers people enjoy drinking to Elk Creek Aleworks. Winning Gold and Bronze medals for his Porter and Bitter at the prestigous Great American Beer Festival attests to the fact that his peers also think he makes great beer. Drawing inspiration primarily from traditional English ale brewing, Tim makes balanced beers, giving both malt and hops prominence in every pint. In addition to our rotating selection of seasonal brews, we offer six outstanding House Standards year 'round. Without doubt, there's a pint for you!"",""address"":[""100 West Main Street PO Box 432""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8911,""lon"":-77.477}}",1,23,1
-marquette_harbor_brewery_and_restaurant-canadian_blonde_ale,0,0,244867923969,"{""name"":""Canadian Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marquette_harbor_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-birrificia_le_baladin-noel,0,0,244375289859,"{""name"":""Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,44,1
-anheuser_busch-michelob_pale_ale,0,0,244374896642,"{""name"":""Michelob Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
-brouwerij_duysters,0,0,244493254657,"{""name"":""Brouwerij Duysters"",""city"":""Diest"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-013-77-10-07"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Michel Theysstraat 58A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9882,""lon"":5.0554}}",1,46,1
-middle_ages_brewing-im_paled_ale,0,0,244868382720,"{""name"":""Im Paled Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A complex and artistically balanced multi-layered IPA (India Pale Ale) with an intense finish of cascade hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,27,1
-abita_brewing_company-andygator,0,0,244373454848,"{""name"":""Andygator"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Andygator is a fearsome beast...much too big for any little bottle. Don't let his toothy grin, slightly sweet flavor and subtle fruit aroma fool you: this cold-blooded creature is a Helles Doppelbock that can sneak up on you. Sip, don't gulp and taste the wild of Abita Andygator"",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,40,1
-hoppin_frog_brewery-outta_kilter_wee_heavy_scotch_red_ale,0,0,244742225920,"{""name"":""Outta Kilter Wee-Heavy Scotch Red Ale"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich, malty flavors of caramelized and toasted grains dominate this strong Scotch ale. A hint of rye adds a crisp, Scotch-like, old-world beer character, reminiscent of a simpler life from centuries ago. “It is a wee bit heavy”"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,20,1
-thirsty_dog_brewing,0,0,245124169729,"{""name"":""Thirsty Dog Brewing"",""city"":""Akron"",""state"":""Ohio"",""code"":""44311"",""country"":""United States"",""phone"":""330-252-2739"",""website"":""http://www.thirstydog.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Here at the Thirsty Dog Brewing Company, full flavor, delicate balance, texture & aroma combine to make beer an infinitely complex experience, and one that can be thoroughly enjoyable. Each of our beers are meticulously hand crafted in small batches using the finest ingredients. High quality malted barley is the source of the beer's sweetness & body. Select American & European hops are used to balance the malt sweetness, and , at times, add special flavors & aromas to the beer. Our careful selection of ingredients, along with specially designed recipes & brewing processes, give Thirsty Dog beers their unique flavor profiles that can be hard to find in today's mass market. one size fits all society. Our microbrewed beers are far more diverse in range and character then the small spectrum of mass-marketed beers offered to the American public by the large national breweries. Enjoy the diversity, Unleash the flavor today., Welcome to Thirsty Dog Brewing Company, and welcome to great beer!"",""address"":[""529 Grant St. Suite B""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.0689,""lon"":-81.5172}}",1,63,1
-big_hole_brewing,0,0,244376469507,"{""name"":""Big Hole Brewing"",""city"":""Belgrade"",""state"":""Montana"",""code"":""59714"",""country"":""United States"",""phone"":""1-800-793-6656"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""401 East Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7736,""lon"":-111.172}}",1,48,1
-edelweissbrauerei_farny-hofgutsbier,0,0,244616134656,"{""name"":""Hofgutsbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-sudwerk_privatbrauerei_hbsch,0,0,245111848961,"{""name"":""Sudwerk Privatbrauerei Hbsch"",""city"":""Davis"",""state"":""California"",""code"":""95616"",""country"":""United States"",""phone"":""1-530-756-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2001 Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5472,""lon"":-121.726}}",1,32,1
-augustiner_brau_munchen-maximator,0,0,244374503424,"{""name"":""Maximator"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,42,1
-cape_ann_brewing,0,0,244493844480,"{""name"":""Cape Ann Brewing"",""city"":""Gloucester"",""state"":""Massachusetts"",""code"":""1930"",""country"":""United States"",""phone"":""1-866-233-7636"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""27 Commercial Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6102,""lon"":-70.6664}}",1,47,1
-oskar_blues_grill_and_brew,0,0,244867465218,"{""name"":""Oskar Blues Grill and Brew"",""city"":""Lyons"",""state"":""Colorado"",""code"":""80540"",""country"":""United States"",""phone"":""1-303-823-6685"",""website"":""http://www.oskarblues.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""303 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2246,""lon"":-105.268}}",1,24,1
-orkney_brewery-dark_island,0,0,244867858432,"{""name"":""Dark Island"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Island is an iconic beer: a standard-bearer for traditional Scottish ales. In cask, this beer has twice won CAMRA’s Champion Beer of Scotland.\r\nOn the nose, this dark beer offers bitter chocolate, figs, toffee and hints of fruit.\r\n\r\nOn the palate, this resolves into beautiful, silky-smooth, coffee-and-chocolate flavours, followed by figs, dates and dried fruits, with a very appealing, lingering aftertaste of fruits and hop bitterness."",""style"":""Scottish-Style Light Ale"",""category"":""British Ale""}",1,25,1
-goose_island_beer_company_clybourn-blonde_ale,0,0,244615610368,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-ettaler_klosterbetriebe_abteilung_brauerei_destillerie-kloster_edel_hell,0,0,244616396800,"{""name"":""Kloster Edel-Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ettaler_klosterbetriebe_abteilung_brauerei_destillerie"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-marzoni_s_brick_oven_brewing_co,0,0,244867923970,"{""name"":""Marzoni's Brick Oven & Brewing Co"",""city"":""Duncansville"",""state"":""Pennsylvania"",""code"":""16635"",""country"":""United States"",""phone"":""814-695-2931"",""website"":""http://www.marzonis.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Marzoni's beers are brewed on premise, utilizing the finest ingredients available. Beers brewed at Marzoni's are dispensed directly from our chilled serving tanks to the tap stations on the bar for the freshest beer around! On any given day, there are at least 8 beers on tap, not to mention house-brewed root beer. Brewery tours are available!"",""address"":[""165 Patchway Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.4234,""lon"":-78.4339}}",1,26,1
-blue_cat_brew_pub-big_bad_dog_old_english_ale,0,0,244375289860,"{""name"":""Big Bad Dog Old English Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,44,1
-appalachian_brewing_company-water_gap_wheat,0,0,244374896643,"{""name"":""Water Gap Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This light refreshing wheat beer is sure to delight. Our special yeast and blend of malted and unmalted wheat provide the haze in our unfiltered style ale. This beer is traditionally served with a lemon slice on the side. \r\nThere are many water gaps along the Appalachian Trail. These water gaps were established where large rivers cut through the Appalachian Mountain Range. The Susquehanna River creates one of the more visually appealing water gaps just north of Harrisburg in the area at the Dauphin Narrows."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,43,1
-brouwerij_het_anker-grand_cru_of_the_emperor,0,0,244493320192,"{""name"":""Grand Cru of the Emperor"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-midnight_sun_brewing_co-greed,0,0,244868382721,"{""name"":""Greed"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With a summer release in mind, GREED Belgian-style Single was created miserly—relatively speaking—with one type of malt and two varieties of hops. At 5% ABV and 30 IBUs, Greed is the lightest in our series of 2007 Deadly Sin Beers. However, the Belgian yeast used in fermentation and conditioning contributes an earthy, somewhat spicy flavor and a crisp finish. We invite you to be greedy before it’s gone. \r\n\r\nGREED...Less [for you] is More [for me]."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,27,1
-alaskan_brewing-alaskan_stout,0,0,244373520384,"{""name"":""Alaskan Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Oatmeal Stout. The origins of Oatmeal Stout go back hundreds of years when oats were added to Stouts to promote a healthier image than other beers available during that time period.\r\n\r\nThe unique blend of the oats and malts in Alaskan Stout produce a balanced, smooth beer with hints of coffee and caramel.\r\n\r\nAlaskan Stout is made from glacier-fed water and a generous belnd of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the from the more than 90 inches of rainfall Juneau receives each year."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,40,1
-inbev-jupiler,0,0,244742225921,"{""name"":""Jupiler"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""inbev"",""updated"":""2010-07-22 20:00:20"",""description"":""Jupiler is the most famous and most popular beer in Belgium. This delicious lager is brewed with the finest ingredients (malt, maize, water, hop, yeast), using undisputed craftsmanship, ensuring an outstanding beer quality. Jupiler offers refreshment on a wide variety of occasions, thanks to its digestibility and accessible taste. Jupiler (5,2 % ABV) is ideally served at a temperature of 3°C. The low-alcoholic variant Jupiler N.A. (0.5%) should be served at 1-2°C.\r\n\r\nJupiler has an outspoken image of masculinity, courage and adventure. Furthermore, Jupiler understands men like no other brand and shares their best moments. This combination of male bonding, self-confidence and self-relativation, speaks to all men and makes Jupiler an ally on their road through life.\r\n\r\nJupiler is the official sponsor of the highest Belgian football division, the Jupiler League, and also supports the Belgian national football team. Just like football, Jupiler is all about competence and ruggedness, effort and effort reward, team spirit and... festivity!"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,20,1
-three_floyds_brewing-behemoth_barley_wine,0,0,245124235264,"{""name"":""Behemoth Barley Wine"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,63,1
-big_time_brewing-scarlet_fire_ipa,0,0,244376535040,"{""name"":""Scarlet Fire IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-efes_moscow_brewery,0,0,244616134657,"{""name"":""Efes Moscow Brewery"",""city"":""Moskva"",""state"":""Moskva"",""code"":"""",""country"":""Russia"",""phone"":""7-(095)-797-98-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Podolskikh Kursantov, 15 B""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.7558,""lon"":37.6176}}",1,22,1
-t_bonz_gill_grill_and_brewery-cooper_river_red,0,0,245111914496,"{""name"":""Cooper River Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
-bierbrouwerij_de_koningshoeven-la_trappe_enkel_la_trappe_blond,0,0,244374503425,"{""name"":""La Trappe Enkel / La Trappe Blond"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,42,1
-21st_amendment_brewery_cafe,0,0,244373782528,"{""name"":""21st Amendment Brewery Cafe"",""city"":""San Francisco"",""state"":""California"",""code"":""94107"",""country"":""United States"",""phone"":""1-415-369-0900"",""website"":""http://www.21st-amendment.com/"",""type"":""brewery"",""updated"":""2010-10-24 13:54:07"",""description"":""The 21st Amendment Brewery offers a variety of award winning house made brews and American grilled cuisine in a comfortable loft like setting. Join us before and after Giants baseball games in our outdoor beer garden. A great location for functions and parties in our semi-private Brewers Loft. See you soon at the 21A!"",""address"":[""563 Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7825,""lon"":-122.393}}",1,41,1
-carlton_and_united_breweries,0,0,244493844481,"{""name"":""Carlton and United Breweries"",""city"":""Melbourne"",""state"":""Victoria"",""code"":"""",""country"":""Australia"",""phone"":""61-(03)-9342-5511"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""77 Southbank Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-37.8231,""lon"":144.967}}",1,47,1
-oy_sinebrychoff_ab-porter_iv,0,0,244867530752,"{""name"":""Porter IV"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oy_sinebrychoff_ab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
-pacific_rim_brewing-rat_city_ipa,0,0,244990803968,"{""name"":""Rat City IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
-gottberg_brew_pub-fire_in_the_hole,0,0,244615610369,"{""name"":""Fire in the Hole!"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-faultline_brewing_2,0,0,244616462336,"{""name"":""Faultline Brewing #2"",""city"":""Walnut Creek"",""state"":""California"",""code"":""94596"",""country"":""United States"",""phone"":""1-925-938-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.8855,""lon"":-122.033}}",1,23,1
-mendocino_brewing_hopland-frolic_shipwreck_1850_ale,0,0,244867989504,"{""name"":""Frolic Shipwreck 1850 Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,26,1
-boulder_beer_company-mojo_risin_double_ipa,0,0,244375355392,"{""name"":""Mojo Risin' Double IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,44,1
-arcobrau_grafliches_brauhaus-bavarian_dark_wheat_beer,0,0,244374962176,"{""name"":""Bavarian Dark Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcobrau_grafliches_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-brouwerij_rodenbach-grand_cru,0,0,244493385728,"{""name"":""Grand Cru"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_rodenbach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-midnight_sun_brewing_co-saturn_belgian_style_fresh_hop_ipa,0,0,244868382722,"{""name"":""Saturn - Belgian-style Fresh Hop IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""In tribute to its namesake god of agriculture, SATURN celebrates a bountiful Pacific Northwest hop harvest. Ample malt sets the stage for this end-of-season party. Fresh Cascade and Centennial hops from Yakima Valley mingle with Belgian yeasts to impart abundant spice and earthiness."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,27,1
-alpirsbacher_klosterbru-spezial,0,0,244373520385,"{""name"":""Spezial"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpirsbacher_klosterbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-iron_hill_brewery_wilmingon-iron_hill_belgian_tripel,0,0,244742225922,"{""name"":""Iron Hill Belgian Tripel"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional Belgian-style golden ale, complex aroma and flavor of plums, spice and bananas with a refreshing balanced bitterness.""}",1,20,1
-timmermans-timmermans_forest_fruit,0,0,245124235265,"{""name"":""Timmermans Forest Fruit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,63,1
-bj_s_restaurant_and_brewery-nit_wit,0,0,244376535041,"{""name"":""Nit Wit"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,48,1
-elysian_brewery_public_house-whoville_weizenbock,0,0,244616134658,"{""name"":""Whoville Weizenbock"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,22,1
-tailgate_beer,0,0,245111980032,"{""name"":""Tailgate Beer"",""city"":""San Diego"",""state"":""California"",""code"":""92155"",""country"":""United States"",""phone"":""619.466.2337"",""website"":""http://www.tailgatebeer.com/indexmain.php"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6648 Reservoir Ln""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7732,""lon"":-117.055}}",1,32,1
-bierbrouwerij_de_koningshoeven-la_trappe_tripel,0,0,244374503426,"{""name"":""La Trappe Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,42,1
-adnams_co-adnams_explorer,0,0,244373848064,"{""name"":""Adnams Explorer"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden bitter suffused with the aromas of a grapefruit grove. The massive citrus attack will burst on your palate allowing all the flavours of the imported New World hops to deliver their fruity bitterness."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,41,1
-cervecera_cuauhtmoc_moctezuma-carta_blanca,0,0,244493910016,"{""name"":""Carta Blanca"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-penn_brewery-penn_dark,0,0,244990476288,"{""name"":""Penn Dark"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Munich and various roasted malts give it a very malty, rich flavor with a hint of burnt flavor. 100% imported Hallertau hops, moderate bitterness and aroma.""}",1,24,1
-port_brewing_company-old_viscosity,0,0,244990869504,"{""name"":""Old Viscosity"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Not your Dad's Wimpy 30 Weight is how our original label used to describe this massive chewy and thick beer. Code named by our brewers-\""The Big Black Nasty,\"" this is monstrous dark ale is brewed to no particular style. Thick and sludgy like oil from the crankcase of a wheat threshing combine, Old Viscosity blurs the boundaries of Porter, Stout, Old Ale and Barleywines.\r\n\r\nA blended beer that mixes old and new brewing traditions into one finished beer, Old Viscosity starts out with 80% of the packaged beer produced from a stainless steel fermentation. It then joins another 20% Barrel Aged Old Viscosity (from a previous batch) that has been aging in bourbon barrels. The blend of the two beers yields an incredibly rich and luscious ale that reveals chocolate and cocoa notes melded to silky body of burnt wood, vanilla and ash.\r\n\r\nMalts- Two Row, Wheat, Domestic and English Crystal, Carafa III and Chocolate Malts\r\nHops- German Magnum \r\nYeast- White Labs California Ale and Proprietary Yeast Strains\r\n\r\nOriginal Gravity- 1.092\r\nTerminal Gravity- 1.014\r\n10.5 % ABV\r\n\r\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold."",""style"":""Old Ale"",""category"":""British Ale""}",1,25,1
-gottberg_brew_pub-irish_porter_discontinued,0,0,244615610370,"{""name"":""Irish Porter (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
-firehouse_brewery_restaurant-lemon_wheat,0,0,244616462337,"{""name"":""Lemon Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
-mercury_brewing_company-ipswich_porter,0,0,244867989505,"{""name"":""Ipswich Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named due to it's popularity with London railroad porters, it's known for its dark, rich, and roasty notes."",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-brasserie_d_achouffe-houblon,0,0,244375355393,"{""name"":""Houblon"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-ateck_pivovar,0,0,244374962177,"{""name"":""ateck Pivovar"",""city"":""atec"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-415-710-781"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ikovo nmst 81""]}",1,43,1
-brouwerij_st_bernardus-st_bernardus_tripel,0,0,244493385729,"{""name"":""St. Bernardus Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer, with high fermentation, has a pale amber colour and a flowery, fruity taste with a harmonious balance between sweet and sour (8% alcohol content). \r\nThis beer has a thick and vivid froth and strikes by its balanced taste with a delicate bitterness."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
-millrose_brewing,0,0,244868448256,"{""name"":""Millrose Brewing"",""city"":""South Barrington"",""state"":""Illinois"",""code"":""60010"",""country"":""United States"",""phone"":""1-847-382-7673"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""45 South Barrington Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.0855,""lon"":-88.1411}}",1,27,1
-anheuser_busch-shock_top,0,0,244373585920,"{""name"":""Shock Top"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Shock Top is an unfiltered Belgian-style wheat ale (also known as a “White” or “Wit” beer due to its appearance) that is naturally cloudy with a billowy white foam head, light golden hue and slight taste of orange citrus peel and coriander."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,40,1
-ithaca_beer_company,0,0,244742291456,"{""name"":""Ithaca Beer Company"",""city"":""Ithaca"",""state"":""New York"",""code"":""14850"",""country"":""United States"",""phone"":""1-607-273-0766"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 Elmira Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.4145,""lon"":-76.5315}}",1,20,1
-titletown_brewing-princess_of_darkness_porter,0,0,245124235266,"{""name"":""Princess of Darkness Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,63,1
-boston_beer_company-hard_core_crisp_apple_cider,0,0,244376535042,"{""name"":""Hard Core Crisp Apple Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-fifty_fifty_brewing_co-manifesto_pale_ale,0,0,244616200192,"{""name"":""Manifesto Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We at FiftyFifty believe that beer is good. Especially this beer. Manifesto is one of FiftyFifty's flagship beers. This beer is a delight for those who take pleasure in craft beers and are looking for something that they can enjoy a few pints of. Manifesto has a restrained malt backbone of flavor with mild biscuit and caramel notes, and the hop character is light to moderate with mild earthiness evolving to a slightly more moderate citrus/piney finish. This is a beer of principle."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-the_blind_bat_brewery_llc-old_walt_smoked_wit,0,0,245111980033,"{""name"":""Old Walt Smoked Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""A smoked wit, you say? \r\nYup. \r\n\r\nResearching smoked beers led me to a world of smoked wheat beers, particularly a smoked wheat beer popular in Poland about 100 years ago. (I'll list that one as one of the Blind Bat beers when I'm happy with the test batches and am ready to offer it to the public.) I didn't find anything about smoked wit beers, but decided to experiment a bit (a wit is a wheat beer). I like it, and hope you will too. \r\n\r\nPictured on the label is Long Island's old Walt Whitman, enjoying a smoke and a book in what is purported to be his favorite spot in his native West Hills. Long Island's springtime is awakening all around him."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
-bierbrouwerij_de_koningshoeven-quadrupel,0,0,244374503427,"{""name"":""Quadrupel"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-aksarben_brewing_bop-bourbon_imperial_stout,0,0,244373913600,"{""name"":""Bourbon Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-coopers_brewery-dark_ale,0,0,244493910017,"{""name"":""Dark Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark brew full of promise. Coopers Dark Ale is a journey in taste, starting fresh and creamy, and finishing with a lingering coffee flavour. \r\n\r\nConditioned and naturally brewed using the top fermentation method, Coopers 'Dark' is made using roasted and chocolate malts, giving it a rich dark colour and unique flavour. \r\n\r\nCoopers Dark Ale has no additives and no preservatives."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,47,1
-pete_s_brewing-pete_s_wicked_wanderlust_cream_ale,0,0,244990541824,"{""name"":""Pete's Wicked Wanderlust Cream Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pete’s winter seasonal Wanderlust Cream Ale, is a velvety smooth brew offering endless fascination. Pete’s Wicked Wanderlust Cream Ale is a light amber brew with a rhapsody of Cluster hops and select Munich and wheat malts. The rich, creamy taste invites you on a journey of wonderment and intrigue. Sit back. Enjoy the ride."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,24,1
-raccoon_lodge_and_brewpub_cascade_brewing-cascade_cuvee_du_jongleur,0,0,244990869505,"{""name"":""Cascade Cuvée Du Jongleur"",""abv"":8.41,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A careful blending of select barrels of Flanders Reds and soured Belgian Triples aged in oak for up to 18 months. Then blended with fresh 25° Plato Blond Quadruppel. Hand-bottled, corked and then aged allowing lactic fermentation.""}",1,25,1
-gottberg_brew_pub-model_a_tor_doppelbock,0,0,244615675904,"{""name"":""Model-A-Tor Doppelbock"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
-firestone_walker_brewing_company-double_barrel_ale,0,0,244616527872,"{""name"":""Double Barrel Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firestone_walker_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A British Pale Ale never tasted so fresh. We challenge our good friends across the pond to match this one. Can’t be done. We’ve honored the traditions of the great British Pale brewers of Burton-on-Trent using our patented Firestone Union oak barrels. You’re left with a mild blend of vanilla and toasted oak flavor touched with an elegant hint of English noble hops. DBA is the flagship of our company and wildly popular."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,23,1
-mickey_finn_s_brewery-porter,0,0,244867989506,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-brasserie_d_achouffe,0,0,244375355394,"{""name"":""Brasserie D'Achouffe"",""city"":""Houffalize-Achouffe"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-061-28-81-47"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue du Village 32""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.1507,""lon"":5.7442}}",1,44,1
-backcountry_brewery-old_smoky,0,0,244374962178,"{""name"":""Old Smoky"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backcountry_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
-brouwerij_st_feuillien-triple,0,0,244493385730,"{""name"":""Triple"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_feuillien"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-milwaukee_ale_house-rye_i_oughta,0,0,244868448257,"{""name"":""Rye I Oughta"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-avery_brewing_company-maharaja_the,0,0,244373585921,"{""name"":""Maharaja, The"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""From Website:\r\nMaharaja is derived from the sanskrit words mahat, - \""great\"" and rajan - \""king\"". Much like its namesake, this imperial IPA is regal, intense and mighty. With hops and malts as his servants, he rules both with a heavy hand. The Maharaja flaunts his authority over a deranged amount of hops: tangy, vibrant and pungent along with an insane amount of malted barley - fashioning a dark amber hue and exquisite malt essence.\r\n\r\nThis newest Avery Dictator completes the \""Dictator Series\"" joining the likes of The Kaiser & The Czar. Be aware that The Maharaja is a limited release only available for the summer. Welcome to his kingdom!\r\n\r\nAvailability:\r\n * 22 oz. bottles\r\n * 5.17 gallon keg\r\n * 15.5 gallon keg\r\n * Available March through August\r\n\r\nABV:\r\n * 10.5% (2008)\r\n * 9.78% (2007)"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,40,1
-jobber_s_canyon_restaurant_brewery,0,0,244742291457,"{""name"":""Jobber's Canyon Restaurant & Brewery"",""city"":""Omaha"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.254,""lon"":-95.9993}}",1,20,1
-trailhead_brewing_company-missouri_brown_dark_ale,0,0,245124235267,"{""name"":""Missouri Brown Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
-brauerei_aying_franz_inselkammer_kg-ur_weisse,0,0,244493975552,"{""name"":""Ur-Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
-flossmoor_station_brewery-roundhouse_raspberry_wheat_ale,0,0,244616200193,"{""name"":""Roundhouse Raspberry Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,22,1
-the_church_brew_works-blast_furnace_oatmeal_stout,0,0,245111980034,"{""name"":""Blast Furnace Oatmeal Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Stouts have typically been a staple beverage in the UK. There are many variations of stouts available. You can find dry stouts, milk stouts, Imperial stouts, American stouts, and even stouts made with oats.\r\n\r\nAt the Church Brew Works we have crafted delicious Toasted Oatmeal Stout. The oats were blended with the best barley malt we have – and we didn’t stop there. To give this beer a wonderful roasted flavor, we added unmalted, very darkly roasted barley. The roasted barley is mixed with a generous portion of chocolate colored malt giving the Blast Furnace Stout a beautiful ruby hue.\r\n\r\nWe used our finest hops unsparingly to create a delicately balanced bitterness with a rich roastiness and fresh hop aroma. The Fuggles and East Kent Goldings hops were added with heavy hands at two different times. This unbridled addition grants a full hop flavor to our heavenly drink.\r\n\r\nA typical oatmeal stout is a bit lower in alcohol than most other stouts as does the Blast Furnace Stout. Ours, though not typical, does have a welcome medium body. As you drink this beer, notice the rich, creamy brown head. Drink it slowly and savor the flavors. We don’t think you will be disappointed. Beer is not just for breakfast anymore."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,32,1
-big_bang_brewery_closed,0,0,244374568960,"{""name"":""Big Bang Brewery (Closed)"",""city"":""San Francisco"",""state"":""California"",""code"":""94107"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""650 Fifth Street #403""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7756,""lon"":-122.398}}",1,42,1
-alpine_beer_company-pure_hoppiness,0,0,244373979136,"{""name"":""Pure Hoppiness"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpine_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A West Coast Double IPA\r\nSo mega-hopped it will take you to hop heaven. We’ve used hops in the boil, more hops in the giant hopback, and added to that, an incredible amount of dry-hopping for that cutting-edge “hop bite.” Once you’ve tasted this unique beer, all others pale in comparison. 1.072 OG Classified IBU 8%ABV"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,41,1
-coors_brewing_golden_brewery,0,0,244493910018,"{""name"":""Coors Brewing - Golden Brewery"",""city"":""Golden"",""state"":""Colorado"",""code"":""80401"",""country"":""United States"",""phone"":""1-866-812-2337"",""website"":""http://www.coors.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1873, as the United States approached its centennial year, its people were busy building a new kind of nation. It was thirsty work. And that's where Coors Brewing Company came in. When we began in that same year, we were a small, family-owned brewery, located at the foot of the Rocky Mountains. We were busy creating the same kind of crisp, refreshing beer we're known for today. While hundreds of such family-owned breweries have come and gone in the years since, we believe the reasons for our success are simple. We've never compromised on quality in producing our award-winning brews and we've never lost sight of our rich Rocky Mountain heritage. Just as important, we've always believed in doing well by doing good. We treat our employees with respect, we support the local communities where we do business, and we strive to protect the environment. That's just how we do business."",""address"":[""311 Tenth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7599,""lon"":-105.219}}",1,47,1
-port_brewing_company-amigo_lager,0,0,244990541825,"{""name"":""Amigo Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Because everyone needs a friend. It seems only natural that with San Diego being one of the closest cities to the Mexican Border that you would find a beer like Amigo. Brewed in the San Diego Lager style, this all malt lager is a refreshing way to start or finish a drinking session. The product of a true lager fermentation, this beer is crisp and lighter in body than most ales of similar strength making it a friendly choice for any occasion.\r\n\r\nMalts- Pilsner and Two Row\r\nHops- German Magnum and Czech Saaz\r\nYeast- White Labs German Lager \r\n\r\nOriginal Gravity- 1.048\r\nTerminal Gravity- 1.010\r\n5.0% ABV\r\n\r\nDraft- Available in Southern California and Arizona"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
-raccoon_lodge_and_brewpub_cascade_brewing-cascade_sang_royal,0,0,244990869506,"{""name"":""Cascade Sang Royal"",""abv"":8.87,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Northwest style sour red is a bottled version of our popular Mouton Rouge. This blend of barrels, with up to 16 months of oak barrel lactic fermentation and oak barrel aging, features dark fruit, sour, oak and funk flavors that sweep over your taste buds like an incoming tide.""}",1,25,1
-great_divide_brewing-denver_pale_ale_dpa,0,0,244742356992,"{""name"":""Denver Pale Ale / DPA"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Historically Great Divide’s flagship beer, DPA’s record speaks for itself. By continually garnering national and international recognition, DPA has risen to become one of the most award-winning English-style pale ales in the world.\r\n\r\nSporting a brilliant copper hue and an assertive floral hop aroma, DPA is known for its smooth, malty middle, which is expertly complemented with hearty and complex hop flavor. DPA’s extraordinary hop finish is marked by crisp yet moderate hop bitterness. Its well-balanced profile makes DPA the perfect beer to accompany a hearty mountain picnic or a night on the town. For those who seek beers characterized by excitement, flavor and distinction, Denver Pale Ale is the natural choice."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
-flyers_restraunt_and_brewery-humbles_blond_ale,0,0,244616527873,"{""name"":""Humbles Blond Ale"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer in body and color, Humbles has proven to be our most popular offering."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,23,1
-middle_ages_brewing-syracuse_pale_ale,0,0,244868055040,"{""name"":""Syracuse Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Sparkling golden ale with a complexity of malt and hop flavor brewed in a similar style to a turn of the century Canadian ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-brasserie_de_silenrieux-joseph_spelt_ale,0,0,244375355395,"{""name"":""Joseph Spelt Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silenrieux"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-barley_john_s_brewpub-little_barley_bitter,0,0,244374962179,"{""name"":""Little Barley Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-brouwerij_van_steenberge,0,0,244493451264,"{""name"":""Brouwerij Van Steenberge"",""city"":""Ertvelde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-09-344-50-71"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lindenlaan 25""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1766,""lon"":3.7462}}",1,46,1
-mishawaka_brewing-lake_effect_pale_ale,0,0,244868448258,"{""name"":""Lake Effect Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-avery_brewing_company-salvation,0,0,244373585922,"{""name"":""Salvation"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
-kaiserdom_privatbrauerei_bamberg-kellerbier,0,0,244742291458,"{""name"":""Kellerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-unibroue-16,0,0,245124300800,"{""name"":""16"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
-brauhaus_am_waldschlosschen-waldschlosschen_dunkel,0,0,244494041088,"{""name"":""Waldschlösschen Dunkel"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_am_waldschlosschen"",""updated"":""2010-07-22 20:00:20"",""description"":""dark, bottom-fermented, more on the sweet side, made of 100% barley malt according to ther description, very good to meat"",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,48,1
-four_peaks_brewing,0,0,244616200194,"{""name"":""Four Peaks Brewing"",""city"":""Tempe"",""state"":""Arizona"",""code"":""85281"",""country"":""United States"",""phone"":""1-480-303-9967"",""website"":""http://www.fourpeaks.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1340 East Eighth Street #103""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.4194,""lon"":-111.916}}",1,22,1
-thirsty_dog_brewing-hoppus_maximus,0,0,245112045568,"{""name"":""Hoppus Maximus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The complex charactor of American hops and amber colored caramel malts make it crisp & refreshing."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
-black_toad_brewing_company-dark_ale,0,0,244374568961,"{""name"":""Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_toad_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
-anchor_brewing-wheat,0,0,244373979137,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
-copper_dragon_brewing-saison,0,0,244493975552,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_dragon_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-rail_house_restaurant_and_brewpub-scottish_ale,0,0,244990607360,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-raccoon_river_brewing-stonecutter_stout,0,0,244990869507,"{""name"":""Stonecutter Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
-great_lakes_brewing-barrel_select_pils,0,0,244742422528,"{""name"":""Barrel Select Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-golden_valley_brewery_and_pub-dundee_porter,0,0,244616527874,"{""name"":""Dundee Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
-midnight_sun_brewing_co-fahrwasser_fairway_pilsner,0,0,244868055041,"{""name"":""Fahrwasser Fairway Pilsner"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Reid is our onsite go-to beer guy who handles the bulk of our to-go beer sales. Reid is a full-time UAA student who manages to sell beer at MSBC, run a side welding business, keep the golf discs flying all year-round & create music with his band, Bushwood. He wrote and performed his song \""No 9 to 5\"", which resonates his idea of a fairway to heaven.\r\n\r\nFAHRWASSER means \""fair water\"" or \""fairway\"". This inspired pilsner breaks par with every sip.\r\n\r\nAvailability:\r\nAK - draft and 22-oz bottles (limited release begins 05/15/2009)"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,26,1
-brasserie_de_silly,0,0,244375355396,"{""name"":""Brasserie de Silly"",""city"":""Silly"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-068-55-16-95"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Ville Basse 141""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.6493,""lon"":3.9242}}",1,44,1
-bell_s_brewery_inc-consecrator_doppelbock_beer,0,0,244374962180,"{""name"":""Consecrator Doppelbock Beer"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional dopplebock fermented with a Bohemian lager yeast. Reddish brown in color, with a mild hop profile, Consecrator is a well balanced, full bodied beer with hints of caramel and molasses in its smooth, malty finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,43,1
-adnams_co-broadside_ale,0,0,244357988352,"{""name"":""Broadside Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich fruitcake aromas – almonds, zest and conserved fruit. A wonderful balance of malt and hop flavours. A beer to savour and rich in flavour."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,1,1
-budjovick_mansk_pivovar,0,0,244493451265,"{""name"":""Budjovick Mansk Pivovar"",""city"":""esk Budjovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-038-866-201"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lidick 51""]}",1,46,1
-molson_breweries_of_canada-red_jack,0,0,244868513792,"{""name"":""Red Jack"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,27,1
-barley_john_s_brewpub-stockyard_ipa,0,0,244373585923,"{""name"":""Stockyard IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
-laconner_brewing-pseudo_lambic_framboise,0,0,244742356992,"{""name"":""Pseudo Lambic Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,20,1
-unibroue,0,0,245124300801,"{""name"":""Unibroue"",""city"":""Chambly"",""state"":""Quebec"",""code"":"""",""country"":""Canada"",""phone"":""1-450-658-7658"",""website"":""http://www.unibroue.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""There is more to certain beers than simple refreshment. Unibroue has raised the standards of conventional beer in by brewing craftsman beers for savouring. Of incomparable quality and a taste, the beers at Unibroue are entirely natural, contain no chemical additives or preservatives, and are made with first quality ingredients. Rediscover beer with Unibroue. You will never taste beer the same way again!"",""address"":[""80 Des Carrires""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4416,""lon"":-73.2595}}",1,63,1
-brausttte_der_steirerbrau_aktiengesellschaft-gosser,0,0,244494041089,"{""name"":""Gösser"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brausttte_der_steirerbrau_aktiengesellschaft"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-fuller_smith_turner_pbc-india_pale_ale,0,0,244616265728,"{""name"":""India Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-thirsty_dog_brewing-spiced_pumpkin_ale,0,0,245112045569,"{""name"":""Spiced Pumpkin Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with summer's harvest of pumpkin, squash, honey, ginger, and love of great beers."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,32,1
-blucreek_brewing_company-altbier,0,0,244374634496,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blucreek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
-anheuser_busch-beach_bum_blonde_ale,0,0,244374044672,"{""name"":""Beach Bum Blonde Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Beach Bum Blonde Ale is a traditional American \r\nblonde ale with a slightly spicy hop note and balanced malty flavor."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,41,1
-dark_horse_brewing_co-crooked_tree_ipa,0,0,244493975553,"{""name"":""Crooked Tree IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by West Coast I.P.A.'s, but brewed with Michigan style. The Crooked Tree is heavily dry hopped to give it a big aroma of pine and citrus. The flavors are big, yet very balanced between fresh hops and malt. Often described as \""grapefruit\"" our hops give this beer an excellent fruit flavor that finishes dry, crisp, and clean. It will pour a nice deep copper color with a bit of haziness. Because of our almost patented \""Intense Transfer Methods\"" our Crooked Tree has won several medals in the India Pale Ale category."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-randy_s_fun_hunters_brewery_restaurant_and_banquet_center-amber_lager,0,0,244990607361,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
-real_ale_brewing_company-firemans_4,0,0,244990935040,"{""name"":""Firemans #4"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Smooth blend of malt, citrus and fruit"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,25,1
-great_waters_brewing_company-old_bastard,0,0,244742422529,"{""name"":""Old Bastard"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
-gordon_biersch_brewing,0,0,244616527875,"{""name"":""Gordon Biersch Brewing"",""city"":""San Jose"",""state"":""California"",""code"":""95112"",""country"":""United States"",""phone"":""1-408-278-1008"",""website"":""http://www.gordonbiersch.com/brewery"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""357 East Taylor Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.3526,""lon"":-121.893}}",1,23,1
-new_holland_brewing_company-blue_goat,0,0,244868055042,"{""name"":""Blue Goat"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Chestnut in color with a nutty malt profile from its signature Munich malt. A muted hop presence and smooth caramelized body culminate in a clean, dry finish. Excellent choice for hearty meals with dark flavors and sauces. Grilled meats, musty cheeses or pecan pie.""}",1,26,1
-brasserie_lefebvre,0,0,244492140544,"{""name"":""Brasserie Lefebvre"",""city"":""Quenast"",""state"":""Brabant Wallon"",""code"":"""",""country"":""Belgium"",""phone"":""32-067-67-07-66"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chemin du Croly 52""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.6746,""lon"":4.1509}}",1,44,1
-bierbrouwerij_st_christoffel,0,0,244375027712,"{""name"":""Bierbrouwerij St.Christoffel"",""city"":""Roermond"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-71.51.56.085"",""website"":""http://www.christoffelbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Beerbrewery St. Christoffel is a relatively young brewery, founded in 1986. Our brewery is situated in the former coalmining-town Roermond in Dutch Limburg and named after the patronsaint of Roermond: Saint Christoffel. The brewery started very small and was at first situated behind a house. In 1995 the brewery moved to her present facility. With moving there, the brewingcapacity greatly enhanced due to new brewing-, fermenting- and lagerfacilities. Christoffel brews according to the German Reinheitsgebot von 1516: which means the brewingprocess takes place in a completely natural way. Around the year 1990, Christoffel Blond was awarded 3 years in a row with the Dutch title: Best Beer from the Netherlands."",""address"":[""Metaalweg 10""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1684,""lon"":6.0515}}",1,43,1
-aktienbrauerei_kaufbeuren,0,0,244358053888,"{""name"":""Aktienbrauerei Kaufbeuren"",""city"":""Kaufbeuren"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8341-/-430430"",""website"":""http://www.aktien-brauerei.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hohe Buchleuthe 3""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8781,""lon"":10.6161}}",1,1,1
-caldera_brewing-dark_lager,0,0,244493451266,"{""name"":""Dark Lager"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A German-style Munich Duenkle. Dark and smooth. Release date: February 1."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-moose_s_tooth_pub_and_pizzeria-wild_country_raspberry_wheat,0,0,244868513793,"{""name"":""Wild Country Raspberry Wheat"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with wheat and barley malts and flavored with pureed raspberries, this pink-hued, slightly tart ale gives a clean sip."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
-bayerische_staatsbrauerei_weihenstephan-korbinian,0,0,244373651456,"{""name"":""Korbinian"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,40,1
-lewis_clark_brewing_company,0,0,244742356993,"{""name"":""Lewis & Clark Brewing Company"",""city"":""Helena"",""state"":""Montana"",""code"":""59601"",""country"":""United States"",""phone"":""(406) 442-5960"",""website"":""http://lewisandclarkbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""939 Getchell Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.5977,""lon"":-112.037}}",1,20,1
-union_barrel_works-round_boy_stout,0,0,245124300802,"{""name"":""Round Boy Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A nutritious st our that has a distinct, smooth and firm body. Specialty malts create a hint of nuttiness, coffee, chocolate, and roasted flavors."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
-breckenridge_brewery-hefe_proper_ale,0,0,244494106624,"{""name"":""Hefe Proper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-gilde_brauerei-lindener_spezial,0,0,244616265729,"{""name"":""Lindener Spezial"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gilde_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-thunderhead_brewery_2-grand_cru,0,0,245112111104,"{""name"":""Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-boston_beer_company-samuel_adams_boston_ale,0,0,244374634497,"{""name"":""Samuel Adams Boston Ale"",""abv"":4.94,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, refined version of a classic ale.\r\nSamuel Adams® Boston Ale was first brewed to celebrate the opening of our Boston Brewery. Like Samuel Adams Boston Lager®, it was an old family recipe that was rescued by Jim Koch from his father's attic. Samuel Adams® Boston Ale, a Stock Ale, has a complex, caramel malt character balanced with distinct spicy and herbal hop notes. Our proprietary ale yeast imparts a variety of fruit and ester notes in both the nose and flavor which are indicative of the style."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
-anheuser_busch-green_valley_wild_hop_lager,0,0,244374044673,"{""name"":""Green Valley Wild Hop Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
-de_proef_brouwerij-slaapmutske_triple_nightcap,0,0,244626620416,"{""name"":""Slaapmutske Triple Nightcap"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-redfish_new_orleans_brewhouse-angry_monk,0,0,244990607362,"{""name"":""Angry Monk"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redfish_new_orleans_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-richbrau_brewing_company-richbrau_abbey_style_ale,0,0,244990935041,"{""name"":""Richbrau Abbey-Style Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This recipe is meant to replicate a Belgian Abbey-style ale. Tart from the Belgian yeast but malty and sweet from the addition of rock candy sugar. Reddish brown in color."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,25,1
-hereford_hops_steakhouse_and_brewpub_3-hefeweizen,0,0,244742422530,"{""name"":""Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-granville_island_brewing_company-english_bay_pale_ale,0,0,244743208960,"{""name"":""English Bay Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-north_coast_brewing_company,0,0,244868120576,"{""name"":""North Coast Brewing Company"",""city"":""Fort Bragg"",""state"":""California"",""code"":""95437"",""country"":""United States"",""phone"":""1-707-964-2739"",""website"":""http://www.northcoastbrewing.com/home.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""455 North Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.4466,""lon"":-123.806}}",1,26,1
-brauerei_gss,0,0,244492140545,"{""name"":""Brauerei Gss"",""city"":""Leoben-Gss"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-38-42/20-90-58-"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brauhausgasse 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.3625,""lon"":15.0947}}",1,44,1
-big_buck_brewery-buck_naked,0,0,244375027713,"{""name"":""Buck Naked"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American-style \""light beer\"". Formulated to appeal to those who prefer a lighter tasting brew."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,43,1
-alvinne_picobrouwerij-podge_belgian_imperial_stout,0,0,244358053889,"{""name"":""Podge Belgian Imperial Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alvinne_picobrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
-canadian_brewery,0,0,244493516800,"{""name"":""Canadian Brewery"",""city"":""Saskatoon"",""state"":""Saskatchewan"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.1344,""lon"":-106.648}}",1,46,1
-pabst_brewing_company-st_ides,0,0,244868513794,"{""name"":""St Ides"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""St. Ides High Gravity Premium Malt Liquor is the brand of choice with the new generation of malt liquor drinkers. With its high quality, high strength flavor, St. Ides compliments the lifestyle of the fast paced, urban, edgy malt liquor drinker of today.""}",1,27,1
-big_time_brewing-old_rip_oatmeal_stout,0,0,244373651457,"{""name"":""Old Rip Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
-long_valley_pub_brewery-oatmeal_stout,0,0,244865171456,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
-victory_brewing-victory_lager,0,0,245752528896,"{""name"":""Victory Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Perfectly balanced, this authentic version of a German helles-style lager satisfies gloriously. Lean, German malts and fine European hops offer subtle harmony."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-brewmasters_restaurant_and_brewery_south-oatmeal_stout,0,0,244494106625,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-alaskan_brewing-alaskan_summer_ale,0,0,244357660672,"{""name"":""Alaskan Summer Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Based on the traditional style of Kölsch beer brewed in Cologne, Germany.\r\n\r\nAlaskan Summer Ale balances a softly malted palate with the clean freshness of Hallertauer hops. In the tradition of the style, neither overpowers the other. Both hops and malt come together to refresh and renew the palate. The straw-gold color and easy drinkability are an enjoyable way to celebrate summer.\r\n\r\nAlaskan Summer Ale is made from glacier-fed water and a generous blend of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall Juneau receives each year.""}",1,0,1
-gordon_biersch_brewing-gordon_biersch_schwarzbier,0,0,244616265730,"{""name"":""Gordon Biersch Schwarzbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,22,1
-tied_house_cafe_brewery_san_jose-amber_light,0,0,245112111105,"{""name"":""Amber Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
-brasserie_de_blaugies,0,0,244374634498,"{""name"":""Brasserie de Blaugies"",""city"":""Blaugies"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-065-65-03-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de la Frontire, 435""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.3693,""lon"":3.827}}",1,42,1
-appalachian_brewing_company-wildflower_honey_wheat,0,0,244374044674,"{""name"":""Wildflower Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This American wheat beer is infused with 20% wildflower honey resulting in a light, semi-sweet refreshing beverage. This beer represents the next evolution of Sophie’s Sparkling Ale as we have added the wheat base, essentially combining two of our most popular beers. This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
-delafield_brewhaus-oats_and_barley_stout,0,0,244626620417,"{""name"":""Oats and Barley Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
-rogue_ales-dead_guy_ale,0,0,244990607363,"{""name"":""Dead Guy Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Gratefully dedicated to the Rogue in each of us. In the early 1990s Dead Guy Ale was created as a private tap sticker to celebrate the Mayan Day of the Dead (November 1st, All Souls Day) for Casa U Betcha in Portland, Oregon. The Dead Guy design proved popular and was incorporated into a bottled product a few years later with Maierbock as the elixir. Strangely, the association with the Grateful Dead is pure coincidence.\r\n\r\nDead Guy is a German-style Maibock made with Rogues proprietary \""PacMan\"" ale yeast. It is deep honey in color with a malty aroma, rich hearty flavor and a well balanced finish. Dead Guy is created from Northwest Harrington, Klages, Maier Munich and Carastan malts, along with Perle and Saaz Hops. Dead Guy Ale is available in 22-ounce bottles, 12-ounce 6-pack, and on draft."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,24,1
-ridgeway_brewing-very_bad_elf_special_reserve_ale,0,0,244991000576,"{""name"":""Very Bad Elf Special Reserve Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-hoffbrau_steaks_brewery_1-yellow_rose_cream_ale,0,0,244742488064,"{""name"":""Yellow Rose Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-great_dane_pub_and_brewing_2-old_glory_american_pale_ale,0,0,244743274496,"{""name"":""Old Glory American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-o_gara_s_bar_grill-cork_brown_ale,0,0,244868120577,"{""name"":""Cork Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-brauerei_schtzengarten-st_galler_landbier,0,0,244492140546,"{""name"":""St. Galler Landbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schtzengarten"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-brauhaus_am_waldschlosschen,0,0,244491812864,"{""name"":""Brauhaus am Waldschlösschen"",""city"":""Dresden"",""state"":""Sachsen"",""code"":""1099"",""country"":""Germany"",""phone"":""+49 351 - 652 39 00"",""website"":""http://www.waldschloesschen.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""traditional brew house, founded 1836, make their beer and just sell it in house"",""address"":[""Am Brauhaus 8b""]}",1,43,1
-angelic_brewing-shakedown_nut_brown,0,0,244358053890,"{""name"":""Shakedown Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""angelic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
-capital_brewery-capital_dark_doppelbock,0,0,244493516801,"{""name"":""Capital Dark Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,46,1
-palm_breweries,0,0,244991590400,"{""name"":""Palm Breweries"",""city"":""Steenhuffel"",""state"":""Brabant"",""code"":""1840"",""country"":""Belgium"",""phone"":""+32 (0)52 31 74 11"",""website"":""http://www.palmbreweries.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brouwerij Palm is the brewery of the top-fermented beers from Brabant; in the rural settings of Steenhuffel between Antwerp and Brussels. The duchy of Brabant has a tradition of using all the best ingredients nature has to offer. The Brabant draught horse once was Belgium's most important export product. To emphasise how proud they are of their region of Brabant, Brouwerij Palm uses the Brabant draught horse as a logo for its top-fermented beer Special Palm."",""address"":[""Steenhuffeldorp 3""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9953,""lon"":4.2835}}",1,27,1
-birrificia_le_baladin,0,0,244373651458,"{""name"":""Birrificia Le Baladin"",""city"":""Piozzo"",""state"":"""",""code"":""0"",""country"":""Italy"",""phone"":""39-0173-795431"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Piazza V Luglio, 15""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.5153,""lon"":7.8922}}",1,40,1
-maritime_pacific_brewing-firkin_ipa,0,0,244865236992,"{""name"":""Firkin IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
-wachusetts_brewing_company-green_monsta_ale,0,0,245752594432,"{""name"":""Green Monsta Ale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wachusetts_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A BIG PALE ALE with an awsome balance of Belgian malts with Fuggles and East Kent Golding hops."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,63,1
-breznak,0,0,244494172160,"{""name"":""Breznak"",""city"":"""",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":"""",""website"":""http://drinksunion.qbizm.cz/de/pages/vyrobky_p_breznak.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,48,1
-allentown_brew_works-pumpkin_ale,0,0,244357726208,"{""name"":""Pumpkin Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Holiday beer is made with real pumpkins, cloves, ginger, all-spice, nutmeg and cinnamon. This light copper colored winter ale will tantalize your taste buds. Pumkin pie in a glass!"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,0,1
-grand_teton_brewing_2-old_faithful_ale,0,0,244742750208,"{""name"":""Old Faithful Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_teton_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""ur Old Faithful Ale is a Pale Golden Ale with a crisp body and light malt sweetness. We cold condition this ale to give it a pleasantly smooth character and dry palate. The Willamette and imported UK Goldings hops give this beer a light floral hop aroma, making it exceptionally easy to drink."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-traquair_house_brewery-bear_ale,0,0,245112111106,"{""name"":""Bear Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traquair_house_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-brasserie_de_l_abbaye_des_rocs-brune,0,0,244374700032,"{""name"":""Brune"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-appleton_brewing-adler_brau_tailgate_amber,0,0,244374110208,"{""name"":""Adler Bräu Tailgate Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
-dix_barbecue_brewery-game_day,0,0,244626685952,"{""name"":""Game Day"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-roy_pitz_brewing_company,0,0,244990672896,"{""name"":""Roy Pitz Brewing Company"",""city"":""Chambersburg"",""state"":""Pennsylvania"",""code"":""17201"",""country"":""United States"",""phone"":""717-496-8753"",""website"":""http://roypitz.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""140 North Third Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.939,""lon"":-77.6566}}",1,24,1
-rogue_ales-honey_cream_ale,0,0,244991000577,"{""name"":""Honey Cream Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Honey Cream Ale is fermented warm like traditional cream ales but features an added twist--wildflower honey from Oregon. Honey imparts a dry, refreshing character to the beer because it ferments almost completely. The honey comes from a beekeeper in Blodgett, a tiny town 20 miles east of Newport.\r\n\r\nRogues Honey Cream Ale is a light, smooth, medium bodied ale, with a creamy head, hints of honey and a crisp light finish. Brewed with two-row Harrington, Klages and Munich malts and Crystal hops. Discontined for distribution in late 2005, available on tap only at Rogue Ales Public Houses."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,25,1
-hoppin_frog_brewery-gulden_fraug_belgian_ale,0,0,244742488065,"{""name"":""Gulden Fraug Belgian Ale"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Smooth malt flavors of this golden Belgian-style abbey ale are complimented by traditional imported ingredients. A slightly spicy and complex flavor makes this European celebration-style beer unique and refreshing"",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,21,1
-great_dane_pub_and_brewing_2-old_scratch_barleywine_1997,0,0,244743340032,"{""name"":""Old Scratch Barleywine 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-orlio_organic-orlio_common_ale,0,0,244868186112,"{""name"":""Orlio Common Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlio_organic"",""updated"":""2010-07-22 20:00:20"",""description"":""A light to medium bodied deep golden ale that starts with an elegantly creamy malt complexity and ends with a firm but understated hop finish that balances the initial sweetness with a touch of bitterness.""}",1,26,1
-brauhaus_johann_albrecht_konstanz-herbstbeer,0,0,244492206080,"{""name"":""Herbstbeer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,44,1
-brewer_s_art-ozzy,0,0,244491812865,"{""name"":""Ozzy"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewer_s_art"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewer's Art's answer to the Belgian \""devil\"" beers (i.e. Lucifer, Duvel, etc.). Both rich and dry, this beer is all too easy to consume in large quantities. Hopped with Styrian Goldings."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,43,1
-arcadia_brewing-london_porter,0,0,244358053891,"{""name"":""London Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-carver_brewing_co-iron_horse_oatmeal_stout,0,0,244493516802,"{""name"":""Iron Horse Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""One of these beers is available all of the time. Our heartiest beers emphasize roasted malts and the generous use of hops. Creamy, smooth and always nitrogenated, these beers are nearly a meal or a dessert in themselves."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,46,1
-pennichuck_brewing_company-backdraft_chocolate_porter,0,0,244991655936,"{""name"":""BackDraft Chocolate Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,27,1
-blue_ridge_brewing-colonel_paris_pale_ale,0,0,244373716992,"{""name"":""Colonel Paris Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic American pale ale with a taste not unlike fresh citrus follwed by a crisp and spicy bitterness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-marshall_wharf_brewing_company,0,0,244865302528,"{""name"":""Marshall Wharf Brewing Company"",""city"":""Belfast"",""state"":""Maine"",""code"":""4915"",""country"":""United States"",""phone"":""207-338-1707"",""website"":""http://www.marshallwharf.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2 Pinchy Lane""]}",1,20,1
-weinkeller_brewery_berwyn,0,0,245752659968,"{""name"":""Weinkeller Brewery - Berwyn"",""city"":""Berwyn"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8506,""lon"":-87.7937}}",1,63,1
-bridgeport_brewing-black_strap_stout,0,0,244494172161,"{""name"":""Black Strap Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-anheuser_busch-bare_knuckle_stout,0,0,244357791744,"{""name"":""Bare Knuckle Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
-great_northern_tavern_and_brewery,0,0,244742815744,"{""name"":""Great Northern Tavern and Brewery"",""city"":""Keystone"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.6042,""lon"":-105.948}}",1,22,1
-triple_rock_brewery,0,0,245112176640,"{""name"":""Triple Rock Brewery"",""city"":""Berkeley"",""state"":""California"",""code"":""94704"",""country"":""United States"",""phone"":""1-510-843-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1920 Shattuck Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.8734,""lon"":-122.269}}",1,32,1
-brasserie_de_l_abbaye_val_dieu-brune_brown,0,0,244374700033,"{""name"":""Brune / Brown"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-atwater_block_brewing-kolsch,0,0,244374110209,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-dix_barbecue_brewery-ipa,0,0,244626685953,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-saint_arnold_brewing-elissa_ipa,0,0,244990672897,"{""name"":""Elissa IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional India Pale Ale, the Elissa IPA is very hoppy with a properly balanced malty body. Elissa has huge hop additions in the kettle that give it a wonderful bitterness and is then dry-hopped in the fermenter to create the pleasant floral, hoppy nose. Our reverse osmosis water makes the bitter very soft with no harsh notes to it. The maltiness is derived from British Maris Otter malt. Its rich flavor stands up to the hops that would otherwise dominate this beer. The Elissa is an authentic version of an India Pale Ale (IPA) style."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,24,1
-routh_street_brewery_and_grille-oktoberfest,0,0,244991000578,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,25,1
-hops_grillhouse_brewery_cherry_creek-thoroughbred_red,0,0,244742553600,"{""name"":""Thoroughbred Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
-grupo_modelo-modelo_especial,0,0,244743340033,"{""name"":""Modelo especial"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":""Handcrafted with all-natural ingredients, Modelo Especial has built a solid reputation as a classic, thirst-quenching beer. The brand represents the can-package of Grupo Modelo's portfolio and is also available in non-returnable bottles.\r\n\r\nModelo Especial is a must for those looking to capture the flavor of Mexico. Modelo Especial has 145 calories per 12 ounce serving."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,23,1
-otto_s_pub_and_brewery-spring_creek_lager,0,0,244868186113,"{""name"":""Spring Creek Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Vienna-style lager with a smooth malt palate and a dry finish. ABV 5.2%"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-brauhaus_sion,0,0,244492206081,"{""name"":""Brauhaus Sion"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)221-/-2578540"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unter Taschenmacher 5-7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9394,""lon"":6.9594}}",1,44,1
-brewery_creek_brewing-mahogany_ale,0,0,244491878400,"{""name"":""Mahogany Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
-anchor_brewing-our_special_ale_1995,0,0,244358381568,"{""name"":""Our Special Ale 1995"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-atlantic_brewing_company-bar_harbor_blueberry_ale,0,0,244358053892,"{""name"":""Bar Harbor Blueberry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atlantic_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It does have a nice hint of wheat and blueberries to it.""}",1,1,1
-cerveceria_bucanero,0,0,244493582336,"{""name"":""Cerveceria Bucanero"",""city"":""Holguin"",""state"":"""",""code"":"""",""country"":""Cuba"",""phone"":""53-(5324)-46-8226"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Circunvalacin Sur Km. 3 1/2""]}",1,46,1
-pivovar_nchod-primator_double_24_primator_double_bock_beer,0,0,244991655937,"{""name"":""Primátor Double 24% / Primátor Double Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_nchod"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
-brasserie_bnifontaine-castelain_blond_biere_de_garde,0,0,244373716993,"{""name"":""Castelain Blond Biere de Garde"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_bnifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-mcguire_s_irish_pub_and_brewery_pensacola,0,0,244865302529,"{""name"":""McGuire's Irish Pub and Brewery - Pensacola"",""city"":""Pensacola"",""state"":""Florida"",""code"":""32501"",""country"":""United States"",""phone"":""1-850-433-6789"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 East Gregory Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.4181,""lon"":-87.2024}}",1,20,1
-western_reserve_brewing,0,0,245752659969,"{""name"":""Western Reserve Brewing"",""city"":""Cleveland"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,63,1
-abbaye_notre_dame_du_st_remy-rochefort_8,0,0,244358184960,"{""name"":""Rochefort 8"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_notre_dame_du_st_remy"",""updated"":""2010-07-22 20:00:20"",""description"":""Yellowish-brown colour, with a more pronounced aroma, more fruits and a slight amount of Demi-Sec. This variety constitutes the largest proportion of production.""}",1,2,1
-brouwerij_boon-mariage_parfait_1995,0,0,244494237696,"{""name"":""Mariage Parfait 1995"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,48,1
-appalachian_brewing_company-pennypacker_porter,0,0,244357791745,"{""name"":""Pennypacker Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This full-bodied dry cousin of the stout has a slight roast flavor and is dark brown in color with a red hue. This is London’s classic beer style named for the baggage carriers that appreciated it so much.\r\nGovernor Pennypacker was one of Pennsylvania’s more notable politicians. He oversaw the construction and held the lavish ceremonies designating the opening of the Commonwealth’s beautiful Capitol Building"",""style"":""Porter"",""category"":""Irish Ale""}",1,0,1
-greenshields_brewery_and_pub-munich_summer_fest,0,0,244742881280,"{""name"":""Munich Summer Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,22,1
-troegs_brewing-scratch_21_2009_artisan_ale,0,0,245112176641,"{""name"":""Scratch #21 2009 - Artisan Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #21-2009 is an exercise in deconstruction and minimalism. This Belgian Ale has distinct roots in The Mad Elf minus some key components.\r\n \r\nThe cherries? Gone.\r\nThe honey? Gone.\r\nThe chocolate malt? Gone.\r\n\r\nWait, this sounds familiar. It almost sounds like a naked version of The Mad Elf.\r\n \r\nComing in just under 8% ABV, this unfiltered golden beauty shows off the pronounced yeast flavor that made The Mad Elf famous as well as a touch of alcohol and some mellow malt flavors."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,32,1
-brauhaus_brew_hall-scotch_ale,0,0,244491419648,"{""name"":""Scotch Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_brew_hall"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally brewed exclusively for beer shows, this award-winning ale has always been a Brau Brothers favorite! This is not your typical Scotch Ale. Combined with traditional malt\r\nsweetness is a distinct smoke flavor derived from authentic peat-smoked malt. This beer will change your opinion about Scottish ales due to its drinkability. Hop flavor and bitterness are minor, yet balance out this malty beer.\r\n\r\nBrau Scotch Ale is copper to amber in color with an off-white head of tightly laced bubbles. Wide-bowled glassware will allow the sweet and smoky aroma to escape. This ale can be served from 34- 50 degrees Fahrenheit. Lower temps will make it easier to drink while higher temps will enhance both malt and hop flavor. Portion control is important as this beer."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,42,1
-augustiner_brau_munchen-pils,0,0,244374110210,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-dostal_alley,0,0,244626685954,"{""name"":""Dostal Alley"",""city"":""Central City"",""state"":""Colorado"",""code"":""80427"",""country"":""United States"",""phone"":""1-303-582-1610"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Dostal Alley""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.8019,""lon"":-105.514}}",1,47,1
-samuel_smith_old_brewery_tadcaster-winter_welcome_1996_1997,0,0,244990672898,"{""name"":""Winter Welcome 1996-1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-rowland_s_calumet_brewery-calumet_wheat,0,0,244991066112,"{""name"":""Calumet Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-jurupa_valley_brewing-double_chocolate_stout,0,0,244742553601,"{""name"":""Double Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jurupa_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-harmon_brewing_company-puget_brown_porter,0,0,244743405568,"{""name"":""Puget Brown Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our brown porter is brewed with eight different malts to produce a smooth, well balanced, dark beer. A specially roasted barley provides a hint of chocolate. 5.6% ABV"",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
-pacific_beach_brewhouse-blonde,0,0,244868186114,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-breckenridge_brewery-471_ipa,0,0,244492206082,"{""name"":""471 IPA"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppy? Brother, 471 IPA redefines hoppy. 471 is a small batch, limited edition ale that was created by our Brewmaster to separate the weak from the strong. 471 is a double IPA, that combines Pale, Munich, Caramel-30, Carapils and Torrified Wheat malts, with Chinook, Centennial, Simcoe and Fuggles hops. It has a big sweet mouthfeel, followed by more hoppiness than you've ever had at one time. Enjoy."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,44,1
-broad_ripple_brewing-wheat_beer,0,0,244491878401,"{""name"":""Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
-anderson_valley_brewing-winter_solstice_seasonal_ale_2002,0,0,244358381569,"{""name"":""Winter Solstice Seasonal Ale 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-bar_harbor_brewing_company-thunder_hole_ale,0,0,244358119424,"{""name"":""Thunder Hole Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bar_harbor_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
-chelsea_brewing_company-blueberry_wheat,0,0,244493582337,"{""name"":""Blueberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,46,1
-pivovar_velk_popovice-kozel_premium,0,0,244991655938,"{""name"":""Kozel Premium"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_velk_popovice"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-brasserie_de_brunehaut-brasserie_de_brunehaut_bio_biere_blonde_organic,0,0,244373782528,"{""name"":""Brasserie De Brunehaut Bio Bière Blonde (Organic)"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic Belgian blonde ale from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\r\nThis organic blonde ale presents a nice yeasty nose, long-lasting head and a spicy, earthy note on the palate."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
-mckenzie_brew_house-irish_red_ale,0,0,244865368064,"{""name"":""Irish Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-weyerbacher_brewing_company-twelve,0,0,245752659970,"{""name"":""Twelve"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our 12th anniversary brew is a Rye Barleywine. Checking in at 10.2% abv, Twelve is being released in July and through the end of the year. Made from 50% Rye Malt and 50% Barley Malt, this strong ale is extremely viscous. The rye adds a tantalizing note of flavor on the palate with a hint of tartness you've come to expect from Rye. Slightly warm when its young, the beer will age very well, perhap 5 years or more. We're guessing that peak taste will be in the 1 to 2 year old range, with 3 and 4 not far behind. Be sure to lay some down in your collection."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,63,1
-abita_brewing_company-abita_golden,0,0,244358184961,"{""name"":""Abita Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:49:38"",""description"":""Abita Golden is a crisp, clean continental lager. Just four ingredients are all it takes."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-brouwerij_bosteels,0,0,244494237697,"{""name"":""Brouwerij Bosteels"",""city"":""Buggenhout"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-33-22-82"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kerkstraat 92""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0138,""lon"":4.2018}}",1,48,1
-appalachian_brewing_company-zoigl_star_lager,0,0,244357791746,"{""name"":""Zoigl Star Lager"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Zoigl is a golden, unfiltered lager beer which was originally brewed only in the region of Eastern Bavaria, between Franconia and the Czech Republic. For centuries, Zoigl was brewed in brewhouses owned by the town or an association of small brewers. \r\n\r\nThe Zoigl-Star, a six-angular star similar to the Star of David, was the sign of brewers in the middle ages. The star symbolizes the three elements (water, earth, and fire) and the three ingredients (water, malt, and hops) used for brewing. The importance of the yeast was not yet known in the 1400’s."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
-harmon_brewing_company-mt_takhoma_blonde_ale,0,0,244742946816,"{""name"":""Mt. Takhoma Blonde Ale"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""German Pilsner Malt and a touch of flaked wheat are used to produce this light bodied, straw colored ale. Horizon and Glacier hops provide the balance. This beer finishes crisp and dry. Try this with and orange slice. 3.8% ABV"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,22,1
-twin_rivers_brewing-imperial_stout,0,0,245112176642,"{""name"":""Imperial Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-brouwerij_bavik_de_brabandere,0,0,244491485184,"{""name"":""Brouwerij Bavik - De Brabandere"",""city"":""Bavikhove"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-56-71-13-79"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rijksweg 33""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8628,""lon"":3.2992}}",1,42,1
-beach_brewing-magic_brew,0,0,244374175744,"{""name"":""Magic Brew"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
-duneland_brewhouse_pub_and_restaurant,0,0,244626751488,"{""name"":""Duneland Brewhouse Pub and Restaurant"",""city"":""Michigan City"",""state"":""Indiana"",""code"":""46360"",""country"":""United States"",""phone"":""1-219-878-9180"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.7075,""lon"":-86.895}}",1,47,1
-sapporo_breweries_chuo-draft,0,0,244990738432,"{""name"":""Draft"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sapporo_breweries_chuo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
-rush_river_brewing-the_unforgiven_amber_ale,0,0,244991131648,"{""name"":""The Unforgiven Amber Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rush_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
-jw_lees_and_co_brewers_ltd-manchester_star_ale,0,0,244742553602,"{""name"":""Manchester Star Ale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
-hoppy_brewing_company-liquid_sunshine_blonde_ale,0,0,244743405569,"{""name"":""Liquid Sunshine Blonde Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""s a unique, all-natural style of beer that currently falls under the category of a Specialty Ale. In other words, there is no true category for this beer... Characterized by its distinctive Mount Hood hop aroma and beautiful blonde color, Liquid Sunshine™ is brewed at a low temperature to create a nice light dry finish. Using only the finest 2-row malted barley, wheat, rye, and great northwestern grown hops, this combination results in a clean, crisp, and uniquely refreshing beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\r\nThere’s nothing like it under the sun!!!"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,23,1
-pacific_rim_brewing-puget_porter,0,0,244991262720,"{""name"":""Puget Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
-breckenridge_brewery,0,0,244492271616,"{""name"":""Breckenridge Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80204"",""country"":""United States"",""phone"":""303-623-2739"",""website"":""http://www.breckbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""471 Kalamath Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7236,""lon"":-105.001}}",1,44,1
-brouwerij_van_steenberge-gulden_draak,0,0,244491943936,"{""name"":""Gulden Draak"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""Gulden Draak is a beer in a class of its own. It is a beer that is rich and glowing, so full of its very own characteristic flavour, that it reminds some who try it of chocolate and others of coffee. In 1998 Gulden Draak was crowned “best beer in the world” by the American Tasting Institute! This beer has won many other awards too. Gulden Draak is named for the golden statue at the top of the clock tower of the Belgian city of Gent. The statue was originally given to the city of Constantinople by the Norse King Sigrid Magnusson in 1111, during the crusades; hence the form of a Viking ship that the beast was given. During a later crusade, Boudewijn IX (Count of Flanders and Emperor of Constantinople) took it back to Flanders with him because it was so beautiful. In 1382, the cities of Brugge and Gent did battle for the statue. Gent won.""}",1,43,1
-appalachian_brewing_company-abbey_roade_belgian_ale,0,0,244358381570,"{""name"":""Abbey Roade Belgian Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abbey Roade is brewed in the tradition of the famous Belgian Abbey-style ales. This wonderful brew is soft and sweet up front. The complex and spicy middle palate is in most part due to the generous addition of dark Belgian candy sugar. This semi-dry ale has notes of ripe plum and pear with a peppery finish. \r\nThe origins of the Abbey-style ale date back to the Middle Ages. Monks residing in monasteries, called Abbeys, brewed beer as a source of nutrition during their frequent and often lengthy fasting periods."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,3,1
-bayerische_staatsbrauerei_weihenstephan-festbier,0,0,244358119425,"{""name"":""Festbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,1,1
-chimay_abbaye_notre_dame_de_scourmont-chimay_premiere_chimay_red,0,0,244493582338,"{""name"":""Chimay Première (Chimay Red)"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""First sold in 75 cl (25.4 fl.oz.) bottles, it is noted for its coppery colour which makes it particularly attractive.\r\n\r\nTopped with a creamy head, it gives off a light, fruity apricot aroma produced by the fermentation. The taste perceived in the mouth is a balance confirming the fruity nuances noticed in the fragrance. \r\n\r\nIts taste, which imparts a silky sensation to the tongue, is made refreshing by a light touch of bitterness. To the palate, the taster perceives a pleasant astringency which complements the flavour qualities of this beer very harmoniously.\r\n\r\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,46,1
-pivovary_staropramen-staropramen,0,0,244991721472,"{""name"":""Staropramen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovary_staropramen"",""updated"":""2010-07-22 20:00:20"",""description"":""Classic famous czech beer from Praha, one of the best beers of the world"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,27,1
-brasserie_duyck-jenlain_st_druon_de_sebourg,0,0,244490633216,"{""name"":""Jenlain St Druon de Sebourg"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_duyck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-mcmenamins_mill_creek-porter,0,0,244865368065,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
-whitbread_beer_company-mackeson_xxx_stout,0,0,245752725504,"{""name"":""Mackeson XXX Stout"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitbread_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Sweet Stout"",""category"":""British Ale""}",1,63,1
-abita_brewing_company-abita_light_beer,0,0,244358184962,"{""name"":""Abita Light Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:50:18"",""description"":""Uniquely hand-crafted using 100% all natural ingredients: The result is the smoothest, most flavorful light beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,2,1
-brouwerij_st_bernardus,0,0,244494237698,"{""name"":""Brouwerij St. Bernardus"",""city"":""Watou"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-057/38.80.21"",""website"":""http://www.sintbernardus.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Trappistenweg 23""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8425,""lon"":2.6362}}",1,48,1
-august_schell_brewing,0,0,244357857280,"{""name"":""August Schell Brewing"",""city"":""New Ulm"",""state"":""Minnesota"",""code"":""56073"",""country"":""United States"",""phone"":""800-770-5020"",""website"":""http://www.schellsbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The August Schell Brewing Company is a brewing company in New Ulm, Minnesota. It was founded by German immigrants August Schell and Jacob Bernhardt in 1860 and passed into the possession of the Schell family in 1866. It is the second oldest family-owned brewery in America and became the oldest and largest brewery in Minnesota when the company bought the Grain Belt rights in 2002."",""address"":[""1860 Schell Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2896,""lon"":-94.449}}",1,0,1
-harviestoun_brewery-bitter_and_twisted,0,0,244742946817,"{""name"":""Bitter and Twisted"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harviestoun_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-union_barrel_works,0,0,245112242176,"{""name"":""Union Barrel Works"",""city"":""Reamstown"",""state"":""Pennsylvania"",""code"":""17567"",""country"":""United States"",""phone"":""717-335-7837"",""website"":""http://www.unionbarrelworks.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Union Barrel Works is a restaurant and brew pub located in Reamstown, Pennsylvania in an historic building which originally functioned as a hardware store. It later became Reamstown Garment and was a sewing factory. The building itself was built in 1911 and still has the original hardwood maple floors and authentic tin ceiling. Come visit us for a great atmosphere, better food and excellent beer!"",""address"":[""6 N. Reamstown Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2118,""lon"":-76.1232}}",1,32,1
-brouwerij_de_block-satan_gold,0,0,244491485185,"{""name"":""Satan Gold"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_block"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-beamish_crawford-genuine_irish_stout,0,0,244374175745,"{""name"":""Genuine Irish Stout"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beamish_crawford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
-elysian_brewing_tangletown-foster_child_australian_lager,0,0,244626751489,"{""name"":""Foster Child Australian Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewing_tangletown"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-simmerberg_brusttt_und_taferne-weizen,0,0,244990738433,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,24,1
-scuttlebutt_brewing-sequoia_red,0,0,244991131649,"{""name"":""Sequoia Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
-kleinbrouwerij_de_glazen_toren-ondineke_oilsjtersen_tripel,0,0,244742619136,"{""name"":""Ondineke Oilsjtersen Tripel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kleinbrouwerij_de_glazen_toren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-humboldt_brewing-redwood_amber,0,0,244743471104,"{""name"":""Redwood Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,23,1
-pinnacle_peak_patio_steakhouse_microbrewery,0,0,244991262721,"{""name"":""Pinnacle Peak Patio Steakhouse & Microbrewery"",""city"":""Scottsdale"",""state"":""Arizona"",""code"":""85255"",""country"":""United States"",""phone"":""1-480-563-5133"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10426 East Jomax Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.7268,""lon"":-111.853}}",1,26,1
-broad_ripple_brewing-stout,0,0,244492271617,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
-bulldog_brewing-aztec_amaranth_ale,0,0,244492009472,"{""name"":""Aztec Amaranth Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bulldog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-atwater_block_brewing-alt,0,0,244358381571,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
-bayern_brewing,0,0,244358119426,"{""name"":""Bayern Brewing"",""city"":""Missoula"",""state"":""Montana"",""code"":""59801"",""country"":""United States"",""phone"":""1-406-721-1482"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1507 Montana Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.8726,""lon"":-114.02}}",1,1,1
-courthouse_pub,0,0,244493647872,"{""name"":""Courthouse Pub"",""city"":""Manitowoc"",""state"":""Wisconsin"",""code"":""54220"",""country"":""United States"",""phone"":""1-920-686-1166"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1001 South Eighth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0886,""lon"":-87.6576}}",1,46,1
-pivzavod_baltika-baltika_9,0,0,244991721473,"{""name"":""Baltika #9"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-brauerei_schumacher-alt,0,0,244490633217,"{""name"":""Alt"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schumacher"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
-mcmullen_sons,0,0,244865368066,"{""name"":""McMullen & Sons"",""city"":""Hertford"",""state"":""Hertfordshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01992)-584911"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""26 Old Cross""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.7975,""lon"":-0.0806}}",1,20,1
-yazoo_brewing-esb,0,0,245752725505,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,63,1
-allentown_brew_works-fegley_s_amber_lager,0,0,244358184963,"{""name"":""Fegley's Amber Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber Colored lager with a nice caramel malt flavor backed by a nice dose of Imported Hersbrucker Hops for a nice easy drinking lager."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
-brouwerij_st_feuillien-brune_bruin,0,0,244494237699,"{""name"":""Brune / Bruin"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_feuillien"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-avery_brewing_company-old_jubilation_ale,0,0,244357857281,"{""name"":""Old Jubilation Ale"",""abv"":8.0,""ibu"":30.0,""srm"":0.0,""upc"":7,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-12-19 09:56:02"",""description"":""A winter strong ale with mahogany hue, a hint of hazelnuts and a finish reminiscent of mocha and toffee. No spices, just a perfect blend of five specialty malts."",""style"":""Strong Ale"",""category"":""British Ale""}",1,0,1
-harviestoun_brewery-old_engine_oil,0,0,244742946818,"{""name"":""Old Engine Oil"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harviestoun_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,22,1
-upstream_brewing_company_at_legacy-blackstone_stout,0,0,245112242177,"{""name"":""Blackstone Stout"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
-brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_trappist_extra,0,0,244491550720,"{""name"":""Achel Trappist Extra"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-bell_s_brewery_inc-best_brown_ale,0,0,244374175746,"{""name"":""Best Brown Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich brown ale perfect for the fall and winter. Plenty of malt character and smooth sweet finish give this brown ale its distinct character."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
-f_x_matt_brewing-saranac_pumpkin_ale,0,0,244626817024,"{""name"":""Saranac Pumpkin Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Pumpkin Ale is brewed with Pumpkin, Cinnamon, Allspice, Cloves, Ginger and Vanilla. Look for a full-body and amber color. We're sure you'll enjoy this special brew!"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,47,1
-ska_brewing_company-modus_hoperandi,0,0,244990738434,"{""name"":""Modus Hoperandi"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,24,1
-sharktooth_brewing-big_kahuna_brown,0,0,244991131650,"{""name"":""Big Kahuna Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
-kona_brewing-black_sand_porter,0,0,244742619137,"{""name"":""Black Sand Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
-independence_brew_pub-belgian_singel,0,0,244743471105,"{""name"":""Belgian Singel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-pyramid_alehouse_brewery_and_restaurant_seattle-5_000_year_ale,0,0,244991328256,"{""name"":""5,000 Year Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-brouwerij_verhaeghe,0,0,244492271618,"{""name"":""Brouwerij Verhaeghe"",""city"":""Vichte"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-056-77-70-32"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Beukenhofstraat 96""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8322,""lon"":3.3884}}",1,44,1
-cedar_brewing-red_rocket_amber_ale,0,0,244492009473,"{""name"":""Red Rocket Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-512_brewing_company-512_ipa,0,0,244358774784,"{""name"":""(512) IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""(512) India Pale Ale is a big, aggressively dry-hopped American IPA with smooth bitterness (~65 IBU) balanced by medium maltiness. Organic 2-row malted barley, loads of hops, and great Austin water create an ale with apricot and vanilla aromatics that lure you in for more."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
-bell_s_brewery_inc-bell_s_cherry_stout,0,0,244358447104,"{""name"":""Bell's Cherry Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich and powerful beer with tart cherry appeal, make this a fine stout."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,3,1
-big_ridge_brewing-old_sullivan_porter,0,0,244358119427,"{""name"":""Old Sullivan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-duclaw-misfit_red,0,0,244626096128,"{""name"":""Misfit Red"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""This medium bodied amber ale has a smooth, malt character with a hint of roasted (dark) malt flavor. This beer has just enough hops to balance and goes well with many foods."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
-pony_express_brewing,0,0,244991721474,"{""name"":""Pony Express Brewing"",""city"":""Olathe"",""state"":""Kansas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8814,""lon"":-94.8191}}",1,27,1
-brauerei_spezial,0,0,244490698752,"{""name"":""Brauerei Spezial"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-24304"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Obere Knigsstrae 10""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.8942,""lon"":10.8855}}",1,40,1
-mendocino_brewing_hopland-red_tail_ale,0,0,244865433600,"{""name"":""Red Tail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
-yuengling_son_brewing-yuengling_lager,0,0,245752791040,"{""name"":""Yuengling Lager"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Traditional Lager is an iconic American lager famous for its rich amber color and medium-bodied flavor. Brewed with roasted caramel malt for a subtle sweetness and a combination of cluster and cascade hops, this true original promises a well balanced taste with very distinct character. Its exceptional flavor and smooth finish is prevalently enjoyed by consumers with even the most discerning tastes. Our flagship brand, Yuengling Traditional Lager is an American favorite delivering consistent quality and refreshment that never disappoints. In fact, it's so widely known and unique in its class, in some areas you can ask for it simply by the name \""Lager.\"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
-amherst_brewing_company-patriots_pilsner,0,0,244358250496,"{""name"":""Patriots Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional European Pilsner light in body and color. This brew possesses mild hoppy flavors and a crisp clean finish. It is made with traditional European hops: Hallertau and Saaz."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,2,1
-bube_s_brewery-bube_s_india_pale_ale_ipa,0,0,244494303232,"{""name"":""Bube's India Pale Ale (IPA)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bube's rendition of this classic style is made with fine 2-row malted barley and West Coast hops. A wonderful malt finish with a delicate citrus aroma, reminiscent of its Old-World cousin."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-basil_t_s_brew_pub_and_italian_grill-bad_seed_pumpkin_ale,0,0,244357857282,"{""name"":""Bad Seed Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""basil_t_s_brew_pub_and_italian_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-abita_brewing_company-restoration_pale_ale,0,0,244358578176,"{""name"":""Restoration Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abita Restoration Pale Ale was created after the back-to-back hurricanes devastated Louisiana. With your help, the abita Brewing Company raised over $500,000 for hurricane relief. This brilliant, golden pale ale has a rich body, mild bitterness and a snappy, fresh citrus hop flavor and aroma. Cold filtered and brewed in small batches using no additives or preservatives, the Abita Company is proud to be Louisiana True."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
-heineken_international-heineken,0,0,244742946819,"{""name"":""Heineken"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
-victory_brewing-v_12,0,0,245748203520,"{""name"":""V-12"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Heady with a aromatic fruity start and taste, this amber ale features hints of pear and apricot in its well-nuanced flavor. The initial impression of fruitiness concludes in a refreshing dryness that begs you to sip again. Be fore- warned, this ale is immense as it registers 12% abv."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,32,1
-caldera_brewing-dry_hop_orange,0,0,244491550721,"{""name"":""Dry Hop Orange"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A conundrum in the world of beer. This ale does not fit any conventional beer style. Orange in color only, this beer has hop characteristics of oranges and tangerines.""}",1,42,1
-bell_s_brewery_inc-winter_white_ale,0,0,244374241280,"{""name"":""Winter White Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A Wheat Ale brewed with American Wheat and a proprietary blend of Hefe and classic Belgian-style yeasts. A refreshing winter alternative created from the subtle fusion of two classic flavors."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,41,1
-founders_brewing-founders_black_rye,0,0,244626817025,"{""name"":""Founders Black Rye"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer will surprise you with a big hop flavor and a toasty sweet aroma. Pours black from the chocolate and de-bitterized black rye malts. This ale is medium bodied and is well flavored with hints of toffee, nutty undertones and a dry crisp finish."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,47,1
-sudwerk_privatbrauerei_hbsch-marzen,0,0,245108441088,"{""name"":""Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sudwerk_privatbrauerei_hbsch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
-sierra_nevada_brewing_co,0,0,244991131651,"{""name"":""Sierra Nevada Brewing Co."",""city"":""Chico"",""state"":""California"",""code"":""95928"",""country"":""United States"",""phone"":""1-530-893-3520"",""website"":""http://www.sierranevada.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1075 East 20th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7246,""lon"":-121.816}}",1,25,1
-krogh_s_restaurant_and_brewpub-gold,0,0,244742684672,"{""name"":""Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-iron_city_brewing_co-ic_light,0,0,244743471106,"{""name"":""IC Light"",""abv"":4.15,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""IC Light is an original, not a watered down copy, and brewed to be light from start to finish."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,23,1
-pyramid_alehouse_brewery_and_restaurant_seattle-hefeweizen,0,0,244991328257,"{""name"":""Hefeweizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-browar_warka-warka_strong,0,0,244492271619,"{""name"":""Warka Strong"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_warka"",""updated"":""2010-07-22 20:00:20"",""description"":""European Strong Lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-corner_pub-ipa,0,0,244492009474,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""corner_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-abbaye_de_maredsous-6,0,0,244358840320,"{""name"":""6"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_maredsous"",""updated"":""2010-07-22 20:00:20"",""description"":""Blonde Ales are one of the fastest growing beer styles in Belgium, France and the UK. Moorgat's Maredsous 6 is an easy drinking Blonde with a balance of graininess and aromatic hop."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,5,1
-big_hole_brewing-mythical_white_grand_cru,0,0,244358447105,"{""name"":""Mythical White Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_hole_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-boston_beer_company-samuel_adams_holiday_porter,0,0,244358119428,"{""name"":""Samuel Adams Holiday Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Traditional, British style. Robust and full bodied. Introduced as a member of the Winter Classics Mix Pack in 2004, Samuel Adams® Holiday Porter with its rich malt complexity has become a favorite among our winter seasonal brews. In total, five varieties of malted barley are used in the brewing process including a variety of German malt called Carafa®. The Carafa® gives our Holiday Porter its smooth, roasted malt character. Add generous portions of imported hops to the mix and one has a brew that is both robust and high in drinkability."",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-egan_brewing-raspberry_ginger_mead,0,0,244626227200,"{""name"":""Raspberry Ginger Mead"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-privatbrauerei_bolten,0,0,244991787008,"{""name"":""Privatbrauerei Bolten"",""city"":""Korschenbroich"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2161-/-61790-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rheydter-Strae 138""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.1833,""lon"":6.4993}}",1,27,1
-brauhaus_brew_hall,0,0,244490764288,"{""name"":""Brauhaus Brew Hall"",""city"":""Lucan"",""state"":""Minnesota"",""code"":""56255"",""country"":""United States"",""phone"":""1-507-747-2796"",""website"":""http://www.braubrothersbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We are very excited to introduce Brau Brothers Brewing Company, LLC. We are a locally owned and operated brewery, producing strictly for a local and regional market. We like to stay close to the beer we produce as well as to the people who drink it. Our modest scale allows us to be more flexible, dynamic, and closer to retailers as well as beer drinkers."",""address"":[""111 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.4105,""lon"":-95.4107}}",1,40,1
-mississippi_brewing_co,0,0,244865433601,"{""name"":""Mississippi Brewing Co."",""city"":""Utica"",""state"":""New York"",""code"":""11042"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.687,""lon"":-73.708}}",1,20,1
-yingyi,0,0,91351115366400,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,63,1
-anchor_brewing-old_foghorn_2002,0,0,244358250497,"{""name"":""Old Foghorn 2002"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-bube_s_brewery-bube_s_munich_lager,0,0,244494303233,"{""name"":""Bube's Munich Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-berliner_kindl_brauerei_ag-weisse,0,0,244357857283,"{""name"":""Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""berliner_kindl_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-adnams_co,0,0,244358578177,"{""name"":""Adnams & Co."",""city"":""Southwold"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01502)-727200"",""website"":""http://www.adnams.co.uk"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Adnams is one of England's oldest and most respected breweries, but despite its rich heritage and enduring fame, Adnams is not a company willing to rest on its laurels. Its continued commitment to quality and innovative packaging designs has made it Britain's fastest growing brewery over the last two years. To top it off, Adnams' head brewer was recently chosen as Britain's Brewer of the Year by a panel of his peers. The aggressive team at Adnams is raring to go and keen to make a mark in the U.S."",""address"":[""IP18 6JW""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.3277,""lon"":1.6802}}",1,4,1
-heineken_international,0,0,244743012352,"{""name"":""Heineken International"",""city"":"""",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":"""",""website"":""http://www.heineken.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,22,1
-wdi_bru_huus-hell,0,0,245748203521,"{""name"":""Hell"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-capital_brewery-capital_munich_dark,0,0,244491616256,"{""name"":""Capital Munich Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-bellows_brew_crew-wheat,0,0,244374241281,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
-gasthof_brauerei_zum_frohsinn-dunkel,0,0,244626817026,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-tap_room_brewing_company,0,0,245108506624,"{""name"":""Tap Room Brewing Company"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.taproom21.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.8014,""lon"":-91.2396}}",1,24,1
-siletz_roadhouse_brewery-black_diamond_imperial_porter,0,0,244991197184,"{""name"":""Black Diamond Imperial Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
-left_hand_brewing_company-black_jack_porter,0,0,244742684673,"{""name"":""Black Jack Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
-issaquah_brewhouse-frosty_frog,0,0,244743471107,"{""name"":""Frosty Frog"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-river_horse_brewing_company-belgian_freeze_winter_ale,0,0,244991393792,"{""name"":""Belgian Freeze Winter Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As the days grow shorter and frost becomes snow, our Belgian Freeze winter ale is the perfect remedy to loosen the spirits. This deep amber tonic is brewed with lots of roasted caramel malt for body and warmth to bring in the holidays and see you through the spring."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,26,1
-bube_s_brewery-bube_s_brown_ale,0,0,244492337152,"{""name"":""Bube's Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Another one of our first recipes, which we have improved with experience. This ale is pleasantly malty with nutty and toffee like undertones. East Kent Golding hops were used to compliment this English style ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
-cricket_hill-circket_hill_american_ale,0,0,244492075008,"{""name"":""Circket Hill American Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American Ale is a favorite everywhere - an amber ale with a wonderful balance of caramel sweetness and hop flavor. The aroma has a slight note of citrus and rock candy. There is not an imported Ale on the market that tastes this fresh!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-ale_asylum,0,0,244358840321,"{""name"":""Ale Asylum"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53704"",""country"":""United States"",""phone"":""6086633926"",""website"":""http://www.aleasylum.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""HOURS OF OPERATION:"",""address"":[""3698 Kinsman Blvd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.1257,""lon"":-89.3253}}",1,5,1
-big_ridge_brewing-brotherhood_black_tan,0,0,244358447106,"{""name"":""Brotherhood Black & Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
-boulevard_brewing_company-boulevard_pale_ale,0,0,244358184960,"{""name"":""Boulevard Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard Pale Ale is a smooth, fruity, well-balanced beer with year-round appeal. A variety of caramel malts impart a rich flavor and amber color, while liberal use of whole hops adds zest and aroma. Pale Ale is the first beer we brewed, and continues to be a perennial favorite."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-egan_brewing-sod_off_baldrick,0,0,244626227201,"{""name"":""Sod Off, Baldrick"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-rail_house_restaurant_and_brewpub-pilsner_discontinued,0,0,244991787009,"{""name"":""Pilsner (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
-brouwerij_bockor,0,0,244490764289,"{""name"":""Brouwerij Bockor"",""city"":""Bellegem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-056-21-51-71"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kwabrugstraat 5""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7767,""lon"":3.2785}}",1,40,1
-mogollon_brewing_company-apache_trout_stout,0,0,244865433602,"{""name"":""Apache Trout Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""From Arizona’s high country comes Apache Trout Stout, a robust, full bodied, top fermented ale. Our brewers use mountain pure water, select roasted barley, hops and yeast to create this traditional style. Savor the balanced, roasted malt flavor and the lingering sweetness that makes this dry stout a cool weather treat."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,20,1
-ali_i_brewing-macadamia_nut_brown_ale,0,0,244359364608,"{""name"":""Macadamia Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-barley_island_brewing,0,0,244358250498,"{""name"":""Barley Island Brewing"",""city"":""Noblesville"",""state"":""Indiana"",""code"":""46060"",""country"":""United States"",""phone"":""1-317-770-5280"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""639 Conner Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0453,""lon"":-86.0155}}",1,2,1
-cains-dark_mild,0,0,244494368768,"{""name"":""Dark Mild"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:19:48"",""description"":""This is a smooth, full flavoured, truly dark mild with a rich creamy head. It has a full body and distinctive roasted malt taste, balanced by its fresh hop character. Complex flavours and aromas are achieved by blending deeply roasted malt and adding a selected blend of English hops, including dry hops, to the cask conditioned beer."",""style"":""English-Style Dark Mild Ale"",""category"":""British Ale""}",1,48,1
-big_boss_brewing_company-hell_s_belle,0,0,244357857284,"{""name"":""Hell's Belle"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_boss_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This style originated in Belgium to compete with the pilsners from Czechoslovakia, Germany, and Poland. It is a fruity ale with very strong carbonation, with complex, spicy flavors like cloves."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,0,1
-alesmith_brewing-ipa,0,0,244358578178,"{""name"":""IPA"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
-hoffbrau_steaks_brewery_1-black_rock_bock,0,0,244743012353,"{""name"":""Black Rock Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,22,1
-whitbread_beer_company-ale,0,0,245748269056,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitbread_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
-capital_city_brewing_company,0,0,244491616257,"{""name"":""Capital City Brewing Company"",""city"":""Washington"",""state"":""District of Columbia"",""code"":""20005"",""country"":""United States"",""phone"":""202.628.2222"",""website"":""http://www.capcitybrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Washington DC's first brewpub since prohibition, Capitol City Brewing Co. opened its doors in 1992. Our first location still stands in Downtown DC, at 11th and H St., NW. Our company policy is to bring the fine craft of brewing to every person who lives and visits our region, as well as treating them to a wonderful meal and a great experience."",""address"":[""1100 New York Ave, NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.8999,""lon"":-77.0272}}",1,42,1
-big_time_brewing-slam_dunkelweizen,0,0,244374306816,"{""name"":""Slam Dunkelweizen"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-george_gale_company-conquest_ale,0,0,244626817027,"{""name"":""Conquest Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,47,1
-taylor_brewing,0,0,245108506625,"{""name"":""Taylor Brewing"",""city"":""Lombard"",""state"":""Illinois"",""code"":""60148"",""country"":""United States"",""phone"":""1-630-990-8700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""717 East Butterfield Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8358,""lon"":-88.0091}}",1,24,1
-siletz_roadhouse_brewery-spruce_ale,0,0,244991197185,"{""name"":""Spruce Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-little_apple_brewing-blarney_stone_stout,0,0,244865695744,"{""name"":""Blarney Stone Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-jj_bitting_brewing-cali_steam_locomotive,0,0,244743536640,"{""name"":""Cali \""Steam\"" Locomotive"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-rock_bottom_restaurant_brewery_chicago,0,0,244991459328,"{""name"":""Rock Bottom Restaurant & Brewery - Chicago"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60610"",""country"":""United States"",""phone"":""1-312-755-9339"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 West Grand Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.8915,""lon"":-87.6284}}",1,26,1
-cambridge_brewing-charles_river_porter,0,0,244492402688,"{""name"":""Charles River Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Charles River Porter\r\n\r\nDeep and dark, full-bodied and robust, our Porter is crammed full of rich, roasted malt character. With underlying notes of fruitness, caramel and toffee, it finishes with a strong hop presence"",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
-dark_horse_brewing_co-plead_the_5th_imperial_stout,0,0,244492075009,"{""name"":""Plead the 5th Imperial Stout"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""It's big and full bodied with lots of roasted malts and balanced with heavy hops to put this imperial in a league of its own."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,43,1
-amherst_brewing_company-graduation_ale,0,0,244358840322,"{""name"":""Graduation Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden pale ale, slightly hoppy. Brewed each May for the upcoming graduates. It took you four hard years to graduate so we made this one easy to drink. Congratulations!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
-big_rock_brewery-grasshopper,0,0,244358447107,"{""name"":""Grasshopper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,3,1
-brauerei_gasthof_zur_krone-see_weizen_bio_hefeweizen,0,0,244474380288,"{""name"":""See-Weizen Bio-Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
-egan_brewing-steinworthy_oktoberfest,0,0,244626227202,"{""name"":""Steinworthy Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,46,1
-rail_house_restaurant_and_brewpub-stout_discontinued,0,0,244991787010,"{""name"":""Stout (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,27,1
-brouwerij_de_smedt,0,0,244490764290,"{""name"":""Brouwerij De Smedt"",""city"":""Opwijk"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-35-99-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ringlaan 18""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.971,""lon"":4.191}}",1,40,1
-molson_breweries_of_canada-molson_canadian,0,0,244865499136,"{""name"":""Molson Canadian"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":""Molson beers are imported directly from Canada. Crystal-clear, pure Canadian water, the finest Canadian prairie grains and select European hops give Molson a brewing heritage that dates back to 1786.\r\n\r\nMolson Canadian is Molson Brewing Company's flagship brand. Starting with crystal clear water, malted barley and the finest hops, Molson Canadian is slowly fermented to produce a smooth, refreshing beer with a genuine taste. Clean and clear, crisp and cold, Molson Canadian is a classic lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
-allentown_brew_works-pig_pen_pilsener,0,0,244359364609,"{""name"":""Pig Pen Pilsener"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp Clean and refreshing Golden Lager brewed with German Malt and Hops for an authentic flavor. Pig Pen Pils is a great introduction into the world of Craft Brewed beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,7,1
-big_sky_brewing-powder_hound_winter_ale,0,0,244358250499,"{""name"":""Powder Hound Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Two words describe Montana winters... Cold, dark, and snowy. And we wouldn't have it any other way, because it's the only time of year for Powder Hound, our Northern Rockies Winter Ale. Rich malt taste and an avalanche of hops will make you want to say these three words- \""I'll have another Powder Hound!\"" \r\n\r\nSince Powder Hound is our own creation, it does not fit neatly into a style. Some folks would call it an \""Old Ale\"" and others might call it a \""Winter Warmer\"". Regardless of what you call it, Powder Hound satisfies, with the fine, hand-selected British hops fully complementing the smooth malt notes. After a day on the snow, enjoy a Powder Hound Winter Ale. Available November through March."",""style"":""Old Ale"",""category"":""British Ale""}",1,2,1
-capitol_city_brewing_4-prohibition_porter,0,0,244494368769,"{""name"":""Prohibition Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capitol_city_brewing_4"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-bison_brewing-bison_chocolate_stout,0,0,244357922816,"{""name"":""Bison Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This richly textured, roasty dry stout has a boost of bitter and charismatic flavor from the addition of cocoa powder in the mash. We blend five unique organic malts to create Bison's most award winning beer.\"" from http://bisonbrew.com/chocolate-stout.asp\r\n\r\nAnd I concur. This is a relatively mild stout, with a malty rich flavor. Adding this to my list of preferred beers.""}",1,0,1
-anchor_brewing-our_special_ale_1994,0,0,244358643712,"{""name"":""Our Special Ale 1994"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-hook_ladder_brewing_company-hook_ladder_lighter,0,0,244743012354,"{""name"":""Hook & Ladder Lighter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_ladder_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The right choice when you desire a flavorful beer with a 'lighter' body. Only 94 calories!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,22,1
-abita_brewing_company-s_o_s,0,0,244359102464,"{""name"":""S.O.S"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:48:20"",""description"":""Save Our Shores (S.O.S) is an unfiltered weizen pils and has a brilliant golden color. A Charitable Pilsner"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
-cervecera_cuauhtmoc_moctezuma-cerveza_sol,0,0,244491681792,"{""name"":""Cerveza Sol"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
-brasserie_la_caracole-nostradamus,0,0,244491026432,"{""name"":""Nostradamus"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-gold_coast_brewery-golden_harvest_weizenbier,0,0,244626882560,"{""name"":""Golden Harvest Weizenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gold_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
-the_lost_abbey-lost_and_found_abbey_ale,0,0,245108572160,"{""name"":""Lost and Found Abbey Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""Lost and Found- Modeled after the great Trappist and Monastic beers that inspired the founding of our brewery. A richly deep garnet colored ale created from a blend of Domestic and imported malts. As part of our commitment to interesting brewing endeavors, Chef Vince created a special raisin puree for this beer. Malts, raisins and a fantastic yeast strain working in harmony produce a beer of amazing complexity and depth. Available in 750ml bottles and on draft at select inspired locations."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,24,1
-slab_city_brewing-holiday_ale,0,0,244991197186,"{""name"":""Holiday Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-magnolia_pub_and_brewery-cole_porter,0,0,244865695745,"{""name"":""Cole Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
-lagunitas_brewing_company-maximus_ale,0,0,244743536641,"{""name"":""Maximus Ale"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
-russian_river_brewing-parking_violation,0,0,244991459329,"{""name"":""Parking Violation"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Wouldn't it suck to have a job where nobody likes you? And, regardless of your name, people always call you Rita, as in \""Lovely Rita?\"" Sometimes people just shorten it to the simpler \""meter maid.\"" The funny thing about that is the Webster dictionary defines a \""meter maid\"" as \""a female member of a police department who is assigned to write tickets for parking violations.\"" You have to wonder how the male \""meter maids\"" feel about that! Parking Violation is an American style pale ale using lots of American hops, lots of quarters, and several trips back and forth to the parking lot. So, remember to drink responsibly and feed your meter."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-central_waters_brewing_company-happy_heron_pale_ale,0,0,244492402689,"{""name"":""Happy Heron Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This crisp, zesty American pale is characterized by the sharp bitterness missing in many domestic pale ales. The clean finish and slight fruity notes help make our flagship brew a delightful treat."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-dark_horse_brewing_co-three_guy_off_the_scale_barley_wine,0,0,244492075010,"{""name"":""Three Guy Off The Scale Barley Wine"",""abv"":15.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A barley wine style ale brewed to 15% alc with hints of raisin, chocolate, carmel, sherry, cherry, and alcohol, just to name a few and this beer will only get better with age."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,43,1
-appalachian_brewing_company-sophie_s_sparkling_ale,0,0,244358840323,"{""name"":""Sophie's Sparkling Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Braggart Mead styled ale is light and refreshing with an essence of orange blossoms, pear, and honey in the aroma and a balanced fruity and clean finish. \r\n\r\nThis style was developed by our Brewmaster to have the perfect carbonation and crispness on our summer’s hot and humid Pennsylvania days.""}",1,5,1
-big_sky_brewing-crystal_ale,0,0,244358447108,"{""name"":""Crystal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-brouwerij_abdij_der_trappisten_van_westmalle,0,0,244474445824,"{""name"":""Brouwerij Abdij der Trappisten van Westmalle"",""city"":""Westmalle"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-033-12-05-35"",""website"":""http://www.trappistwestmalle.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""or more than 200 years the Westmalle Trappists have chosen a life of prayer and work. That is their true vocation, entirely in accordance with the rule of Saint Benedict. Monks, he stipulates, have to provide for themselves. hus there is also a brewery within the abbey. The monks deliberately keep production small, with special care for man and the environment. And because profit is not their motive, they spend the surplus from it on charity work and on people in need."",""address"":[""Antwerpsesteenweg 476""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.2974,""lon"":4.6881}}",1,1,1
-elysian_brewery_public_house-ambrosia_maibock,0,0,244626292736,"{""name"":""Ambrosia Maibock"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
-red_star_brewery_grille-red_star_pilsner,0,0,244991852544,"{""name"":""Red Star Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,27,1
-brouwerij_van_den_bossche,0,0,244490764291,"{""name"":""Brouwerij Van Den Bossche"",""city"":""Sint-Lievens-Esse"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-054-50-04-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St Lievensplein 16""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8564,""lon"":3.8845}}",1,40,1
-moylan_s_brewery_restaurant-irish_dry_stout,0,0,244865499137,"{""name"":""Irish Dry Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
-alpine_beer_company-nelson,0,0,244359364610,"{""name"":""Nelson"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpine_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Golden Rye IPA.\r\nAn outstanding hop from New Zealand, Nelson Sauvin, is generously used throughout the brewing and dry-hopping of this unique beer. European rye is added for a smooth, malty addition to flavor. 1.065 OG 7%ABV"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
-boston_beer_company-samuel_adams_brown_ale,0,0,244358250500,"{""name"":""Samuel Adams Brown Ale"",""abv"":5.35,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""rk in color yet medium bodied. Rich and smooth.\r\nSamuel Adams® Brown Ale is a study in flavor, body, and style. Supported by an interesting blend of malts, it shines with a deep mahogany luster. The roasted malt blend is complex and deep as well, with notes of biscuit, nut and caramel. The hops are imported from Europe; Noble Spalt from Germany and citrusy Goldings, a traditional British ale hop selected from a single farm in East Kent. With moderate hop bitterness, a deep malt body, and a fruity ale fermentation character, Samuel Adams® Brown Ale satisfies the soul and doesn"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
-cervecera_jerome-cerveza_diablo,0,0,244494368770,"{""name"":""Cerveza Diablo"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-blackstone_restaurant_brewery-chaser_pale,0,0,244357922817,"{""name"":""Chaser Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blackstone_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-anheuser_busch-bud_dry,0,0,244358643713,"{""name"":""Bud Dry"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced in 1989 Bud Dry is the first dry-brewed beer produced by an American brewer. It is brewed with select hops, grains and barley malt, which results in a lighter body and less-sweet taste. As with all Anheuser-Busch beers, it is cold-filtered for a smooth draft taste, but then goes through a second cold-filtered finishing process to provide its unique taste."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
-hoppin_frog_brewery-wild_frog_wheat,0,0,244743077888,"{""name"":""Wild Frog Wheat"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional German-style, unfiltered wheat beer, with a lively balanced flavor. Although no fruit or spices were used in the brewing, these flavors are created by fermentation with special yeast from the oldest brewery in the world. Try Wild Frog Wheat with a slice of orange for a crisp, refreshing experience"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,22,1
-ali_i_brewing-kona_coffee_stout,0,0,244359168000,"{""name"":""Kona Coffee Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,6,1
-cheshire_cat_brewery-black_cat_stout,0,0,244491681793,"{""name"":""Black Cat Stout"",""abv"":6.15,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
-brauhaus_brew_hall-brau_light,0,0,244491091968,"{""name"":""Brau Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_brew_hall"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
-goose_island_beer_company_clybourn-kriek,0,0,244626882561,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,47,1
-three_floyds_brewing-munsterfest,0,0,245108572161,"{""name"":""Munsterfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
-spoetzl_brewery-shiner_kosmos_reserve,0,0,245108768768,"{""name"":""Shiner Kosmos Reserve"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Kosmos Spoetzl knew how to brew great beer. Born in Bavaria, Kosmos’ mastery of German brewing carried him as far as Egypt before he found his way to the small Texas town of Shiner. Our proud brewery still carries his name and commitment to excellence in brewing. This full-flavored, hop-jacked lager is every bit as unique as the man himself and our way of saluting the brewmaster who started it all."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-main_street_brewery-hop_daddy_ipa,0,0,244865761280,"{""name"":""Hop Daddy IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,21,1
-lakefront_brewery-old_3rd_street_xxx_belgian_strong_ale,0,0,244743536642,"{""name"":""Old 3rd Street XXX Belgian Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-abbaye_de_maredsous-10,0,0,244360216576,"{""name"":""10"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_maredsous"",""updated"":""2010-07-22 20:00:20"",""description"":""Moortgat's Maredsous 10 is an orangy-blond big sweet tripel nudging into a barley wine."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,9,1
-sabmiller_india-haywards_2000,0,0,244991459330,"{""name"":""Haywards 2000"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Haywards 2000 H2K is India's only beer with an ABV of 5.5%, whilst the rest of the beers are either less than 5% or greater than 7.5% - 8%\r\n\r\nTaste: Rich, smooth and crisp taste \r\nMalts: Indian malts, 6 row barley \r\nHops: Hop extract from Germany and Indian hops palate \r\nColour: Gold \r\nAvailability: Parts of India \r\nFermentation process: Bottom-fermented \r\nServing temperature: 7 - 9 °C \r\nPackaging: 650 ml and 330 ml glass bottle and 330 ml cans \r\n\r\nhttp://www.sabmiller.in/brands_haywards_2000.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-cervecera_nacional-atlas_lager,0,0,244492468224,"{""name"":""Atlas Lager"",""abv"":3.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_nacional"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-dock_street_beer-dock_street_amber,0,0,244624785408,"{""name"":""Dock Street Amber"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Dock Street Amber is a classic, top fermented ale and is the company flagship beer. \r\n\r\nIt is brewed with American Cascade hops and two row imported pale and caramel malts and then dry hopped. Our traditional brewing process gives this beer its subtle, complex and fruity character and its distinctive hop \""nose.\"" The result is an exceptionally balanced premium full bodied ale that finishes clean and smooth on the palate. It appeals to gourmets and beer aficionados.\r\n\r\nOur goal in brewing the Dock Street Amber was to produce a phenomenal tasting American beer. At the time it was created, most all full-bodied beers were imports.\"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-august_schell_brewing-grain_belt,0,0,244358905856,"{""name"":""Grain Belt"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer has changed hands a bit over its 60+ year history - first brewed by the Grain Belt Brewery in Minneapolis, then by the now-defunct Minnesota Brewing and currently by August Schell Brewing Co. in New Ulm."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-big_time_brewing-black_mulligan_dublin_stout,0,0,244358512640,"{""name"":""Black Mulligan Dublin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
-brouwerij_duvel_moortgat-maredsous_10_tripple,0,0,244474511360,"{""name"":""Maredsous 10 Tripple"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_duvel_moortgat"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1963, the Benedictine abbey of Maredsous entrusted the production and sales of the famed Maredsous beers to Duvel Moortgat. The monks continue to exercise strict control over its recipes and quality standards right up to today.\r\n\r\n \r\n\r\nRegardless of what colour or taste you choose, the Maredsous range has everything to intrigue you. These aromatic, delicate, fruity and velvety beers supplement each other in a perfect harmony as far as both colour and taste experience are concerned.\r\n\r\nThe blonde Maredsous with 6% alcohol content, the brown one with 8% alcohol content and the triple one with 10% alcohol content ripen first for two full months before they depart to their final destination. The specific bottle fermentation, refined by the brewery for its main brand Duvel, also give the Maredsous abbey beers an extra dimension. \t \r\n\r\nAbout Maredsous\r\n\r\nThe triple Maredsous with 10% alcohol content is one of the favourite beers of Michael Jackson, the outstanding beer ’pope’:\r\n\""These beers have long been my favourites. Above all the 10° is an especially tasty beer.\"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,1,1
-faultline_brewing_1-best_bitter,0,0,244626292737,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-richbrau_brewing_company,0,0,244991852545,"{""name"":""Richbrau Brewing Company"",""city"":""Richmond"",""state"":""Virginia"",""code"":""23219"",""country"":""United States"",""phone"":""(804) 644-3018"",""website"":""http://www.richbrau.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1214 East Cary St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.5356,""lon"":-77.4338}}",1,27,1
-brouwerij_van_steenberge-tikka_gold,0,0,244490829824,"{""name"":""Tikka Gold"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-nebraska_brewing_company-porter,0,0,244865499138,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
-anchor_brewing-liberty_ale,0,0,244359430144,"{""name"":""Liberty Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""San Francisco's famouse Liberty Ale was first brewed on the 18th of April, 1975 to celebrate the 200th anniversary of Paul Revere's historic ride. It is virtually handmade by the brewers of Anchor Steam Beer in one of the smallest and most traditional breweries in the world. Liberty Ale is made with the finest barley malt, fresh, whole hops, top fermenting yeast, pure water and the simple natural methods which reflect our exceptional respect for the ancient art of brewing. It is \""dry hopped,\"" a classic ale tradition, and slowly completes its fermentation in sealed vats in our cellars. This unique process creates Liberty Ale's distinctive bouquet and uncommonly delicate, entirely natural carbonation."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-brasserie_de_brunehaut,0,0,244358316032,"{""name"":""Brasserie de Brunehaut"",""city"":""Brunehaut"",""state"":""Hainaut"",""code"":""7623"",""country"":""Belgium"",""phone"":""32-069-34-64-11"",""website"":""http://www.brunehaut.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisanal (non-conglomerate) brewer, Brunehaut employs ancient Belgian brewing recipes, dating from the First Crusade and documented from 1096. Combining top (in-bottle) fermentation with modern production technologies, Brunehaut's signature ales include Dubble and Tripel bottle-conditioned ales, consistent with 1500+-year-old Belgian brewing traditions. Three bio (organic) beers, distributed under the Brunehaut label, use organic gains, grown by the brewers, within ten kilometers of the brewhaus."",""address"":[""Rue de Panneries 17""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.5109,""lon"":3.3883}}",1,2,1
-cervecera_jerome-cerveza_roja,0,0,244494434304,"{""name"":""Cerveza Roja"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
-bobcat_cafe_brewery,0,0,244357922818,"{""name"":""Bobcat Cafe & Brewery"",""city"":""Bristol"",""state"":""Vermont"",""code"":""5443"",""country"":""United States"",""phone"":""(802) 453-3311"",""website"":""http://www.bobcatcafe.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nestled at the foot of the Green Mountains & located right in the heart of Bristol, The Bobcat Cafe & Brewery is just walking distance from the town green, downtown shopping & the Crystal Palace B&B. Established in 2001, this popular, community oriented cafe & brewery features a wide selection of house brewed beers, a diverse menu to meet any taste, carefully selected wines & a full bar."",""address"":[""4 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.1332,""lon"":-73.0784}}",1,0,1
-anheuser_busch-bud_ice,0,0,244358643714,"{""name"":""Bud Ice"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Actually an Ice Lager. Introduced in 1984."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
-illinois_brewing-newmarket_pale_ale,0,0,244743077889,"{""name"":""Newmarket Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""illinois_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-amherst_brewing_company-bankers_gold,0,0,244359168001,"{""name"":""Bankers Gold"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Just another day at the bank. Very light, mild ale with a subtle hop finish. Brewed once a year in early Spring."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,6,1
-circle_v_brewing,0,0,244491681794,"{""name"":""Circle V Brewing"",""city"":""Indianapolis"",""state"":""Indiana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7684,""lon"":-86.158}}",1,42,1
-breckenridge_bbq_of_omaha,0,0,244491157504,"{""name"":""Breckenridge BBQ of Omaha"",""city"":""Omaha"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.254,""lon"":-95.9993}}",1,41,1
-gottberg_brew_pub-old_powerhouse_lager_discontinued,0,0,244626948096,"{""name"":""Old Powerhouse Lager (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-thunder_canyon_brewery,0,0,245108572162,"{""name"":""Thunder Canyon Brewery"",""city"":""Tucson"",""state"":""Arizona"",""code"":""85741"",""country"":""United States"",""phone"":""1-520-797-2652"",""website"":""http://www.thundercanyonbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7401 North La Cholla Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.3407,""lon"":-111.015}}",1,24,1
-stieglbrauerei_zu_salzburg_gmbh-columbus_pils,0,0,245108834304,"{""name"":""Columbus Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,25,1
-maisel_bru-benediktiner_dunkel,0,0,244865761281,"{""name"":""Benediktiner Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maisel_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-lancaster_brewing_co-gold_star_pilsner,0,0,244743536643,"{""name"":""Gold Star Pilsner"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp and refreshing, this classic Bohemian Pilsner brings noble hop flavor and traditional German maltiness into perfect union before another healthy dose of imported hops tips the scales towards a decidedly hoppy finish."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,23,1
-anchor_brewing-old_foghorn_1996,0,0,244360282112,"{""name"":""Old Foghorn 1996"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-sacramento_brewing_company-sacramento_bock,0,0,244991524864,"{""name"":""Sacramento Bock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A stronger German lager brewed with lots and lots of Munich malt for a toasty bready like aroma."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
-charlie_and_jake_s_brewery_and_bbq,0,0,244492468225,"{""name"":""Charlie and Jake's Brewery and BBQ"",""city"":""Melbourne"",""state"":""Florida"",""code"":""32940"",""country"":""United States"",""phone"":""1-321-752-7675"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6300 North Wickham Road #137""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.2126,""lon"":-80.6734}}",1,44,1
-dogfish_head_craft_brewery-aprihop,0,0,244624850944,"{""name"":""Aprihop"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with luscious apricots, finished with whole-leaf hops. A \""fruit beer for hop heads...\"" Ale Street News"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,43,1
-ballast_point_brewing-black_marlin_porter,0,0,244358905857,"{""name"":""Black Marlin Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ballast Point Black Marlin Porter is a rich dark chocolaty Porter with a distinctive American hop character. It is a great beer to go with hearty foods and is surprisingly one of the few beers that goes well with dessert. One of our favorite combinations here at Ballast Point is Black Marlin Porter with apple pie a la mode."",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
-black_creek_historic_brewery-black_creek_porter,0,0,244358512641,"{""name"":""Black Creek Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_creek_historic_brewery"",""updated"":""2011-06-08 07:10:06"",""description"":""Porter is a dark-coloured beer developed in the 1750s. Porter has a heavier flavour and aroma and a slightly sweet taste. Its name probably originates in the belief that this strong, nourishing drink was ideal for hard-working porters and labourers. Black Creek Porter is wonderful on its own, or with salty snacks.\n\n"",""style"":""Smoke Beer"",""category"":""Other Style""}",1,3,1
-browar_namyslow_sp_z_o_o,0,0,244474511361,"{""name"":""Browar Namysłów Sp. z o.o."",""city"":""Namysłów"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-(077)-40-39-100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Bolesawa Chrobrego 26""]}",1,1,1
-fifty_fifty_brewing_co-rockslide_ipa,0,0,244626292738,"{""name"":""Rockslide IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""If being in one of the coldest places in the US isn't extreme enough, the contents of this beer may very well redefine your commitment to the pursuit of hops. Rockslide IPA is brewed in the 'West Coast' style with aggressive amounts of American hops such as Amarillo, Centennial and Summit hops. You are greeted with a full frontal assault of citrus/grapefruit/pine hop character, followed up with malt to balance the mouthfeel. This beer is all about hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
-ridgeway_brewing-criminally_bad_elf,0,0,244991852546,"{""name"":""Criminally Bad Elf"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-bube_s_brewery-bube_s_stout,0,0,244490829825,"{""name"":""Bube's Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark full bodied stout is perfect with a meal or as a meal. Rolled oats give this beer an enjoyable mouthfeel while chocolate and roasted malts lend to its distinctive flavor."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
-new_belgium_brewing-big_shot_seasonal_ale,0,0,244865564672,"{""name"":""Big Shot Seasonal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
-allentown_brew_works-rude_elf_s_reserve,0,0,244359757824,"{""name"":""Rude Elf's Reserve"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Our silver medal winning Belgian style Holiday beer brewed with dark Belgian candied sugar and special spices. This brew has a spicy aroma and flavor with a sweet malt taste. At 10.5% alcohol it is sure to warm you up during the Holiday season."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,8,1
-arcadia_brewing-hopmouth_double_ipa,0,0,244359430145,"{""name"":""Hopmouth Double IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The first in our Brew Crew Big Beer Series, Hopmouth Double IPA is a hop lover’s delight! Deep amber hue with a generous white head, Hopmouth showcases a rich, toasty flavor and a sweet caramel notes as a result of the high-quality Maris Otter Malt, imported from the UK. The hops are right up front in the aroma, reminiscent of citrus and pine, while the resin-like flavors linger well after the last sip.\r\n\r\nThis is a BIG beer. True to our original vision, we have achieved a level of balance and drinkability rarely found in this style. Delicious on its own, Hopmouth is also a brilliant pair with many boldly-flavored foods, including many cheeses and desserts."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
-brasserie_de_l_abbaye_des_rocs-montagnarde,0,0,244358316033,"{""name"":""Montagnarde"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-city_brewing_company_llc-winter_porter,0,0,244494434305,"{""name"":""Winter Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-brasserie_de_brunehaut-brasserie_de_brunehaut_bio_biere_blanche_organic,0,0,244357922819,"{""name"":""Brasserie de Brunehaut Bio Bière Blanche (Organic)"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic Belgian 'white beer' from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\r\nPresents a light hazy yellow colour with citrus and coriander aromas and fairly subtle malt and hops on the palate. The finish is dry and satisfying. Hazy yellow golden colour. Lemon custard, lime zest, and delicate spice melange aromas. Well-balanced, a frothy entry leads to a dryish medium body of nuts, baked oranges, and slightly phenolic mineral flavors. Finishes with a metallic ore dust, salt, and dried lemon fade. This beer is certified as organic."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,0,1
-avery_brewing_company-ale_to_the_chief,0,0,244358643715,"{""name"":""Ale To The Chief"",""abv"":8.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Ale to the Chief! We the Brewers of Avery Brewing Company, in order to form a more perfect ale, require new leadership that can liberate us from our quagmires in foreign lands; embrace environmentally sound energy alternatives to imported oil; heal our ailing healthcare system; free us from tyrannical debt and resurrect the collapsing dollar. We hereby pledge to provide him with an ample amount of our Presidential Pale Ale to support in the struggle for the aforementioned goals! Hail to the New Chief!\"" \r\n\r\nSo reads the label of Ale to the Chief, the latest limited release brew from Avery Brewing Company brewed to bid a fond farewell to our current Commander in Chief and welcome a new administration. Our thought process for this beer was rather simple: take the classic American Pale Ale, use American ingredients like West Coast Cascade hops and the American Ale yeast strain (a first for Avery Brewing) and produce a beer in the Avery tradition with intense, in-your-face flavor. This Presidential Pale Ale has a pungent nose of citrusy, green Cascade hops along with a medium body and a lingering bitter finish. Ale to the Chief! is a limited release brew, get some while it lasts!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,4,1
-jever_brewery,0,0,244743077890,"{""name"":""Jever Brewery"",""city"":""Jever, Germany"",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.jever.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.5757,""lon"":7.9003}}",1,22,1
-aspen_brewing_company,0,0,244359233536,"{""name"":""Aspen Brewing Company"",""city"":""Aspen"",""state"":""Colorado"",""code"":""81611"",""country"":""United States"",""phone"":"""",""website"":""http://aspenbrewingcompany.com"",""type"":""brewery"",""updated"":""2010-11-08 08:40:44"",""description"":"""",""address"":[""555 North Mill Street""]}",1,6,1
-clipper_city_brewing_co-yule_tide,0,0,244491747328,"{""name"":""Yule Tide"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest addition to Baltimore's own Clipper City Brewing Company - Mutiny Fleet is their holiday brew Yule Tide, a Belgian style triple ale, which like the rest of the Mutiny Fleet is distributed in 22 ounce bombers."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,42,1
-breckenridge_brewery-christmas_ale,0,0,244491157505,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
-gray_brewing-irish_style_ale,0,0,244752973824,"{""name"":""Irish Style Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-thunderhead_brewery-black_sheep_espresso_stout,0,0,245108637696,"{""name"":""Black Sheep Espresso Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-sullivan_s_black_forest_brew_haus_grill-38_special_bitter,0,0,245108899840,"{""name"":"".38 Special Bitter"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Don't let the name scare you, this is an easy drinker, slightly sweet and bitter."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,25,1
-marshall_brewing_company-sundown_wheat,0,0,244865826816,"{""name"":""Sundown Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marshall_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,21,1
-lanchester_brewing,0,0,244743602176,"{""name"":""Lanchester Brewing"",""city"":""Durham"",""state"":""Durham"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Durham DH7 0NT""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.8229,""lon"":-1.7457}}",1,23,1
-appalachian_brewing_company-grinnin_grizzly_spiced_ale,0,0,244360282113,"{""name"":""Grinnin' Grizzly Spiced Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This amber ale is dosed with cinnamon, nutmeg, ginger, and fresh orange zest. It is well balanced with low hop flavor and nice hint of the spices in the finish. This spiced ale is not overbearing; rather it is smooth and very drinkable."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-saint_louis_brewery_schlafy_tap_room-schlafly_hefeweizen,0,0,244991524865,"{""name"":""Schlafly Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-crabby_larry_s_brewpub_steak_crab_house-anne_bonny_irish_stout,0,0,244492468226,"{""name"":""Anne Bonny Irish Stout"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""How about trying a glass of traditional Irish stout. Our stout however is not particularly dry and has overtones of dark chocolate and toffee. The infused nitrogen gives a wonderful cascading effect in the glass and a rich, creamy head. Particularly tasty when paired with our oysters on the half shell.""}",1,44,1
-dux_de_lux-ginger_tom,0,0,244624850945,"{""name"":""Ginger Tom"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dux_de_lux"",""updated"":""2010-07-22 20:00:20"",""description"":""An old fashioned style ginger beer brewed naturally with honey, malt, lemon and fresh root ginger, leaving you with a refreshing crisp zesty flavour."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,43,1
-ballast_point_brewing-calico_amber_ale,0,0,244358905858,"{""name"":""Calico Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Calico Amber Ale was inspired by the beers of England. In England most of the beer is some kind of \""bitter\"". Bitter is a style that became popular in the late 1800's. The most famous examples are brewed in Burton on Trent. This hard water gives these beer a pleasantly dry bitter finish, hence the name \""bitter.\"" A brewery usually brews several bitters of various alcohol strengths. The lowest in alcohol (and usually flavor) is called \""bitter\"" or \""ordinary bitter.\"" A step up in alcohol and hop character gives us \""best bitter\"" or \""special bitter.\"" Finally a beer is made that is full of hop aroma and flavor, has a maltiness to match, and a generous amount of alcohol is called an \""extra special bitter\"" or E.S.B.\r\n\r\nAlthough inspired by the British Ales Ballast Point Calico Amber Ale uses distinctive American hops, which give not only the crisp bitterness to balance the malt, but also a hint of floral aroma. We brew Calico Amber Ale with 100% malt and use 4 different malts to give it a rich complexity. The blend of crystal malts give it flavors including toffee and caramel. A blend of American Cascade and Centennial hops provide a counterpoint to the malt. Finally our proprietary yeast provides a fruity background and a Madeira like richness that rounds out this gold medal winning ale."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
-boulevard_brewing_company-nut_cracker_ale,0,0,244358512642,"{""name"":""Nut Cracker Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Nutcracker Ale is Boulevard’s holiday gift for real beer lovers. This hearty, warming brew is a classic winter ale, deep amber in color, with hints of molasses balanced by the “spiciness” of freshly harvested Chinook hops."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,3,1
-brown_street_brewery-stout,0,0,244474511362,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
-fish_brewing_company_fish_tail_brewpub-blind_pig_dunkelweizen,0,0,244626358272,"{""name"":""Blind Pig Dunkelweizen"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-rogue_ales-honey_orange_wheat,0,0,244991918080,"{""name"":""Honey Orange Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Honey Orange Wheat is an unfiltered wheat beer and has flavors of honey and orange balanced with a nice medium-sweet malt character. It is medium bodied with no harsh bitterness and a nice honey-orange finish. It is made from Northwest Two-Row and Wheat Malts; Willamette Hops; #48 Oregon Wildflower Honey, Orange Juice, and Free Range Coastal Waters. It is currently available on draft."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,27,1
-bube_s_brewery-wet_hop_requiem_ipa,0,0,244490829826,"{""name"":""Wet Hop Requiem IPA"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beauty is a complete work of art! Bryan and I picked 22 lbs of fresh Cascade hops from 3 gigantic hop vines Bryan has at his house. Hops produce an overabundance of hop cones and we were there for the picking. Even after 22 lbs, we hardly put a dent in the yield! So...here we are 3 weeks later, the beer is on tap and it is the freshest...hoppiest...flavorful beer you can imagine! Needless to say, we are proud of this beauty from the ground, up! We wanted a full-flavored IPA, so Bryan suggested we use our Requiem IPA recipe, and calculate for fresh, whole hop cones. Worked beautifully!! We ended up with an IPA with so much up-front flavor you would think you are enjoying a high octane Imperial! Instead, this is a middle-of-the-road IPA, at 5.2% abv!! This just goes to show how a hugely flavorful IPA can be loaded-up with fresh ingredients and come out the other end, a tasty LOW octane, treat! Bryan and I hope you get to stop in soon to try this one out! We decorated Bube's with some of the actual hop vines we pulled from. For the true hophead, you will be in heaven. And for the all-around beer enthusiasts, we hope you can appreciate the creativity in this beer. I know I'm proud to say I had a hand in this one!!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
-north_coast_brewing_company-scrimshaw_pilsner_style_beer,0,0,244865564673,"{""name"":""Scrimshaw Pilsner Style Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for the delicate engravings popularized by 19th century seafarers, Scrimshaw is a fresh tastingPilsner brewed in the finest European tradition using Munich malt and, Hallertauer and Tettnang hops. Scrimshaw has a subtle hop character, a crisp, clean palate, and a dry finish."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,20,1
-amherst_brewing_company-olde_8_anniversary_ale,0,0,244359757825,"{""name"":""Olde #8 Anniversary Ale"",""abv"":6.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed for August each year to celebrate our Anniversary this strong ales maltiness is balenced by a generous amount of hops"",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,8,1
-back_road_brewery,0,0,244359495680,"{""name"":""Back Road Brewery"",""city"":""LaPorte"",""state"":""Indiana"",""code"":""46350"",""country"":""United States"",""phone"":""1-219-362-7623"",""website"":""http://www.backroadbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""310 Perry Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6124,""lon"":-86.7268}}",1,7,1
-brasserie_de_la_senne-equinox_dark_belgian_winter,0,0,244358316034,"{""name"":""Equinox Dark Belgian Winter"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-craftsman_brewing-heavenly_hefe,0,0,244494434306,"{""name"":""Heavenly Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""craftsman_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
-brasserie_dubuisson-clovis,0,0,244357922820,"{""name"":""Clovis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-barley_s_2_smokehouse_and_brewpub-robert_burns_scottish_ale,0,0,244358643716,"{""name"":""Robert Burns Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_2_smokehouse_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-knig_ludwig_schlobrauerei_kaltenberg-konig_ludwig_dunkel,0,0,244743143424,"{""name"":""König Ludwig Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_ludwig_schlobrauerei_kaltenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-belhaven_brewery-twisted_thistle_india_pale_ale,0,0,244359233537,"{""name"":""Twisted Thistle India Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
-crested_butte_brewery_pub-red_lady_ale,0,0,244491747329,"{""name"":""Red Lady Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crested_butte_brewery_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-breznak-breznak_dunkles_dark,0,0,244491157506,"{""name"":""Breznak Dunkles/Dark"",""abv"":3.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breznak"",""updated"":""2010-07-22 20:00:20"",""description"":""Very good dark beer. Not as heavy as stout."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,41,1
-great_lakes_brewing-commodore_perry_ipa,0,0,244753039360,"{""name"":""Commodore Perry IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A medium-bodied and well hopped India Pale Ale with a dry, fruity aftertaste."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-titletown_brewing-english_esb,0,0,245108637697,"{""name"":""English ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-summit_brewing-extra_pale_ale,0,0,245108965376,"{""name"":""Extra Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
-mcmenamins_mill_creek-terminator_stout,0,0,244865826817,"{""name"":""Terminator Stout"",""abv"":6.45,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":""Black as the darkest night, rich as the most decadent dessert, Terminator is for the true stout lover. This is a full bodied and flavor packed ale which draws it's robust complexity from kiln-baked specialty grains. Look for a wide array of toasted, chocolate, nutty and coffee-like flavors in every pint! The devoted swear by it, and it remains one of our top selling ales year after year."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-le_cheval_blanc-apocalypse_buckwheat_ale_coup_de_grisou,0,0,244743602177,"{""name"":""Apocalypse Buckwheat Ale / Coup de Grisou"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""le_cheval_blanc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-bamberger_mahr_s_bru-der_weisse_bock,0,0,244360347648,"{""name"":""Der Weisse Bock"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,9,1
-saint_louis_brewery_schlafy_tap_room,0,0,244991524866,"{""name"":""Saint Louis Brewery / Schlafy Tap Room"",""city"":""Saint Louis"",""state"":""Missouri"",""code"":""63103"",""country"":""United States"",""phone"":""1-314-241-2337"",""website"":""http://www.schlafly.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2100 Locust Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.633,""lon"":-90.21}}",1,26,1
-crane_river_brewpub_and_cafe-platte_valley_esb,0,0,244492468227,"{""name"":""Platte Valley ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-egan_brewing-pride_of_de_pere,0,0,244624916480,"{""name"":""Pride of De Pere"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-barley_john_s_brewpub-wit,0,0,244358971392,"{""name"":""Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-brasserie_de_blaugies-la_moneuse,0,0,244358512643,"{""name"":""La Moneuse"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_blaugies"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-abita_brewing_company-abbey_ale,0,0,244377845760,"{""name"":""Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:51:39"",""description"":""Abbey Ale is a strong malty ale brewed in the style of the Trappist Monks. 22oz bottles only"",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,52,1
-bt_mcclintic_beer_company,0,0,244474511363,"{""name"":""BT McClintic Beer Company"",""city"":""Beloit"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.5083,""lon"":-89.0318}}",1,1,1
-foster_s_australia_ltd-foster_s_special_bitter,0,0,244626358273,"{""name"":""Foster's Special Bitter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""foster_s_australia_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""http://www.fostersbeer.com/home.aspx?fullbrowser=h"",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,46,1
-santa_fe_brewing_company,0,0,244991983616,"{""name"":""Santa Fe Brewing Company"",""city"":""Santa Fe"",""state"":""New Mexico"",""code"":""87508"",""country"":""United States"",""phone"":""505.424.3333"",""website"":""http://www.santafebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""35 Fire Place""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.5966,""lon"":-106.052}}",1,27,1
-bullfrog_brewery-edgar_i_p_a,0,0,244490895360,"{""name"":""Edgar I.P.A."",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""As the story goes, I was redesigning our I.P.A. to be bigger and better but as it came together it started to take on a life of its own. After much deliberation and several pints of our new creation we decided to name him after the master of macabre, Edgar Allen Poe, as a tribute to his aptly named short story \""HOP FROG.\"" As Edgar fermented and spewed his almost abusive hop aroma throughout the pub, his legend and our thirst grew until finally one day, he was released into the world. We hope Edgar amuses you as much as he has us but stay on his good side because much like the story, this Hop Frog bites back!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
-northwoods_brewpub_grill-bubba,0,0,244865630208,"{""name"":""Bubba"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-amherst_brewing_company-righteous_red,0,0,244359757826,"{""name"":""Righteous Red"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Reddish amber in color, mild and malty with hop aroma and finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-barley_john_s_brewpub-old_eight_porter,0,0,244359495681,"{""name"":""Old Eight Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-brasserie_de_silly-la_divine_double_blond,0,0,244358381568,"{""name"":""La Divine Double Blond"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-crane_river_brewpub_and_cafe-oktoberfest_ale,0,0,244494499840,"{""name"":""Oktoberfest Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
-brasserie_thiriez-xtra,0,0,244473921536,"{""name"":""XTra"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_thiriez"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-bbc_brewing_co_llc,0,0,244358709248,"{""name"":""BBC Brewing Co., LLC"",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40202"",""country"":""United States"",""phone"":""1-502-584-2739"",""website"":""http://www.bluegrassbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bluegrass Brewing Co is proud to be the largest microbrewery located in the state of Kentucky. Reaching back over one hundred years, the city of Louisville has a rich and complex brewing history; a history that has provided BBC with a strong foundation on which to build and grow. It is a challenge we enthusiastically look forward to everyday. Led by our fearless brew master David Pierce who has been brewing award winning BBC beers for over fourteen years, our brewing philosophy is an audacious style that allows us to work diligently with the entire palette of malts and hops. This diligence and discipline is carefully brought to every batch that is brewed at Bluegrass Brewing Co. To truly enjoy life you have to love what you do�and we love brewing. Our sole focus relies on consistency and producing the best beer available. We hope that you will taste that bold style in every BBC beer that you drink. Enjoy great craft beer wherever you live and remember this most important piece of advice: Don't Buy Beer From Strangers . . . Support Your Local Brewery!"",""address"":[""636 East Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2546,""lon"":-85.7401}}",1,4,1
-lakefront_brewery,0,0,244743143425,"{""name"":""Lakefront Brewery"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53212"",""country"":""United States"",""phone"":""1-414-372-8800"",""website"":""http://www.lakefrontbrewery.com/index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Started in 1987, the microbrewery located on the Milwaukee River has become a Milwaukee landmark. Its rich history includes partnerships with local taverns, preservation of local historical pieces, unique tours, family style dining options and most importantly, great beer. President Russ Klisch said it all started with his brother, Jim. Jim expressed interest in beer making near his birthday and Russ humored him by purchasing him a book on the subject. Jim read the book and brewed the beer. Although not known, according to Russ, as a gourmet cook, Jim made a good beer. Russ was impressed and decided he could do it better. In short, sibling competitiveness and common interest lead both to entering contests in beer making. They both received awards, and family and friends encouraged them to start the business. Their family had roots in the beer industry as well. Their grandfather worked for Schlitz driving a street sweeper and a truck. Russ Klisch remembers him bringing home short fills to his dad. He recalls, even as a kid, that it was a cool job if you got to bring beer home at night. Taverns were also owned by several family members. With that family history and their common interest in beer making, the brothers started their business. They decided to start small. Initially, they bought an old pizza bakery building down the street from their home in Riverwest. They liked the location and the fact that they could walk there from home. They sold their first barrel on December 2, 1987. They stayed at that location until winter of 1998."",""address"":[""1872 North Commerce Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0547,""lon"":-87.9053}}",1,22,1
-bell_s_brewery_inc-two_hearted_ale,0,0,244359233538,"{""name"":""Two Hearted Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ale style well suited for Hemingway-esque trips to the Upper Peninsula. American malts and enormous hop additions give this beer a crisp finish and incredible floral hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,6,1
-cricket_hill-fall_festivus_ale,0,0,244491747330,"{""name"":""Fall Festivus Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-12-06 13:12:47"",""description"":""Our Fall release is a harvest Ale with a lighter amber color and a beige head with good retention. There is a good balance of earthy malt and a blend of floral and pine hops in the nose. Biscuit notes mixing with caramel sweetness.do their job to complement the rest of the flavors.This is an enjoyable seasonal for sure!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
-brouwerij_boon-kriek,0,0,244491223040,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,41,1
-green_bay_brewing,0,0,244753039361,"{""name"":""Green Bay Brewing"",""city"":""Green Bay"",""state"":""Wisconsin"",""code"":""54303"",""country"":""United States"",""phone"":""1-888-604-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""313 Dousman Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5189,""lon"":-88.0196}}",1,47,1
-triple_rock_brewery-porter,0,0,245108637698,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triple_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-tailgate_beer-tailgate_light,0,0,245108965377,"{""name"":""Tailgate Light"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Why settle for a watered down version of delicious barley and hops when the TailGate Beer Light will make you a convert to the world of light ales. Eat hardy, and enjoy a light beer with serious flavor, lower calories and the most serious attention to the powers that flavor beer. A nose of citrus and spice with a tongue of vanilla are just a few of the very unique flavors to grace your senses in this Light Ale. This is the light beer lovers of beer have been waiting for. This is not a watered down version of a good idea."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,25,1
-mendocino_brewing_ukiah,0,0,244865826818,"{""name"":""Mendocino Brewing - Ukiah"",""city"":""Ukiah"",""state"":""California"",""code"":""95482"",""country"":""United States"",""phone"":""1-707-463-2627"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1601 Airport Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1326,""lon"":-123.201}}",1,21,1
-liefmans_breweries-vondel,0,0,244743602178,"{""name"":""Vondel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-barley_creek_brewing-superhop_ale,0,0,244360347649,"{""name"":""Superhop Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-saxer_brewing-jack_frost_winter_doppelbock,0,0,244991590400,"{""name"":""Jack Frost Winter Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saxer_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
-cricket_hill,0,0,244492533760,"{""name"":""Cricket Hill"",""city"":""Fairfield"",""state"":""New Jersey"",""code"":""7004"",""country"":""United States"",""phone"":""973-276-9415"",""website"":""http://www.crickethillbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We believe that New Jersey is starting to learn what the rest of the country already knows; that local microbrews are some of the best beers in the world! Finally, curious beer drinkers are stepping out from under the mind-numbing barrage of large brewery advertising and deciding for themselves what they like. Our beers are designed for those curious drinkers. The large breweries use fillers in their beer; Corn or Rice are the most frequently used. Most good beer should be all Barley, in the same way that good hamburgers are all beef. Barley is expensive and the more fillers that are used, the better the profits! Cricket Hill Beers are 100% Barley as are most great beers. Please take the time to taste different local beers. I am certain that those who decide not to let television dictate what they drink are ready for a wonderful adventure into the world of Beer!"",""address"":[""24 Kulick Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8726,""lon"":-74.2964}}",1,44,1
-engine_house_9-firehouse_red,0,0,244624916481,"{""name"":""Firehouse Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-bass_brewers-bass_pale_ale,0,0,244358971393,"{""name"":""Bass Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bass_brewers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,5,1
-brasserie_des_gants-saison_voisin,0,0,244358512644,"{""name"":""Saison Voisin"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_gants"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-abita_brewing_company-purple_haze,0,0,244377911296,"{""name"":""Purple Haze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,52,1
-climax_brewing_copmany-climax_barleywine_style_ale,0,0,244474576896,"{""name"":""Climax Barleywine-Style Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed for our 10th Anniversary, the Barleywine is a bottle conditioned ale that's meant to be laid down and enjoyed for years to come. Up front it has a hop nose and hop flavor on the tongue that fades into malty overtones with flavors of vanilla that go into chocolate. As it has aged, we've noticed flavors of dates and raisins as well."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,1,1
-founders_hill_brewing-hidden_river_red_ale,0,0,244626358274,"{""name"":""Hidden River Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-scuttlebutt_brewing-porter,0,0,244991983617,"{""name"":""Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,27,1
-bullfrog_brewery-susquehanna_oatmeal_stout,0,0,244490895361,"{""name"":""Susquehanna Oatmeal Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, burly Oatmeal Stout full of chocolate, caramelized malt and coffee flavors. This stout has a rich mouthfeel and a smooth, roasty finish."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,40,1
-oggi_s_pizza_and_brewing_vista-california_gold,0,0,244865630209,"{""name"":""California Gold"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
-anheuser_busch-michelob_beer,0,0,244359823360,"{""name"":""Michelob Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Michelob is a malty and full-bodied lager with an elegant European hop profile.\"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-bayern_brewing-dancing_trout_ale,0,0,244359495682,"{""name"":""Dancing Trout Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayern_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-brasserie_ellezelloise,0,0,244474642432,"{""name"":""Brasserie Ellezelloise"",""city"":""Ellezelles"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-068-54-31-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Guinaumont 75""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7428,""lon"":3.6875}}",1,2,1
-crooked_river_brewing-original_esb,0,0,244494499841,"{""name"":""Original ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crooked_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-brauhaus_sternen-huusbier_schwarz,0,0,244473987072,"{""name"":""Huusbier Schwarz"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,0,1
-belhaven_brewery-scottish_ale,0,0,244358709249,"{""name"":""Scottish Ale"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty and hoppy, we at Belhaven love the classic Scottish Ale and we've been brewing it longer than any of the other beers we produce. Delivering a sweet, smooth and creamy finish, Scottish Ale has a stunning ruby colour in the glass. Magic."",""style"":""Scottish-Style Light Ale"",""category"":""British Ale""}",1,4,1
-liberty_steakhouse_and_brewery-amber_waves,0,0,244743208960,"{""name"":""Amber Waves"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-bellows_brew_crew-steam_lager,0,0,244359299072,"{""name"":""Steam Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-devil_mountain_brewing,0,0,244624457728,"{""name"":""Devil Mountain Brewing"",""city"":""Cincinnati"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.1361,""lon"":-84.5031}}",1,42,1
-brouwerij_de_keersmaeker,0,0,244491223041,"{""name"":""Brouwerij De Keersmaeker"",""city"":""Kobbegem"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-454-11-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lierput 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9098,""lon"":4.2505}}",1,41,1
-grumpy_troll_restaurant_and_brewery-rye_bock,0,0,244753039362,"{""name"":""Rye Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,47,1
-triumph_brewing_of_new_hope-kellerbier,0,0,245108703232,"{""name"":""Kellerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_new_hope"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
-taiwan_tobacco_and_wine_monopoly_board-beer,0,0,245108965378,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taiwan_tobacco_and_wine_monopoly_board"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-midnight_sun_brewing_co-obliteration_v,0,0,244865892352,"{""name"":""Obliteration V"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration V is yet another exciting Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Living up to its name, Obliteration V finishes with poignant bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,21,1
-live_oak_brewing-liberation_ale,0,0,244866678784,"{""name"":""Liberation Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With about 6.0% ABV, this one will surely warm the ol' gullet during a cold central Texas winter - both days! Our India Pale Ale (IPA) is light in color and strong in hop character. Dry hopping with Cascade hops, gives this winter favorite a delicious citrus note reminiscent of a Texas Ruby Red. Yes, it's warming but you don't need to be huddled around the furnace to enjoy this one! IPA fans really love this ale during a beautiful Texas winter on the porch or indoors. Available December - April"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
-bethlehem_brew_works,0,0,244360347650,"{""name"":""Bethlehem Brew Works"",""city"":""Bethlehem"",""state"":""Pennsylvania"",""code"":""18018"",""country"":""United States"",""phone"":""610.882.1300"",""website"":""http://www.thebrewworks.com/bethlehem-brew-works"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established on April 15, 1998 by the Fegley Family, Bethlehem Brew Works successfully captured the essence of Bethlehem's steel industry in a 250 seat brewpub. Signature beers include Steelworkers' Oatmeal Stout, Valley Golden ale, and the award winning Fegley's ESB. In addition, three seasonal taps have been frequented with beers ranging from Pale Ales and Wheats to Pumpkin Ale and Belgian Lambics. Accompanying the six beers brewed right in the restaurant is a full bar specializing in single malt scotches, small batch bourbons, and specialty martinis. Open seven days a week, BBW offers lunch and dinner featuring many items which incorporate the handcrafted beer into their recipes. Golden Ale Hummus, Beer and Cheese Soup, Brewschetta, Diamond Plate Pork, and Beer-Marinated Portabella Napoleon are just a hint of what the menu has to offer."",""address"":[""569 Main St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.622,""lon"":-75.382}}",1,9,1
-southend_brewery_and_smokehouse_charleston-scarlet_ale,0,0,245109293056,"{""name"":""Scarlet Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
-delafield_brewhaus-dock_light_golden_ale,0,0,244625113088,"{""name"":""Dock Light Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-erie_brewing_company-railbender_ale,0,0,244624982016,"{""name"":""Railbender Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Erie, Pennsylvania was an important railroad hub in the mid–nineteenth century, the city being the site where three sets of track gauges met. Railbender Ale, Erie Brewing Co.’s flagship ale, named after the laborers who laid the railroad tracks is brewed with pride, strength and purity symbolic of Erie’s historic railroad’s and railroad workers. Railbender, a strong Scottish style ale smooth malt flavor and astonishing drinkability will have you \""Hopping on the train and riding off the rails.\"" All Aboard!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,43,1
-belhaven_brewery-wee_heavy,0,0,244359036928,"{""name"":""Wee Heavy"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,5,1
-brasserie_ellezelloise-la_quintine_ambree_amber,0,0,244474970112,"{""name"":""La Quintine Ambrée / Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-aktienbrauerei_kaufbeuren-jubilaums_german_pils,0,0,244377911297,"{""name"":""Jubiläums German Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aktienbrauerei_kaufbeuren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-coastal_fog_brewing,0,0,244474576897,"{""name"":""Coastal Fog Brewing"",""city"":""Concord"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.978,""lon"":-122.031}}",1,1,1
-fox_river_brewing_1-uber_sticke_altbier,0,0,244626423808,"{""name"":""Über-Sticke Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,46,1
-sea_dog_brewing_company-sea_dog_blue_paw_wheat,0,0,244991983618,"{""name"":""Sea Dog Blue Paw Wheat"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sea_dog_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our unique contribution to the fruit ale category features the nutty quench of wheat ale combined with the delightful aromatics and subtle fruit flavor contributed by Maine wild blueberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
-cedar_brewing-oktoberfest,0,0,244490895362,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
-ohio_brewing-verich_gold,0,0,244865630210,"{""name"":""Verich Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-anheuser_busch-michelob_honey_lager,0,0,244359823361,"{""name"":""Michelob Honey Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-bear_republic_brewery-racer_x,0,0,244359495683,"{""name"":""Racer X"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This bold winter ale follows English brewing traditions, but with our California twist. Bold hops, but balanced ... It's a double IPA!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
-brauereigasthof_adler-zwickelbier,0,0,244474642433,"{""name"":""Zwickelbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauereigasthof_adler"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-daleside_brewery-ripon_jewel_ale,0,0,244494499842,"{""name"":""Ripon Jewel Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-brouwerij_de_achelse_kluis-trappist_extra,0,0,244473987073,"{""name"":""Trappist Extra"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-bell_s_brewery_inc-the_oracle_dipa,0,0,244358709250,"{""name"":""The Oracle DIPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A double IPA that is sure to make you as all-knowing as Pythia. It’s just a matter of interpretation."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,4,1
-loaf_and_stein_brewing-blonde,0,0,244866285568,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-big_ridge_brewing-lager,0,0,244359299073,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
-dick_s_brewing-bottleworks_ipa,0,0,244624457729,"{""name"":""Bottleworks IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,42,1
-bullfrog_brewery-fast_eddies_pale_ale,0,0,244491223042,"{""name"":""Fast Eddies Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named in honor of Ed Kiessling, the worlds greatest contractor. This American pale ale is assertively hopped and dangerously drinkable. Hopheads rejoice!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-hoffbrau_steaks_brewery_1,0,0,244753104896,"{""name"":""Hoffbrau Steaks Brewery #1"",""city"":""Addison"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.9618,""lon"":-96.8292}}",1,47,1
-unibroue-1837,0,0,245108703233,"{""name"":""1837"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""1837 is a blonde beer that is slightly cloudy. It contains 7% alcohol and is refermented in the bottle. Following the brewing tradition of the great abbey beers, it is made with a blend of Quebec-grown raw wheat, lightly roasted barley and a hint of spices. It is a truly refreshing beer."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,24,1
-tennent_caledonian_brewery,0,0,245109030912,"{""name"":""Tennent Caledonian Brewery"",""city"":""Glasgow"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0141)-552-6552"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""161 Duke Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.8593,""lon"":-4.2324}}",1,25,1
-mississippi_brewing_co-mississippi_mud_black_tan,0,0,244865892353,"{""name"":""Mississippi Mud Black & Tan"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mississippi_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A-It's got a nice dark tan texture to it. The description on the bottle says it all.\r\n\r\nS-It's got a coffee like smell to it. It smells pretty good.\r\n\r\nT- It tastes a tad like Bass with a hint of coffee to it. At least to me it had a coffee taste. It's got a nice even taste. It's not too strong and not too weak. It's a happy medium.\r\n\r\nM-It feels good when swallowing. It leaves a mild aftertaste but it's a good aftertaste.\r\n\r\nD-Well I drank the whole jug w/ no problem and enjoyed myself so that spoke for itself.\r\n\r\nOverall, I recommend this beer. If you find it, it's worth having. It goes well when watching a movie too.\r\n\r\nServing type: bottle""}",1,21,1
-long_trail_brewing_co-long_trail_ale,0,0,244866744320,"{""name"":""Long Trail Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Long Trail Ale is a full-bodied amber ale modeled after the \""Alt-biers\"" of Düsseldorf, Germany."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,23,1
-bibiana_brewing,0,0,244360413184,"{""name"":""Bibiana Brewing"",""city"":""Urbana"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.1106,""lon"":-88.2073}}",1,9,1
-spoetzl_brewery-shiner_bohemian_black_lager,0,0,245109358592,"{""name"":""Shiner Bohemian Black Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-desnoes_geddes_ltd-red_stripe_lager_beer,0,0,244625113089,"{""name"":""Red Stripe Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""desnoes_geddes_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-estes_park_brewery-long_s_peak_raspberry_wheat,0,0,244624982017,"{""name"":""Long's Peak Raspberry Wheat"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is one of our most popular beers. It is a light and refreshing raspberry-flavored wheat ale. We use pure raspberry extract to give this beer its fruity aroma and flavor."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,43,1
-berliner_kindl_schultheiss_brauerei-original_berliner_weisse,0,0,244359036929,"{""name"":""Original Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""berliner_kindl_schultheiss_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-brauerei_und_altbierkche_pinkus_mller-obergarig_munster_alt,0,0,244475035648,"{""name"":""Obergärig / Münster Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
-anheuser_busch-michelob_dunkel_weisse,0,0,244377976832,"{""name"":""Michelob Dunkel Weisse"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Dunkel Weisse fills a glass like few beers can. The pour releases banana and clove aromas. Roasted malt flavor is complemented by caramel and chocolate undertones. Then a crisp finish refreshes the palate. Undeniable proof that brewing is truly an art."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,52,1
-coronado_brewing_company-mermaid_red,0,0,244474576898,"{""name"":""Mermaid Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
-full_sail_brewing_1-nugget,0,0,244626489344,"{""name"":""Nugget"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
-sierra_nevada_brewing_co-sierra_nevada_imperial_stout,0,0,244991983619,"{""name"":""Sierra Nevada Imperial Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,27,1
-cervecera_nacional-balboa_cerveza_pilsner,0,0,244490960896,"{""name"":""Balboa Cerveza Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_nacional"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
-oriental_brewery-ob_lager,0,0,244865630211,"{""name"":""OB Lager"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oriental_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""OB Lager is a pale lager available in cans and bottles, and served on draft in Korea."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
-asahi_breweries,0,0,244359823362,"{""name"":""Asahi Breweries"",""city"":""Tokyo"",""state"":""Kanto"",""code"":"""",""country"":""Japan"",""phone"":""81-(03)-5608-5129"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23-1 Azumabashi 1-chome""]}",1,8,1
-bear_republic_brewery-red_rocket_ale,0,0,244359561216,"{""name"":""Red Rocket Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The brew of choice for mountain bikers, and adventurous types worldwide. (Are you excited now!) This fiery red ale is not for the weak at heart. It originally started out as a Scottish red ale but has taken on flavors of its own. This is a very complex recipe using five different grains to achieve its unique flavor. The caramel malt used is a mixture of Belgian Caravienne and Hugh Bairds Crystal malts. Red Rocket is a full bodied, hoppy brew which finishes on the pallet with caramel malts. Centennial and Cascade hops are used for bittering and aroma.2004 L.A. Commercial Brewing Competition, Gold Medal Winner; 2004 West Coast Commercial Brewers Competition, First Place; 2003 California State Fair, Gold MedalWinner; 2002 California State Fair, Silver Medal Winner; 2001 California State Fair Gold Medal Winner; 2001 Real Ale Festival, Chicago, Bronze Medal Winner; 2000 California State Fair, Bronze Medal Winner; 1999 Great American Beer Festival, Silver Medal Winner; 1998 Great American Beer Festival, Silver Medal Winner - og 1.067, ABV 6.8%, IBU 65+."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-broad_ripple_brewing-ipa,0,0,244474707968,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,2,1
-dc_brau-the_public,0,0,244626948096,"{""name"":""The Public"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dc_brau"",""updated"":""2011-08-08 19:07:15"",""description"":""The Public"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-brouwerij_oud_beersel,0,0,244474052608,"{""name"":""Brouwerij Oud Beersel"",""city"":""Beersel"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Laarheiestraat 230""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7586,""lon"":4.3012}}",1,0,1
-bellows_brew_crew,0,0,244358709251,"{""name"":""Bellows Brew Crew"",""city"":""Watertown"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.1947,""lon"":-88.729}}",1,4,1
-mad_anthony_brewing-red,0,0,244866351104,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-brasserie_brouwerij_cantillon-iris_1996,0,0,244359299074,"{""name"":""Iris 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,6,1
-dieu_du_ciel-peche_mortel,0,0,244624523264,"{""name"":""Péché Mortel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dieu_du_ciel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-c_b_potts_of_cheyenne-big_horn_bluesberry,0,0,244491288576,"{""name"":""Big Horn Bluesberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
-inveralmond_brewery-lia_fail_stone_of_destiny_ale,0,0,244753104897,"{""name"":""Lia Fail Stone of Destiny Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""inveralmond_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-upstream_brewing_old_market-blackstone_stout,0,0,245108768768,"{""name"":""Blackstone Stout"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Bold with a soft finish, our darkest beer has plenty of malt flavor with undertones of coffee and chocolate. The addition of oatmeal to the brew adds extra smoothness and a thick creamy head."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
-thirsty_dog_brewing-airship_light,0,0,245109030913,"{""name"":""Airship Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A blonde ale that is very light in color and body with no bitterness. A thirst quenching, American light-bodied blonde ale."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,25,1
-mogollon_brewing_company-heffevonom_bavarian_wheat,0,0,244865957888,"{""name"":""Heffevonom Bavarian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A truly delicious beer, Heffevenom is a medium bodied, lightly hopped wheat beer brewed in the true Bavarian tradition. Our brewers combine mountain pure water, select wheat and domestic malted grain, hops and yeast to create a highly refreshing ale with a pronounced banana and clove bouquet. Perfect with a slice of lemon as garnish."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
-long_valley_pub_brewery-grist_mill_golden,0,0,244866744321,"{""name"":""Grist Mill Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-bootleggers_steakhouse_and_brewery-irish_red,0,0,244360413185,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-sports_city_cafe_brewery-red_ale,0,0,245109358593,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-dockside_brewing-haupenthal_hefeweizen,0,0,244625178624,"{""name"":""Haupenthal Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,44,1
-flatlander_s_restaurant_brewery-eighty_shilling_ale,0,0,244624982018,"{""name"":""Eighty Shilling Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-abhi_brewery-abhi_beer,0,0,244367818752,"{""name"":""Abhi beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abhi_brewery"",""updated"":""2011-09-27 00:36:14"",""description"":"""",""style"":""Bamberg-Style Bock Rauchbier"",""category"":""German Lager""}",1,28,1
-big_sky_brewing-ipa,0,0,244359036930,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In Montana, many classic memories are made right after someone says, “Hold my beer and watch this.” These bold, assertive moments deserve a bold, assertive beer – Big Sky IPA. A distinct hop presence and malty backbone will leave you refreshed and ready for your moment of glory. Hang on tight and enjoy the ride."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
-brew_makers-rosed_porter,0,0,244475101184,"{""name"":""Rosed Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brew_makers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
-appleton_brewing-adler_brau_ginseng_lager,0,0,244377976833,"{""name"":""Adler Bräu Ginseng Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-de_proef_brouwerij-k_o_blond_beer,0,0,244606500864,"{""name"":""K-O Blond Beer"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-gilde_brauerei-pilsener,0,0,244626489345,"{""name"":""Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gilde_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-sioux_falls_brewing-canary_wheat,0,0,244992049152,"{""name"":""Canary Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
-coopers_brewery-coopers_mild_ale,0,0,244490960897,"{""name"":""Coopers Mild Ale"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This ale is the product of brewing with a selection of barley and wheat malt, and with no added sugar. This traditional brewing approach provides the smooth malt character which is balanced by a triple hopping of the brew with Pride of Ringwood and Saaz hops. The brew has fermented similarly to its stablemates Pale and Sparkling Ale, with the customary secondary fermentation in the bottle and can."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,40,1
-port_brewing_company-shark_attack_double_red_ale,0,0,244988772352,"{""name"":""Shark Attack Double Red Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
-aspen_brewing_company-conundrum_red_ale,0,0,244359888896,"{""name"":""Conundrum Red Ale"",""abv"":7.0,""ibu"":65.0,""srm"":13.0,""upc"":0,""type"":""beer"",""brewery_id"":""aspen_brewing_company"",""updated"":""2010-11-08 08:45:46"",""description"":""Have you ever heard of an ESB? In most cases, it stands for Extra Special Bitter, and man is this red extra special. Conundrum walks the line between a malt-centric sweet ale and a hop-centric bitter ale so well, it"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-belhaven_brewery,0,0,244359561217,"{""name"":""Belhaven Brewery"",""city"":""East Lothian"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0)1368-862734"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Spott Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":55.997,""lon"":-2.5098}}",1,7,1
-broad_ripple_brewing,0,0,244474707969,"{""name"":""Broad Ripple Brewing"",""city"":""Indianapolis"",""state"":""Indiana"",""code"":""46220"",""country"":""United States"",""phone"":""1-317-253-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""842 East 65th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.8735,""lon"":-86.1427}}",1,2,1
-diamondback_brewery,0,0,244627013632,"{""name"":""Diamondback Brewery"",""city"":""Cleveland"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,48,1
-cheshire_cat_brewery-arrogant_brit,0,0,244474052609,"{""name"":""Arrogant Brit"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-21st_amendment_brewery_cafe-oyster_point_oyster_stout,0,0,244379222016,"{""name"":""Oyster Point Oyster Stout"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep black color. Chocolate milk color head, providing an array of Belgian lace. Toffee and light roasty aromas and flavors. A malty sweet taste is evident but, this rich oatmeal based stout finishes dry. Made with 20 lbs. of oysters, in the boil, from our good friends at Hog Island Oyster Company."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
-birrificio_torrechiara,0,0,244358709252,"{""name"":""Birrificio Torrechiara"",""city"":""Torrechiara"",""state"":"""",""code"":"""",""country"":""Italy"",""phone"":""39-0521355113"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Strada Pilastro 35""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.6601,""lon"":10.2814}}",1,4,1
-main_street_brewing,0,0,244866351105,"{""name"":""Main Street Brewing"",""city"":""Dallas"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.803,""lon"":-96.7699}}",1,22,1
-brauerei_wieselburg,0,0,244476084224,"{""name"":""Brauerei Wieselburg"",""city"":""Wieselburg"",""state"":"""",""code"":""3250"",""country"":""Austria"",""phone"":""+43-(0)7416-501-0"",""website"":""http://www.wieselburger.at"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.1306,""lon"":15.1386}}",1,6,1
-dieu_du_ciel,0,0,244624523265,"{""name"":""Dieu du Ciel"",""city"":""Montréal"",""state"":""Quebec"",""code"":"""",""country"":""Canada"",""phone"":""1-514-490-9555"",""website"":""http://www.dieuduciel.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""29 Laurier Ouest""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5228,""lon"":-73.5928}}",1,42,1
-caldera_brewing,0,0,244491288577,"{""name"":""Caldera Brewing"",""city"":""Ashland"",""state"":""Oregon"",""code"":""97520"",""country"":""United States"",""phone"":""1-541-482-4677"",""website"":""http://www.calderabrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""540 Clover Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1844,""lon"":-122.663}}",1,41,1
-jack_s_brewing-boys_of_summer_wheat,0,0,244753170432,"{""name"":""Boys of Summer Wheat"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-valley_forge_brewing-red_coat_ale,0,0,245108768769,"{""name"":""Red Coat Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_forge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
-thirstybear_brewing-golden_vanilla_ale,0,0,245109030914,"{""name"":""Golden Vanilla Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-moosejaw_pizza_dells_brewing_company-schmitz_pale_ale_no_5,0,0,244865957889,"{""name"":""Schmitz Pale Ale No. 5"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
-lowenbrau_brauerei-schwarze_weisse,0,0,244866744322,"{""name"":""Schwarze Weisse"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-brasserie_de_la_senne-zinnebir_xmas,0,0,244360413186,"{""name"":""Zinnebir Xmas"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-sprecher_brewing-sprecher_abbey_triple,0,0,245109358594,"{""name"":""Sprecher Abbey Triple"",""abv"":8.41,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Trappist triple yeast culture balanced with the finest imported pale barley, Belgian aromatic malt and oats, gives this golden ale a fruity bouquet and a light refined taste."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,26,1
-duck_rabbit_craft_brewery-duck_rabbit_milk_stout,0,0,244625178625,"{""name"":""Duck-Rabbit Milk Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Duck-Rabbit Milk Stout is a traditional full-bodied stout brewed with lactose (milk sugar). The subtle sweetness imparted by the lactose balances the sharpness of the highly roasted grains which give this delicious beer its black color."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,44,1
-flour_city_brewing-ironhead_porter_old_no_3,0,0,244624982019,"{""name"":""Ironhead Porter Old No. 3"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flour_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-america_s_brewing-schwartzbier,0,0,244367818753,"{""name"":""Schwartzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,28,1
-brasserie_de_l_abbaye_de_scourmont_trappistes-premiere_red,0,0,244359102464,"{""name"":""Première (Red)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_de_scourmont_trappistes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-brouwerij_abdij_der_trappisten_van_westmalle-westmalle_trappist_dubbel,0,0,244475166720,"{""name"":""Westmalle Trappist Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_der_trappisten_van_westmalle"",""updated"":""2010-07-22 20:00:20"",""description"":""Westmalle Dubbel is a dark, reddish-brown Trappist beer with a secondary fermentation in the bottle. The creamy head has the fragrance of special malt and leaves an attractive lace pattern in the glass. The flavour is rich and complex, herby and fruity with a fresh-bitter finish. It is a balanced quality beer with a soft feel in the mouth and a long, dry aftertaste. The Dubbel contains 7% alcohol.""}",1,3,1
-augustiner_brau_munchen,0,0,244378042368,"{""name"":""Augustiner-Bräu München"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-519940"",""website"":""http://www.augustiner-braeu.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Augustiner Bräu is a brewery located in Munich, Germany. Established in 1328, it is Munich's oldest brewery and produces some of Munich's most popular brands of beer."",""address"":[""Landsberger Strae 35""]}",1,52,1
-delafield_brewhaus-fruhlingzeit_maibock,0,0,244606566400,"{""name"":""Frühlingzeit Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,1,1
-goose_island_beer_company_clybourn-goose_island_imperial_ipa,0,0,244626489346,"{""name"":""Goose Island Imperial IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,46,1
-sly_fox_brewhouse_and_eatery_royersford-royal_weisse,0,0,245109751808,"{""name"":""Royal Weisse"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
-coors_brewing_golden_brewery-zima_clear,0,0,244490960898,"{""name"":""Zima Clear"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Zima is redefining refreshment. Zima flavored malt beverages are a great choice for adult consumers who seek variety and new and different products. Zima was reformulated in 2007 and is available in three citrus-based flavors.\r\n\r\nZima is lighter in carbonation and alcohol content, making it more drinkable and lower in calories than the old formula.""}",1,40,1
-portsmouth_brewery-wheat_wine,0,0,244988772353,"{""name"":""Wheat Wine"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-august_schell_brewing-dark,0,0,244359888897,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-bell_s_brewery_inc,0,0,244359561218,"{""name"":""Bell's Brewery Inc."",""city"":""Galesburg"",""state"":""Michigan"",""code"":""49053"",""country"":""United States"",""phone"":""269.382.2338"",""website"":""http://www.bellsbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In 2003, Bell's proudly opened a new production brewery in nearby Comstock, Michigan. The new brewery has now seen three major additions and encompasses 60,000 square feet of building on a 24 acre site The Quality Assurance department has thrived in the new facilities, implementing procedures and techniques that assure that Bell's is consistently putting out the very best beer possible. Total brewing capacity now stands at 140,000 bbls. At the Kalamazoo Avenue location, an historical rehabilitation has brought about a pleasant architectural change to the city landscape. Our ongoing goal is to brew thoughtfully, creatively and artistically. We strive to bring an authentic and pleasant experience to all of our customers through our unique ales and beers. We look forward to sharing our beers with you."",""address"":[""8938 Krum Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2843,""lon"":-85.4538}}",1,7,1
-brooklyn_brewery-east_india_pale_ale,0,0,244474773504,"{""name"":""East India Pale Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,2,1
-dixie_brewing-blackened_voodoo,0,0,244627013633,"{""name"":""Blackened Voodoo"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixie_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by old-world brewing methods, this bewitching all-malt brew is a darkly rich, exotic lager, crafted with a touch of magical New Orleans spirit."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-clipper_city_brewing_co-below_decks,0,0,244474052610,"{""name"":""Below Decks"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Created to celebrate Clipper City’s 10th Anniversary – extremely limited and “vintage” dated – this extravagantly malty barley wine will show well upon release but continue to evolve for years. Seasonally available in December while supplies last. Voted #1 beer by Mahaffey’s Pub."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,0,1
-alvinne_picobrouwerij,0,0,244379222017,"{""name"":""Alvinne Picobrouwerij"",""city"":""Ingelmunster"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-/-30-55-17"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oostrozebekestraat 114""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.919,""lon"":3.2632}}",1,56,1
-bottom_s_up_brewing,0,0,244358709253,"{""name"":""Bottom's Up Brewing"",""city"":""Pinedale"",""state"":""Wyoming"",""code"":""82941"",""country"":""United States"",""phone"":""1-307-367-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""402 West Pine Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.8666,""lon"":-109.866}}",1,4,1
-maritime_pacific_brewing,0,0,244866351106,"{""name"":""Maritime Pacific Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98107"",""country"":""United States"",""phone"":""1-206-782-6181"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1514 NW Leary Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6637,""lon"":-122.377}}",1,22,1
-brauhaus_onuma-kolsch,0,0,244476084225,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_onuma"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-dogfish_head_craft_brewery-squall_ipa,0,0,244624588800,"{""name"":""Squall IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An unfiltered and 100% bottle-conditioned version of 90 Minute IPA that's dry-hopped with Palisade, Amarillo, Simcoe, Cascade, CTZ, and Willamette hops. Brewed to honor the Rogue Gallery in Portland, Maine, who will also be releasing a DFH designed clothing line in the summer of '09."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,42,1
-cervecera_centro_americana_s_a-moza,0,0,244491288578,"{""name"":""Moza"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_centro_americana_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,41,1
-jasper_ridge_brewery-jasper_brown_ale,0,0,244753170433,"{""name"":""Jasper Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,47,1
-water_tower_brewing,0,0,245747154944,"{""name"":""Water Tower Brewing"",""city"":""Eden Prairie"",""state"":""Minnesota"",""code"":""55344"",""country"":""United States"",""phone"":""1-952-941-8773"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8652,""lon"":-93.4095}}",1,24,1
-thunderhead_brewery-storm_ale,0,0,245109030915,"{""name"":""Storm Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
-murphy_s_wagon_wheel-bock_dark,0,0,244865957890,"{""name"":""Bock Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
-magnolia_pub_and_brewery-krolsch,0,0,244866809856,"{""name"":""Krölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-brasserie_dupont-moinette_blonde,0,0,244477132800,"{""name"":""Moinette Blonde"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-staatliches_hofbrauhaus_in_munchen-starkbier,0,0,245109424128,"{""name"":""Starkbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
-duvel_moortgat-duvel,0,0,244625244160,"{""name"":""Duvel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duvel_moortgat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,44,1
-fox_river_brewing_1-titan_porter,0,0,244625047552,"{""name"":""Titan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-appalachian_brewing_company-kipona_fest,0,0,244367818754,"{""name"":""Kipona Fest"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Oktoberfest style Marzen is a favorite at the famous Bavarian fall beer festivals. The distinct toasted malt flavor of this amber lager finishes quite crisp due to the extensive lagering of this beer. One sip and you’ll swear you’re in Munich.\r\n\r\n\""Kipona\"" is the Indian word for \""sparkling water\"". Each year, over Labor Day weekend, Harrisburg celebrates Kipona with a carnival and festival along the Susquehanna River and on City Island."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,28,1
-brasserie_de_silly-saison,0,0,244359102465,"{""name"":""Saison"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-brouwerij_de_landtsheer-malheur_mm,0,0,244475166721,"{""name"":""Malheur MM"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-ballast_point_brewing,0,0,244378042369,"{""name"":""Ballast Point Brewing"",""city"":""San Diego"",""state"":""California"",""code"":""92110"",""country"":""United States"",""phone"":""1-800-581-2739"",""website"":""http://www.ballastpoint.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Ballast Point Brewing Company is one of San Diego's Premiere Breweries. We started out modestly as Home Brew Mart in 1992. Our goal was to teach others how to brew quality handcrafted beer at home. In 1996 the brewery was installed by New World Brewing Systems in the space behind our retail store and production began in September. In May of 2005 we open our second brewery in Scripps Ranch. We currently distribute five of our favorite beers, Yellowtail Pale Ale, Calico Amber Ale , Big Eye I.P.A., Black Marlin Porter and Wahoo Wheat Beer to a thirsty San Diego. Come to our brewery and we will gladly give you a tour and allow you to sample our newest selection of beers. Currently our beer is available in twelve ounce bottles to 15.5 gallon kegs. We also offer half gallon and gallon glass jugs to go. Kegs are available for rent to the public with a minimum deposit. The name for our brewery comes from the point where Juan Rodriguez Cabrillo first set foot in California. Located on the Point Loma Peninsula, Ballast Point is considered the gateway to San Diego Harbor. Stones from this area were used as ballast in the cargo holds of sailing ships returning to the eastern seaboard. Many New England streets are still lined with the cobblestones brought back from San Diego."",""address"":[""5401 Linda Vista Road #406""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7668,""lon"":-117.195}}",1,52,1
-deschutes_brewery-twilight_ale,0,0,244606566401,"{""name"":""Twilight Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Stretching the longer summer days into Twilight! There is something magical about the time of day that falls between light and dark, the high-desert summer day fading into a warm evening with brilliant skies.\r\n\r\nTwilight Ale is a lighter, but full flavored ale with a balanced malt profile and a harmonious blend of four hops. A final dry hopping of bold Amarillos creates the distinctive finishing touch. Twilight is best enjoyed when chilled and consumed outdoors."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-goose_island_beer_company_fulton_street-india_pale_ale,0,0,244626489347,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-snipes_mountain_microbrewery_restaurant,0,0,245109817344,"{""name"":""Snipes Mountain Microbrewery & Restaurant"",""city"":""Sunnyside"",""state"":""Washington"",""code"":""98944"",""country"":""United States"",""phone"":""1-509-837-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""905 Yakima Valley Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.3284,""lon"":-120.008}}",1,27,1
-corner_pub-weizen,0,0,244491026432,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""corner_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,40,1
-privatbrauerei_gaffel-kolsch,0,0,244988837888,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_gaffel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-avery_brewing_company-reverend_the,0,0,244359888898,"{""name"":""Reverend, The"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian-Style Quadrupel Ale"",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,8,1
-big_boss_brewing_company-bad_penny,0,0,244359626752,"{""name"":""Bad Penny"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_boss_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark brown ale is slightly sweet with a caramel and dark fruit finish. A show case of fine English malts, floor malted the old way. We use pale, chocolate, and crystal malts to produce a complex, but easy drinking dark ale. Very reminescent of northern English ales."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
-brouwerij_de_regenboog,0,0,244474773505,"{""name"":""Brouwerij De Regenboog"",""city"":""Assebroek"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-050/37.38.33"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Astridlaan 134""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.1968,""lon"":3.2527}}",1,2,1
-double_mountain_brewery_taproom-india_red_ale_the_ira,0,0,244627079168,"{""name"":""India Red Ale (The \""IRA\"")"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""The “IRA”, as it’s known around here, marries a ruby red color and rich body with the hop flavors of an IPA. Our unique ale yeast strain adds a delicious layer of complexity. One of the first beers we made, and an enduring favorite."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-coast_range_brewing-desperado_pale_ale,0,0,244474052611,"{""name"":""Desperado Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,0,1
-amherst_brewing_company-raspberry_brown_ale,0,0,244379287552,"{""name"":""Raspberry Brown Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Massatucky Brown Ale with a subtle raspberry flavoring"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,56,1
-boulevard_brewing_company,0,0,244358774784,"{""name"":""Boulevard Brewing Company"",""city"":""Kansas City"",""state"":""Missouri"",""code"":""64108"",""country"":""United States"",""phone"":""1-816-474-7095"",""website"":""http://www.blvdbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2501 Southwest Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.0821,""lon"":-94.5965}}",1,4,1
-michigan_brewing-wheatland_wheat,0,0,244866416640,"{""name"":""Wheatland Wheat"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""True Hefeweizen yeast and malted wheat give this ale its authentic German flavor and aroma. Hints of banana flavor and aroma are present in this medium to full bodied, pale colored cloudy, unfiltered ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-brewery_belle_vue-gueuze,0,0,244476149760,"{""name"":""Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_belle_vue"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,6,1
-dry_gulch_brewing-where_the_helles_albuquerque,0,0,244624588801,"{""name"":""Where The Helles Albuquerque"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dry_gulch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-climax_brewing_copmany-climax_cream_ale,0,0,244491288579,"{""name"":""Climax Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Cream Ale is a light, crisp, yellow ale with hop-notes and citrus flavors. It's a smooth, easy drinking summer beer that's perfect for drinking on hot days and with light fare such as seafood and salads."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,41,1
-jj_bitting_brewing-bad_boy_oktoberfest,0,0,244753170434,"{""name"":""Bad Boy Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,47,1
-weinkeller_brewery_berwyn-amber_ale,0,0,245747154945,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
-titletown_brewing-imperial_ipa,0,0,245109096448,"{""name"":""Imperial IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
-myanmar_brewery_and_distillery-lager_beer,0,0,244866023424,"{""name"":""Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""myanmar_brewery_and_distillery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-manayunk_brewery_and_restaurant-summer_gold,0,0,244866809857,"{""name"":""Summer Gold"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-brauerei_gasthof_zur_krone-pils,0,0,244477132801,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-stoudt_s_brewery-stoudt_s_american_pale_ale,0,0,245109424129,"{""name"":""Stoudt's American Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This uniquely American beer offers a crisp, medium body with a light amber color. Generous additions of Cascade hops provide a refreshing bitterness and vibrant citrus aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
-egan_brewing-toil_and_trubbel_dubbel,0,0,244625244161,"{""name"":""Toil and Trubbel Dubbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-friesisches_brauhaus_zu_jever-pilsener,0,0,244625047553,"{""name"":""Pilsener"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""friesisches_brauhaus_zu_jever"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-appalachian_brewing_company-purist_pale_ale,0,0,244367884288,"{""name"":""Purist Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our light copper pale ale has a delicate malt attribute balanced by an aggressive hop flavor and aroma. Many American micros have developed their own version of this classic English style beer. Our brewers anticipate that you will enjoy their variation. \r\nHikers on the Appalachian Trail are considered \""purist hikers\"" if they cover every inch of the trail during the hike. Our brewers refuse to compromise the quality of our products with the \""purist hiker\"" in mind."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-brauerei_beck-dark,0,0,244475756544,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-brouwerij_van_eecke,0,0,244475166722,"{""name"":""Brouwerij Van Eecke"",""city"":""Watou"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-057-42-20-05"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Douvieweg 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8612,""lon"":2.6615}}",1,3,1
-belfast_bay_brewing_company-mcgovern_s_oatmeal_stout,0,0,244378107904,"{""name"":""McGovern's Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belfast_bay_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,52,1
-dock_street_beer-summer_session,0,0,244606631936,"{""name"":""Summer Session"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth refreshing American Wheat Ale brewed with fresh ginger. This Summer Session is much more exciting than the one you had to sit through in high school."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,1,1
-goose_island_beer_company_fulton_street,0,0,244626554880,"{""name"":""Goose Island Beer Company - Fulton Street"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60612"",""country"":""United States"",""phone"":""1-800-466-7363"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1800 West Fulton Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.8871,""lon"":-87.6721}}",1,46,1
-southern_tier_brewing_co-unearthly_imperial_india_pale_ale,0,0,245109817345,"{""name"":""Unearthly Imperial India Pale Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""At the Southern Tier Brewing Company, vigorously hopped beer is our standard and inspiration. We continue a commitment to innovation with our most aggressive offering yet. Unearthly is a manifestation of the brewer’s craft; skillfully balancing art and the forces of nature to produce a divine liquid. Delicately pour a taste into a fluted glass. Smell the enchanting aromas of the hops waft forward as your first sip divulges this beer’s fervent soul. To underestimate Unearthly is to trifle with the mysteries of the universe, so please consume wisely."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,27,1
-crane_river_brewpub_and_cafe-flaming_crane_chili_beer,0,0,244491026433,"{""name"":""Flaming Crane Chili Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-pyramid_alehouse_brewery_and_restaurant_seattle-amber_weizen,0,0,244988837889,"{""name"":""Amber Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
-bavarian_barbarian_brewing_company-weldspatter_ipa,0,0,244359954432,"{""name"":""Weldspatter IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Weldspatter IPA is not your typical India Pale Ale. First of all, it isn’t as aggressively hopped as many other American versions. Second, it isn’t quite as pale. Balance is a lovely thing in beers and Weldspatter IPA achieves balance without compromising hop presence. The hop flavor and aroma abound, but the bitterness is held in check to give our IPA a pleasant malt character as well."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
-boston_beer_company-longshot_american_pale_ale,0,0,244359626753,"{""name"":""Longshot American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-brouwerij_liefmans-goudenband_1996,0,0,244474773506,"{""name"":""Goudenband 1996"",""abv"":3.98,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-edelweissbrauerei_farny,0,0,244627079169,"{""name"":""Edelweissbrauerei Farny"",""city"":""Kilegg"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7522-/-9788-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Drren 5""]}",1,48,1
-coors_brewing_golden_brewery-killian_s_irish_red,0,0,244474118144,"{""name"":""Killian's Irish Red"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Killian's Irish Red is a traditional lager with an authentic Irish heritage, based on the Killian family's recipe created for the Killian's brewery in Enniscorthy, Ireland in 1864. Coors acquired the rights to brew and market the product in America and Killian's was introduced to the U.S. in 1981.\r\n\r\nKillian's Irish Red derives its distinctive red-amber color and taste from a special caramel malt that has been roasted at a high temperature longer and more slowly than most malts. There are no coloring agents or artificial additives used in brewing Killian's. The brew is known for its rich amber color and thick, creamy head."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
-arcadia_brewing-scotch_ale,0,0,244379287553,"{""name"":""Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,56,1
-brasal_brasserie_allemande-special_amber_lager,0,0,244358774785,"{""name"":""Special Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasal_brasserie_allemande"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
-mill_creek_brewpub,0,0,244866416641,"{""name"":""Mill Creek Brewpub"",""city"":""Walla Walla"",""state"":""Washington"",""code"":""99362"",""country"":""United States"",""phone"":""1-509-522-2440"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""11 North Palouse""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.0697,""lon"":-118.336}}",1,22,1
-bricktown_brewery-vanilla,0,0,244476149761,"{""name"":""Vanilla"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-empyrean_brewing_company-black_jack_stout,0,0,244624588802,"{""name"":""Black Jack Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
-coach_s_norman-ipa,0,0,244491354112,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coach_s_norman"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,41,1
-john_harvard_s_brew_house_harvard_square,0,0,244753235968,"{""name"":""John Harvard's Brew House - Harvard Square"",""city"":""Cambridge"",""state"":""Massachusetts"",""code"":""2138"",""country"":""United States"",""phone"":""1-617-868-3585"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33 Dunster Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3724,""lon"":-71.1193}}",1,47,1
-wells_and_youngs_brewing_company_ltd-young_s_winter_warmer,0,0,245747220480,"{""name"":""Young's Winter Warmer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wells_and_youngs_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""The definitive winter beer and a longtime favourite, Winter Warmer has been making annual appearances on the bar every winter since the 1950s. A rich, ruby-coloured beer, luscious and fullbodied, with a splendid nutty flavour."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,24,1
-tommyknocker_brewery_and_pub-imperial_nut_brown,0,0,245109096449,"{""name"":""Imperial Nut Brown"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-12-20 15:59:17"",""description"":""Commemorating the 10th anniversary of Tommyknocker Brewery, this special brew is meticulously crafted with pure maple syrup, the highest quality chocolate and crystal malts and is accented with the finest blend of European and American hops. Imperial Nut Brown Ale, at 9.8% alcohol by volume, is a bigger, bolder version of their Maple Nut Brown."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
-new_belgium_brewing-saison,0,0,244866023425,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-mckenzie_brew_house-black_lab_stout,0,0,244866875392,"{""name"":""Black Lab Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,23,1
-brauerei_gss-dark_beer_stiftsbrau,0,0,244477198336,"{""name"":""Dark Beer / Stiftsbräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gss"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-sturgeon_bay_brewing-summer_wheat,0,0,245109424130,"{""name"":""Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-abita_brewing_company-abita_purple_haze,0,0,244370309120,"{""name"":""Abita Purple Haze"",""abv"":4.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
-elliott_bay_brewery_and_pub-no_doubt_stout,0,0,244625244162,"{""name"":""No Doubt Stout"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
-full_sail_brewing_1-slip_knot_imperial_ipa_2006,0,0,244625047554,"{""name"":""Slip Knot Imperial IPA 2006"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-appleton_brewing-adler_brau_downtown_brown,0,0,244367884289,"{""name"":""Adler Bräu Downtown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,28,1
-brauerei_beck-st_pauli_girl_special_dark,0,0,244475822080,"{""name"":""St.Pauli Girl Special Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-brouwerij_verhaeghe-duchesse_de_bourgogne,0,0,244475232256,"{""name"":""Duchesse de Bourgogne"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_verhaeghe"",""updated"":""2010-07-22 20:00:20"",""description"":""DUCHESSE DE BOURGOGNE\r\nfrom Brouwerij Verhaeghe is the traditional Flemish red ale. This refreshing ale is matured in oak casks; smooth with a rich texture and interplay of passion fruit, and chocolate, and a long, dry and acidic finish. After the first and secondary fermentation, the beer goes for maturation into the oak barrels for 18 months. The final product is a blend of younger 8 months old beer with 18 months old beer. The average age of the Duchesse de Bourgogne before being bottled is 12 months.""}",1,3,1
-big_rock_brewery,0,0,244378107905,"{""name"":""Big Rock Brewery"",""city"":""Calgary"",""state"":""Alberta"",""code"":""0"",""country"":""Canada"",""phone"":""1-403-720-3239"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5555 76th Avenue SE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9847,""lon"":-113.956}}",1,52,1
-dogfish_head_craft_brewery-75_minute_ipa,0,0,244606631937,"{""name"":""75 Minute IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Johnny Cask has entered the building! We’ve retrofitted a 15 barrel tank to perfectly produce a very special cask conditioned ale (so, we have a little time to play around during winters at the Delaware coast). This beer, known as Dogfish Head 75 Minute IPA is a blend of 60 and 90 Minute IPAs with a special whole leaf cascade dry-hopping session."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
-gray_brewing-cream_ale,0,0,244752515072,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-spoetzl_brewery,0,0,245109882880,"{""name"":""Spoetzl Brewery"",""city"":""Shiner"",""state"":""Texas"",""code"":""77984"",""country"":""United States"",""phone"":""1-800-574-4637"",""website"":""http://www.shiner.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""603 East Brewery Street""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.426,""lon"":-97.1607}}",1,27,1
-dry_gulch_brewing,0,0,244623540224,"{""name"":""Dry Gulch Brewing"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.0845,""lon"":-106.651}}",1,40,1
-pyramid_ales_brewery-pyramid_thunderhead_ipa,0,0,244988903424,"{""name"":""Pyramid Thunderhead IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It took only a couple of rounds of India's finest for the 19th century British Colonists to write home, \""Either send us some good beer or we're outta here.\"" India Pale Ale is what was sent. Originally made extra hoppy to survive the voyage, it's unique flavor also survived the Colonists finicky tastes and became and instant favorite back home.\r\n\r\nPyramid India Pale Ale has the distinctively hoppy flavor and aroma craft beer enthusiasts demand. Abundant helpings of Columbus hops gives this ale an astonishing 67 IBU's - truly a beer for bold tastes! The distinguished Celebrator Beer News aptly named this brew \""hophead nectar\"" (June/July issue, 1998)."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
-big_time_brewing-atlas_amber_ale,0,0,244359954433,"{""name"":""Atlas Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-boston_beer_company-samuel_adams_winter_lager,0,0,244359626754,"{""name"":""Samuel Adams Winter Lager"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Bold and rich, with a touch of holiday spice\r\nThe first thing one notices in a Samuel Adams® Winter Lager is its color: the deep brown of winter. Then comes the magical aroma which promises something special on the tongue. The warm aroma of cinnamon and ginger which blends with the roasty sweetness of the malted barley and hint of citrus from the orange peel. And after that first sip the promise is fulfilled. On the palate Samuel Adams® Winter Lager is rich and full bodied, robust and warming, a wonderful way to enjoy the cold evenings that come with this season."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,7,1
-brouwerij_sterkens-st_paul_triple,0,0,244474773507,"{""name"":""St. Paul Triple"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-elgood_sons-norvig_ale,0,0,244627144704,"{""name"":""Norvig Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elgood_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-copper_kettle_brewery,0,0,244474118145,"{""name"":""Copper Kettle Brewery"",""city"":""Millmont"",""state"":""Pennsylvania"",""code"":""17845"",""country"":""United States"",""phone"":""270-342-1638"",""website"":""http://www.ckbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Copper Kettle Brewery is an up and coming brewery owned by Harold Kerlin and Russ Eisenhuth. We have been independently brewing beer for the past 6 years. In 2006 we won First place in the Sam Adams Longshot contest for the northeast region of the U.S. with our Potbelly Porter. After that we decided to start our own brewery. The Brewery is located in just outside of Laurelton PA. We are a small production brewery using a one barrel brewing system. We hope to produce around 50 barrels a year. At present we are making 4 different styles of beer. A Wheat beer, Porter, Grand Cru, and Belgian Dubbel. All of our beer is unfiltered, and bottle conditioned. Our beers are now available at the Bull Run Inn, Market St., Lewisburg, The Beer Barn, Lewisburg and Wehr's Beverages, Mifflinburg."",""address"":[""339 Fairground Rd""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.8942,""lon"":-77.1971}}",1,0,1
-atwater_block_brewing-vanilla_java_porter,0,0,244379353088,"{""name"":""Vanilla Java Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter made with chocolate malt. We blend it with Vanilla and Java beans, and balance it with U.S. Golding Hops."",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
-512_brewing_company-512_pecan_porter,0,0,244372996096,"{""name"":""(512) Pecan Porter"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Nearly black in color, (512) Pecan Porter is made with Organic US 2-row and Crystal malts along with Baird’s Chocolate and Black malts. Its full body and malty sweetness are balanced with subtle pecan aroma and flavor from locally grown pecans. Yet another true Austin original!"",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
-brasal_brasserie_allemande,0,0,244358774786,"{""name"":""Brasal-Brasserie Allemande"",""city"":""LaSalle"",""state"":""Quebec"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.4289,""lon"":-73.6313}}",1,4,1
-minneapolis_town_hall_brewery-oak_aged_single_malt,0,0,244866482176,"{""name"":""Oak Aged Single Malt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-brouwerij_liefmans-gluhkriek,0,0,244476149762,"{""name"":""Gluhkriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,6,1
-empyrean_brewing_company-dark_german_lager,0,0,244624588803,"{""name"":""Dark German Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-coors_brewing_golden_brewery-blue_moon_belgian_white,0,0,244491354113,"{""name"":""Blue Moon Belgian White"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Blue Moon Belgian White, Belgian-style wheat ale, is a refreshing, medium-bodied, unfiltered Belgian-style wheat ale spiced with fresh coriander and orange peel for a uniquely complex taste and an uncommonly smooth finish.\r\n\r\nThe name \""Belgian White\"" is a reference to the cloudy white, opaque appearance of the beer. \""Belgian White\"" also refers to the style of beer, which has been brewed in Belgium for about 300 years. This type of ale is brewed with malt, wheat and oats. It is unfiltered, which allows protein and yeast to remain suspended in the beer and creates the cloudy appearance. This also adds to the smoothness and full body of the beer.\r\n\r\nPutting a new twist on the lime ritual, Blue Moon is traditionally served with a slice of orange. Blue Moon was launched in 1995."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,41,1
-kalamazoo_brewing-third_coast_ale,0,0,244753235969,"{""name"":""Third Coast Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kalamazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
-yards_brewing-general_washington_tavern_porter,0,0,245747220481,"{""name"":""General Washington Tavern Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""By George, I think we've got it.\r\n\r\nDays of debate and deliberation at Independence Hall were often followed by nights of debate and deliberation (and a few libations) at the City Tavern, where our forefathers would gather to exchange revolutionary ideas.\r\n\r\nRich and warming with a deep garnet hue, the molasses-based Tavern Porter™ reflects Washington's admiration of Philadelphia-style porters and follows a recipe Washington used himself, when brewing beer to satisfy his thirsty field officers.\r\n\r\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.\r\n\r\nHistorical note: Our new brewery is located just blocks away from the site of Robert Hair's brewery, where Washington's favorite Philadelphia Porter was crafted."",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
-trap_rock_restaurant_and_brewery-yorkshire_stout,0,0,245109096450,"{""name"":""Yorkshire Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
-new_glarus_brewing_company-solstice_wheat,0,0,244866023426,"{""name"":""Solstice Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
-middle_ages_brewing-winter_wheat,0,0,244866875393,"{""name"":""Winter Wheat"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Subtle Seasonal spices, in this dark, rich wheat beer are smooth and easy for the discerning palate."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
-brauerei_herrenhausen,0,0,244477198337,"{""name"":""Brauerei Herrenhausen"",""city"":""Hannover"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)511-/-7907-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Herrenhuser Strae 83-99""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.3935,""lon"":9.6814}}",1,9,1
-tenaya_creek_restaurant_and_brewery,0,0,245109489664,"{""name"":""Tenaya Creek Restaurant and Brewery"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89128"",""country"":""United States"",""phone"":""1-702-362-7335"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3101 North Tenaya Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.2154,""lon"":-115.251}}",1,26,1
-alesmith_brewing-grand_cru_2003,0,0,244370374656,"{""name"":""Grand Cru 2003"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-empyrean_brewing_company-empyrean_oktoberfest,0,0,244625309696,"{""name"":""Empyrean Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,44,1
-gottberg_brew_pub-impromptu_pale_ale,0,0,244625113088,"{""name"":""Impromptu Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
-ballast_point_brewing-wahoo_wheat_beer,0,0,244367949824,"{""name"":""Wahoo Wheat Beer"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ballast Point Wahoo Wheat Beer is created using the same ingredients that were once used in Belgium. Flaked unmalted wheat, oats and malted barley comprise the grain. The unmalted wheat has a high protein content, which causes the beer to be hazy, thus giving it a cloudy, or \""white\"" appearance. A special yeast gives a refreshing tangy flavor that is different from both the sour Weiss beers of Berlin or the banana and clovey Weizens of Bavaria. The mild hopping allows the unique malts to show through and does not conflict with the subtleties of the citrus spicing. This unique citrus character is created by adding a blend of curacao (bitter orange), sweet orange and coriander to the boil. White beers are light and refreshing, yet provide a complex reminder that interesting high quality beer does not have to be bitter and dark. Ballast Point Wahoo Wheat Beer is the perfect beer for sunny San Diego."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,28,1
-brimstone_brewing-stone_beer,0,0,244475887616,"{""name"":""Stone Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brimstone_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-caldera_brewing-ashland_amber,0,0,244475232257,"{""name"":""Ashland Amber"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A crisp, well-balanced, refreshing amber. Simplicity is the key to this recipe."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
-blicks_brewing,0,0,244378107906,"{""name"":""Blicks Brewing"",""city"":""Colorado Springs"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8339,""lon"":-104.821}}",1,52,1
-dogfish_head_craft_brewery-chicory_stout,0,0,244606631938,"{""name"":""Chicory Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark beer made with a touch of roasted chicory, organic Mexican coffee, St. John's Wort, and licorice root. Brewed with whole-leaf Cascade and Fuggles hops, the grains include pale, roasted & oatmeal."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
-grolsche_bierbrouwerij,0,0,244752515073,"{""name"":""Grolsche Bierbrouwerij"",""city"":""Enschede"",""state"":""Overijssel"",""code"":""7548 XA"",""country"":""Netherlands"",""phone"":""+31-(0)53-4833333"",""website"":""http://www.grolsch.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Royal Grolsch B.V. is one of the largest breweries in the Netherlands. It is best known for its 'beugel' bottle design."",""address"":[""Brouwerslaan 1""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.2081,""lon"":6.8163}}",1,46,1
-stieglbrauerei_zu_salzburg_gmbh-stiegl_leicht,0,0,245109882881,"{""name"":""Stiegl Leicht"",""abv"":3.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a light beer with a full taste and a third less alcohol so therefore 30% less calories. It is ideal for beer lovers who prefer light beers but do not want to renounce the taste."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,27,1
-engine_house_9-india_pale_ale,0,0,244623605760,"{""name"":""India Pale Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-rahr_sons_brewing_company-rahr_s_oktoberfest,0,0,244988903425,"{""name"":""Rahr's Oktoberfest"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""O'zapft is!\"" The cry of happy beer drinkers at the start of the Munich Oktoberfest, which in German means \""The keg is tapped!\"" Rahr's Oktoberfest Celebration Lager is a traditional Marssen style Oktobefest lager - dark amber in color, super smooth, medium body with a sweet malty finish. True to tradition, this is a classic Oktoberfest Lager."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,20,1
-big_time_brewing-faux_paddy_irish_ale,0,0,244360019968,"{""name"":""Faux Paddy Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-brasserie_brouwerij_cantillon-bruocsella_1900_grand_cru,0,0,244359692288,"{""name"":""Bruocsella 1900 Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,7,1
-brouwerij_van_honsebrouck-brigand,0,0,244474839040,"{""name"":""Brigand"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-elk_creek_cafe_and_aleworks-double_rainbow_ipa,0,0,244627144705,"{""name"":""Double Rainbow IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for the spectacular and complete double rainbow that appeared in the northwest sky just outside the brewhouse during the inaugural mash in. With a foot in both the new and old worlds, this IPA is generously dry-hopped with English Fuggles, resulting in a strong, deep golden, very fresh, and fruity English flavor and aroma."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,48,1
-crabby_larry_s_brewpub_steak_crab_house-summer_lager,0,0,244474183680,"{""name"":""Summer Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
-backwater_brewing,0,0,244379353089,"{""name"":""Backwater Brewing"",""city"":""Winona"",""state"":""Minnesota"",""code"":""55987"",""country"":""United States"",""phone"":""1-507-452-2103"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1429 West Service Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0486,""lon"":-91.6774}}",1,56,1
-alpirsbacher_klosterbru-pils,0,0,244373061632,"{""name"":""Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpirsbacher_klosterbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-brasserie_du_benin,0,0,244358774787,"{""name"":""Brasserie du Benin"",""city"":""Lom"",""state"":"""",""code"":"""",""country"":""Togo"",""phone"":""228-215-062"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""BP 896""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.3906,""lon"":-93.3739}}",1,4,1
-moylan_s_brewery_restaurant-india_pale_ale,0,0,244866482177,"{""name"":""India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-brouwerij_sterkens-st_sebastiaan_dark,0,0,244476149763,"{""name"":""St. Sebastiaan Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-fifty_fifty_brewing_co,0,0,244624654336,"{""name"":""Fifty Fifty Brewing Co."",""city"":""Truckee"",""state"":""California"",""code"":""96161"",""country"":""United States"",""phone"":""530.587.BEER"",""website"":""http://www.fiftyfiftybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""11197 Brockway Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.322,""lon"":-120.163}}",1,42,1
-courthouse_pub-munich_dunkel,0,0,244491419648,"{""name"":""Munich Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-la_jolla_brew_house-india_pale_ale,0,0,244753301504,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
-traquair_house_brewery-house_ale,0,0,245109161984,"{""name"":""House Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traquair_house_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,25,1
-niagara_falls_brewing-best_bitter,0,0,244866088960,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-millstream_brewing-schild_brau_amber,0,0,244866940928,"{""name"":""Schild Brau Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
-brauerei_schumacher,0,0,244477263872,"{""name"":""Brauerei Schumacher"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-828902-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oststrae 123""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2216,""lon"":6.7853}}",1,9,1
-terminal_gravity_brewing-ipa,0,0,245109489665,"{""name"":""IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terminal_gravity_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,26,1
-alesmith_brewing-horny_devil,0,0,244370440192,"{""name"":""Horny Devil"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-engine_house_9-porter,0,0,244625309697,"{""name"":""Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
-great_lakes_brewing-traditional_lager,0,0,244751269888,"{""name"":""Traditional Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-bard_s_tale_beer_company,0,0,244367949825,"{""name"":""Bard's Tale Beer Company"",""city"":""Lee's Summit"",""state"":""Missouri"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""211 NW Ward Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9169,""lon"":-94.3943}}",1,28,1
-bristol_brewing-winter_warlock_oatmeal_stout,0,0,244475887617,"{""name"":""Winter Warlock Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bristol_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,5,1
-copper_kettle_brewery-lucky_393_grand_cru,0,0,244475297792,"{""name"":""Lucky 393 Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is medium dark in color but it has a light body and a smooth mouthfeel. Coriander and orange will surround your senses and keep you coming back for more."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,3,1
-boiler_room_brewpub-colorado_belle_dark,0,0,244378107907,"{""name"":""Colorado Belle Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boiler_room_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-dogfish_head_craft_brewery-raison_d_extra,0,0,244606697472,"{""name"":""Raison D'Extra"",""abv"":20.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A bigger, bolder version of our Raison D'Etre.\r\n\r\nThis is a bulbous, brown ale brewed with a bunch of malt, brown sugar and raisins.\r\n\r\nIn case you care... the average 12 oz. serving has approximately 425 calories."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,1,1
-half_moon_bay_brewing-illuminator_doppelbock,0,0,244752580608,"{""name"":""Illuminator Doppelbock"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
-stoudt_s_brewery-stoudt_s_pils,0,0,245109948416,"{""name"":""Stoudt's Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Reflective of the traditional German style, Stoudt's Pils is delicately dry with firm bitterness. This crispness of Saaz hops and a dry malt finish make the Pilsener an excellent aperitif."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,27,1
-engine_house_9-spring_bock,0,0,244623671296,"{""name"":""Spring Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,40,1
-ramapo_valley_brewery-christmas_ale,0,0,244988903426,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-binding_brauerei_ag,0,0,244360019969,"{""name"":""Binding Brauerei AG"",""city"":""Frankfurt am Main"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)69-/-60650"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Darmstdter Landstrae 185""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0943,""lon"":8.6913}}",1,8,1
-brasserie_la_caracole-amber,0,0,244476346368,"{""name"":""Amber"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-bryggeriet_lfabrikken,0,0,244474839041,"{""name"":""Bryggeriet lfabrikken"",""city"":""Tisvildeleje"",""state"":"""",""code"":"""",""country"":""Denmark"",""phone"":""45-70-20-79-30"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hollselund Strandvej 74""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":56.0746,""lon"":12.1161}}",1,2,1
-elk_creek_cafe_and_aleworks-poe_paddy_porter,0,0,244627210240,"{""name"":""Poe Paddy Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for our beloved State Park this Robust Porter draws its uniquely enticing roasted character from a thoughtful combination of malts. Generous hop additions ensure a satisfying beer drinking experience."",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-craftsman_brewing,0,0,244474183681,"{""name"":""Craftsman Brewing"",""city"":""Pasadena"",""state"":""California"",""code"":""91103"",""country"":""United States"",""phone"":""1-626-296-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1260 Lincoln Avenue #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.1696,""lon"":-118.159}}",1,0,1
-bamberger_mahr_s_bru,0,0,244379353090,"{""name"":""Bamberger Mahr's-Bru"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-91517-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wunderburg 10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8901,""lon"":10.9067}}",1,56,1
-anchor_brewing-our_special_ale_1992,0,0,244373061633,"{""name"":""Our Special Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-brauerei_aying_franz_inselkammer_kg-brau_weisse,0,0,244475297792,"{""name"":""Bräu-Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,4,1
-nebraska_brewing_company-eos_hefeweizen,0,0,244866547712,"{""name"":""EOS Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,22,1
-capital_brewery-bavarian_lager,0,0,244476215296,"{""name"":""Bavarian Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-flatlander_s_restaurant_brewery,0,0,244624654337,"{""name"":""Flatlander's Restaurant & Brewery"",""city"":""Lincolnshire"",""state"":""Illinois"",""code"":""60069"",""country"":""United States"",""phone"":""1-847-821-1234"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 Village Green""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.2031,""lon"":-87.9302}}",1,42,1
-crane_river_brewpub_and_cafe-porter,0,0,244491419649,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
-lagunitas_brewing_company-ruben_the_jets,0,0,244753301505,"{""name"":""Ruben & The Jets"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Ale is Brewed in Honor of the 40th Anniversary Release of this Album."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,47,1
-21st_amendment_brewery_cafe-south_park_blonde,0,0,244372602880,"{""name"":""South Park Blonde"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Light golden color. Sweet dry aroma with crisp, clear bitterness. Brewed with imported German hops.The perfect beer to have when you'd like to have more than one."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,38,1
-triumph_brewing_of_princeton-honey_wheat,0,0,245109161985,"{""name"":""Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
-nicolet_brewing-blonde,0,0,244866088961,"{""name"":""Blonde"",""abv"":3.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-mission_springs_brewing-blonde_draft,0,0,244866940929,"{""name"":""Blonde Draft"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-bristol_brewing,0,0,244477263873,"{""name"":""Bristol Brewing"",""city"":""Colorado Springs"",""state"":""Colorado"",""code"":""80906"",""country"":""United States"",""phone"":""1-719-633-2555"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1647 South Tejon Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8097,""lon"":-104.826}}",1,9,1
-the_livery-thoms_special_ale,0,0,245109489666,"{""name"":""Thoms Special Ale"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This deep copper colored Ale is named after Steve's homebrew buddy Thom Phillips, who has had a part in helping to formulate some of the final Ale recipes at the Livery. Hints of caramel make their way through the aromatic bitterness of Centennial hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
-ali_i_brewing-golden_ale,0,0,244370440193,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-ettaler_klosterbetriebe_abteilung_brauerei_destillerie-kloster_dunkel,0,0,244625375232,"{""name"":""Kloster Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ettaler_klosterbetriebe_abteilung_brauerei_destillerie"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-green_flash_brewing-hop_hed_red_ale,0,0,244751269889,"{""name"":""Hop Hed Red Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Resinous hop character and bitterness balance the rich carmel malt base. We took it a step further and Amarillo dry-hopped the brew to 45 ibu's, creating refreshing and savory hop flavors and aromas. Is it red IPA? That's your call."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-bavarian_barbarian_brewing_company,0,0,244368015360,"{""name"":""Bavarian Barbarian Brewing Company"",""city"":""Williamsport"",""state"":""Pennsylvania"",""code"":""17701"",""country"":""United States"",""phone"":""570.332.5050"",""website"":""http://www.bavarianbarbarian.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bavarian Barbarian Brewing Company is Williamsport's first production brewery since the 1950's. The brewery, which occupies 9,000 square feet at 429 W. 3rd St in Williamsport, Pennsylvania, was founded by Mike Hiller in July 2007. Though a native of South Williamsport, Barbarian Chief, Mike Hiller, first entered the craft brewing industry in 1997 as an Account Services Associate for Legendary Distributors, Ltd., of Richmond, Virginia. After nearly a year of distributing beer, an opportunity arose for Mike to work as a brewer for Legend Brewing Company. Mike worked with five other brewers to perform duties at all levels of production including brewing, cellar work, cleaning and maintenance. After nearly four years of service at Legend Brewing Company, Mike moved to Boston, MA, so his wife, Kira, could attend grad school. Tired of listening to him whine about how much he missed brewing, Kira gave him a home brewing kit as an anniversary gift. Mike began brewing whenever he could find the time. He developed the recipes for Hammerin' Ale, Headbangerz Brown Ale, Square Feet Wheat, Weldspatter I.P.A. and several other beers in five-gallon batches on his apartment's balcony. Mike was also commissioned by friends and co-workers to brew beer for special occasions. In fact, Square Feet Wheat was actually first brewed for an art gallery opening featuring works by the Barbarian's logo and label designer, Erick Thomas. After reading Brewing Up a Business: Adventures in Entrepreneurship by Sam Calagione of Dogfish Head Brewery fame, Mike was inspired to start his own brewery. He spent eight months researching and writing a business plan. Another year was spent gathering support and revising his business plans. Thanks to the support of family, friends and other area businessmen who believed in Mike's dream, Bavarian Barbarian Brewing Company is now a reality."",""address"":[""429 W. 3rd St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.238,""lon"":-77.0103}}",1,28,1
-brouwerij_bockor-bellegems_bruin,0,0,244475953152,"{""name"":""Bellegems Bruin"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bockor"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-crabby_larry_s_brewpub_steak_crab_house-dead_man_walkin_ipa,0,0,244475297793,"{""name"":""Dead Man Walkin' IPA"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""This extra hoppy ale is characteristic of the classic pale ales. Using the very flavorful Mount Hood and Liberty hops we have created classic IPA goodness every sailor knows."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
-borsodi_sorgyar,0,0,244378173440,"{""name"":""Borsodi Sörgyár"",""city"":""Böcs"",""state"":"""",""code"":"""",""country"":""Hungary"",""phone"":"""",""website"":""http://www.borsodisorgyar.hu/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,52,1
-dogfish_head_craft_brewery-zwaanend_ale,0,0,244606697473,"{""name"":""Zwaanend,ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A neo-traditional Rye Bok brewed to commerate the 375th Anniversary of the First Town in the First State."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,1,1
-hampshire_brewery,0,0,244752646144,"{""name"":""Hampshire Brewery"",""city"":""Romsey"",""state"":""Hampshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01794)-830529"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6-8 Romsey Industrial Estate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.9889,""lon"":-1.4989}}",1,46,1
-straub_brewery-straub_light,0,0,245109948417,"{""name"":""Straub Light"",""abv"":3.16,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""straub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
-flying_fish_brewing_company-oktoberfish,0,0,244623736832,"{""name"":""OktoberFish"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First released in 2002, and sold out in two weeks. A tribute to the classic Fest styles of Germany the O'Fish uses European malts hops and yeast. A beautiful reddish color, a savory malt profile and nice hop flavor, make this Fest beer quite drinkable. OktoberFish is great with food and especially great with Lederhosen."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
-river_west_brewing-light,0,0,244988968960,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-bitburger_brauerei,0,0,244360019970,"{""name"":""Bitburger Brauerei"",""city"":""Bitburg"",""state"":""Rheinland-Pfalz"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)6561-/-14-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Römermauer 3""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.974,""lon"":6.5227}}",1,8,1
-brauerei_leibinger-hefe_weizen,0,0,244476346369,"{""name"":""Hefe-Weizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_leibinger"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
-capital_brewery-garten_brau_fest,0,0,244474904576,"{""name"":""Garten Bräu Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,2,1
-empyrean_brewing_company-luna_sea_amber,0,0,244627210241,"{""name"":""Luna Sea Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-crescent_city_brewhouse-black_forest,0,0,244474249216,"{""name"":""Black Forest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-baron_brewing_company-baron_oktoberfest,0,0,244379418624,"{""name"":""Baron Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Baron Oktoberfest is a traditional German Style Oktoberfest / Marzen. Deep copper/amber in color with a rich but light malt flavor. Finishes crisp and easy, leaving the mouth desiring more. We age the Oktoberfest for a full three months to guarantee a fantastically smooth beer.\r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,56,1
-appleton_brewing-adler_brau_oatmeal_stout,0,0,244373127168,"{""name"":""Adler Bräu Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
-breckenridge_brewery-471_pilsner,0,0,244475363328,"{""name"":""471 Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-nethergate_brewery_co_ltd-augustinian_ale,0,0,244866547713,"{""name"":""Augustinian Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nethergate_brewery_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-capital_brewery-capital_kloster_weizen,0,0,244476215297,"{""name"":""Capital Kloster Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,6,1
-four_peaks_brewing-sunbru_kolsch_style_ale,0,0,244624654338,"{""name"":""Sunbru Kölsch Style Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A very light golden ale that is malty sweet, almost honey-like in the nose. This ale has a light to medium body and a very delicate flavor. Easy drinking, it has very low bitterness and a soft dry finish. 5.2% alcohol/volume. This style originates from the city of Cologne, Germany where all twenty eight breweries are dedicated to brewing only Kölsch. Coming soon in cans. (ALWAYS ON TAP!!)""}",1,42,1
-denver_chophouse_and_brewery-singletrack_copper_ale,0,0,244623933440,"{""name"":""Singletrack Copper Ale"",""abv"":5.57,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-liberty_steakhouse_and_brewery-liberty_unfiltered_wheat_ale,0,0,244753301506,"{""name"":""Liberty Unfiltered Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This light ale is an American interpretation of a German classic. It's not filtered and has a pleasantly tart flavor. Served with a lemon wedge."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,47,1
-aass_brewery-bock_beer,0,0,244372668416,"{""name"":""Bock Beer"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Aass Bock is a dark \""lager\"" also produced in accordance with the \""Purity law\"". \r\n\r\nThe malted barely is produced in the Scandinavian countries. It is a combination of bayer-, color- and caramel malt. \r\n\r\nWe use the very best of hops from the Hallertau area in Germany, and the water is pure Norwegian mountain water. \r\n\r\nThe Aass Bock is largered at cool temperatures, and it is allowed to mature for as long as 6 months before bottling. \r\n\r\nThe beer is sold in a caracteristic nice-looking green bottle containing 11.2 fl. oz or 330 ml."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,38,1
-triumph_brewing_of_princeton-scottish_ale,0,0,245109161986,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,25,1
-north_coast_brewing_company-old_stock_ale_2002,0,0,244866088962,"{""name"":""Old Stock Ale 2002"",""abv"":11.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
-mogollon_brewing_company-superstition_pale_ale,0,0,244866940930,"{""name"":""Superstition Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""If you are searching for a light, refreshing pale ale, your search is over! Superstition Pale Ale is named after the Superstition Mountains which are just east of Phoenix. This American pale ale is brewed using mountain pure water, select domestic grain, yeast and hops from the Pacific Northwest. Superstition is copper in color with a clean, malty fullness and finishes with pronounced hop bitterness. Perfect for enjoying on a warm Arizona day."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-brouwerij_liefmans-goudenband_2002,0,0,244477329408,"{""name"":""Goudenband 2002"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-three_floyds_brewing-chubby_brown,0,0,245109555200,"{""name"":""Chubby Brown"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
-alltech_s_lexington_brewing_company-kentucky_ale,0,0,244370505728,"{""name"":""Kentucky Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-fish_brewing_company_fish_tail_brewpub-poseidon_imperial_stout,0,0,244625375233,"{""name"":""Poseidon Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
-hair_of_the_dog_brewing-golden_rose,0,0,244751269890,"{""name"":""Golden Rose"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-bell_s_brewery_inc-bell_s_christmas_ale,0,0,244368015361,"{""name"":""Bell's Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A Scotch Ale, “brewed with 100% Michigan barley and a blend of Pacific Northwest and Michigan hops.”"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,28,1
-brown_street_brewery-south_of_the_border_light,0,0,244475953153,"{""name"":""South of the Border Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-de_proef_brouwerij-andelot_euphorique,0,0,244607287296,"{""name"":""Andelot Euphorique"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-boss_browar_witnica_s_a-porter_czarny_boss_black_boss_porter,0,0,244378173441,"{""name"":""Porter Czarny Boss / Black BOSS Porter"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boss_browar_witnica_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
-egan_brewing-eganator_doppelbock,0,0,244606697474,"{""name"":""Eganator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,1,1
-hapa_s_brew_haus_and_restaurant,0,0,244752646145,"{""name"":""Hapa*s Brew Haus and Restaurant"",""city"":""Kihei"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":20.7592,""lon"":-156.457}}",1,46,1
-the_bruery-trade_winds_tripel,0,0,245110013952,"{""name"":""Trade Winds Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Summer seasonal, Trade Winds Tripel is a Belgian-style Golden Ale with a Southeast Asian twist. Instead of using candi sugar (typical for such a beer), we use rice in the mash to lighten the body and increase the gravity, and spice with Thai Basil. The result is an aromatic, digestible and complex beer made for a lazy summer evening."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,27,1
-founders_hill_brewing,0,0,244623736833,"{""name"":""Founders Hill Brewing"",""city"":""Downers Grove"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8089,""lon"":-88.0112}}",1,40,1
-rogue_ales-hoppy_frog,0,0,244988968961,"{""name"":""Hoppy Frog"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A Northwest Style IPA. Nice Balance of Malt and Hops, not too extreme in either direction. 2 Ingredients: Maris Otter Malt, Amarillo Hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
-blackstone_restaurant_brewery,0,0,244360085504,"{""name"":""Blackstone Restaurant & Brewery"",""city"":""Nashville"",""state"":""Tennessee"",""code"":""37203"",""country"":""United States"",""phone"":""1-615-327-9969"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1918 West End Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.152,""lon"":-86.7989}}",1,8,1
-brewery_corsendonk-abbey_brown_ale_pater,0,0,244476411904,"{""name"":""Abbey Brown Ale / Pater"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-cheshire_cat_brewery-pilsner,0,0,244474904577,"{""name"":""Pilsner"",""abv"":4.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-erie_brewing_company-ol_red_cease_and_desist,0,0,244627210242,"{""name"":""Ol' Red Cease and Desist"",""abv"":10.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Erie Brewing presents the Beer formally known as Red Ryder BIG BEER - A beer dubiously awarded two cease and desist letters for its name. Ol’ Red Cease and Desist brings more to the table than just a big malty flavor and climaxing warming sensation…a legal record! This beer so recognized and loved by many deserves a unique name to match its unique history. What better name than Ol’ Red Cease and Desist – a name inspired by the long arm of the law!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,48,1
-cugino_brewing_company-light,0,0,244474314752,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cugino_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
-bayerische_staatsbrauerei_weihenstephan-hefeweissbier_dunkel,0,0,244379418625,"{""name"":""Hefeweissbier Dunkel"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-athenian_brewery,0,0,244373127169,"{""name"":""Athenian Brewery"",""city"":""Athens"",""state"":"""",""code"":""0"",""country"":""Greece"",""phone"":""30-210-5384911"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 Kifissou Avenue""]}",1,39,1
-brennerei_distillerie_radermacher-rader_blonde,0,0,244475428864,"{""name"":""Rader Blonde"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brennerei_distillerie_radermacher"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-niagara_falls_brewing-maple_wheat,0,0,244866547714,"{""name"":""Maple Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-cervezas_alhambra-negra,0,0,244476215298,"{""name"":""Negra"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervezas_alhambra"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,6,1
-fratellos_restaurant_and_brewery-caber_tossing_scottish_ale,0,0,244624719872,"{""name"":""Caber Tossing Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-alaskan_brewing-alaskan_ipa,0,0,244362444800,"{""name"":""Alaskan IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ales are characterized by intense hop flavor and aroma accompanied by higher alcohol content. This style possesses medium maltiness and body while also being crisp and dry. Citrus flavors and aromas are moderate to very strong.\r\n\r\nAlaskan IPA is honey gold in color with a fruity, citrus aroma. An enticing blend of hops and our dry hopping process, in which hops are added directly to tanks during fermentation, give this brew a very intense, complex aromatic character with a refreshing hop finish.\r\n\r\nAlaskan IPA is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from more than 90 inches of rainfall each year."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-diamond_knot_brewery_alehouse-e_s_b,0,0,244623998976,"{""name"":""E.S.B."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-little_apple_brewing-bovine_belgian_winter_ale,0,0,244875919360,"{""name"":""Bovine Belgian Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-aass_brewery-gull_classic,0,0,244372733952,"{""name"":""Gull Classic"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Aass Classic\"" is a classical \""lager\"" The beer is slightly darker in color than our Genuine Pilsner. It is of course produced in accordance with the \""Purity law\"". \r\n\r\nThe malted barely is produced in the Scadinavian countries. It is a combination of pilsner-, bayer- and caramelmalt. We use the famous Sazer and Hallertau hops, and the water is as pure as the Norwegian nature. \r\n\r\nThe Classic is largered at cool temperatures, and it is allowed to mature for approximately 3 months before bottling. \r\n\r\nThe beer is sold in caracteristic nice looking green bottel containing 11.2 fl. oz or 330 ml."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
-troegs_brewing-java_head_stout,0,0,245109161987,"{""name"":""Java Head Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We teamed up with St. Thomas Roasters of Linglestown, PA to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating an environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Java Head a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus aromas from the combination of Kenyan beans and whole flower hops."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
-oakham_ales-jeffrey_hudson_bitter,0,0,244866154496,"{""name"":""Jeffrey Hudson Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oakham_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-moosejaw_pizza_dells_brewing_company-weissbier,0,0,244867006464,"{""name"":""Weissbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,23,1
-brouwerij_sterkens-st_paul_double,0,0,244477329409,"{""name"":""St. Paul Double"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-titletown_brewing-roundhouse_rye,0,0,245109555201,"{""name"":""Roundhouse Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
-amherst_brewing_company-half_in_the_bagpipe,0,0,244370505729,"{""name"":""Half in the Bagpipe"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber in color, full-bodied strong ale with a prominent malt flavor delicately balanced with Goldings hops. Made with a hint of molasses, this beer is usually on tap for Super Bowl with a keg or two of the previous year's batch."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,33,1
-founders_brewing-founders_imperial_stout,0,0,244625375234,"{""name"":""Founders Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A fine companion to end a meal or relax in front of the hearth with, this robust ale will cellar well for years. Brewed with ten varieties of malted barley this stout is extremely smooth, complex and rich in body. We recommend serving at cellar temperature. Sit back and enjoy its richness and complexity, your about to drink the ultimate winter warmer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
-hale_s_ales_3-drawbridge_blonde,0,0,244751335424,"{""name"":""Drawbridge Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-big_river_brewing-blonde_ale,0,0,244368015362,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-buzzards_bay_brewing_inc-olde_buzzard_lager,0,0,244475953154,"{""name"":""Olde Buzzard Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""buzzards_bay_brewing_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Lager (Dortmund-style) is brewed with pale, Munich and Vienna malts and is moderately hopped with Hallertauer hops. Dortmund is an industrial, steel-making town and its lagers are hearty, easy drinking brewskies. The hops balance the malt but not overtly so. A great brew for the end of a hard day at work. Winner of the Gold Medal for Best European Style Pilsner at the 2000 Great American Beer Festival , Gold Medal at the 5th and 6th Great International Beer Festival, Silver Medals at the 7th Great International Beer Festival and 9th Great International Beer Festival, and Bronze Medal at the 8th Great International Beer Festival and 11th Great International Beer Festival!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-dragonmead_microbrewery-imperial_stout,0,0,244607352832,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
-boston_beer_company-longshot_black_lager,0,0,244378173442,"{""name"":""Longshot Black Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-empyrean_brewing_company-espresso_porter,0,0,244606763008,"{""name"":""Espresso Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-hertog_jan,0,0,244752646146,"{""name"":""Hertog Jan"",""city"":""Arcen"",""state"":"""",""code"":""5944 EN Arcen"",""country"":""Netherlands"",""phone"":"""",""website"":""http://www.hertogjan.nl/site/"",""type"":""brewery"",""updated"":""2011-06-15 04:59:30"",""description"":"""",""address"":[""Kruisweg 44""]}",1,46,1
-the_cambridge_house-copper_hill_kolsch,0,0,245110013953,"{""name"":""Copper Hill Kolsch"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""German Style Light Ale. Smooth, easy drinking with subtle noble hop character.""}",1,27,1
-four_peaks_brewing-abbey_normal_ale,0,0,244623736834,"{""name"":""Abbey Normal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Double Abbey."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
-rothaus_brauerei-export,0,0,244989034496,"{""name"":""Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-boston_beer_company-samuel_adams_black_lager,0,0,244360085505,"{""name"":""Samuel Adams Black Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""When one sees a beer with a darker complexion these days, more often than not it"",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,8,1
-brewery_de_troch-chapeau_framboise_lambic,0,0,244476411905,"{""name"":""Chapeau Framboise Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,7,1
-columbia_bay_brewery_restaurant_and_pub,0,0,244474904578,"{""name"":""Columbia Bay Brewery Restaurant and Pub"",""city"":""Lake Villa"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.417,""lon"":-88.074}}",1,2,1
-f_x_matt_brewing-saranac_black_diamond_bock,0,0,244627275776,"{""name"":""Saranac Black Diamond Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Black Diamond Bock is a rich, malty brew, made with traditional German malts and hops and fermented with a lager yeast. Aged for months for a rich but smooth malty taste. A nice reward for enduring your winter months."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,48,1
-dockside_brewing-pelican_bay_brown,0,0,244605976576,"{""name"":""Pelican Bay Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,0,1
-bayerische_staatsbrauerei_weihenstephan-original_lager,0,0,244379418626,"{""name"":""Original Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-bamberger_mahr_s_bru-christmas_bock,0,0,244373127170,"{""name"":""Christmas Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,39,1
-brewdog_ltd,0,0,244475428865,"{""name"":""BrewDog Ltd"",""city"":""Fraserburgh"",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":""+44 1346 519 009"",""website"":""http://brewdog.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""AB43 8UE""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":57.683,""lon"":-2.003}}",1,4,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_bitter,0,0,244866547715,"{""name"":""Nøgne Ø Bitter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A light session ale, with an assertive hop aroma of E K Golding. Great beer to pair with lots of different food - a good allround."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,22,1
-clipper_city_brewing_co-small_craft_warning,0,0,244476280832,"{""name"":""Small Craft Warning"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We call this beer an Über Pils - a pilsner style bock lager. Rich, malty, and well rounded but with a firm structure of noble hops. Surprisingly pale in color for such a powerful, complex beer. Available year round beginning Feb. 05'.\r\n\r\nSilver Medal- World Beer Championship 2007"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
-friesisches_brauhaus_zu_jever,0,0,244624719873,"{""name"":""Friesisches Brauhaus zu Jever"",""city"":""Jever"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)4461-/-13-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Elisabethufer 18""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":53.5755,""lon"":7.9016}}",1,42,1
-america_s_brewing,0,0,244362510336,"{""name"":""America's Brewing"",""city"":""Aurora"",""state"":""Illinois"",""code"":""60505"",""country"":""United States"",""phone"":""1-630-264-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""205 North Broadway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.7605,""lon"":-88.309}}",1,15,1
-dick_s_brewing-lava_rock_porter,0,0,244623998977,"{""name"":""Lava Rock Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
-magnolia_pub_and_brewery-golden_bitter,0,0,244875919361,"{""name"":""Golden Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-allagash_brewing-tripel_reserve,0,0,244372733953,"{""name"":""Tripel Reserve"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-upstream_brewing_company_at_legacy-dundee_export_90_scotch_ale,0,0,245109227520,"{""name"":""Dundee Export 90 Scotch Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-ohio_brewing-alt_ernative_amber,0,0,244866154497,"{""name"":""Alt-ernative Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,21,1
-niagara_falls_brewing-gritstone_premium_ale,0,0,244867006465,"{""name"":""Gritstone Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,23,1
-brouwerij_the_musketiers,0,0,244477329410,"{""name"":""Brouwerij The Musketiers"",""city"":""Ursel"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)-9-226-42-76"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tramstraat 8""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1287,""lon"":3.4785}}",1,9,1
-tommyknocker_brewery_and_pub-butthead_doppelbock,0,0,245109620736,"{""name"":""Butthead Doppelbock"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""High Gravity Butt Head Doppelbock Lager is brewed with a generous amount of roasted malts producing caramel sweetness and rich mouthfeel. Why Butt Head? Try one. You'll enjoy \""big brew\"" flavor with the intensity of a \""head butting\"" Bighorn Ram!"",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,26,1
-anderson_valley_brewing,0,0,244370505730,"{""name"":""Anderson Valley Brewing"",""city"":""Boonville"",""state"":""California"",""code"":""95415"",""country"":""United States"",""phone"":""1-800-207-2337"",""website"":""http://avbc.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""17700 Boonville Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.0014,""lon"":-123.356}}",1,33,1
-fox_river_brewing_1,0,0,244625440768,"{""name"":""Fox River Brewing #1"",""city"":""Oshkosh"",""state"":""Wisconsin"",""code"":""54901"",""country"":""United States"",""phone"":""1-920-232-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1501 Arboretum Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0342,""lon"":-88.5608}}",1,44,1
-hapa_s_brew_haus_and_restaurant-stealth_dark_ale,0,0,244751400960,"{""name"":""Stealth Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-birrificio_torrechiara-panil_barriquee,0,0,244368080896,"{""name"":""Panil Barriquée"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificio_torrechiara"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-buzzards_bay_brewing_inc,0,0,244476018688,"{""name"":""Buzzards Bay Brewing Inc."",""city"":""Westport"",""state"":""Massachusetts"",""code"":""2790"",""country"":""United States"",""phone"":""(508) 636-2288"",""website"":""http://www.buzzardsbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""98 Horseneck Rd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5713,""lon"":-71.0571}}",1,5,1
-eel_river_brewing-certified_organic_amber_ale,0,0,244607418368,"{""name"":""Certified Organic Amber Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Eel River Brewing Company, brewers of California's first Certified Organic Ale, proudly brings you our Organic Amber Ale. Unique in flavor and purity, this medium bodied beer has a hoppy bouquet and a distinctive rich taste with a caramel-like sweetness that is balanced with a liberal dose of certified organic Pacific Gems and Hallertau hops, imported from New Zealand. Pure taste, pure ingredients, pure good."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
-boston_beer_company-samuel_adams_cranberry_lambic,0,0,244378173443,"{""name"":""Samuel Adams Cranberry Lambic"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Cranberry Lambic is a fruit beer that draws its flavor not just from the cranberries it is brewed with, but also from the unique fermentation character imparted by the rare wild yeast strain. The result is a flavor rich in fruitiness and reminiscent of cranberries and bananas, cloves and nutmeg. The yeast fermentation also will create a slight sourness on the sides of the palate, a signature of the original Lambic style which, with the subtle cereal note from the wheat malt, remind its drinker that, as fruity a beer as this is, it is still a beer."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,52,1
-faultline_brewing_2-burton_pale_ale,0,0,244606763009,"{""name"":""Burton Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-hoepfner_privatbrauerei-porter,0,0,244752646147,"{""name"":""Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoepfner_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,46,1
-trap_rock_restaurant_and_brewery-blackforest_lager,0,0,245110013954,"{""name"":""Blackforest Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,27,1
-four_peaks_brewing-arizona_peach,0,0,244623802368,"{""name"":""Arizona Peach"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The dominating character of this beer is of course peach flavor and aroma. It is a little more subtle than most fruit beers which makes it more approachable. Light in body and color. \r\n\r\nAlcohol content of approximately 4.0% by volume (ALWAYS ON TAP!!)"",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,40,1
-rothaus_brauerei-helles,0,0,244989034497,"{""name"":""Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-bottom_s_up_brewing-strom_bomb_stout,0,0,244360085506,"{""name"":""Strom Bomb Stout"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bottom_s_up_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
-brouwerij_huyghe-duinen_tripel,0,0,244476477440,"{""name"":""Duinen Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-cooperstown_brewing_company,0,0,244474904579,"{""name"":""Cooperstown Brewing Company"",""city"":""Milford"",""state"":""New York"",""code"":""13807"",""country"":""United States"",""phone"":""607-286-9330"",""website"":""http://www.cooperstownbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""River Street, P.O. Box 276""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.5893,""lon"":-74.9403}}",1,2,1
-far_west_ireland_brewing-wild_banshee_barleywine,0,0,244627275777,"{""name"":""Wild Banshee Barleywine"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""far_west_ireland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-dogfish_head_craft_brewery-theobroma,0,0,244606042112,"{""name"":""Theobroma"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is based on chemical analysis of pottery fragments found in Honduras which revealed the earliest known alcoholic chocolate drink used by early civilizations to toast special occasions. The discovery of this beverage pushed back the earliest use of cocoa for human consumption more than 500 years to 1200 BC. As per the analysis, Dogfish Head’s Theobroma (translated into 'food of the gods') is brewed with Aztec cocoa powder and cocoa nibs, honey, chilies, and annatto (fragrant tree seeds).""}",1,0,1
-bear_republic_brewery-hop_rod_rye,0,0,244379418627,"{""name"":""Hop Rod Rye"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Essentially a strong American IPA made with 20% rye malt. Darker in color, Hop Rod Rye boasts a huge hop aroma and flavor accompanied by a slightly sweet, malty finish."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,56,1
-bandana_brewery,0,0,244373192704,"{""name"":""Bandana Brewery"",""city"":""Mankato"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.1636,""lon"":-93.9994}}",1,39,1
-brewery_budweiser_budvar-budweiser_budvar_czechvar,0,0,244475428866,"{""name"":""Budweiser Budvar (Czechvar)"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_budweiser_budvar"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Czech Premium Lager is beer for light beer lovers. The most gentle heads of the high quality Žatec hop, virgin clear natural water and granules of selected species of Moravian barley make it the beverage of real experts. \r\n\r\nThe 700-year long tradition in production of České Budějovice beer and the unique, 90-day period of maturity increase its unique character. You can taste Budweiser Budvar Czech Premium Lager with all your senses. First of all you will delight your eyes with its beautiful colour and rich dense foam, then you will feel the fine aroma of the hops, in your palm you will stroke the dewy glass and, in the end, you will taste the fine to medium strong bitterness. You will remember well, our perfect lager."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,4,1
-northwoods_brewpub_grill-irish_red,0,0,244866613248,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-denmark_brewing,0,0,244608598016,"{""name"":""Denmark Brewing"",""city"":""Denmark"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.3478,""lon"":-87.8273}}",1,6,1
-golden_pacific_brewing-hibernator_winter_ale,0,0,244624785408,"{""name"":""Hibernator Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-amherst_brewing_company-workingman_s_wheat,0,0,244362510337,"{""name"":""Workingman's Wheat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light crisp American style wheat with a medium hop finish. Made using 25% German wheat malt. Brewed and on tap each summer."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
-dortmunder_actien_brauerei_dab-original,0,0,244623998978,"{""name"":""Original"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-maritime_pacific_brewing-islander_pale_ale,0,0,244875919362,"{""name"":""Islander Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
-anheuser_busch-michelob_hefeweizen,0,0,244372733954,"{""name"":""Michelob Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
-ushers_of_trowbridge-ipa,0,0,245109293056,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ushers_of_trowbridge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
-oso-dank,0,0,244866220032,"{""name"":""Dank"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oso"",""updated"":""2011-03-16 09:06:54"",""description"":""Anniversary offering, Imperial Red. Heavily hopped and oak aged, very balanced. 12 oz. bottles; 4 pack. ABV: 9.2%"",""style"":""Imperial or Double Red Ale"",""category"":""North American Ale""}",1,21,1
-nikenjayamochi_kadoya_honten_co,0,0,244867072000,"{""name"":""Nikenjayamochi Kadoya Honten Co."",""city"":"""",""state"":"""",""code"":"""",""country"":""Japan"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,23,1
-brouwerij_van_honsebrouck-st_louis_gueuze,0,0,244477329411,"{""name"":""St. Louis Gueuze"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,9,1
-trailhead_brewing_company-riverboat_raspberry_flavored_beer,0,0,245109686272,"{""name"":""Riverboat Raspberry flavored Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,26,1
-anheuser_busch-michelob_amber_bock,0,0,244370571264,"{""name"":""Michelob Amber Bock"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Michelob AmerBock is American-style bock beer with a rich, malty and smooth taste that is hearty and full-bodied, yet finishes cleanly. Anheuser-Busch introduced this premium-plus beer nationally in 1995."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
-full_sail_brewing_1-india_pale_ale,0,0,244625440769,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-heineken_switzerland,0,0,244751400961,"{""name"":""Heineken Switzerland"",""city"":""Winterthur"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-052-/-264-41-41"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Haldenstrasse 69""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5077,""lon"":8.7302}}",1,43,1
-blue_point_brewing-spring_fling,0,0,244368080897,"{""name"":""Spring Fling"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-catamount_brewing-porter,0,0,244476018689,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""catamount_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
-federation_brewery-angel_ale,0,0,244607418369,"{""name"":""Angel Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""federation_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,3,1
-boston_beer_company-samuel_adams_imperial_stout,0,0,244378238976,"{""name"":""Samuel Adams Imperial Stout"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Imperial Stout is our take on the stouts brewed by 18th century English brewers for the Russian Imperial Court of Catherine II. The special malted barley in this intense and massive brew delivers rich flavours like dark chocolate, coffee and anise."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,52,1
-faultline_brewing_2-golden,0,0,244606763010,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-iron_hill_brewery_wilmingon-ironbound_ale,0,0,244752711680,"{""name"":""Ironbound Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""Hold onto your beer mugs, because this medium-bodied beer has been overwhelmed with hop additions. Brewed as an American pale ale, it's a celebration of American hop varieties: Cascade, Crystal, Centennial and Chinook. You won't be disappointed."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-uerige_obergrige_hausbrauerei-doppelsticke,0,0,245110079488,"{""name"":""DoppelSticke"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uerige_obergrige_hausbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
-four_peaks_brewing-barrel_aged_blind_date_ale,0,0,244623802369,"{""name"":""Barrel-Aged Blind Date Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This is the old tried and true Blind Date Ale of old. It is based on an English Olde Ale but has an addition of 300 pounds of Arizona grown Medjool dates. The dates contribute a complexity and sweetness that the malt alone cannot. This Blind Date has been aged for three months in Jim Beam oak bourbon barrels. The oak and bourbon lend flavors of vanilla, wood, and of course, bourbon. These flavors layered with the dates created a big, multi-leveled ale. The alcohol content is about 7.5% alc/vol. You'll have to get to Four Peaks quick since we only have a few kegs of this unique beer."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
-roy_pitz_brewing_company-truly_honest_ale,0,0,244989100032,"{""name"":""Truly Honest Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our signature brew that started it all. This beer is made with four different specialty malts including two foreign caramel malts, a pale malt, and a toasted malt. These malts impart a subtle toasted/sweet taste. This malty brew is than graced with floral and aroma hops which balance the maltiness of this brew and leaves behind a smooth finish on the palate. Top notch ingredients and a truly \""Honest\"" taste makes this a seriously drinkable ale, unlike many other bitter American ales."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
-brasserie_de_l_abbaye_des_rocs-triple_imperiale,0,0,244360151040,"{""name"":""Triple Impériale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-brouwerij_sterkens-st_paul_blond,0,0,244476477441,"{""name"":""St. Paul Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-aktienbrauerei_kaufbeuren-st_martin_doppelbock,0,0,244361986048,"{""name"":""St. Martin Doppelbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aktienbrauerei_kaufbeuren"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,14,1
-coronado_brewing_company,0,0,244474970112,"{""name"":""Coronado Brewing Company"",""city"":""Coronado"",""state"":""California"",""code"":""92118"",""country"":""United States"",""phone"":""1-619-437-4452"",""website"":""http://www.coronadobrewingcompany.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Coronado Brewing Company, in beautiful Coronado (located just a few minutes from downtown San Diego) welcomes you to come and enjoy quality handcrafted beers and delicious food in a casual family environment. Join us for a refreshing pint while we make you one of our signature pizzas or calzones in the wood fired oven, or choose from a wide selection of fresh seafood, steaks, pastas and dining specials. The Coronado Brewing Company is perfect for a quick lunch, a relaxing beverage or a wonderful dinner. If you're a sports fan come relax with a cold beer and an appetizer while watching your favorite team on one of our many HD TV's. Open 7 days a week from 11:00 am (until closing) & offering a weekly happy hour (M-F) from (2-5pm)."",""address"":[""170 Orange Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.6976,""lon"":-117.173}}",1,2,1
-firehouse_grill_brewery-bitter,0,0,244627275778,"{""name"":""Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-dragonmead_microbrewery-crooked_door,0,0,244606107648,"{""name"":""Crooked Door"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The American hop Cascade is used to give this brew its classic American Aroma. Pale and Crystal malt from the U.S. are used to give this beer a medium body and high hop flavor. This beer goes down easily and opens the door to a world of microbrewed beers."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,0,1
-big_sky_brewing-summer_honey_seasonal_ale,0,0,244379484160,"{""name"":""Summer Honey Seasonal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Summer Honey is a full-flavored summer seasonal ale. Brewed with a unique, balanced blend of spices, Northwest Hops, and Montana honey. Summer Honey is brewed during the early days of spring and released around the first of May each year. Light colored, light bodied, and very drinkable, Summer Honey sacrifices nothing to create a flavorful beer that can be enjoyed during the height of the Summer. Available April through September"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
-barfer_das_kleine_brauhaus-schwarze,0,0,244373192705,"{""name"":""Schwarze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barfer_das_kleine_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,39,1
-brick_brewing,0,0,244475494400,"{""name"":""Brick Brewing"",""city"":""Formosa"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-367-2995"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Old Brewery Lane""]}",1,4,1
-o_gara_s_bar_grill-amber_bock,0,0,244866613249,"{""name"":""Amber Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,22,1
-diamond_bear_brewing_co-irish_red,0,0,244608663552,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_bear_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-green_bay_brewing-luna_stout,0,0,244751007744,"{""name"":""Luna Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-anchor_brewing,0,0,244362575872,"{""name"":""Anchor Brewing"",""city"":""San Francisco"",""state"":""California"",""code"":""94107"",""country"":""United States"",""phone"":""1-415-863-8350"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1705 Mariposa Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7635,""lon"":-122.401}}",1,15,1
-drake_s_brewing-sir_francis_stout,0,0,244624064512,"{""name"":""Sir Francis Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""drake_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
-maritime_pacific_brewing-nightwatch_dark_ale,0,0,244875984896,"{""name"":""Nightwatch Dark Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
-atlantic_brewing_company,0,0,244372799488,"{""name"":""Atlantic Brewing Company"",""city"":""Bar Harbor"",""state"":""Maine"",""code"":""4609"",""country"":""United States"",""phone"":""207-288-BEER"",""website"":""http://www.atlanticbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Atlantic Brewing Company began brewing in 1991, on the eve of the microbrewing revolution. We have steadily grown over the years by having a strong commitment to tradition, quality and service. As a result, we have become the number one beer of the Bar Harbor region. In the spirit of old world tradition, our beers are sold and distributed by small independents (not national brands). Our beers are now available in select areas throughout the eastern US. We only brew 60 kegs per day, which allows us to still maintain our commitment to craftsmanship. The result is that our beers enjoy great respect in the beer community. Visit our Tasting Room for more information about our standard ales. Our new facility was built on the site of an old farm a few miles from downtown Bar Harbor. It was designed to create a more visitor friendly environment similar to country wineries and breweries found throughout Europe."",""address"":[""15 Knox Rd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.3996,""lon"":-68.334}}",1,38,1
-vivungs_bryggeri-romakloster,0,0,245747286016,"{""name"":""Romakloster"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vivungs_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
-oso,0,0,244866220033,"{""name"":""Oso"",""city"":""Plover"",""state"":""WI"",""code"":""54467"",""country"":""United States"",""phone"":""715-254-2163"",""website"":""http://www.osobrewing.com/Home.php"",""type"":""brewery"",""updated"":""2011-03-16 09:05:15"",""description"":"""",""address"":[""1812 Post Road""]}",1,21,1
-oasis_brewery_and_restaurant,0,0,244867072001,"{""name"":""Oasis Brewery and Restaurant"",""city"":""Boulder"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.015,""lon"":-105.271}}",1,23,1
-brown_street_brewery-amber,0,0,244477394944,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-troegs_brewing-scratch_13_2008,0,0,245109686273,"{""name"":""Scratch #13 2008"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,26,1
-arcadia_brewing-nut_brown,0,0,244370571265,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
-full_sail_brewing_1-pale_ale,0,0,244625571840,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-hereford_hops_steakhouse_and_brewpub_3,0,0,244751466496,"{""name"":""Hereford & Hops Steakhouse and Brewpub #3"",""city"":""Wausau"",""state"":""Wisconsin"",""code"":""54401"",""country"":""United States"",""phone"":""1-715-849-3700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2201 Sherman Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9518,""lon"":-89.6657}}",1,43,1
-boston_beer_company-samuel_adams_double_bock,0,0,244368080898,"{""name"":""Samuel Adams Double Bock"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Intense and warming, a meal in a bottle.\r\nOne can not help but appreciate Samuel Adams® Double Bock's huge malt character. We use an enormous amount of malt, half a pound per bottle, to brew this intensely rich lager. Its deep brown-ruby color is all made in the kettle - no black malt is used, resulting in a rich sweetness that is free of the rough taste of burnt malt. All that remains is the velvet smooth flavor and mouthfeel of the two row malt. Samuel Adams® Double Bock's intense malt character is balanced with a subtle piney, citrus hop note from the German Noble hops.\r\n\r\nDue to legal restrictions, Samuel Adams® Double Bock can not be sold in the states of Alabama, Arizona, Georgia, Iowa, Louisiana, Missouri, North Carolina, Ohio, South Carolina, Tennessee, and West Virginia."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
-cold_spring_brewing-stite_golden_pilsner,0,0,244476018690,"{""name"":""Stite Golden Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cold_spring_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-federation_brewery-northumbrian_brown_ale,0,0,244607418370,"{""name"":""Northumbrian Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""federation_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
-boston_beer_works-hercules_stong_ale,0,0,244378238977,"{""name"":""Hercules Stong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-faultline_brewing_2-india_pale_ale,0,0,244606828544,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-iron_hill_brewery_wilmingon-light_lager,0,0,244752711681,"{""name"":""Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-unibroue-11,0,0,245110079489,"{""name"":""11"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-fuller_smith_turner_pbc-london_pride,0,0,244623867904,"{""name"":""London Pride"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-ruppaner_brauerei-kristall_weizen,0,0,244989100033,"{""name"":""Kristall Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-brasserie_de_silly-double_enghien_blonde_ale,0,0,244360151041,"{""name"":""Double Enghien Blonde Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-browar_zywiec,0,0,244476477442,"{""name"":""Browar Zywiec"",""city"":""Zywiec"",""state"":"""",""code"":""34-300"",""country"":""Poland"",""phone"":""48-0-33-614-614"",""website"":""http://www.zywiec.com.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Browarna 88""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.6622,""lon"":19.1742}}",1,7,1
-allagash_brewing-allagash_white,0,0,244362051584,"{""name"":""Allagash White"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a traditional Belgian wheat beer, Allagash White is unique and truly refreshing. Brewed with a generous portion of wheat and our own special blend of spices, this beer is light and slightly cloudy in appearance, with a spicy aroma. Overall, it is a beer that is very drinkable and smooth any time of the year.\r\n\r\n\r\n\r\nAvailable in: 12 oz and 750 ml bottles, 15.5 and 5.17 gal kegs\r\nABV: 5.0%\r\nOriginal Gravity: 1048\r\nRecommended Serving Temp: 34°F to 50°F"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,14,1
-dempsey_s_restaurant_brewery-red_rooster,0,0,244606959616,"{""name"":""Red Rooster"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
-fitzpatrick_s_brewing-celtic_stout,0,0,244627341312,"{""name"":""Celtic Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-drake_s_brewing-jolly_roger,0,0,244606107649,"{""name"":""Jolly Roger"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""drake_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-binding_brauerei_ag-lager,0,0,244379484161,"{""name"":""Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""binding_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-barley_brothers_brewery_and_grill-beachballs_red_ale,0,0,244373192706,"{""name"":""Beachballs Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-brouwerij_het_anker-gouden_carolus_hopsinjoor,0,0,244475494401,"{""name"":""Gouden Carolus Hopsinjoor"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""Gouden Carolus Hopsinjoor completes the taste pallet of the gamma Carolus-beers. \r\n\r\n\""Hopsinjoor\"" is a wordplay to for one thing the several hops which were used, and on the other hand the typical character of Mechelen of Gouden Carolus: the figure \""opsinjoor\"" is intertwined with the history of Mechelen. \r\n\r\n4 types of hops are used: Golding, Spalt, Hallertau and Saaz. These hops were fractioned at several times in the cooking process in order to keep a maximum of aroma.\r\n\r\nRegarding to taste we can say that the beer has a gentle, but nevertheless bitter aftertaste. Gold-yellow colour. Hoppy aroma."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,4,1
-old_dominion_brewing_co-oak_barrel_stout,0,0,244866613250,"{""name"":""Oak Barrel Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_dominion_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Dominion Oak Barrel Stout raises the bar for American stouts. We use smoked and peated malts to create an intricate malt foundation. Willamette and Cascade hops balance the malt character and our method of dry hopping with vanilla beans and oak chips pushes the depth of our stout's flavor spectrum even further."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,22,1
-diamond_bear_brewing_co,0,0,244608663553,"{""name"":""Diamond Bear Brewing Co."",""city"":""Little Rock"",""state"":""Arkansas"",""code"":""72201"",""country"":""United States"",""phone"":""1-501-708-2739"",""website"":""http://www.diamondbear.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""323-C Cross Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.7473,""lon"":-92.2839}}",1,6,1
-harbor_city_brewing-mile_rock_amber_ale,0,0,244751073280,"{""name"":""Mile Rock Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harbor_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
-anheuser_busch-michelob_golden_pilsner,0,0,244362575873,"{""name"":""Michelob Golden Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,15,1
-duck_rabbit_craft_brewery-duck_rabbit_amber_ale,0,0,244624064513,"{""name"":""Duck-Rabbit Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Duck-Rabbit Amber Ale is a medium bodied beer with a lovely tawny copper or bronze color. This brew emphasizes malt complexity with layered caramel malt flavors. We put a lot of effort into getting this amber ale just right and we're extremely proud of the result!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
-mckenzie_brew_house-5_czars_imperial_stout,0,0,244875984897,"{""name"":""5 Czars Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
-atwater_block_brewing-wheat,0,0,244372799489,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
-wainwright_brewing,0,0,245747286017,"{""name"":""Wainwright Brewing"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":""1-412-692-1144"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3410 Sassafras Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4616,""lon"":-79.9653}}",1,25,1
-pint_s_pub_brewery_and_freehouse-gael_force_scottish_export,0,0,244989296640,"{""name"":""Gael Force Scottish Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pint_s_pub_brewery_and_freehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-paulaner-hell,0,0,244990148608,"{""name"":""Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-bull_bush_pub_brewery-yuel_fuel,0,0,244477394945,"{""name"":""Yuel Fuel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-troegs_brewing-scratch_18_2009,0,0,245109686274,"{""name"":""Scratch #18 2009"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We started with the same grain bill as Scratch #12 (IPA) and substituted 25% rye for the base malt giving Scratch #18 a creamy mouth feel and a full-bodied taste.\r\n\r\nMount Hood and Chinook hops are combined here for flavoring and aroma, and Warrior hops are used for overall bitterness.\r\n\r\nThe rye plays off the Mount Hood hops, with both ingredients releasing an herbal, spicy flavor. Cheers."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,26,1
-asahi_breweries-edomae,0,0,244370571266,"{""name"":""Edomae"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asahi_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-goose_island_beer_company_clybourn-bourbon_county_brand_coffee_stout,0,0,244625571841,"{""name"":""Bourbon County Brand Coffee Stout"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""Everyday Goose Island smells the wonderful coffee roasting next to our brewery at Chicago's Intelligentsia Coffee and Tea. They put the same passion and skill into their coffee as Goose Island does with its beer. This excellent stout is made with Black Cat Espresso beans from our friends next door. You'll like the combination."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
-high_falls_brewing-dundee_porter,0,0,244751466497,"{""name"":""Dundee Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""More and more we’re becoming a nation of milquetoasts. And nowhere is that more evident than in our beer—puny liquids without calories, carbs, or cojones. \r\n\r\nBut it needn’t be that way, my friend! Sure, we don’t want to make a living shoveling coal or washing clothes on a rock. But we can recapture the more robust spirit of a time gone by.\r\n\r\nDundee Porter is a throwback to a different era—when times were tough and so were the people. They drank big beers, slapped each other on the back, and toasted the good life—even though they only saw it from a distance. \r\n\r\nWith Dundee Porter, you can get a taste of it.\r\n\r\nBig and malty flavor from aromatic dark-roasted grains balanced by a subtle hint of hops. Deep color and rich caramel flavor."",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-boston_beer_company-samuel_adams_pale_ale,0,0,244368146432,"{""name"":""Samuel Adams Pale Ale"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams® Pale Ale is a delicious, lighter bodied beer with a delightfully fresh taste. Its unique blend of two row malts add a rich harmony of sweet flavors that are complimented by the traditional earthy hop character imparted by authentic British hops. The fermentation character of the ale yeast adds a rich bouquet of fruit and ester notes that add another layer of complexity to this popular style"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-courthouse_pub-munich_helles,0,0,244476018691,"{""name"":""Munich Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-flying_bison_brewing-aviator_red,0,0,244607418371,"{""name"":""Aviator Red"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Buffalo’s favorite red ale. Ruby red and malty flavored with a medium body and a spicy hop signature to balance. Available in bottles and on draft"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
-brasserie_de_l_abbaye_des_rocs-blonde,0,0,244378238978,"{""name"":""Blonde"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-flagstaff_brewing-blackbird_porter,0,0,244606828545,"{""name"":""Blackbird Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-alesmith_brewing-grand_cru_2006,0,0,244360871936,"{""name"":""Grand Cru 2006"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-iron_hill_brewery_wilmingon-vienna_red_lager,0,0,244752777216,"{""name"":""Vienna Red Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""This amber Austrian lager has a distinct bready malt aroma and flavor, followed by a crisp, clean finish typical of lager styles. The nose also shows plenty of the spicy hop aroma contributed by the use of Saaz hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-upstream_brewing_old_market-railyard_ale,0,0,245110079490,"{""name"":""Railyard Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
-golden_pacific_brewing-pale_ale,0,0,244623867905,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-russian_river_brewing-pliny_the_younger,0,0,244989165568,"{""name"":""Pliny the Younger"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pliny the Younger was Pliny the Elder's nephew, in the case of this beer, the \""Younger\"" is a triple IPA. Pliny the Younger is hopped three times more than our standard IPA, and is dry hopped four different times."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,20,1
-brauerei_c_a_veltins_gmbh_co,0,0,244476739584,"{""name"":""Brauerei C. & A. Veltins GmbH & Co."",""city"":""Meschede"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2934-/-959-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""An der Streue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.3055,""lon"":8.1259}}",1,8,1
-bull_bush_pub_brewery-tower_esb,0,0,244476542976,"{""name"":""Tower ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-america_s_brewing-payton_pilsner,0,0,244362051585,"{""name"":""Payton Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-dick_s_brewing-grand_cru,0,0,244606959617,"{""name"":""Grand Cru"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-flying_dog_brewery-snake_dog_ipa,0,0,244627341313,"{""name"":""Snake Dog IPA"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""More cunning than a snake in the bush... Snake Dog India Pale Ale is a Colorado-style IPA, power hopped with specialty hops from the Pacific Northwest. This is the brewery's hop monster, and the citrus fruit aroma will hypnotize the senses of the most hardcore of craft drinkers."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-egan_brewing-cow_palace_scotch_ale_2001,0,0,244606173184,"{""name"":""Cow Palace Scotch Ale 2001"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,0,1
-brasserie_brouwerij_cantillon-iris,0,0,244379484162,"{""name"":""Iris"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,56,1
-bell_s_brewery_inc-porter,0,0,244373192707,"{""name"":""Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter for all occasions. A blend of dark malts give this beer flavors of coffee and chocolate with subtle roasted notes.Gold medal winner in the Brown Porter category Brewers Association World Beer Cup 2008."",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
-bulldog_brewing,0,0,244475494402,"{""name"":""Bulldog Brewing"",""city"":""Fresno"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.7477,""lon"":-119.772}}",1,4,1
-pete_s_brewing-wicked_winter_brew,0,0,244989689856,"{""name"":""Wicked Winter Brew"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,22,1
-diamond_knot_brewery_alehouse,0,0,244608729088,"{""name"":""Diamond Knot Brewery & Alehouse"",""city"":""Mukilteo"",""state"":""Washington"",""code"":""98275"",""country"":""United States"",""phone"":""1-425-355-4488"",""website"":""http://www.diamondknot.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""621 Front Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9485,""lon"":-122.305}}",1,6,1
-harvest_moon_brewery_cafe-british_nut_brown,0,0,244751073281,"{""name"":""British Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvest_moon_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
-anheuser_busch-pacific_ridge_pale_ale,0,0,244362575874,"{""name"":""Pacific Ridge Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
-elysian_brewing_tangletown-ak_47_malt_liquor,0,0,244624130048,"{""name"":""AK-47 Malt Liquor"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewing_tangletown"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-midnight_sun_brewing_co-descent_imperial_abbey_ale,0,0,244875984898,"{""name"":""Descent Imperial Abbey Ale"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer Description:\r\nThis deep amber Imperial Abbey Ale melds malt and earth, spice and fruit to create a wonderful vehicle to wind down the day. Belgian yeast contributes flavor notes that accent the raisins and grains of paradise used in the brewing process. With strength and stamina, DESCENT is deliberately impetuous in its mission."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,47,1
-bad_frog_brewery_company-amber_lager,0,0,244372799490,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bad_frog_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
-yegua_creek_brewing_dallas-oktoberfest,0,0,245747351552,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,25,1
-pint_s_pub_brewery_and_freehouse,0,0,244989362176,"{""name"":""Pint's Pub Brewery and Freehouse"",""city"":""Denver"",""state"":""Colorado"",""code"":""80204"",""country"":""United States"",""phone"":""1-303-534-7543"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""211 West 13th Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7369,""lon"":-104.991}}",1,21,1
-pelican_pub_brewery-india_pelican_ale,0,0,244990214144,"{""name"":""India Pelican Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pelican_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-carlsberg_sverige_ab-carnegie_stark_porter,0,0,244477394946,"{""name"":""Carnegie Stark-Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_sverige_ab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
-two_brothers_brewing-prairie_path_golden_ale,0,0,245109686275,"{""name"":""Prairie Path Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-barfer_das_kleine_brauhaus-rotgold_pils,0,0,244370571267,"{""name"":""Rotgold-Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barfer_das_kleine_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
-goose_island_beer_company_clybourn-geordie_brown_ale,0,0,244625637376,"{""name"":""Geordie Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
-hoffbrau_steaks_brewery_2-scottish_ale,0,0,244751532032,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-boston_beer_works,0,0,244368146433,"{""name"":""Boston Beer Works"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2215"",""country"":""United States"",""phone"":""1-617-536-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""61 Brookline Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.347,""lon"":-71.0989}}",1,28,1
-de_proef_brouwerij-flemish_primitive_wild_ale_pin_head,0,0,244608008192,"{""name"":""Flemish Primitive Wild Ale (Pin Head)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-four_peaks_brewing-blind_date_ale,0,0,244607483904,"{""name"":""Blind Date Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""One of a kind ale. Brewed with 600 pounds of Arizona grown Medjool Dates added to the kettle. 1998 Gold Medal GABF. Alcohol content varies as every brew is slightly different. Usually very strong with sherry or port-like flavors. Brewed quarterly. Alcohol content approximately 7-9% by volume.""}",1,3,1
-brauerei_aying_franz_inselkammer_kg,0,0,244496203776,"{""name"":""Brauerei Aying Franz Inselkammer KG"",""city"":""Aying"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8095-/-9065-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Zornedinger Strae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9706,""lon"":11.7808}}",1,52,1
-flat_branch_pub_brewing-blackberry_ale,0,0,244606828546,"{""name"":""Blackberry Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_branch_pub_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A great summer fruit beer, with 168 pounds of blackberry puree added to a light ale base. The blackberries add a distinct purple haze, and hopping is light to allow the berries to be the featured flavor. The ABV is 5.2% and hop bitterness is 22 BU's."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-alpirsbacher_klosterbru,0,0,244360937472,"{""name"":""Alpirsbacher Klosterbru"",""city"":""Alpirsbach"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7444-/-67-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Marktplatz 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3457,""lon"":8.4031}}",1,11,1
-isle_of_skye_brewing_company,0,0,244752777217,"{""name"":""Isle of Skye Brewing Company"",""city"":""Isle of Skye"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01470)-542477"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Pier""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.4907,""lon"":-4.2026}}",1,46,1
-victory_brewing-storm_king_imperial_stout,0,0,245747482624,"{""name"":""Storm King Imperial Stout"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With a huge, Pacific Northwest hop aroma & character upfront, Storm King subsides into massive, roast malt complexity. More flavor than mere words can adequately describe. Rich and substantial, it will warm your heart."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,27,1
-golden_pacific_brewing,0,0,244623867906,"{""name"":""Golden Pacific Brewing"",""city"":""Berkeley"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.8716,""lon"":-122.273}}",1,40,1
-second_street_brewery,0,0,244989165569,"{""name"":""Second Street Brewery"",""city"":""Santa Fe"",""state"":""New Mexico"",""code"":""87505"",""country"":""United States"",""phone"":""1-505-982-3030"",""website"":""http://www.secondstreetbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1814 Second Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.6631,""lon"":-105.966}}",1,20,1
-brauereigasthof_adler-spezial,0,0,244476739585,"{""name"":""Spezial"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauereigasthof_adler"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-burton_bridge_brewery-burton_porter,0,0,244476542977,"{""name"":""Burton Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,7,1
-andrew_s_brewing,0,0,244362117120,"{""name"":""Andrew's Brewing"",""city"":""Lincolnville"",""state"":""Maine"",""code"":""4849"",""country"":""United States"",""phone"":""(207) 763-3305"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Andy Hazen is a workhorse of a brewer. From start to finish, he is a one-man operation. The former cabinetmaker is also a self-reliant Mainer through and through. He was originally an all-grain homebrewer who decided to take it to the next level when his friends expressed interest in his beers. He designed the 12-barrel brewing system himself and enlisted a local welder to help put it together. Hazen notes that when you live in Maine, you have to find some service to provide to others in order to survive. For him, brewing is the service he provides to his local community. Located in the rolling hills of Lincolnville, Maine, Andrew's is housed in a renovated farmhouse next to Hazen's home. Finding the brewery is more than half the battle. Have no fear, however, as everyone knows about Andrew's. Also, be aware that due to some thieving souls, the brewery no longer has any signage to announce its existence to the visiting public. The only indication that a brewery exists in the farmhouse are the occasional keg deliveries in Hazen's front yard. And Hazen hasn't been quick to replace the sign either. While he welcomes visitors, you have to remember to clear a path for the busy brewer. Like many other unsung small brewers, running his 5OO-barrel per year brewery is a seven day a week operation for Hazen. Watching Hazen run the brewery is a little like watching Willy Wonka run the Chocolate Factory. When I visit him during a bottling day, Hazen runs between the bottling line and the packaging supplies in a hurried yet methodical manner. He stands up bottles on the line, starts the machine, slides his way across the brewhouse to the packaging materials, and hand assembles the six-packs that will hold the soon-to-be bottled beer. Andrew's beer is straightforward, unassuming and entirely enjoyable. His product line includes the St. Nick Porter, the Northern Brown Ale, the English Pale Ale, and the summer seasonal Ruby's Golden Ale. A celebration of the Amarillo hop, Hazen's English Pale Ale is a delightfully balanced product that neither over or underwhelms the palate. from beerscribe.com"",""address"":[],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.3516,""lon"":-69.1401}}",1,14,1
-dockside_brewing-cartwright_pale_ale,0,0,244607025152,"{""name"":""Cartwright Pale Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
-founders_brewing-founders_red_s_rye,0,0,244627341314,"{""name"":""Founders Red's Rye"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pours a spectacular crimson red with a creamy tan head. Brewed with four varieties of Belgian caramel malts imparting a sweet richness. Red's Rye is impressively balanced with its hop bitterness and huge citrus bouquet achieved from the immense amarillo dry hop. The generous amount of malted rye used accentuates a spicy crisp finish."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,48,1
-el_toro_brewing_company,0,0,244606173185,"{""name"":""El Toro Brewing Company"",""city"":""Morgan Hill"",""state"":""California"",""code"":""95037"",""country"":""United States"",""phone"":""408-782-2739"",""website"":""http://www.eltorobrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Geno and Cindy Acevedo founded El Toro Brewing Company in the summer of 1992. After much planning, research and construction business was begun in March of 1994. The brewery is a small 17-barrel (527 gallon) batch system and operates on the Acevedo's rural residential property. Within seven months of opening El Toro Brewing Company received its first national recognition at the 1994 Great American Beer Festival (GABF). One of its flagships El Toro Oro Golden Ale won a coveted Gold Medal for English Pale Ale. At the 1996 GABF Poppy Jasper Amber Ale, the brewery's other flagship beer, won a Silver Medal for English Brown Ale. It is a mild yet robust brown ale. The 1997 GABF saw El Toro garner another Gold Medal for the American styled wheat beer named after the brewer's father-in-law, William Jones Wheat Beer. After 16 years of planning, Geno and Cindy Acevedo of Morgan Hill finally opened a brewpub on November 25 2006. El Toro Brewpub is a two floored building with patio. Inside is the world's only Poppy Jasper Bar. Featuring over 45 feet of gorgeously inlaid and polished Poppy Jasper rock into its surface. To the back of the large mirrored bar you will find over 25 beers and handcrafted sodas on tap. We also have a gleaming copper Pub Brewing system 3 BBL (100 gallon) brewery. Live music and dancing will also be a regular nighttime happening at the brewpub consisting of mostly local bands playing cover type and original Rock, Blues, Jazz and Reggae."",""address"":[""17605 Monterey Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.1553,""lon"":-121.676}}",1,0,1
-brasserie_d_orval-petite_orval,0,0,244379549696,"{""name"":""Petite Orval"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_orval"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,56,1
-bierbrouwerij_de_koningshoeven-tripel,0,0,244373258240,"{""name"":""Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-caldera_brewing-hopportunity_knocks_ale,0,0,244475559936,"{""name"":""Hopportunity Knocks Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""IPA brewed with 100% Centennial hops. Big round mouthfeel, very perfumey. Different from our canned IPA. Gotta love the Pacific NW!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
-pinehurst_village_brewery-double_eagle_golden_ale,0,0,244989755392,"{""name"":""Double Eagle Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-dick_s_brewing-pale_ale,0,0,244608729089,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
-high_falls_brewing-dundee_festive_ale,0,0,244751138816,"{""name"":""Dundee Festive Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""So did you ever ask yourself...what exactly is there to be festive about during the holidays? Your brother in-law snoring on the air mattress? (Boy, let’s hope that’s snoring.) The variety of toys with realistic sound effects? Fruit cake?\r\n\r\nDundee Festive Ale may be one of the few exceptions. One sip of the carefully matched seasonal spices and you realize that the holidays are worth paying...waiting for.\r\n\r\nOh, there may be one other thing to be festive about. There’s a 13 to 1 chance against your brother in-law’s plane leaving on time. But at least there’s a chance.\r\n\r\nFestively hearty and full bodied with a mild nutmeg, allspice, cinnamon, and orange peel spice character and subtle crystal malt flavor."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,42,1
-bandana_brewery-rapidan_brown,0,0,244362575875,"{""name"":""Rapidan Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
-f_x_matt_brewing-saranac_caramel_porter,0,0,244624195584,"{""name"":""Saranac Caramel Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Caramel Porter is a Robust, flavorful porter Reminiscent of a by-gone era. True to brewing tradition, we've used dark caramel malt, as well as Fuggles and East Kent Goldings hops for smooth, yet slightly bitter, roasted flavor, look for hints of the real caramel used in brewing this delicious beer!"",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
-miller_brewing-milwaukee_s_best_light,0,0,244876050432,"{""name"":""Milwaukee's Best Light"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Milwaukee's Best Light is Miller Brewing Company's lead low-calorie brand in the near-premium segment. Brewed to uncompromising standards using select pale malt, cereal grains and yeast, this is a smooth, highly drinkable beer at an affordable price. Available nationwide, Miller first rolled out Milwaukee's Best Light in 1986 with an ambition to become the beer choice for guys. Our marketing, including sponsorship with the World Series of Poker and award-winning TV spots, takes a humorous approach to reinforce the idea that \""Men should act like men and light beer should taste like beer.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,47,1
-barley_creek_brewing-angler_black_lager,0,0,244372799491,"{""name"":""Angler Black Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and delightful, this is an easy-drinking brew. Once a seasonal favorite now we brew it all the time as part of our variety case. Brewed with five different malts and three different hops, then pitched with Bavarian lager yeast."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
-port_washington_brewing-old_port_porter,0,0,244989362177,"{""name"":""Old Port Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
-port_brewing_company-high_tide_ipa,0,0,244990214145,"{""name"":""High Tide IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""ach and every fall, we experience a coastal experience in San Diego known as the \""Super High Tide.\"" This happens later in the Fall Season when the tidal swings reach a range of about 8 feet in difference between low and high tides. When this happens, there are days when the tide just gets too high and flattens out the surf. The lineups shut down and surfers are left to wait until the High Tide recedes.\r\n\r\nWhile waiting for the tides to shift in your favor, might we suggest a High Tide IPA? Brewed only once each year to coincide with the Hop Harvest in Yakima Washington, High Tide IPA is made with 180 lbs of Fresh Hops per batch that are plucked from the vines and sent straight to our brewery. We skip the whole drying and processing stage which means the hops are ultra fresh and full of flavors we can't normally get. Like grapes, Hops are only harvested one time each year and as such, we make what we can when we get them."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
-charlie_and_jake_s_brewery_and_bbq-anniversary_ale,0,0,244477394947,"{""name"":""Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""charlie_and_jake_s_brewery_and_bbq"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-upstream_brewing_old_market-firehouse_esb,0,0,245109751808,"{""name"":""Firehouse ESB"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""A Silver Medal winner at the 2005 Great \r\nAmerican Beer Festival in the Bitter category, our \r\nExtra Special Bitter (ESB) is a medium-bodied ale \r\nhighly hopped and loaded with flavor."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,26,1
-baron_brewing_company-baron_schwarzbier,0,0,244370636800,"{""name"":""Baron Schwarzbier"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Baron Schwarzbier is a classic German black lager, deep black with ruby and brown highlights. At first the Schwarzbier starts with a slight roasty nose and taste, followed by a faint chocolate-malty body with a very crisp, clean, lagered finish. Lagered for an average of 10-12 weeks to provide a very smooth, easy drinking Schwarzbier with full flavor provided by the dark malts. \r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,33,1
-gordash_brewing_company-holy_mackerel_special_golden_ale,0,0,244625637377,"{""name"":""Holy Mackerel Special Golden Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordash_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,44,1
-illinois_brewing-amber_plus,0,0,244751532033,"{""name"":""Amber Plus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""illinois_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-brasserie_brouwerij_cantillon-rose_de_gambrinus,0,0,244368211968,"{""name"":""Rosé de Gambrinus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,28,1
-de_proef_brouwerij-flemish_primitive_wild_ale_spoon_whacker,0,0,244608073728,"{""name"":""Flemish Primitive Wild Ale (Spoon Whacker)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-four_peaks_brewing-oatmeal_stout,0,0,244607483905,"{""name"":""Oatmeal Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Oatmeal Stout is definitely a local favorite but it gets its origins from one of London's oldest breweries. The Oatmeal Stout differs from the popular Irish stout in its more subtle roastiness and subdued dryness. The addition of flaked oats rounds out these sometimes harsh characteristics producing a velvet smooth ale. This black stout has a flavor profile unique to all of North America. Subtlety is not a strong point as it is a stout after all, rich and eminently drinkable. \r\n\r\nAlcohol content of approximately 5.0% by volume (ALWAYS ON TAP!!)"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,3,1
-brauerei_c_a_veltins_gmbh_co-pilsner,0,0,244496269312,"{""name"":""Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_c_a_veltins_gmbh_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-21st_amendment_brewery_cafe-double_trouble_ipa,0,0,244360413184,"{""name"":""Double Trouble IPA"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep, golden, rich malt flavor huge citrus, fruity grassy, ethanol sweetness aroma with a profound bitterness, yet balanced malt back bone with grapefruit, mellow citric overtones. Dry hopped three times in the fermenter. Brewed with over 65 lbs of hops for 300 gallons of beer. The beer to bring world peace and end the war. Bronze Medal - 2006 Imperial IPA Festival at the Bistro in Hayward, California."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,10,1
-fratellos_restaurant_and_brewery-winnebago_wheat,0,0,244606894080,"{""name"":""Winnebago Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
-anchor_brewing-old_foghorn_2001,0,0,244360937473,"{""name"":""Old Foghorn 2001"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-jaipur_restaurant_and_brewpub,0,0,244752777218,"{""name"":""Jaipur Restaurant and Brewpub"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68144"",""country"":""United States"",""phone"":""1-402-392-7331"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10922 Elm Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2328,""lon"":-96.0825}}",1,46,1
-water_street_brewery-bavarian_weiss_beer,0,0,245747482625,"{""name"":""Bavarian Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
-goose_island_beer_company_clybourn-maduro,0,0,244623933440,"{""name"":""Maduro"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
-skagit_river_brewing-skibbereen_stout,0,0,244989231104,"{""name"":""Skibbereen Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
-breckenridge_bbq_of_omaha-mountain_wheat,0,0,244476805120,"{""name"":""Mountain Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-burton_bridge_brewery-empire_india_pale_ale,0,0,244476542978,"{""name"":""Empire India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,7,1
-ball_und_brauhaus_watzke,0,0,244362117121,"{""name"":""Ball- und Brauhaus Watzke"",""city"":""Dresden"",""state"":""Sachsen"",""code"":""1139"",""country"":""Germany"",""phone"":"""",""website"":""http://www.watzke.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kötzschenbroder Str. 1""]}",1,14,1
-eastern_shore_brewing-ameri_hefe,0,0,244607025153,"{""name"":""Ameri-Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eastern_shore_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
-glacial_lakes_brewing-red,0,0,244627406848,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glacial_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-empyrean_brewing_company-collapsar_oatmeal_stout,0,0,244606238720,"{""name"":""Collapsar Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
-brasserie_de_l_abbaye_des_rocs-blanche_des_honnelles,0,0,244379549697,"{""name"":""Blanche des Honnelles"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-big_ridge_brewing-light_lager,0,0,244373258241,"{""name"":""Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-captain_lawrence_brewing_company-golden_delicious,0,0,244475559937,"{""name"":""Golden Delicious"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""There’s nothing quite likes Mom’s apple pie…But I am willing to bet this beer is pretty darn close. An American Tripel, dry-hoped with Amarillo hops and aged in Apple Brandy barrels from one of this country’s oldest distilleries. The tropical aroma of the hops and the delicate apple aroma from the barrels are a perfect match. Straight from the Captain’s cellar to yours, we hope you enjoy."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,4,1
-pumphouse_brewery_restaurant,0,0,244989820928,"{""name"":""Pumphouse Brewery & Restaurant"",""city"":""Longmont"",""state"":""Colorado"",""code"":""80501"",""country"":""United States"",""phone"":""1-303-702-0881"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""540 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.1688,""lon"":-105.102}}",1,22,1
-dockside_brewing-marina_light_lager,0,0,244608729090,"{""name"":""Marina Light Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-hoppy_brewing_company-stony_face_red_ale,0,0,244751138817,"{""name"":""Stony Face Red Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppy’s gift to those who like their beers Malty. Dark Caramel and Chocolate Malts lend their deep crimson silkiness, and judicious additions of Nugget and Cascade hops give just enough bitterness for balance. Ask your server’s favorite beer and it’s probably this one."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
-barley_brothers_brewery_and_grill-bighorn_ipa,0,0,244362641408,"{""name"":""Bighorn IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-fish_brewing_company_fish_tail_brewpub-organic_india_pale_ale,0,0,244624195585,"{""name"":""Organic India Pale Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""Fish Tale Organic India Pale Ale is a medium-bodied beer with a rich golden color. The organic pale and crystal malts lay down a firm malt body. This provides the backbone for an assertive hop profile featuring organic Pacific Gem. The moment the Mighty Fish Brewers sampled this pungent and resinous New Zealand hop, they knew it would be perfect for their Organic I.P.A. The result: A Cascadian treasure."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,41,1
-milly_s_tavern-weathertop_doppelbock,0,0,244876050433,"{""name"":""Weathertop Doppelbock"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milly_s_tavern"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,47,1
-barley_island_brewing-hazelnut_brown,0,0,244372799492,"{""name"":""Hazelnut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-portland_brewing,0,0,244989427712,"{""name"":""Portland Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97210"",""country"":""United States"",""phone"":""1-503-226-7623"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2730 NW 31st Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5415,""lon"":-122.713}}",1,21,1
-prairie_rock_brewing_elgin-prairie_light,0,0,244990214146,"{""name"":""Prairie Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-cheshire_cat_brewery,0,0,244477460480,"{""name"":""Cheshire Cat Brewery"",""city"":""Arvada"",""state"":""Colorado"",""code"":""80002"",""country"":""United States"",""phone"":""1-303-431-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7803 Ralston Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.8023,""lon"":-105.084}}",1,9,1
-walnut_brewery,0,0,245747351552,"{""name"":""Walnut Brewery"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80302"",""country"":""United States"",""phone"":""(303) 447-1345"",""website"":""http://www.walnutbrewery.com/"",""type"":""brewery"",""updated"":""2011-03-01 13:26:24"",""description"":"""",""address"":[""1123 Walnut Street""]}",1,26,1
-baron_brewing_company,0,0,244370636801,"{""name"":""Baron Brewing Company"",""city"":""Seattle"",""state"":""Washington"",""code"":""98108"",""country"":""United States"",""phone"":""206.764.1213"",""website"":""http://www.baronbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mike Baker and Jeff Smiley founded Baron Brewing in the beginning of 2003. A brewery has been in the works for sometime. Lots of discussions on what if we had a brewery were had, over lots of good German beer. The opportunity came for us to travel to Germany to really get involved with the German brewing process and ideology - as well as sample the best beer on earth. After that trip, the direction of the brewery was set. German beer had to be re-discovered by the population. After many discussions on opening a brewery and a trip to Germany, the dream became reality. We found an existing brewery to purchase - Lunar Brewing. After purchasing Lunar and getting approved for all the necessary licensing, Baron is ready to go. On June 14th, the world of Seattle will have the chance to finally taste and purchase Baron Beer. The first style of many to be released is our flagship beer - Munich Lager.That is all for the history. We are growing on a daily basis and plan to be around for quite some time."",""address"":[""1605 S 93rd Building E Unit L""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.5203,""lon"":-122.312}}",1,33,1
-granite_city_food_brewery_saint_cloud,0,0,244751663104,"{""name"":""Granite City Food & Brewery - Saint Cloud"",""city"":""Saint Cloud"",""state"":""Minnesota"",""code"":""56301"",""country"":""United States"",""phone"":""1-320-203-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3945 Second Street South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.5498,""lon"":-94.2067}}",1,44,1
-iron_hill_brewery_wilmingon-kryptonite_imperial_ipa,0,0,244751597568,"{""name"":""Kryptonite Imperial IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""American style double IPA, full bodied malt flavor supports a ridiculous amount of hops, giving it pronounced bitterness and overwhelming hop flavor and aroma. Made with 5 pounds of hops per barrel."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,43,1
-brasserie_dupont-biere_de_miel,0,0,244368211969,"{""name"":""Bière de Miel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-delafield_brewhaus,0,0,244608139264,"{""name"":""Delafield Brewhaus"",""city"":""Delafield"",""state"":""Wisconsin"",""code"":""53018"",""country"":""United States"",""phone"":""1-262-646-7821"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3832 Hillside Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0481,""lon"":-88.3553}}",1,5,1
-golden_valley_brewery_and_pub-chehalem_mountain_ipa,0,0,244607483906,"{""name"":""Chehalem Mountain IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
-brauerei_im_fchschen-alt,0,0,244496334848,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_im_fchschen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
-512_brewing_company-one,0,0,244360413185,"{""name"":""One"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-29 14:11:16"",""description"":""Our first anniversary release is a Belgian-style strong ale that is amber in color, with a light to medium body. Subtle malt sweetness is balanced with noticeable hop flavor, light raisin and mildly spicy, cake-like flavors, and is finished with local wildflower honey aromas. Made with 80% Organic Malted Barley, Belgian Specialty grains, Forbidden Fruit yeast, domestic hops and Round Rock local wildflower honey, this beer is deceptively high in alcohol. "",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,10,1
-full_sail_brewing_1-old_boardhead_1999,0,0,244606894081,"{""name"":""Old Boardhead 1999"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-asheville_pizza_and_brewing_co-roland_s_esb,0,0,244361003008,"{""name"":""Roland's ESB"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asheville_pizza_and_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Cascade hops lend this ale a lively and spirited edge that perfectly complements its effervescent amber maltiness."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,11,1
-keesmann_bru-weissbier,0,0,244752842752,"{""name"":""Weissbier"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keesmann_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
-william_kuether_brewing,0,0,245747482626,"{""name"":""William Kuether Brewing"",""city"":""Clear Lake"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.2519,""lon"":-92.2713}}",1,27,1
-granville_island_brewing,0,0,244750352384,"{""name"":""Granville Island Brewing"",""city"":""Kelowna"",""state"":""British Columbia"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1125 Richter Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.8945,""lon"":-119.488}}",1,40,1
-slab_city_brewing-shawano_gold,0,0,244989231105,"{""name"":""Shawano Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-breckenridge_brewery-remarkable_vanilla_porter,0,0,244476805121,"{""name"":""Remarkable Vanilla Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Awesome Porter! Smooth, the vanilla makes this beer very drinkable. Enjoy!!"",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
-cambridge_brewing-regatta_golden,0,0,244476608512,"{""name"":""Regatta Golden"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the tradition of the fresh, blond ales of Cologne, Germany, our Golden ale is light in body, crisp and very refreshing. Its soft malt flavor is balanced by delicate, spicy hop flavors and finishes.""}",1,7,1
-baltimore_washington_beer_works,0,0,244362182656,"{""name"":""Baltimore-Washington Beer Works"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21284"",""country"":""United States"",""phone"":""410.321.1892"",""website"":""http://www.ravenbeer.com/home.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Baltimore-Washington Beer Works, of Baltimore, Maryland is the first to have launched a beer in another country before ever being produced at home. Production first occurred in Germany prior to any in America. The Raven was originally produced in the Black Forest and still is produced in the Black Forest region of Baden-Württemberg. The small town of Nagold, south of Stuttgart and west of the university town of Tübingen, is where the Anker Brewery can be found. BWBW was founded by Stephen Demczuk of Baltimore, who was partner in Europe's first beer-of-the-month club, Beer Around the World. He, along with Baltimorean, Jim Seay and German beer importer Mr. Wolfgang Stark, styled a beer that would be appealing to the masses, drinkable and enjoyed by both the lager and ale drinker. From the assistance of master brewer Mr. Hans-Martin Walz of Anker Brewery, came The Raven, a beer brewed in honor of Baltimore's literary genius, Edgar Allan Poe. After more than a year operating in Europe, the world's most competitive beer market, production of The Raven began in Baltimore in June of 1998."",""address"":[""P.O. Box 9829""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.42,""lon"":-76.54}}",1,14,1
-egan_brewing-moll_dubh_irish_ale,0,0,244607025154,"{""name"":""Moll Dubh Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,2,1
-gottberg_brew_pub-all_american_lager_discontinued,0,0,244627406849,"{""name"":""All-American Lager (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-engine_house_9-irish_stout,0,0,244606238721,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
-brasserie_dubuisson,0,0,244379549698,"{""name"":""Brasserie Dubuisson"",""city"":""Pipaix"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-069-67-22-21"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chause de Mons 28""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.5779,""lon"":3.5554}}",1,56,1
-big_river_brewing-nut_brown_ale,0,0,244373258242,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-catawba_valley_brewing_company-firewater_indian_pale_ale,0,0,244475559938,"{""name"":""Firewater Indian Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""catawba_valley_brewing_company"",""updated"":""2011-02-16 12:38:43"",""description"":""This golden straw colored IPA is made with 5 varieties of malts and 6 massive hop additions. It is outstanding in flavor and aromatics."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-amber_lager,0,0,244989886464,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
-dragonmead_microbrewery-breath_of_the_dragon_english_bitter,0,0,244608794624,"{""name"":""Breath of the Dragon English Bitter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This fine English style Best Bitter is made with Imported English Pale Ale, Aromatic and Caramel malts. Galena and Willamette Hops add a moderate bittering level to make this a refreshing example of an English Bitter."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,6,1
-hopworks_urban_brewery-secession_black_india_pale_ale_cda,0,0,244751138818,"{""name"":""Secession Black India Pale Ale (CDA)"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Secession is a Black IPA, or Cacadian Dark Ale. This emerging beer style is characterized by an alliance of North-west hop flavors as formidable as the Cascade Mountain Range and roasted malts as dark as a moonless night. Join the party and uncap a revolution!""}",1,42,1
-big_time_brewing-snow_melt_nitrogen_pale,0,0,244362641409,"{""name"":""Snow Melt Nitrogen Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
-aldaris-porteris,0,0,244361592832,"{""name"":""Porteris"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aldaris"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,13,1
-flat_branch_pub_brewing,0,0,244624195586,"{""name"":""Flat Branch Pub & Brewing"",""city"":""Columbia"",""state"":""Missouri"",""code"":""65201"",""country"":""United States"",""phone"":""(573) 499-0400"",""website"":""http://www.flatbranch.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""From great seasonal beers like an imperial stout, pumkin ale, or maibock to all-year ales, lagers, and stouts, this micro-brewery has it all!"",""address"":[""115 S. Fifth St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.95,""lon"":-92.3323}}",1,41,1
-mohrenbrauerei_august_huber,0,0,244876115968,"{""name"":""Mohrenbrauerei August Huber"",""city"":""Dornbirn"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-55-72-/-37-77-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Doktor-Waibel-Strae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.4123,""lon"":9.7443}}",1,47,1
-bayerische_staatsbrauerei_weihenstephan-kristall_weissbier,0,0,244372865024,"{""name"":""Kristall Weissbier"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
-privatbrauerei_erdinger_weissbru,0,0,244989493248,"{""name"":""Privatbrauerei Erdinger Weissbru"",""city"":""Erding"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8122-/-4090"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Franz-Brombach-Strae 1-20""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3153,""lon"":11.8911}}",1,21,1
-river_west_brewing-bullfrog_bitter_esb,0,0,244990279680,"{""name"":""Bullfrog Bitter ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-clipper_city_brewing_co-heavy_seas_big_dipa,0,0,244477460481,"{""name"":""Heavy Seas Big DIPA"",""abv"":10.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Big DIPA – Double IPA, is the first in the Heavy Seas Special Edition Series due to be released in mid June. Hopped 3 times in the brewing process, Big DIPA has an earthy hop aroma. In keeping with the Heavy Seas philosophy we've made a big beer with a surprising balance. The best part is that you’ll hardly notice it’s 10.6% ABV (est). The label artwork was created by Kurt Krol, one of our brewers who also helped to develop the recipe."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,9,1
-wisconsin_brewing-rainbow_red_ale,0,0,245747351553,"{""name"":""Rainbow Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wisconsin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
-bell_s_brewery_inc-third_coast_beer,0,0,244370702336,"{""name"":""Third Coast Beer"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden beer brewed with pale malts. Large American hop additions contribute a crisp refreshing bitterness. A tribute to the Great Lakes, T.C.B. is a truly quaffable beer."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,33,1
-hair_of_the_dog_brewing-fred,0,0,244751728640,"{""name"":""Fred"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2002,0,0,244751597569,"{""name"":""Harvest Ale 2002"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,43,1
-brauerei_gasthof_zur_krone-coronator_helle_doppelbock,0,0,244485455872,"{""name"":""Coronator Helle Doppelbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
-desnoes_geddes_ltd-guinness_foreign_extra,0,0,244608139265,"{""name"":""Guinness Foreign Extra"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""desnoes_geddes_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,5,1
-goose_island_beer_company_clybourn-bourbon_county_stout,0,0,244607549440,"{""name"":""Bourbon County Stout"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in honor of the 1000th batch at our original Clybourn brewpub. A liquid as dark and dense as a black hole with thick foam the color of a bourbon barrel. The nose is an intense mix of charred oak, chocolate, vanilla, caramel and smoke. One sip has more flavor than your average case of beer. A great cigar beer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,3,1
-brauhaus_faust-krausen_naturtrub,0,0,244496334849,"{""name"":""Kräusen Naturtrüb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_faust"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-aass_brewery-classic_special_brew,0,0,244360478720,"{""name"":""Classic Special Brew"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-goose_island_beer_company_clybourn-kilgubbin_irish_ale,0,0,244606894082,"{""name"":""Kilgubbin Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
-bbc_brewing_co_llc-cask_hefe,0,0,244361003009,"{""name"":""Cask Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""It is a good clean hefe."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,11,1
-knig_brauerei,0,0,244752842753,"{""name"":""Knig Brauerei"",""city"":""Duisburg"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)203-/-455-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Friedrich-Ebert-Strae 255-263""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.5314,""lon"":6.7418}}",1,46,1
-wolf_pack_brewing-lone_mountain_altbier,0,0,245747613696,"{""name"":""Lone Mountain Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wolf_pack_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,27,1
-great_dane_pub_and_brewing_2-sugar_river_esb,0,0,244750417920,"{""name"":""Sugar River ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-spring_house_brewing_company-seven_gates_pale_ale,0,0,245106868224,"{""name"":""Seven Gates Pale Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The story of the Seven Gates comes from rural Pennsylvania, not far from the Spring House Brewery. According to the legend, a mental asylum for the criminally insane stood in the middle of a dense forest. Surrounding the asylum were seven concentric gates, preventing would-be escapees. One terrifying night, the asylum caught fire, test link causing the inmates to flee into the menacing forest. As the tale goes, the former asylum residents were trapped by the seven gates, and eventually succumbed to the perils of the forest. The locals swear that the tormented souls of the inmates will torture anyone brave enough to attempt passage through the Seven Gates of the forest.\r\n\r\nSpring House Brewing Co. honors the local legend by producing a terrifyingly delicious brew that is as familiar as a friendly forest, yet possesses a mysterious quality that will haunt you from the first taste. The enormous, hopped flavor and the meticulous craftsmanship that goes into each bottle will have you believing that the master brewer must be a direct descendent of the former asylum residents."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
-brooklyn_brewery-brown_ale,0,0,244476805122,"{""name"":""Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A mix of Northern and Southern English Brown Ales, blending 6 malts into an All-American beer."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
-castle_springs_brewery-lucknow_india_pale_ale,0,0,244476608513,"{""name"":""Lucknow India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""castle_springs_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-bar_harbor_brewing_company,0,0,244362182657,"{""name"":""Bar Harbor Brewing Company"",""city"":""Bar Harbor"",""state"":""Maine"",""code"":""4609"",""country"":""United States"",""phone"":""(207) 288-4592"",""website"":""http://www.barharborbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8 Mt. Desert Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.3875,""lon"":-68.2046}}",1,14,1
-elm_city_brewing_co,0,0,244607090688,"{""name"":""Elm City Brewing Co"",""city"":""Keene"",""state"":""New Hampshire"",""code"":""3431"",""country"":""United States"",""phone"":""(603) 355-3335"",""website"":""http://www.elmcitybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""222 West St # 46""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.9324,""lon"":-72.2867}}",1,2,1
-granville_island_brewing_company-island_lager,0,0,244753367040,"{""name"":""Island Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-f_x_matt_brewing-saranac_black_forest,0,0,244606238722,"{""name"":""Saranac Black Forest"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Bavarian black beer with distinctive carmel malt sweetness and rich creamy trademark head. Flavorful, yet smooth; it is very drinkable!"",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,0,1
-brauerei_aying_franz_inselkammer_kg-celebrator,0,0,244497776640,"{""name"":""Celebrator"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""Profoundly dark, rich elixir with a complex fruitiness of roasted malt and whole hop flowers. Semi-dry finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,56,1
-bj_s_restaurant_and_brewery-brewhouse_blonde,0,0,244373323776,"{""name"":""Brewhouse Blonde"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-cedar_brewing-golden_hawk_wheat_beer,0,0,244475625472,"{""name"":""Golden Hawk Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
-redhook_ale_brewery-winterhook_robust_winter_ale_1993,0,0,244989886465,"{""name"":""Winterhook Robust Winter Ale 1993"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-egan_brewing-best_bull,0,0,244608794625,"{""name"":""Best Bull"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-jolly_pumpkin_artisan_ales-biere_de_mars,0,0,244751204352,"{""name"":""Biere de Mars"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A sustaining beer that is brewed to comfort in the gusty ides of March and welcome in a wealth of warmer weather."",""style"":""Old Ale"",""category"":""British Ale""}",1,42,1
-bloomington_brewing_company,0,0,244362641410,"{""name"":""Bloomington Brewing Company"",""city"":""Bloomington"",""state"":""Indiana"",""code"":""47402"",""country"":""United States"",""phone"":""812.323-2112"",""website"":""http://bbc.bloomington.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established by One World Enterprises in 1989, Lennie's introduced gourmet pizza to Bloomington, and has since become one of the town's most popular and eclectic eateries. Lennie's set another local landmark in 1994, with the addition of the first commercial brewery in Monroe county and the first brewpub in Southern Indiana. Open until Midnight Sunday through Thursday and until 1 a.m. on Friday and Saturday, Lennie's menu topped by award-winning beer from the BBC and an extensive wine offering appeals to those looking for a quick lunch, a relaxing dinner, an enjoyable happy hour, or a few late-night ales."",""address"":[""1795 E 10th St,""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1716,""lon"":-86.5104}}",1,15,1
-alesmith_brewing-anvil_ale,0,0,244361658368,"{""name"":""Anvil Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-flossmoor_station_brewery-old_420_wheat_wine,0,0,244624261120,"{""name"":""Old 420 Wheat Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-moylan_s_brewery_restaurant-moylans_hopsickle_imperial_ale,0,0,244876115969,"{""name"":""Moylans Hopsickle Imperial Ale"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""In celebration of the hop,,,,, This is a \""Hop\"" tribute, worthy of a Kings Imperial Court! Enjoy the blast of fresh Tomahawk, Chinook and Anthanum Hops as they stimulate the taste buds in a truly Imperial Fashion. Pucker up!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,47,1
-bbc_brewing_co_llc-bourbon_barrel_smoked_porter,0,0,244372865025,"{""name"":""Bourbon Barrel Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Think of Guinness but with a \""smooth bite\"" to it. This is a wonder beer for those of us who enjoy a porter."",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-esb,0,0,244989493249,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-rothaus_brauerei-pilsner,0,0,244990279681,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-cooper_s_cave_ale_company-cooper_s_cave_tavern_ale,0,0,244477526016,"{""name"":""Cooper's Cave Tavern Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Tavern Ale is a traditional English Bitter, dry bodied and light in color. This sessions ale utilizes Northdown and Kent Golding Hops. Tavern Ale is the creation of Assistant Brewer Adrian Bethel."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,9,1
-wychwood_brewery-scarecrow_ale,0,0,245747417088,"{""name"":""Scarecrow Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
-bellows_brew_crew-dunkle,0,0,244370702337,"{""name"":""Dunkle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-hereford_hops_restaurant_and_brewpub_1-peninsula_porter,0,0,244751794176,"{""name"":""Peninsula Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
-kalamazoo_brewing-great_lakes_amber_ale,0,0,244751597570,"{""name"":""Great Lakes Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kalamazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-brewery_de_troch-chapeau_mirabelle_lambic,0,0,244485521408,"{""name"":""Chapeau Mirabelle Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,28,1
-diamondback_brewery-framboise,0,0,244608204800,"{""name"":""Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamondback_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,5,1
-goose_island_beer_company_fulton_street-bourbon_county_stout_2007,0,0,244607549441,"{""name"":""Bourbon County Stout 2007"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-brewdog_ltd-hop_rocker,0,0,244496334850,"{""name"":""Hop Rocker"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
-abita_brewing_company-satsuma_wit,0,0,244360478721,"{""name"":""Satsuma Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:56:18"",""description"":""This Wit beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,10,1
-abbaye_de_leffe-leffe_blonde,0,0,244361134080,"{""name"":""Leffe Blonde"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_leffe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,12,1
-granite_city_food_brewery_omaha-northern_light_lager,0,0,244734361600,"{""name"":""Northern Light Lager"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
-beach_brewing-hornet_tail_ipa,0,0,244361068544,"{""name"":""Hornet Tail IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,11,1
-labatt_ontario_breweries-labatt_bleue_dry,0,0,244752842754,"{""name"":""Labatt Bleue Dry"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Bleue Dry, the second addition to the Bleue family, is brewed with the same care and attention to detail as Labatt Bleue. Labatt Bleue Dry is mashed longer than regular beers to leave less carbohydrate (sugar) in the finished beer, giving a clean, crisp finish. Using select aromatic hops and a blend of the finest quality North American barley malts, this lager is clean-flavoured with no aftertaste."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,46,1
-wolf_tongue_brewery,0,0,245747613697,"{""name"":""Wolf Tongue Brewery"",""city"":""Nederland"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Closed."",""address"":[""35 E. First St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.9619,""lon"":-105.51}}",1,27,1
-great_divide_brewing-st_bridget_s_porter,0,0,244750417921,"{""name"":""St. Bridget's Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""St. Bridget, a legendary Irish saint, created a sensation by turning her bathwater into beer. What better way to celebrate her worthy miracle than with our zymurgistic tribute to her feat: St. Bridget’s Porter. St. Bridget’s is a smooth and elegant brown porter. Brimming with coffee and chocolate characteristics from dark barley malts, St. Bridget’s is carefully hopped to provide the perfect complement to its malty robustness. This beer is a “must have” beer for all porter lovers.\r\n\r\nPrepare yourself for a religious experience"",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
-staatliches_hofbrauhaus_in_munchen-maibock,0,0,245106933760,"{""name"":""Maibock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,20,1
-brooklyn_brewery-oktoberfest,0,0,244476805123,"{""name"":""Oktoberfest"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Please enjoy Brooklyn Oktoberfest, a rich, malty version of the beer brewed for the fall festival which originated in Germany with the betrothal of the Crown Prince of Bavaria in 1810. Brooklyn Oktoberfest is in the marzen style, an amber lager beer brewed in March and stored cold through the summer for sale in autumn."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-cervecera_nacional,0,0,244476608514,"{""name"":""Cervecera Nacional"",""city"":""El Dorado"",""state"":"""",""code"":"""",""country"":""Panama"",""phone"":""507-236-1400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Va Ricardo J. Alfaro y Transistmica""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.4316,""lon"":-78.6569}}",1,7,1
-bayerische_staatsbrauerei_weihenstephan,0,0,244362248192,"{""name"":""Bayerische Staatsbrauerei Weihenstephan"",""city"":""Freising"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8161-/-536-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Alte Akademie 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3952,""lon"":11.7288}}",1,14,1
-elysian_brewing_tangletown,0,0,244607090689,"{""name"":""Elysian Brewing - TangleTown"",""city"":""Seattle"",""state"":""Washington"",""code"":""98103"",""country"":""United States"",""phone"":""1-206-547-5929"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2106 North 55th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6688,""lon"":-122.334}}",1,2,1
-great_dane_pub_and_brewing_1-old_kentucky_stout,0,0,244753432576,"{""name"":""Old Kentucky Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-f_x_matt_brewing-saranac_black_tan,0,0,244606304256,"{""name"":""Saranac Black & Tan"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A beer lover's dream! This classic irish stout and amber lager blend is malty, yet pleasantly bitter with many complex flavor notes. Look for a deep brown-black color and full-body.""}",1,0,1
-brauerei_fssla-zwergla,0,0,244497842176,"{""name"":""Zwergla"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-bluegrass_brewing_company_inc-altbier,0,0,244373323777,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bluegrass_brewing_company_inc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-central_city_brewing_company-iceberg_copper_bock,0,0,244475625473,"{""name"":""Iceberg Copper Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,4,1
-rock_bottom_restaurant_brewery_milwaukee-belgian_trippel,0,0,244989886466,"{""name"":""Belgian Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-eldridge_pope_and_co,0,0,244608794626,"{""name"":""Eldridge, Pope and Co."",""city"":""Dorchester"",""state"":""Dorset"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,6,1
-karlovacka_pivovara-crno_pivo,0,0,244751204353,"{""name"":""Crno Pivo"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karlovacka_pivovara"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-boulder_beer_company-mojo_india_pale_ale,0,0,244362641411,"{""name"":""MoJo India Pale Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-anchor_brewing-our_special_ale_1997,0,0,244361723904,"{""name"":""Our Special Ale 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-flying_dog_brewery-dogtoberfest_octoberfest,0,0,244624261121,"{""name"":""Dogtoberfest Octoberfest"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dogtoberfest are shrouded in mystery, but scholars think it has everything to do with an insane German king and a crazed Oompah band. You can read the full historical record of Dogtoberfest at FlyingDogAles.com. Dogtoberfest is deep mahogany in color with an intriguing caramel finish and brewed with 100% imported German ingredients for a true German flavor."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,41,1
-mudshark_brewing-dry_heat_hefeweizen,0,0,244876181504,"{""name"":""Dry Heat Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""70% Wheat Malt Makes This A Light & Refreshing Ale For A Hot Day!"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
-beermann_s_beerwerks_brewpub-lincolnshire_mild,0,0,244372865026,"{""name"":""Lincolnshire Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beermann_s_beerwerks_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,38,1
-rahr_sons_brewing_company-rahr_s_red,0,0,244989493250,"{""name"":""Rahr's Red"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rahr's Red is a delicious, medium-bodied red lager. Notes of caramel with a sound malt character. Not too hoppy, very smooth."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
-roy_pitz_brewing_company-ludwig_s_revenge,0,0,244990279682,"{""name"":""Ludwig's Revenge"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This brew was inspired by the historical burning of our hometown of Chambersburg, PA in July 1864. During the burning, the brewery in town, \""Ludwigs Brewery\"" operated by George Ludwig was burned to the ground by Confederate soldiers under Gen. McCausland. In remembrance of this event we created a German style rauchbier, or dark smoked lager. This beer uses all its ingredients from Bamberg, Germany, which is where the style was born and in by coincidence, the same area where Ludwig himself was born and taught to brew. It is made with a special birch wood smoked malt that imparts a light smoky aroma, taste, and dryness to the palate. The pilsner malt and noble German hops are used to balance this dryness making it very enjoyable as well as different. We believe this beer resembles how Ludwig himself might have brewed it over 100 years ago.""}",1,23,1
-crescent_city_brewhouse,0,0,244477526017,"{""name"":""Crescent City Brewhouse"",""city"":""New Orleans"",""state"":""Louisiana"",""code"":""70130"",""country"":""United States"",""phone"":""1-888-819-9330"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""527 Decatur Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":29.9558,""lon"":-90.0641}}",1,9,1
-yuengling_son_brewing-yuengling_black_and_tan,0,0,245747417089,"{""name"":""Yuengling Black and Tan"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Original Black & Tan is a pioneer brand that models a traditional English Half & Half. Introduced in 1986, Yuengling produced one of the first hand-crafted draft blends to lead this style of American brewing. Black & Tan combines our popular Dark Brewed Porter and Premium Beer to create a brew that is rich and dark in color, with a well balanced flavor that finishes smooth and satisfying. It has a faint sweetness with hints of caramel and coffee from the dark roasted malts. One sip and you'll appreciate how Yuengling raised the bar with our Original Black & Tan.""}",1,26,1
-birra_forst-sixtus,0,0,244370702338,"{""name"":""Sixtus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birra_forst"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
-hoffbrau_steaks_brewery_2-rodeo_red,0,0,244751794177,"{""name"":""Rodeo Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-knigsegger_walderbru,0,0,244751597571,"{""name"":""Knigsegger WalderBru"",""city"":""Knigseggwald"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7587-/-9504-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hauptstrae 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9262,""lon"":9.4204}}",1,43,1
-brewery_ommegang-abbey_dubbel,0,0,244485521409,"{""name"":""Abbey Dubbel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,28,1
-dinkelacker_schwaben_bru-cd_pils,0,0,244608204801,"{""name"":""CD-Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dinkelacker_schwaben_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,5,1
-gordon_biersch_brewing-gordon_biersch_hefeweizen,0,0,244607549442,"{""name"":""Gordon Biersch Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,3,1
-brewdog_ltd-tactical_nuclear_penguin,0,0,244496400384,"{""name"":""Tactical Nuclear Penguin"",""abv"":32.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""This is the worlds strongest ever beer, ever (yes ever).\r\n\r\nNo Penguins were harmed in the making of this beer; some humans did get very, very cold though. It was worth it.\r\n\r\nThe Antarctic name, inducing schizophrenia, of this Ÿber-imperial stout originates from the amount of time it spent exposed to extreme cold. This beer was initially double barrel aged for 14 months; maturing in the deep, rich oak of Scottish whisky casks. After this epic maturation the beer was then frozen, then frozen again, then frozen again.\r\n\r\nThis is an extremely strong beer, it should be enjoyed in small servings and with an air of aristocratic nonchalance. In exactly the same manner that you would enjoy a fine whisky, a Frank Zappa album or a visit from a friendly yet anxious ghost."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,52,1
-agassiz_brewing-catfish_cream_ale,0,0,244360478722,"{""name"":""Catfish Cream Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""agassiz_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-abita_brewing_company-wheat,0,0,244361199616,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:52:34"",""description"":""Abita Wheat is a lager, not ale, and contains a generous amount of wheat which produces a clean, simple flavor."",""style"":""Vienna-Style Lager"",""category"":""German Lager""}",1,12,1
-green_mountain_beverage,0,0,244734361601,"{""name"":""Green Mountain Beverage"",""city"":""Middlebury"",""state"":""Vermont"",""code"":""5753"",""country"":""United States"",""phone"":""1-802-873-9045"",""website"":""http://www.gmbeverage.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Green Mountain Beverage is nestled in a valley near the historic Green Mountains in Middlebury, Vermont. This is where we operate our Green Mountain Cidery (our own word we created from a derivative of brewery) and we have become the number one producer of premium alcoholic draft ciders in the U.S. Throughout these pristine areas of the Green Mountains, people are committed to preserving nature's beauty and still today carry on the long standing tradition of taking pride in their work and the products they create which are truly special. Here at Green Mountain Beverage, we also carry on these traditions. Our ciders are a unique combination of nature's best ingredients, our skills, commitment and pride in our work."",""address"":[""153 Pond Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0344,""lon"":-73.1735}}",1,1,1
-blue_corn_caf_and_brewery_albuquerque,0,0,244361068545,"{""name"":""Blue Corn Caf and Brewery - Albuquerque"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.0845,""lon"":-106.651}}",1,11,1
-labatt_ontario_breweries-labatt_blue,0,0,244752908288,"{""name"":""Labatt Blue"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Blue is the best-selling Canadian beer in the world. Introduced in 1951 as Labatt Pilsener, it was named for the colour of its label by fans of the Winnipeg Blue Bombers football team. Blue was the first brand in Canada with a twist-off cap and won the silver medal in the International Lager category at the 1998 Brewing Industry International Awards. Labatt Blue, brewed using specially selected aromatic hops, is a well-balanced, fully matured, full-flavoured beer with a fruity character and a slightly sweet aftertaste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-great_divide_brewing-wild_raspberry_ale,0,0,244750483456,"{""name"":""Wild Raspberry Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""What better way to surprise a beer lover than with a fruit beer that tastes like beer? Nine years ago, we began our quest to provide beer lovers with a worthy fruit beer, by rolling out Wild Raspberry Ale. Our mantra is that real fruit makes real beer, so we ferment Wild Raspberry Ale with hundreds of pounds of real red and black raspberries. We steadfastly refuse to fall prey to extracts and cheap syrups. Sure, squirting syrup into a keg of beer and rolling it around on the floor is easy, but the taste is... fake! Over the past nine years, we have stayed true to our commitment to real fruit, no matter what the time, expense, or late season frosts have thrown our way. One year, Mother Nature delivered a late cold snap that was so severe, we had to pre-order 85% of the harvestable U.S. black raspberry crop, just to meet the demand for Wild Raspberry Ale.\r\n\r\nOur efforts do not go unrewarded – Wild Raspberry Ale is a truly effervescent, ruby red ale that achieves the almost impossible balance between malted barley and tart raspberry fruitiness. Its naturally tart character makes Wild Raspberry the ultimate accompaniment to spicy Mexican food or on its own as a stand-alone session beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,40,1
-taylor_brewing-weisen,0,0,245106999296,"{""name"":""Weisen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
-brooklyn_brewery-winter_ale,0,0,244476870656,"{""name"":""Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A seasonal winter beer from Brooklyn"",""style"":""Winter Warmer"",""category"":""Other Style""}",1,8,1
-cervejaria_sudbrack,0,0,244476674048,"{""name"":""Cervejaria Sudbrack"",""city"":""Blumenau"",""state"":""Santa Catarina"",""code"":"""",""country"":""Brazil"",""phone"":""55-(47)-3488-7371"",""website"":""http://www.eisenbahn.com.br/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rua Bahia, 5181""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-26.8914,""lon"":-49.1223}}",1,7,1
-bell_s_brewery_inc-batch_7000,0,0,244362248193,"{""name"":""Batch 7000"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Batch 7000 is part of our commemorative series celebrating our progress with special brews. Our 7,000th batch is a special recipe to be brewed only once."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,14,1
-empyrean_brewing_company-festive_ale_2006,0,0,244607090690,"{""name"":""Festive Ale 2006"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-great_dane_pub_and_brewing_1-uber_apa,0,0,244753432577,"{""name"":""Uber APA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-faultline_brewing_1-hefe_weizen,0,0,244606304257,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,0,1
-breckenridge_bbq_of_omaha-strong_scotch_ale,0,0,244497842177,"{""name"":""Strong Scotch Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,56,1
-boston_beer_company-samuel_adams_boston_lager,0,0,244373389312,"{""name"":""Samuel Adams Boston Lager"",""abv"":4.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Boston Lager® is the best example of the fundamental characteristics of a great beer, offering a full, rich flavor that is both balanced and complex. It is brewed using a decoction mash, a time consuming, traditional four vessel brewing process discarded by many contemporary brewers. This process brings forth a rich sweetness from the malt that makes it well worth the effort. Samuel Adams Boston Lager® also uses only the finest of ingredients including two row barley, as well as German Noble aroma hops. The exclusive use of two row barley not only imparts a full, smooth body but also gives the beer a wide spectrum of malt flavor ranging from slightly sweet to caramel to slightly roasted. The Noble hops varieties, Hallertau Mittelfruh and Tettnang Tettnanger, add a wide range of floral, piney and citrus notes, which are present from the aroma, through the flavor, to the lingering smooth finish. We take great pride in the Noble hops used in our beers. They are hand selected by Jim Koch and our other brewers from the world's oldest hops growing area. Among the world's most expensive, they cost twenty times as much as other hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-city_brewing_company_llc-amber_ale,0,0,244475625474,"{""name"":""Amber Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
-rockyard_brewing,0,0,244989952000,"{""name"":""Rockyard Brewing"",""city"":""Castle Rock"",""state"":""Colorado"",""code"":""80109"",""country"":""United States"",""phone"":""1-303-814-9273"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""880 West Castleton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.4091,""lon"":-104.87}}",1,22,1
-elysian_brewery_public_house-elysian_fields_pale_ale,0,0,244608860160,"{""name"":""Elysian Fields Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
-klosterbru_bamberg-bamberger_schwarzla,0,0,244751204354,"{""name"":""Bamberger Schwärzla"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,42,1
-brasserie_de_l_abbaye_de_scourmont_trappistes-cinq_cents_white,0,0,244362641412,"{""name"":""Cinq Cents (White)"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_de_scourmont_trappistes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-andechser_klosterbrauerei-hell,0,0,244361723905,"{""name"":""Hell"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""andechser_klosterbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-founder_s_restaurant_brewing,0,0,244624261122,"{""name"":""Founder's Restaurant & Brewing"",""city"":""Alexandria"",""state"":""Virginia"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8048,""lon"":-77.0469}}",1,41,1
-new_belgium_brewing-ranger_india_pale_ale,0,0,244876181505,"{""name"":""Ranger India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ever met a New Belgium Beer Ranger? They are our beloved folks out in the field. Spanning all 26 of our states from the Pacific to the Atlantic, our Beer Rangers do their best to protect, to pour and to partake. And explore many a beer from many a brewery, they do. The fellows up in the Northwest kept calling for “more hops!” Soon it became a common theme across the land. Rangers, fans and craft lovers everywhere were searching for hoppier beers. \r\n\r\nSo, here it finally is – New Belgium’s foray into the true American India Pale Ales. Bring out the hops! This clear amber beauty bursts at the starting gate with an abundance of hops: Cascade (citrus), Chinook (floral/citrus), and Simcoe (fruity) lead off the beer, with Cascade added again for an intense dry hop flavor. Brewed with pale and dark caramel malts that harmonize the hop flavor from start to finish, Ranger is a sessionable splendor for all you hopinistas. Thank your Beer Ranger!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-bethlehem_brew_works-cassis_reserve_lambic_06,0,0,244372865027,"{""name"":""Cassis Reserve Lambic ‘06"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bethlehem_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Aged for over a year! This traditional classic Belgisn style lambic is brewed using several varieties of Belgian lambic yeast and a generous amount of black currant concentrate to create a complex tart flavor. This brew is sure to become a Brew Works favorite!"",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,38,1
-reaperale,0,0,244989558784,"{""name"":""ReaperAle"",""city"":""Foothill Ranch"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.6864,""lon"":-117.66}}",1,21,1
-s_a_damm-estrella_damm,0,0,244990345216,"{""name"":""Estrella Damm"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2010-07-22 20:00:20"",""description"":""Estrella means star in Spanish and as its name suggests the brand has become a star to the people of Barcelona. It has evolved with the city reflecting its character - sophisticated and passionate yet at the same time relaxed and welcoming."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
-cricket_hill-cricket_hill_hopnotic,0,0,244477591552,"{""name"":""Cricket Hill Hopnotic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-07-22 20:00:20"",""description"":""No mere beverage could satisfy the thirst of the courageous and gallant soldiers who stood guardover the colonies of the British Empire. Their thirst could only be quenched by a full-bodied hearty Ale; an Ale balanced with rich flavorful hops. We are proud to offer our interpretation of this English style India Pale Ale for those who loong for the time when once your duty was complete, the taste of a fine Ale was reward enough for a job well done."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
-mikeb,0,0,91386755481600,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,26,1
-bison_brewing-organic_belgian_ale,0,0,244370702339,"{""name"":""Organic Belgian Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-hoffbrau_steaks_brewery_2-shawnee_amber_ale,0,0,244751794178,"{""name"":""Shawnee Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,44,1
-krogh_s_restaurant_and_brewpub-log_cabin_nut_brown,0,0,244751663104,"{""name"":""Log Cabin Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
-brewmasters_restaurant_and_brewery_south-kenosha_gold,0,0,244485586944,"{""name"":""Kenosha Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-dogfish_head_craft_brewery-palo_santo_marron,0,0,244608204802,"{""name"":""Palo Santo Marron"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Palo Santo Marron (Holy Tree Brown)\r\n\r\nAn unfiltered, unfettered, unprecedented brown ale aged in handmade wooden brewing vessels. The caramel and vanilla complexity unique to this beer comes from the exotic Paraguayan Palo Santo wood from which these tanks were crafted. Palo Santo means \""holy tree\"" and it's wood has been used in South American wine-making communities. \r\n\r\nThis beer is a 12% abv, highly roasty, and malty brown ale aged on the Palo Santo wood. It was a huge hit at our Rehoboth Beach brewpub when first released in November of 2006, so it's coming back... into full production!\r\n\r\n At 10,000 gallons each, these are the largest wooden brewing vessels built in America since before Prohibition.\r\n\r\nClick below to watch \""Take Time,\"" the short film we released with the first full-production batch of Palo Santo Marron in February 2008.\r\n\r\nIt's all very exciting. We have wood. Now you do too."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,5,1
-granite_city_food_brewery_omaha,0,0,244735016960,"{""name"":""Granite City Food & Brewery - Omaha"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68114"",""country"":""United States"",""phone"":""1-402-393-5000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1001 North 102nd Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2672,""lon"":-96.0714}}",1,3,1
-brewdog_ltd-tokyo,0,0,244496465920,"{""name"":""Tokyo*"",""abv"":18.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,52,1
-alltech_s_lexington_brewing_company-limestone_bavarian_style_bock_discontinued,0,0,244360478723,"{""name"":""Limestone Bavarian Style Bock (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,10,1
-alltech_s_lexington_brewing_company-limestone_english_style_porter_discontinued,0,0,244361199617,"{""name"":""Limestone English Style Porter (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,12,1
-hop_back_brewery-entire_stout,0,0,244734427136,"{""name"":""Entire Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
-bootleggers_steakhouse_and_brewery-summer_wheat,0,0,244361068546,"{""name"":""Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
-laconner_brewing-extra_special_bitter,0,0,244752908289,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-grizzly_peak_brewing-iambic_lambic,0,0,244750483457,"{""name"":""Iambic Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_peak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,40,1
-the_alchemist-shut_the_hell_up,0,0,245106999297,"{""name"":""Shut The Hell Up"",""abv"":3.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""An American mild ale brewed with Horizon hops. The crisp, bitter finish is helpd up by a balanced malt body."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,20,1
-brouwerij_de_regenboog-vuuve,0,0,244476870657,"{""name"":""Vuuve"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_regenboog"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-climax_brewing_copmany-climax_nut_brown_ale,0,0,244476674049,"{""name"":""Climax Nut Brown Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""This style of beer is based on the English Mild, which was a combination of a stout and a lighter beer favored by coal miners in Scotland, Ireland and North England.\r\nWe've brought together the grains used to make both a Stout and a Pale Ale and balanced them in our Nut Brown Ale to produce a beer with a chocolate and molasses flavor and hints of caramel and coffee in the background."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
-bitburger_brauerei-premium_beer,0,0,244362248194,"{""name"":""Premium Beer"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bitburger_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""Bitburger guarantees premium quality and enjoyment. Drawing on almost 200 years of expertise, the full-bodied, light, Bitburger Premium Beer is of course brewed according to the German Purity Law. Its popular, dry-finished, hoppy taste has secured Bitburger Premium Beer position as Germany's no. 1 draught beer.\r\n\r\n-http://www.bitburger.com/bitburger_beers/bitburger_premium_beer/product_bitburger_premium_beer/index.html"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,14,1
-affligem_brouwerij,0,0,244380205056,"{""name"":""Affligem Brouwerij"",""city"":""Opwijk"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":""052/35 83 57"",""website"":""http://www.affligembeer.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.9699,""lon"":4.1892}}",1,59,1
-flyers_restraunt_and_brewery-spitfire_best_bitter,0,0,244607156224,"{""name"":""Spitfire Best Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An English style ale, copper in color with subtle English malt hints balanced nicely with fresh Washington grown Yakima Valley hops."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,2,1
-greenshields_brewery_and_pub-nut_brown_ale,0,0,244753498112,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,48,1
-fish_brewing_company_fish_tail_brewpub-leviathan_2004,0,0,244606369792,"{""name"":""Leviathan 2004"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-brewmasters_restaurant_and_brewery_south-southport_amber,0,0,244497907712,"{""name"":""Southport Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
-boston_beer_company-samuel_adams_cherry_wheat,0,0,244373389313,"{""name"":""Samuel Adams Cherry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ale brewed with Cherries, crisp and fruity with a hint of honey. Samuel Adams Cherry Wheat® follows the centuries old American tradition of brewing beer with native ingredients, in this case Michigan cherries as well as a touch of honey. The sweet fruitiness of the cherries is balanced against the crisp, cereal note from the malted wheat and the subtle citrus flavor from the Noble hops. The end result is a sweet, refreshing beer that is light on the palate but long on complexity."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,39,1
-coast_range_brewing-barleywine,0,0,244475691008,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-ross_valley_brewing,0,0,244989952001,"{""name"":""Ross Valley Brewing"",""city"":""Fairfax"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.9871,""lon"":-122.589}}",1,22,1
-emmett_s_tavern_and_brewery-german_pilsner,0,0,244608860161,"{""name"":""German Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emmett_s_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-loaf_and_stein_brewing,0,0,244873691136,"{""name"":""Loaf and Stein Brewing"",""city"":""Eagle River"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.9172,""lon"":-89.2443}}",1,42,1
-brauerei_beck-beer,0,0,244479819776,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-barrel_house_brewing_co-duveneck_s_dortmunder,0,0,244361723906,"{""name"":""Duveneck's Dortmunder"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barrel_house_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Frank Duveneck was a famous Cincinnati painter who produced such masterpieces as Whistling Boy andOld Man In a Fur Cap. Our Dortmunder is a medium- bodied golden lager showcasing a delicious malt profile balanced with Noble German hops. This beer is designed to satisfy even the stodgiest of old beer curmudgeons!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-founders_brewing-curmudgeon,0,0,244624326656,"{""name"":""Curmudgeon"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Old Ale conjures up thoughts of classic sea fairing ports, there local pubs and the weathered fisherman that frequent them. In traditional style Curmudgeon is brewed with an intense focus on the malt bill creating a very strong, rich, malty characteristic and a sweetness indicative of its cousin the barleywine. We are especially proud of the balance in this beer making it deceptively smooth and drinkable at 9.3% alcohol by volume."",""style"":""Old Ale"",""category"":""British Ale""}",1,41,1
-nor_wester_brewery_and_public_house-hefe_weizen,0,0,244876181506,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-big_ridge_brewing-red_truck_ale,0,0,244372930560,"{""name"":""Red Truck Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
-red_star_brewery_grille-iron_horse_stout,0,0,244989558785,"{""name"":""Iron Horse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-santa_rosa_brewing,0,0,244990345217,"{""name"":""Santa Rosa Brewing"",""city"":""Santa Rosa"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.4405,""lon"":-122.714}}",1,23,1
-dillon_dam_brewery-dam_straight_lager,0,0,244609974272,"{""name"":""Dam Straight Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dillon_dam_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
-blacksburg_brewing_company-blacksburger_pils,0,0,244370767872,"{""name"":""Blacksburger Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blacksburg_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
-hop_back_brewery,0,0,244751859712,"{""name"":""Hop Back Brewery"",""city"":""Salisbury"",""state"":""Wiltshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01725)-510986"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unit 21-24 Batten Road Industrial Estate""]}",1,44,1
-lake_louie_brewing-premium_ale,0,0,244751663105,"{""name"":""Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_louie_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
-brewmasters_restaurant_and_brewery_south-weissenheimer_wheat,0,0,244485586945,"{""name"":""Weissenheimer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,28,1
-dogfish_head_craft_brewery-raison_d_etre,0,0,244608270336,"{""name"":""Raison D'Etre"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep, mahogany ale brewed with beet sugar, green raisins, and Belgian-style yeast. As complex as a fine, red wine. Voted \""American Beer of the Year\"" in January 2000 by Malt Advocate Magazine."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,5,1
-great_dane_pub_and_brewing_1-imperial_stout,0,0,244735016961,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
-bridgeport_brewing-old_knucklehead_1997,0,0,244496465921,"{""name"":""Old Knucklehead 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-amerisports_brew_pub-hofbrauhaus_brewery_biergarten_vienna_velvet,0,0,244360544256,"{""name"":""Hofbrauhaus Brewery & Biergarten Vienna Velvet"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amerisports_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-anchor_brewing-small_beer,0,0,244361265152,"{""name"":""Small Beer"",""abv"":3.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,12,1
-hopworks_urban_brewery-hub_lager,0,0,244734492672,"{""name"":""HUB Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Czech style pilsner is all malt all the time-no choicest rice or corn syrup here! Whole flower Czech Saaz hops balance the delicate honey flavor of our organic Canadian grown pilsner malt creating a golden beer with depth of character."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,1,1
-brasserie_bnifontaine,0,0,244361068547,"{""name"":""Brasserie Bnifontaine"",""city"":""Bnifontaine"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.21.08.68.68"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13, rue Pasteur""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.4852,""lon"":2.8306}}",1,11,1
-left_hand_brewing_company-warrior_ipa,0,0,244752908290,"{""name"":""Warrior IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
-heartland_brewery_union_square-full_moon_barley_wine_ale,0,0,244750483458,"{""name"":""Full Moon Barley Wine Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-the_bruery-loakal_red,0,0,245106999298,"{""name"":""Loakal Red"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2011-01-06 22:26:41"",""description"":""75% American Red Ale, 25% Ale Aged in American Oak Barrels. A brash American Red ale, dripping with citrusy Centennial hops, mellowed by a touch of oak. Aromas of toffee, citrus, crushed herbs, vanilla and fresh sawn oak. Complex!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
-brouwerij_lindemans-cuvee_rene_grand_cru_gueuze_lambic,0,0,244476870658,"{""name"":""Cuvée René Grand Cru Gueuze Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,8,1
-clipper_city_brewing_co-chesapeake_amber_ale,0,0,244476674050,"{""name"":""Chesapeake Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-boddington_s_brewery,0,0,244362313728,"{""name"":""Boddington's Brewery"",""city"":""Manchester"",""state"":""Manchester"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.4807,""lon"":-2.2344}}",1,14,1
-allagash_brewing-four,0,0,244380270592,"{""name"":""Four"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-flying_fish_brewing_company-farmhouse_summer_ale,0,0,244607156225,"{""name"":""Farmhouse Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A tribute to the highly drinkable \""every day\"" beers from French-speaking Belgium. Contains Belgian two-row pale malt and 7% wheat. This beer is lightly filtered with an earthy, spicy hop character from imported Styrian Goldings hops and a beautiful rich creamy head from the wheat."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,2,1
-hale_s_ales_3-red_menace_big_amber,0,0,244753498113,"{""name"":""Red Menace Big Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-fuller_smith_turner_pbc-vintage_ale_1999,0,0,244606369793,"{""name"":""Vintage Ale 1999"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,0,1
-broughton_ales-old_jock_ale,0,0,244497907713,"{""name"":""Old Jock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-boulder_beer_company-flashback_anniversary_ale,0,0,244373389314,"{""name"":""Flashback Anniversary Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Flashback Anniversary Ale is an India-Brown Ale with 6.8% ABV. This is the first beer we’ve made here that uses one single hop variety (Cascade) in the recipe in five separate additions. The fresh Cascade hop aroma and flavor is perfectly balanced with the dark roasted grains, making Flashback a very unique beer. We’re calling it an India Brown Ale to help illustrate its flavor to the consumer. It’s hoppy like an IPA but dark and roasty like a Brown Ale. Put them together and voila! Flashback at its finest!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-coastal_fog_brewing-hefeweizen,0,0,244475691009,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coastal_fog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,4,1
-routh_street_brewery_and_grille-big_black_stout,0,0,244989952002,"{""name"":""Big Black Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,22,1
-epic_brewing_company,0,0,244608860162,"{""name"":""Epic Brewing Company"",""city"":""Auckland"",""state"":"""",""code"":""2145"",""country"":""New Zealand"",""phone"":""+64 21 632 337"",""website"":""http://epicbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""186 James Fletcher Drive, Otahuhu""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-36.9489,""lon"":174.821}}",1,6,1
-mad_crab_restaurant_and_brewery-sturgeon_stout,0,0,244873691137,"{""name"":""Sturgeon Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
-brauerei_und_altbierkche_pinkus_mller,0,0,244479885312,"{""name"":""Brauerei und Altbierkche Pinkus Mller"",""city"":""Mnster"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)251-/-45151"",""website"":""http://www.pinkus-mueller.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kreuzstrae 4-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.9657,""lon"":7.6214}}",1,15,1
-bierbrouwerij_st_christoffel-christoffel_blond,0,0,244361789440,"{""name"":""Christoffel Blond"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_st_christoffel"",""updated"":""2010-07-22 20:00:20"",""description"":""Born as “Christoffel Bier” this was the first beer brewed by Christoffel. After the introduction of Christoffel Robertus, this beer was named Blond refering to the colour of the beer. Blond is a low-fermenting beer with 6% alc.vol.\r\n\r\nBlond has a full body, a very balanced taste and a beautiful bitterness due to a generous addition of fresh hop during the brewing-process. The aroma is fruity and Blond has a fresh taste with a pleasant, hoppy finish."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,13,1
-gaslight_brewery-perfect_stout,0,0,244624326657,"{""name"":""Perfect Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
-oconomowoc_brewing-amber_rye_lager,0,0,244876247040,"{""name"":""Amber Rye Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oconomowoc_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-boston_beer_company-samuel_adams_triplebock_1994,0,0,244372930561,"{""name"":""Samuel Adams Triplebock 1994"",""abv"":17.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-redhook_ale_brewery-nut_brown_ale,0,0,244989558786,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,21,1
-schloss_eggenberg-samichlaus_bier_2005,0,0,244990345218,"{""name"":""Samichlaus Bier 2005"",""abv"":14.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,23,1
-dock_street_beer-bohemian_dock_street_pilsner,0,0,244610039808,"{""name"":""Bohemian Dock Street Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Bohemian Dock Street Pilsner is brewed in the style of the original Pilsner beers of Bohemia, in what is now the Czech Republic, in a tradition that dates to 1842. We use costly Bohemian Saaz hops and pale imported malts to produce its rich golden color, and soft malty flavor using traditional techniques of the old world. True Pilsners are the most difficult to brew as there are no dark malts or flavorings used to mask flaws. Pilsner is the best known style of beer in the world. A good pilsner balances hops and malts to a refreshing, clean tasting, every-mood kind of beer. The Bohemian can stand alone or join a party easily."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,9,1
-blacksburg_brewing_company,0,0,244370767873,"{""name"":""Blacksburg Brewing Company"",""city"":""Blacksburg"",""state"":""Virginia"",""code"":""24063"",""country"":""United States"",""phone"":"""",""website"":""http://www.blacksburgbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Blacksburg Brewing Co. (BBC) is an independent specialty brewer of premium beer. As mandated by the Reinheitsgebot (German Purity Law), our beer is brewed with only 4 ingredients: water, barley malt, hops, and yeast. The best beer requires the best ingredients, so we purchase them regardless of the cost. We pay a premium to import the Cadillac of barley malt from Bamberg, and our hops from The Hallertau are the best that money can buy, period."",""address"":[""P.O. Box 315""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.23,""lon"":-80.41}}",1,33,1
-hoppin_frog_brewery-d_o_r_i_s_the_destroyer_double_imperial_stout,0,0,244751859713,"{""name"":""D.O.R.I.S. the Destroyer Double Imperial Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This extreme Double Oatmeal Russian Imperial Stout will overwhelm, satisfy, and destroy your taste buds like no other!! D.O.R.I.S. is even darker, hoppier, and stronger than our gold medal winning B.O.R.I.S. The Crusher Stout. Dry hopped and first wort hopped and first wort hopped with the finest American hops for a great Imperial hops for a great Imperial Stout experience! Enjoy the darkness!"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
-lowenbrau_brauerei,0,0,244874215424,"{""name"":""Löwenbräu Brauerei"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-5200-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nymphenburger Straße 4""]}",1,43,1
-bricktown_brewery-munich_dunkel,0,0,244485586946,"{""name"":""Munich Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-double_mountain_brewery_taproom-double_mountain_pale_ale,0,0,244608270337,"{""name"":""Double Mountain Pale Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""It’s easy to forget just how dynamite a well-made pale ale can treat you. Our Pale combines softness from our Pilsner malt, a touch of sweetness from English crystal malt, and plenty of fruity, resinous Northwest hop flavor. The finish is dry, clean and refreshing."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
-green_bay_brewing-hinterland_honey_wheat,0,0,244735016962,"{""name"":""Hinterland Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,3,1
-brouwerij_boon-framboise_1997,0,0,244496465922,"{""name"":""Framboise 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,52,1
-anchor_brewing-our_special_ale_1996,0,0,244360609792,"{""name"":""Our Special Ale 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-anheuser_busch-budweiser_american_ale,0,0,244361265153,"{""name"":""Budweiser American Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Budweiser American Ale is brewed with barley from America's heartland and dry hopped with Cascade hops from the Pacific Northwest.\r\n\r\nAvailable Fall 2008."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-humboldt_brewing-gold_rush,0,0,244734492673,"{""name"":""Gold Rush"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-abbaye_notre_dame_du_st_remy-rochefort_6,0,0,244379746304,"{""name"":""Rochefort 6"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_notre_dame_du_st_remy"",""updated"":""2010-07-22 20:00:20"",""description"":""eddish colour, almost like autumn leaves, very consistent texture with a slightly spicy aroma and an intense taste of caramel, fruit, and hints of raisins. It is only brewed about once per year, representing approximately 1% of total beer production, thus is quite difficult to obtain."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,58,1
-brasserie_de_silenrieux,0,0,244361134080,"{""name"":""Brasserie De Silenrieux"",""city"":""Cerfontaine-Silenrieux"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-071-63-32-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de Noupr s/n""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.2248,""lon"":4.4102}}",1,11,1
-lift_bridge_brewery-farm_girl_saison,0,0,244752973824,"{""name"":""Farm Girl Saison"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This pale golden, Belgian-influenced ale is for everyone: Farm Girl, wannabe Farm Girl. In the Belgian Farmhouse tradition, this brew has a dry malt finish and a spiciness that only Belgian yeasts can create. Smooth and well rounded... this one can please anyone in any situation, whether you are on the water, in the sun, or hiding from winter's chill."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,46,1
-hoffbrau_steaks_brewery_1-texas_special_101_porter,0,0,244750548992,"{""name"":""Texas Special 101 Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
-tin_whistle_brewing-killer_beer_dark_honey_ale,0,0,245107064832,"{""name"":""Killer Beer Dark Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tin_whistle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
-bt_mcclintic_beer_company-mclennium,0,0,244476870659,"{""name"":""McLennium"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bt_mcclintic_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-court_avenue_brewing-vimalt_wheat,0,0,244476674051,"{""name"":""Vimalt Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
-boston_beer_company-samuel_adams_blackberry_witbier,0,0,244362379264,"{""name"":""Samuel Adams Blackberry Witbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We brewed this traditional witbier with orange peel and coriander, and then added a hint of blackberry. The flavor is very complex with malt and cereal notes, intense spice and citrus flavors and a smooth, sweet/tart finish. It will be available in January in its own 6-pack and in the Samuel Adams® Brewmaster's Collection Variety 6 & 12-packs."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,14,1
-america_s_brewing-aurora_amber_ale,0,0,244380270593,"{""name"":""Aurora Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-fordham_brewing-oyster_stout,0,0,244607156226,"{""name"":""Oyster Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fordham_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,2,1
-hale_s_ales_3-troll_porter,0,0,244753498114,"{""name"":""Troll Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-gold_coast_brewery,0,0,244606435328,"{""name"":""Gold Coast Brewery"",""city"":""Sanctuary Cove"",""state"":""Queensland"",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-27.8539,""lon"":153.359}}",1,0,1
-brouwerij_de_achelse_kluis,0,0,244497907714,"{""name"":""Brouwerij De Achelse Kluis"",""city"":""Achel"",""state"":""Limburg"",""code"":"""",""country"":""Belgium"",""phone"":""32-011-80-07-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""De Kluis 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.2986,""lon"":5.4896}}",1,56,1
-21st_amendment_brewery_cafe-bitter_american,0,0,244362903552,"{""name"":""Bitter American"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""An American session beer. Loaded with hop character and a malty presence, but lower in alcohol."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,17,1
-boulevard_brewing_company-boulevard_irish_ale,0,0,244373454848,"{""name"":""Boulevard Irish Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Irish Ale, Boulevard’s spring seasonal beer, is our Midwestern tribute to the legendary red ales of old Ireland. Our recipe combines six kinds of pale and roasted barley malts to provide a rich, toasty flavor and tawny reddish hue."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,39,1
-coors_brewing_golden_brewery-keystone_light,0,0,244475756544,"{""name"":""Keystone Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
-rowland_s_calumet_brewery-calumet_kolsch,0,0,244990017536,"{""name"":""Calumet Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-erie_brewing_company,0,0,244608925696,"{""name"":""Erie Brewing Company"",""city"":""Erie"",""state"":""Pennsylvania"",""code"":""16501"",""country"":""United States"",""phone"":""(814) 459-7741"",""website"":""http://www.eriebrewingco.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1213 Veshecco Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1112,""lon"":-80.113}}",1,6,1
-magic_hat-scumptious_spring_lager_vinyl,0,0,244873756672,"{""name"":""Scumptious Spring Lager (Vinyl)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Magic Hat's seasonal Lager is also called Vinyl""}",1,42,1
-brewdog_ltd-the_physics,0,0,244479950848,"{""name"":""The Physics"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,15,1
-big_time_brewing-coal_creek_porter,0,0,244361789441,"{""name"":""Coal Creek Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
-gasthaus_brauerei_max_moritz,0,0,244624326658,"{""name"":""Gasthaus-Brauerei Max & Moritz"",""city"":""Kressbronn am Bodensee"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7543-/-6508"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Weinbichl 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6064,""lon"":9.6061}}",1,41,1
-olde_peninsula_brewpub_and_restaurant-winter_wheat,0,0,244876312576,"{""name"":""Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-brasserie_brouwerij_cantillon-lambic_2002,0,0,244372930562,"{""name"":""Lambic 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-rogue_ales-roughstock_ale,0,0,244989558787,"{""name"":""Roughstock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""a special bottle dedicated to Jim Steen, member of the Professional Rodeo Coyboys Association and rogue extrodinaire."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
-scotch_irish_brewing,0,0,244990410752,"{""name"":""Scotch Irish Brewing"",""city"":""Carleton Place"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-613-257-7845"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""40 Bennett Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.1279,""lon"":-76.13}}",1,23,1
-doemens_e_v,0,0,244610039809,"{""name"":""Doemens e.V."",""city"":""Grfelfing"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-85805-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stefanusstrae 8""]}",1,9,1
-borsodi_sorgyar-borsodi,0,0,244370767874,"{""name"":""Borsodi"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""borsodi_sorgyar"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
-hubcap_brewery_and_kitchen-beaver_tail_brown_ale,0,0,244751859714,"{""name"":""Beaver Tail Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hubcap_brewery_and_kitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
-mad_anthony_brewing-old_fort_porter,0,0,244874280960,"{""name"":""Old Fort Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-brooklyn_brewery-black_ops,0,0,244485652480,"{""name"":""Black Ops"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brooklyn Black Ops does not exist. However, if it did exist, it would be a robust stout concocted by the Brooklyn brewing team under cover of secrecy and hidden from everyone else at the brewery. Supposedly “Black ops” was aged for four months in bourbon barrels, bottled flat, and re-fermented with Champagne yeast, creating big chocolate and coffee flavors with a rich underpinning of vanilla-like oat notes. They say there are only 1,000 cases. We have no idea what they’re talking about."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,28,1
-eel_river_brewing-certified_organic_porter,0,0,244608270338,"{""name"":""Certified Organic Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
-grumpy_troll_restaurant_and_brewery-lager,0,0,244735082496,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,3,1
-brouwerij_de_dolle_brouwers-bos_keun,0,0,244496465923,"{""name"":""Bos Keun"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,52,1
-arthur_guinness_son-guinness_draught,0,0,244360609793,"{""name"":""Guinness Draught"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2011-02-28 17:13:18"",""description"":"""",""style"":""Classic Irish-Style Dry Stout"",""category"":""Irish Ale""}",1,10,1
-avery_brewing_company-samael_s_oak_aged_ale,0,0,244361265154,"{""name"":""Samael's Oak-aged Ale"",""abv"":14.5,""ibu"":41.0,""srm"":12.5,""upc"":7,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-12-19 09:47:16"",""description"":""A super-caramelly, oak-aged English-style strong ale. The oak is very apparent in this rich and high gravity ale. Additional depth and complexity result in a woody and cask-like nose, with a pronounced vanilla flavor on the palate. As of 2007, the use of additional roasted malt has resulted in subtle bitternes to balance the natural sweetness."",""style"":""Strong Ale"",""category"":""British Ale""}",1,12,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2005_port,0,0,244734492674,"{""name"":""Harvest Ale 2005 (Port)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-allentown_brew_works-apricot_ale,0,0,244379811840,"{""name"":""Apricot Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered wheat beer brewed with apricots creating a smooth and thirst quenching full flavored fruit beer."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,58,1
-brasserie_de_silly-double_enghien_bruin,0,0,244361134081,"{""name"":""Double Enghien Bruin"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-lighthouse_brewing,0,0,244875657216,"{""name"":""Lighthouse Brewing"",""city"":""Victoria"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-888-862-7500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2 - 836 Devonshire Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.4358,""lon"":-123.396}}",1,46,1
-jt_whitney_s_brewpub_and_eatery-dunkle_weiss,0,0,244750548993,"{""name"":""Dunkle Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-titletown_brewing-discombobulator_maibock,0,0,245107064833,"{""name"":""Discombobulator Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,20,1
-bull_bush_pub_brewery-hefeweizen,0,0,244476936192,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,8,1
-de_proef_brouwerij,0,0,244609056768,"{""name"":""De Proef Brouwerij"",""city"":""Lochristi-Hijfte"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-09-/-356.71.02"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Doornzelestraat 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1159,""lon"":3.8158}}",1,7,1
-boundary_bay_brewery_and_bistro,0,0,244362379265,"{""name"":""Boundary Bay Brewery and Bistro"",""city"":""Bellingham"",""state"":""Washington"",""code"":""98227"",""country"":""United States"",""phone"":""1-360-647-5593"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1107 Railroad Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.7475,""lon"":-122.481}}",1,14,1
-arcadia_brewing-lake_superior_esb,0,0,244380336128,"{""name"":""Lake Superior ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-fratellos_restaurant_and_brewery-fox_river_golden_ale,0,0,244607221760,"{""name"":""Fox River Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-hanssens_artisanal-oude_kriek,0,0,244753563648,"{""name"":""Oude Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hanssens_artisanal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,48,1
-golden_gate_park_brewery-buffalo_nutty_brown,0,0,244606435329,"{""name"":""Buffalo Nutty Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,0,1
-brouwerij_het_anker-gouden_carolus_noel,0,0,244497907715,"{""name"":""Gouden Carolus Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-affligem_brouwerij-affligem_dubbel,0,0,244362903553,"{""name"":""Affligem Dubbel"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""affligem_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""A reddish-brown abbey ale brewed with dark malts. The secondary fermentation gives a fruity aroma and a unique, spicy character with a distinctive aftertaste. Secondary fermentation in the bottle. Contains barley malt."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,17,1
-brasserie_de_brunehaut-abbaye_de_saint_martin_triple,0,0,244373454849,"{""name"":""Abbaye de Saint-Martin Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""Three varieties of malt and three of hops create the robust character of this St. Martin triple abbey ale.\r\nAbbye St. Martin Ales are pure Belgium."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,39,1
-cugino_brewing_company,0,0,244475756545,"{""name"":""Cugino Brewing Company"",""city"":""Batavia"",""state"":""Illinois"",""code"":""60510"",""country"":""United States"",""phone"":""1-630-761-8888"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1501 East Wilson""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8539,""lon"":-88.2776}}",1,4,1
-russell_brewing-blonde_ale,0,0,244990017537,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-estes_park_brewery-estes_park_porter,0,0,244608925697,"{""name"":""Estes Park Porter"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Porters are dark ales without the roasted malt character of a stout. Our porter is a brown porter with a very smooth, balanced profile."",""style"":""Porter"",""category"":""Irish Ale""}",1,6,1
-magic_hat-single_chair_ale,0,0,244873756673,"{""name"":""Single Chair Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A Commemmorative Brew Single Chair celebrating the uniqueness of the Mad River Glen Cooperative Ski Area in Vermont. \r\n\r\nMedium bodied & ideally balanced for all tastes, Single Chair Ale's tempting light golden color, heady aroma & smooth liquid go down effortlessly and often!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
-brouwerij_de_ranke-pere_noel,0,0,244479950849,"{""name"":""Père Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-boscos_memphis_brewing,0,0,244361789442,"{""name"":""Boscos Memphis Brewing"",""city"":""Germantown"",""state"":""Tennessee"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.0868,""lon"":-89.8101}}",1,13,1
-gordash_brewing_company-holy_mackerel_mack_in_black,0,0,244624392192,"{""name"":""Holy Mackerel Mack In Black"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordash_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,41,1
-pabst_brewing_company-pabst_blue_ribbon,0,0,244876312577,"{""name"":""Pabst Blue Ribbon"",""abv"":4.74,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \""Select,\"" but people started asking for that \""Blue Ribbon\"" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \""Blue Ribbon\"" to the bottle in 1895.\r\n\r\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \""Export\"" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\r\n\r\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,47,1
-brasserie_dubuisson-scaldis_prestige,0,0,244372996096,"{""name"":""Scaldis Prestige"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-rothaus_brauerei-hefeweissbier,0,0,244989624320,"{""name"":""Hefeweissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
-sleeping_lady_brewing_company,0,0,244990410753,"{""name"":""Sleeping Lady Brewing Company"",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99501"",""country"":""United States"",""phone"":""(907) 277-7727"",""website"":""http://www.alaskabeers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""717 W. 3rd Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":61.2196,""lon"":-149.896}}",1,23,1
-dogfish_head_craft_brewery-midas_touch_golden_elixir,0,0,244610039810,"{""name"":""Midas Touch Golden Elixir"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This recipe is the actual oldest-known fermented beverage in the world! Our recipe showcases the known ingredients of barley, white Muscat grapes, honey & saffron found in the drinking vessels in King Midas' tomb! Somewhere between a beer, wine and mead, this smooth, dry ale will please with Chardonnay or I.P.A. drinker alike.""}",1,9,1
-boston_beer_company-samuel_adams_triplebock_1995,0,0,244370767875,"{""name"":""Samuel Adams Triplebock 1995"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-issaquah_brewhouse,0,0,244751925248,"{""name"":""Issaquah Brewhouse"",""city"":""Issaquah"",""state"":""Washington"",""code"":""98027"",""country"":""United States"",""phone"":""1-425-557-1911"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""35-C West Sunset Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.53,""lon"":-122.037}}",1,44,1
-mad_anthony_brewing,0,0,244874280961,"{""name"":""Mad Anthony Brewing"",""city"":""Fort Wayne"",""state"":""Indiana"",""code"":""46802"",""country"":""United States"",""phone"":""1-260-426-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2002 Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.0677,""lon"":-85.1524}}",1,43,1
-brouwerij_artois-stella_artois,0,0,244485652481,"{""name"":""Stella Artois"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_artois"",""updated"":""2010-07-22 20:00:20"",""description"":""Stella Artois was first brewed as a Christmas beer in leuven. It was named Stella from the star of Christmas, and Artois after Sebastian Artois, founder of the brewery. It's brewed to perfection using the original Stella Artois yeast and the celebrated Saaz hops. It's the optimum premium lager, with it's full flavour and clean crisp taste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
-egan_brewing-freys_weizen,0,0,244608335872,"{""name"":""Freys Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
-hale_s_ales_3-wee_heavy_winter_ale,0,0,244735082497,"{""name"":""Wee Heavy Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,3,1
-brouwerij_lindemans-kriek,0,0,244496531456,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,52,1
-asheville_pizza_and_brewing_co-shiva_ipa,0,0,244360609794,"{""name"":""Shiva IPA"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asheville_pizza_and_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A generous portion of American hops create a crisp citrus nose combined with a light, sweet finish – a well balanced beer that destroys the paradigm of an IPA."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
-back_road_brewery-belle_gunness_stout,0,0,244361330688,"{""name"":""Belle Gunness Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A notorious drink that's as dark as its' namesakes history!! It is named after the infamous LaPorte, Indiana serial killer herself, Belle Gunness of 1908. This Irish-style dry stout is amazingly smooth to drink. You will taste chocolate, coffee and roasty flavors in every sip. Don't be afraid of the dark. A true dark beer lover would die to try it. It definitely would not kill you to dig some up."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-kaiser_bru,0,0,244734558208,"{""name"":""Kaiser-Bru"",""city"":""Neuhaus"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9156-/-88-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oberer Markt 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.6283,""lon"":11.5498}}",1,1,1
-allguer_brauhaus_ag_kempten-cambonator_doppelbock,0,0,244379811841,"{""name"":""Cambonator Doppelbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
-brasserie_mcauslan-griffon_brown_ale,0,0,244477919232,"{""name"":""Griffon Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
-magic_hat-odd_notion_winter_07,0,0,244875657217,"{""name"":""Odd Notion Winter 07"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-klosterbrauerei_weltenburg-asam_bock,0,0,244750614528,"{""name"":""Asam-Bock"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,40,1
-trade_winds_brewing-gingerwheat,0,0,245107064834,"{""name"":""Gingerwheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
-callahan_s_pub_and_brewery-red,0,0,244476936193,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""callahan_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-deschutes_brewery-hop_henge_imperial_ipa,0,0,244609122304,"{""name"":""Hop Henge Imperial IPA"",""abv"":8.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""HOP HENGE IMPERIAL IPA – The Ultimate in Hop Innovation \r\n\r\nHop Henge Imperial IPA returns to the Bond Street Series line-up this April in extreme fashion. Staying true to the experimental nature of the series and the “never settle” philosophy of Deschutes, our brewers went back to the drawing board to create an amplified version of last year’s monument to hops.\r\n\r\nHead Brewer Brett Porter says, “This is a truly exciting and groundbreaking beer. We reformulated everything about the hop recipe to give Hop Henge an extraordinary aroma and flavor similar to a fresh hop beer.” In addition to the Cascade and Centennial hops, Deschutes Brewery is experimenting with a hop variety so new that it has yet to be named.\r\n\r\nThe team here at Bend Public House recommends Hop Henge as the perfect accompaniment for a variety of spicy foods, so be sure to have a bottle handy next time you make a batch of hot wings and go for the five alarm award. The high-octane hoppiness is a wildly refreshing antidote to a wide array of hot foods.\r\n\r\nLimited Availability April through June.\r\n\r\nDon’t miss this amazing hop experiment that is sure to leave your taste buds begging for more.\r\n\r\n-http://www.deschutesbrewery.com/Brews/Bond+Street+Series/default.aspx\r\n\r\nAvailable April through June.\r\n\r\nHop Henge I.P.A. was first brewed in 2006 as an agressive West Coast style I.P.A. In 2007, Hop Henge is going Imperial! Several pounds of Centennial, Cascade and Northern Brewer hops are in each barrel with a heavy dry-hop presence to top it off. A blend of crystal, pale and caraston malts creates an overall biscuity characteristic that is dense and muscular, building the alcohol base to support the monstrous hop profile.\r\n\r\nLike the rest of the Bond Street Series, Hop Henge highlights the creativity and curiosity of our brewers. Bolder than its English ancestors, with huge hops and a bitter finish, this IPA is no wallflower.\r\n\r\nAlcohol By Volume: 8.1%\r\n\t\r\n\r\nIBU 95\r\n\r\nWhen one of our brewers suggested we name our new IPA Hop Henge, he also came up with the idea of actually recreating Stonehenge, only with hop bales. We were up for the challenge and even though the weather did not want to cooperate, we pulled it off and threw a party afterwards.\r\n\t\r\n\r\n\r\nphoto: chris mather\r\nRatings, Awards & Notables\r\n\r\nWorld's Best Strong Pale Ale (Imperial IPA)\r\n2007 World Beer Awards\r\n\r\nWorld's 50 Best Beers\r\n2006 International Beer Challenge\r\n\r\nGold Medal, 92 Points\r\n2006 World Beer Championships\r\n\r\nSilver Medal, India Pale Ale Category\r\n2006 Australian International Beer Awards\r\n\r\nModern Brewery Age, February 12, 2007\r\n5 out 5 stars \r\nHop Henge started its life as an India Pale Ale, but this year it was bumped up to “Imperial IPA” status, with a hefty dose of additional hops.\r\n“This one is lovely,” said taster Tom Conti. “They got it just right.”\r\nIt pours out a deep amber, with an appealing rocky head, and rich hop aroma wafting from the glass. “They sure dosed it with a lot of hops...[there’s] a lot of hop bitterness in the taste,” one taster observed.\r\nIn addition to the Imperial-level hopping, Hop Henge also boasts Imperial-level alcohol content, with 8.1% a.b.v.\r\nThis was the top-rated beer during its tasting session, and tasters had to dig deep for new superlatives to describe it. “This is a beautiful beer,” concluded taster Gregg Glaser. “Full of flavor and hops and malt and hops again.”\r\n“Not for the timid,” said taster Robert Lachman.\r\n\r\n-http://www.deschutesbrewery.com/BrewPub/OnTap/125352.aspx"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
-brasserie_brouwerij_cantillon-cuvee_des_champions_2003_2004,0,0,244362379266,"{""name"":""Cuvée des Champions 2003-2004"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,14,1
-atwater_block_brewing-voodoo_vator,0,0,244380336129,"{""name"":""Voodoo Vator"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This one is black and sweet! Its malty character is derived from two carmel malts along with Munich malt to create the smoothest high gravity beer this side of the \""pond\""."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,59,1
-frederick_brewing-hempen_ale,0,0,244607221761,"{""name"":""Hempen Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederick_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-hc_berger_brewing-colorado_kolsch_ale,0,0,244753563649,"{""name"":""Colorado Kölsch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-govnor_s_public_house-dingle_dubbel,0,0,244606435330,"{""name"":""Dingle Dubbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-brouwerij_huyghe-delirium_tremens,0,0,244497973248,"{""name"":""Delirium Tremens"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":""The particular character and the unique taste of \""Delirium Tremens\"" result from the use of three different kinds of yeast. Its very original packing, which resembles cologne ceramics, and the colourful label contribute to its success."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,56,1
-appalachian_brewing_company-broad_street_barleywine,0,0,244362969088,"{""name"":""Broad Street Barleywine"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Barley Wine is dark red in color and has an original gravity of 1.120 (24 Plato). The malt complexity of this classic ale style is incredible.\r\n\r\nThe Broad Street Market is located just blocks from the Appalachian Brewing Company. This indoor farmers market was built in 1863 and is one of the oldest continuously operating farmers markets in the United States. The beautiful brick façade and natural wood doors are typical of the structures in Downtown Harrisburg; including our own building."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,17,1
-brasserie_la_choulette-framboise,0,0,244490043392,"{""name"":""Framboise"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_choulette"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-de_friese_bierbrouwerij_us_heit,0,0,244607614976,"{""name"":""De Friese Bierbrouwerij Us Heit"",""city"":""Bolsward"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-(0)515-577-449"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Snekerstraat 43""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":53.0606,""lon"":5.5342}}",1,4,1
-samuel_smith_old_brewery_tadcaster-winter_welcome_2008_2009,0,0,244990017538,"{""name"":""Winter Welcome 2008-2009"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,22,1
-f_x_matt_brewing-saranac_season_s_best,0,0,244608925698,"{""name"":""Saranac Season's Best"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with a special blend of domestic and Belgian malts for a delicate nut-like character, you'll love this Lager's rich taste and signature hop aroma. The exceptional full-bodied taste reflects our Brewery's extraordinary commitment to brewing beers of the highest standard of quality."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
-mckenzie_brew_house-farmhouse_saison,0,0,244873756674,"{""name"":""Farmhouse Saison"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-allagash_brewing-speciale_reserve_ale,0,0,244362706944,"{""name"":""Speciale Reserve Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
-brouwerij_huyghe,0,0,244479950850,"{""name"":""Brouwerij Huyghe"",""city"":""Melle"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-092-52-15-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brusselse Steenweg 282""]}",1,15,1
-boulder_beer_company-sweaty_betty_blonde,0,0,244361854976,"{""name"":""Sweaty Betty Blonde"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,13,1
-great_dane_pub_and_brewing_1,0,0,244750680064,"{""name"":""Great Dane Pub and Brewing #1"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53703"",""country"":""United States"",""phone"":""1-608-284-0000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""123 East Doty Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0745,""lon"":-89.3802}}",1,41,1
-pete_s_place-choc_american_lager,0,0,244999651328,"{""name"":""Choc American Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_place"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-brauerei_aying_franz_inselkammer_kg-altbairisch_dunkel,0,0,244489650176,"{""name"":""Altbairisch Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-russian_river_brewing,0,0,244989624321,"{""name"":""Russian River Brewing"",""city"":""Santa Rosa"",""state"":""California"",""code"":""95404"",""country"":""United States"",""phone"":""1-707-545-2337"",""website"":""http://www.russianriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Russian River Brewing Company we focus on traditional aggressively hopped California style ales, Belgian style ales, and barrel aged beers. We brew a full line up of ales and lagers for our pub and for limited distribution."",""address"":[""725 Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.4418,""lon"":-122.712}}",1,21,1
-sly_fox_brewhouse_and_eatery_royersford-helles_bock,0,0,245107916800,"{""name"":""Helles Bock"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,23,1
-dogfish_head_craft_brewery,0,0,244610105344,"{""name"":""Dogfish Head Craft Brewery"",""city"":""Milton"",""state"":""Delaware"",""code"":""19968"",""country"":""United States"",""phone"":""1-888-834-3474"",""website"":""http://www.dogfish.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6 Cannery Village Center""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":38.7683,""lon"":-75.3107}}",1,9,1
-boston_beer_works-kenmore_kolsch,0,0,244370767876,"{""name"":""Kenmore Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-jacob_leinenkugel_brewing_company-creamy_dark,0,0,244751925249,"{""name"":""Creamy Dark"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-mad_river_brewing-steelhead_scotch_porter,0,0,244874346496,"{""name"":""Steelhead Scotch Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-brouwerij_bavik_de_brabandere-petrus_speciale,0,0,244485652482,"{""name"":""Petrus Speciale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-empyrean_brewing_company-festive_ale_2007,0,0,244608335873,"{""name"":""Festive Ale 2007"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-highland_brewing_company,0,0,244735148032,"{""name"":""Highland Brewing Company"",""city"":""Asheville"",""state"":""North Carolina"",""code"":""28803"",""country"":""United States"",""phone"":""(828) 299-7223"",""website"":""http://www.highlandbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nestled in the Blue Ridge Mountains in Asheville, North Carolina, Highland Brewing Company brews the finest and freshest ales in the Southeast. For more than a decade, we have produced an impressive array of ales, from the best-selling Gaelic to our popular winter seasonal, Cold Mountain Ale."",""address"":[""12 Old Charlotte Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.5716,""lon"":-82.4991}}",1,3,1
-brouwerij_st_feuillien,0,0,244496531457,"{""name"":""Brouwerij St-Feuillien"",""city"":""Le Roeulx"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)64-31-18-18"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""20, rue d'Houdeng""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.5018,""lon"":4.1086}}",1,52,1
-avery_brewing_company-hog_heaven_barleywine,0,0,244360675328,"{""name"":""Hog Heaven Barleywine"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dangerously drinkable garnet beauty is a hop lover's delight. The intense dry-hop nose and the alcohol content are perfectly balanced for a caramel candy-like malt finish. This is a serious beer for serious beer afficianados and it only gets better with age. Cellerable for 3 years."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,10,1
-bandana_brewery-madelia_mild,0,0,244361330689,"{""name"":""Madelia Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,12,1
-klosterbrauerei_neuzelle-black_abbot_schwarzer_abt,0,0,244734558209,"{""name"":""Black Abbot / Schwarzer Abt"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,1,1
-anchor_brewing-anchor_steam,0,0,244379877376,"{""name"":""Anchor Steam"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-brewdog_ltd-trashy_blonde,0,0,244477984768,"{""name"":""Trashy Blonde"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A titillating, neurotic, peroxide, punk of a pale ale. Combining attitude, style substance and a little bit of low self esteem for good measure; what would your mother say?\r\n\r\nYou really should just leave it alone...\r\n\r\n...but you just cant get the compulsive malt body and gorgeous dirty blonde colour out of your head. The seductive lure of the sassy passion fruit hop proves too much to resist. All that is even before we get onto the fact that there are no additives preservatives, pasteurization or strings attached.\r\n\r\nAll wrapped up with the customary Brewdog bite and imaginative twist. This trashy blonde is going to get you into a lot of trouble."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,11,1
-mcmenamins_mill_creek-i_m_pale,0,0,244875722752,"{""name"":""I.M. Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-kuhnhenn_brewing,0,0,244750614529,"{""name"":""Kuhnhenn Brewing"",""city"":""Warren"",""state"":""Michigan"",""code"":""48092"",""country"":""United States"",""phone"":""1-586-979-8361"",""website"":""http://www.kbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5919 Chicago Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.5278,""lon"":-83.0472}}",1,40,1
-trade_winds_brewing-hula_berry,0,0,245107130368,"{""name"":""Hula Berry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,20,1
-cameron_s_brewing-auburn_ale,0,0,244476936194,"{""name"":""Auburn Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cameron_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-dillon_dam_brewery,0,0,244609187840,"{""name"":""Dillon Dam Brewery"",""city"":""Dillon"",""state"":""Colorado"",""code"":""80435"",""country"":""United States"",""phone"":""1-970-262-7777"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""100 Little Dam Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":39.6282,""lon"":-106.059}}",1,7,1
-brasserie_val_de_sambre,0,0,244479361024,"{""name"":""Brasserie Val de Sambre"",""city"":""Goze"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-071-56-20-73"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Vandervelde 273""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3682,""lon"":4.3266}}",1,14,1
-back_road_brewery-midwest_ipa,0,0,244380336130,"{""name"":""Midwest IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It means India Pale Ale. It's all about the hops on this one. Brewers use hops to add bitterness and aroma to their beers. If not for hops your beer would be too sweet. Our IPA uses plenty of Chinook and Columbus hops from the Pacific Northwest. The flavor can best be described as strong resiny grapefruit. The long drawn out hop flavor is essential to the character of the beer. So smack your buds on this one all you HOP HEADS."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-golden_city_brewery,0,0,244607287296,"{""name"":""Golden City Brewery"",""city"":""Golden"",""state"":""Colorado"",""code"":""80401"",""country"":""United States"",""phone"":""1-303-279-8092"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""920 Twelfth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7546,""lon"":-105.224}}",1,2,1
-hite_brewery-hite,0,0,244753629184,"{""name"":""Hite"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hite_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hite lager is golden in colour and is styled upon traditional European and American lagers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-half_moon_bay_brewing-paddle_out_stout,0,0,244734164992,"{""name"":""Paddle Out Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
-brouwerij_van_honsebrouck,0,0,244498038784,"{""name"":""Brouwerij Van Honsebrouck"",""city"":""Ingelmunster"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-33-51-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oostrozebekestraat 43""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9201,""lon"":3.2579}}",1,56,1
-arcadia_brewing-big_dick_s_olde_ale,0,0,244362969089,"{""name"":""Big Dick's Olde Ale"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Somewhat of a cousin to Barleywine, Big Dick’s is a classic English-style Olde Ale. Sweet and full-bodied malt flavors are complemented by a fragrant but mild hop bitterness. Sweet, bready malt aromas combine with rich flavors of dark fruit, brown sugar, caramel, and sweet nuts. A beer for keeping, Big Dick’s Olde Ale will age gracefully, while fruity flavors continue to develop and bitterness will subside.\r\n\r\nThis is not only a BIG beer, it is a Well-Endowed Ale! We took a traditional English-style Ale and made it our own. Delightful on its own or as a digestif with a full-bodied cigar, Big Dick’s is also big enough to stand up to many boldly-flavored foods."",""style"":""Old Ale"",""category"":""British Ale""}",1,17,1
-brasserie_lefebvre-blanche_de_bruxelles_mannekin_pis,0,0,244490043393,"{""name"":""Blanche de Bruxelles Mannekin Pis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_lefebvre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-deschutes_brewery-cascade_golden_ale,0,0,244607680512,"{""name"":""Cascade Golden Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Gracing the expansive Western skyline in Central Oregon, the Three Sisters—Faith, Hope and Charity—are three prominent peaks in the Cascade mountain range. Local folklore credits the naming to 19th Century fur trappers."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
-san_diego_brewing-amber,0,0,244990083072,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-firehouse_grill_brewery-pale_ale,0,0,244608991232,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
-meantime_brewing_company_limited-london_porter,0,0,244873822208,"{""name"":""London Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meantime_brewing_company_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,42,1
-allagash_brewing,0,0,244362772480,"{""name"":""Allagash Brewing"",""city"":""Portland"",""state"":""Maine"",""code"":""4103"",""country"":""United States"",""phone"":""1-800-330-5385"",""website"":""http://www.allagash.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Allagash Brewing Company sold its first batch of beer in the summer of 1995. The Allagash story, however, has roots that go much further back then the ten years the Portland, Maine brewery has been in operation. The roots go into the early 1990's when founder Rob Tod saw something missing in the American beer market. They are interwoven in the craft brewing movement that has allowed the creativity of brewers to flourish over the last twenty years, and those same roots have ties that go back centuries-to the monasteries of Belgium, whose own ancient brewing methods are now practiced today by the brewers of Allagash. Allagash began as a one-man operation, with Tod assuming all brewing duties in a small space located in a building on the outskirts of the maritime city of Portland. Tod had worked in brewery settings before and recognized a void within the craft brewing movement. While both German and British styles had become prevalent throughout the U.S., the ever-creative Belgian-styles were very difficult to find. Through his travels, Tod had sampled many of these unique beers and felt that the flavors and traditions of this European nation needed to be shared with the American drinking public. He designed a small 15-barrel brewhouse specifically to embrace the Belgian tradition of beer making, gathered the finest array of authentic raw materials and began his quest towards the production of traditional Belgian style ales. Allagash began with the release of its Allagash White, modeled after the traditional White beers of Belgium. Also referred to as wit beers, they get their unique flavor from the use of wheat in place of barley, Curacao orange peel and the careful sprinkling of coriander and other spices. Allagash combined these ingredients with their very own proprietary Belgian yeast strain to create the remarkably unique and refreshing beer that is today their flagship brand. Allagash White developed a strong cult following around the Portland area where it was available at selected draft accounts. Due to its immediate success, the beer was soon made available in 12-ounce six-packs throughout the state of Maine. With the success of the first brand, Rob realized two things: The public was asking for some new styles and the workload was getting to be too much for one person. Soon after, two experienced brewers were hired and Allagash released their second brew, Allagash Double Ale. Using the philosophy and techniques created by the Trappist Monks of Belgium centuries ago, the staff created this beer using seven different malts, a traditional sugar, and their own Belgian yeast strain. The result was another unique yet balanced beer crafted in the classic Belgian style. To truly appreciate the classic styles and brewing traditions of Belgium, one must experience beer created in the classic Belgian package. This is why Allagash, after an extensive period of research, released their distinctive Reserve line of cork finished 750 ML bottles. This unique line employs the ancient tradition referred to as the méthode champenoise. The technique calls for two fermentations, one in the Brewery's fermenting tanks and the second in the bottle itself. It is this second fermentation that produces a notable increase in carbonation, a softer mouthfeel, and beers of remarkable complexity. This method of bottle conditioning leaves a small amount of yeast in the bottle, creating what is known as a living beer. As a result, these styles have a greatly enhanced shelf life and some styles will age exceptionally, much like a fine wine. Just as the styles originate in Belgium, so does the package itself. To insure authenticity, Allagash imports the bottles and corks directly from the same country that designed the techniques. This enables the beers to reach carbonation levels similar to champagne while allowing the corks to pop characteristically upon serving. Today, Allagash still remains one of very few breweries in North America using this distinctive package. From the very beginning, Allagash has strived to produce the finest Belgian-style and experimental ales this side of the Atlantic. It began as New England's original Belgian-Style brewery and has grown into one of the industry's most distinguished and well-respected brands. Following the time-tested brewing traditions of ancient Belgium, Allagash now produces a broad-ranging portfolio of artisanal beers with uncompromising quality."",""address"":[""100 Industrial Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.7028,""lon"":-70.3166}}",1,16,1
-caldera_brewing-pilsener_bier,0,0,244479950851,"{""name"":""Pilsener Bier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true German-style pilsener, fermented at 43 degrees and cold lagered for eight weeks."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,15,1
-brasserie_de_cazeau,0,0,244361854977,"{""name"":""Brasserie de Cazeau"",""city"":"""",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Farm-brewery located in South Belgium."",""address"":[]}",1,13,1
-grizzly_peak_brewing,0,0,244750680065,"{""name"":""Grizzly Peak Brewing"",""city"":""Ann Arbor"",""state"":""Michigan"",""code"":""48104"",""country"":""United States"",""phone"":""1-734-741-7325"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""120 West Washington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.2805,""lon"":-83.749}}",1,41,1
-piece-top_heavy_hefeweizen,0,0,244999716864,"{""name"":""Top Heavy Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""piece"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
-brauerei_herrenhausen-weizen_bier,0,0,244489650177,"{""name"":""Weizen Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_herrenhausen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
-s_a_damm-estrella_levante_sin_0_0_alcohol,0,0,244989624322,"{""name"":""Estrella Levante Sin 0.0% Alcohol"",""abv"":1.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2011-07-14 08:54:53"",""description"":"""",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,21,1
-sly_fox_brewhouse_and_eatery_royersford-route_113_ipa,0,0,245107982336,"{""name"":""Route 113 IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, flavorful IPA for all the hopheads out there, brewed with British Pale and Crystal malts, and hopped with Centennial, Cascade, German Northern Brewer, & UK East Kent Goldings. Bold and spicy."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
-east_end_brewing_company-east_end_witte,0,0,244610105345,"{""name"":""East End Witte"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A \""Belgian White\"" wheat beer, gently spiced with (new!) coriander and bitter orange peel. Light bodied with hints of orange and lemon. A great beer for hot weather or for those looking for something lighter all year round."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,9,1
-brasserie_artisanale_de_rulles,0,0,244370767877,"{""name"":""Brasserie Artisanale de Rulles"",""city"":""Habay-Rulles"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)63-41-18-38"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Maurice Grevisse 36""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.7185,""lon"":5.5571}}",1,33,1
-karl_strauss_brewery_gardens_sorrento_mesa-red_trolley_ale,0,0,244751990784,"{""name"":""Red Trolley Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,44,1
-midnight_sun_brewing_co-bathtub_gin_gruit_ale,0,0,244874346497,"{""name"":""Bathtub Gin Gruit Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This gruit ale was inspired by the Phish song of the same name. A traditional gruit in style, Bathtub Gin was brewed without hops. Instead Ben spiced his beer with botanicals typically used to flavor gin: juniper berries, orris root, angelica root, grains of paradise, lemon peel, orange peel and coriander. The result is intensely fragrant, flavorful and fabulous."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,43,1
-bullfrog_brewery-inspiration_red,0,0,244485718016,"{""name"":""Inspiration Red"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big addition of caramel and Munich malts give this beer its rich mahogany color along with its juicy palate. Its medium body and wonderful balance of hops from the Pacific Northwest make this a luscious and aromatic brew."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
-erie_brewing_company-golden_fleece_maibock,0,0,244608335874,"{""name"":""Golden Fleece Maibock"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As spring emerges, Golden Fleece Maibock captures center stage. This fine lager is a pleasurable reward for enduring the doldrums of Erie Pennsylvania’s harsh Lake-Effect ice and snowstorms. Celebrate the transition into spring! Golden Fleece Maibock’s deep golden color leads into a sweet malty flavor with a light hop finish. Maibock says, “RAM IT” to winter with 8.5% alcohol by volume – just enough to take the chill off your day."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,5,1
-hops_haven_brew_haus-maslifter_oktoberfest,0,0,244735148033,"{""name"":""Maslifter Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,3,1
-aass_brewery-genuine_pilsner,0,0,244378894336,"{""name"":""Genuine Pilsner"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Aass Genuine Pilsner is a premium \""lager\"" produced in accordance with the \""Purity law\"". The malted barely is a pilsnermalt produced in the Sandinavian countries. We use the very best of hops known under the name as Sazer and Hallertau, and the liquid is pure Norwegian mountain water.\r\n\r\nThe pilsner is largered at cool temperatures, and it is allowed to mature for as long at 3 months before bottling. \r\n\r\nThe beer is sold in a caracteristic nice- looking green bottel containing 11.2 fl. oz or 330 ml."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,55,1
-brouwerij_verhaeghe-vichtenaar,0,0,244496531458,"{""name"":""Vichtenaar"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_verhaeghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-avery_brewing_company,0,0,244360740864,"{""name"":""Avery Brewing Company"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80303"",""country"":""United States"",""phone"":""1-877-844-5679"",""website"":""http://www.averybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established in 1993, Avery Brewing Co. is a family owned and operated micro-brewery dedicated to brewing the finest quality English and Belgian style ales.. From humble beginnings, brewing 800 barrels of three different beers in 1994, we have progressed to brewing 13,000 barrels of twenty different beers in 2007. We attribute this success to beer drinkers gravitating to beers with more interesting flavor profiles. The unique flavor complexity of Avery beers occurs through a combination of sparing no expense with regard to ingredients and our hopping methods. Sparing no expense means using lots of specialty malts, imported hops, such as Styrian Goldings, and imported Belgian candy sugar."",""address"":[""5763 Arapahoe Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0166,""lon"":-105.219}}",1,10,1
-barley_creek_brewing-old_99_barley_wine,0,0,244361330690,"{""name"":""Old '99 Barley Wine"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""First brewed in 1998 to be served on our fifth anniversary (December 15, 1999), this beer just gets better every year. And, every year around our anniversary, we brew a new vintage. With an original gravity of 1099, this Barley Wine is dark and sweet, and is served in a snifter like an after-dinner drink. You'll want to savor it slowly."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,12,1
-lafayette_brewing,0,0,244734558210,"{""name"":""Lafayette Brewing"",""city"":""Lafayette"",""state"":""Indiana"",""code"":""47901"",""country"":""United States"",""phone"":""1-765-742-2591"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""622 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4194,""lon"":-86.89}}",1,1,1
-appalachian_brewing_company-anniversary_maibock,0,0,244379877377,"{""name"":""Anniversary Maibock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Maibock style was traditionally produced in the winter and released in early May to celebrate the coming of Spring. This malty lager is deep golden in color and medium in body. The finish holds a bold sweetness that is balanced by a subtle hop flavor and aroma. \r\n\r\nWe will be releasing this beer every spring in celebration of our Anniversary."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,58,1
-brewery_de_troch-chapeau_tropical_lambic,0,0,244477984769,"{""name"":""Chapeau Tropical Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,11,1
-midnight_sun_brewing_co-panty_peeler_tripel,0,0,244875722753,"{""name"":""Panty Peeler Tripel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Free spirited Panty Peeler pours rambunctiously into your glass, releasing its engaging aroma. Curacao (bitter) orange peel and coriander create a beautiful yet bolder tripel by infusing color, citrus and spice. Belgian yeast adds playful character. Bottle conditioning assures a perfectly heady experience.\r\n\r\nBrewed as a Belgian tripel but with American boldness, Panty Peeler is delicious yet spirited. Originally named Extreme Polar White Bier, it got nicknamed \""Panty Peeler\"" along the way. Then we translated it to French for a while: E'pluche-culotte. Now we're back to calling it Panty Peeler and we've kicked up the coriander and orange peel to represent its original design.\r\n\r\nAvailability:\r\nAK - 22-oz bottles (year-round) and draft (on occasion)\r\nOR - 22-oz bottles (year-round)"",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
-labatt_ontario_breweries-labatt_crystal,0,0,244750614530,"{""name"":""Labatt Crystal"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Crystal was introduced to Ontario in the late 1800s as one of the first lagers brewed by Labatt. World-renowned Saaz hops are used to give this beer a clean, almost sweet taste which nicely balances the fuller body, higher bitterness and richer taste typically associated with traditional lagers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
-victory_brewing-v_saison,0,0,245746696192,"{""name"":""V-Saison"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our latest release in the V Series of bottle conditioned, Belgian-inspired ales is heady with an earthy, aromatic hop start. Involving hops from the Czech Republic, Germany and England, this flavorful ale slides into flavors of honey and mildly tart fruit. Leaving a refreshing impression of dryness, this is a quenching, invigorating ale, despite it substantial strength at 7.5% abv."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,20,1
-cervecera_jerome-rubia,0,0,244476936195,"{""name"":""Rubia"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-egan_brewing-cow_palace_scotch_ale_2000,0,0,244609253376,"{""name"":""Cow Palace Scotch Ale 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,7,1
-brauerei_hrlimann,0,0,244479361025,"{""name"":""Brauerei Hrlimann"",""city"":""Zrich"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-01-/-288-26-26"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brandschenkestrasse 150""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.3642,""lon"":8.5245}}",1,14,1
-barley_creek_brewing,0,0,244380401664,"{""name"":""Barley Creek Brewing"",""city"":""Tannersville"",""state"":""Pennsylvania"",""code"":""18372"",""country"":""United States"",""phone"":""1-570-629-9399"",""website"":""http://www.barleycreek.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Located in Tannersville, right off route 80's exit 299 in between the Crossings Outlet Stores and Camelback Ski area (Camelbeach Water Park, Barley Creek is the Pocono Mountains' Original Brewpub and Restaurant, where you can always find great food, freshly brewed beer, a comfortable atmosphere, friendly people, and a unique place to kick back, relax and have a great time. Bring your friends, bring your family, bring your friends' families. We are open every day at 11:01am, and serve dinner till about 10pm. On Friday and Saturday we are serving dinner till about 11:00pm. The bar stays open a little longer (so you can finish your fun if you ordered food just before the kitchen closed) Cheers!"",""address"":[""RR 1 Box 185""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.0523,""lon"":-75.3354}}",1,59,1
-gottberg_brew_pub-toil_trubbel_dubbel,0,0,244607287297,"{""name"":""Toil & Trubbel Dubbel"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-hoffbrau_steaks_brewery_1-oktoberfest,0,0,244753629185,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
-hapa_s_brew_haus_and_restaurant-moonset_lager,0,0,244734164993,"{""name"":""Moonset Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
-c_b_potts_of_cheyenne-big_horn_hefeweizen,0,0,244498038785,"{""name"":""Big Horn Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,56,1
-baltika_breweries-baltika_6,0,0,244362969090,"{""name"":""Baltika 6"",""abv"":7.0,""ibu"":20.0,""srm"":30.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""baltika_breweries"",""updated"":""2011-02-15 20:00:29"",""description"":""appearance: deep, dark brown to black, deep tan head\nsmell/taste: sweet, malty, roasted coffee, molasses\nfull-bodied, smooth, minimal carbonation \n"",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,17,1
-brauerei_gbr_maisel_kg-maisel_s_weisse_kristall,0,0,244490108928,"{""name"":""Maisel's Weisse Kristall"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gbr_maisel_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,39,1
-dick_s_brewing-cream_stout,0,0,244607746048,"{""name"":""Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
-saxer_brewing,0,0,244990083073,"{""name"":""Saxer Brewing"",""city"":""Lake Oswego"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.4207,""lon"":-122.671}}",1,22,1
-flat_earth_brewing_company-flat_earth_belgian_style_pale_ale,0,0,244608991233,"{""name"":""Flat Earth Belgian-style Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_earth_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,6,1
-michigan_brewing-high_seas_ipa,0,0,244873822209,"{""name"":""High Seas IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a legendary style ale is not for the timid. Assertively hoppy and dangerously seductive. A skillful blend of three premium barley malts with generous amounts of Northern Brewer and Cascade Hops creates a special ale to satisfy even the most demanding palate."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,42,1
-amherst_brewing_company-heather_ale,0,0,244362772481,"{""name"":""Heather Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""2003 Silver medal winner herb and spice catagory Great American Beer Fest, made without hops, 100% heather flowers giving it a flowery aroma, subtle sweetness, and crisp, clean finish."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,16,1
-carmel_brewing-amber_ale,0,0,244480016384,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carmel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
-brasserie_de_l_abbaye_des_rocs-ambree,0,0,244361854978,"{""name"":""Ambree"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-grolsche_bierbrouwerij-grolsch_premium_weizen,0,0,244750811136,"{""name"":""Grolsch Premium Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""Grolsch Premium Weizen is the main wheat beer made by Grolsch.\r\nIt is made according to the German Reinheitsgebot (\""German Beer Purity Law\""), meaning that it is made exclusively with (wheat)malt, water, hoppes and barley."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
-pinehurst_village_brewery-double_eagle_scotch_ale,0,0,244999716865,"{""name"":""Double Eagle Scotch Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-brouwerij_lindemans,0,0,244489650178,"{""name"":""Brouwerij Lindemans"",""city"":""Vlezenbeek"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-025-69-03-90"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lenniksebaan 257""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.818,""lon"":4.2307}}",1,38,1
-sacramento_brewing_company-brewhouse_lager,0,0,244989624323,"{""name"":""Brewhouse Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A light all malt lager with delicate hop finish."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-sprecher_brewing-hefe_weiss,0,0,245108047872,"{""name"":""Hefe Weiss"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This coarse-filtered wheat ale is fermented with a German yeast culture for a refreshingly light spiciness and hints of citrus fruit. A cloudy appearance and an immense creamy head are characteristic of this lightly hopped Bavarian Brew."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,23,1
-eder_heylands,0,0,244610105346,"{""name"":""Eder & Heylands"",""city"":""Großostheim"",""state"":""Bavaria"",""code"":""63762"",""country"":""Germany"",""phone"":""+49 6026 5090"",""website"":""http://www.eder-heylands.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Eder & HeylandS is a privately owned brewery in the north-western part of Bavaria (about 50 km east of Frankfurt). The brewery was founded in 1872 and is ever since managed by the Eder's family."",""address"":[""Aschaffenburger Straße 3-5""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.9211,""lon"":9.0715}}",1,9,1
-brasserie_brouwerij_cantillon-gueuze_bio_organic_gueuze,0,0,244370833408,"{""name"":""Gueuze Bio / Organic Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,33,1
-kirin_brewery_company_ltd,0,0,244751990785,"{""name"":""Kirin Brewery Company, Ltd"",""city"":"""",""state"":"""",""code"":"""",""country"":""Japan"",""phone"":"""",""website"":""http://www.kirin.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,44,1
-midnight_sun_brewing_co-rondy_brew_2009,0,0,244874346498,"{""name"":""Rondy Brew 2009"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""RondyBrew 2009 is a rendezvous of playful pale malts and feisty American hops, designed to exhilarate your winter-weary soul. This copper-colored ale delivers citrusy and refreshing hop aroma and flavor.\r\n\r\nThis year’s label features Rondy’s hottest event: The Running of the Reindeer. If you’re suffering from cabin fever, get out and run with the herd. But ready, set, RUN because this beer is only available for a limited time.\r\n\r\nRondyBrew adds refreshment and celebration to the festive fare and entertaining events enjoyed during Anchorage’s Fur Rondy Festival."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
-bullfrog_brewery,0,0,244485718017,"{""name"":""Bullfrog Brewery"",""city"":""Williamsport"",""state"":""Pennsylvania"",""code"":""17701"",""country"":""United States"",""phone"":""570.326.4700"",""website"":""http://www.bullfrogbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Bullfrog Brewery, located in downtown Williamsport, Pa, is an award-winning microbrewery / restaurant and has quickly grown into one of the largest attractions in Northcentral Pennsylvania. Established in August, 1996, our goal is to provide a pleasant atmosphere and the best in food and beer. The Bullfrog Brewery, in competition with thousands of craft-brewed beers from different breweries around the world, recently won a World Beer Cup Gold Medal and Silver Medal. Along with our award-winning brews we offer live entertainment, ranging from jazz to Celtic music and everything in between. So come on in, explore the site and then make plans to stop in and enjoy the best brewery in all of Northcentral Pennsylvania."",""address"":[""231 W. Fourth Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2404,""lon"":-77.0057}}",1,28,1
-faultline_brewing_1-india_pale_ale_ipa,0,0,244608401408,"{""name"":""India Pale Ale (IPA)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
-jack_s_brewing-penalty_shot_porter,0,0,244735148034,"{""name"":""Penalty Shot Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
-alaus_darykla_kalnapilis-export,0,0,244378894337,"{""name"":""Export"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaus_darykla_kalnapilis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-burton_bridge_brewery-thomas_sykes_barleywine,0,0,244496531459,"{""name"":""Thomas Sykes Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-backcountry_brewery,0,0,244360740865,"{""name"":""Backcountry Brewery"",""city"":""Frisco"",""state"":""Colorado"",""code"":""80443"",""country"":""United States"",""phone"":""1-970-668-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""720 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.5765,""lon"":-106.094}}",1,10,1
-biddy_early_brewery-red_biddy_real_biddy,0,0,244361396224,"{""name"":""Red Biddy / Real Biddy"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""biddy_early_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-lakefront_brewery-cattail_ale,0,0,244734623744,"{""name"":""Cattail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-arcadia_brewing-anglers_ale,0,0,244379877378,"{""name"":""Anglers Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-bridgeport_brewing-beer_town_brown,0,0,244478050304,"{""name"":""Beer Town Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
-minhas_craft_brewery-berghoff_hefeweizen,0,0,244875788288,"{""name"":""Berghoff Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
-lobkowiczk_pivovar_vysok_chlumec,0,0,244872839168,"{""name"":""Lobkowiczk Pivovar Vysok Chlumec"",""city"":""Vysok Chlumec"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-318-865-321"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""CZ-262 52 Vysok Chlumec""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.6206,""lon"":14.3837}}",1,40,1
-viking_brewing,0,0,245746696193,"{""name"":""Viking Brewing"",""city"":""Dallas"",""state"":""Wisconsin"",""code"":""54733"",""country"":""United States"",""phone"":""1-715-837-1824"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""234 Dallas Street West""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.2585,""lon"":-91.8181}}",1,20,1
-chelsea_brewing_company-henry_hudson_ipa,0,0,244477001728,"{""name"":""Henry Hudson IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
-eldridge_pope_and_co-royal_oak_pale_ale,0,0,244609253377,"{""name"":""Royal Oak Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eldridge_pope_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-brauerei_locher_ag,0,0,244479361026,"{""name"":""Brauerei Locher AG"",""city"":""Appenzell"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-071-/-787-13-18"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Alte Eggerstandenstrasse 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.3301,""lon"":9.4135}}",1,14,1
-barley_s_brewing_1-pale_ale,0,0,244380467200,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-great_divide_brewing-hot_shot_esb,0,0,244734623744,"{""name"":""Hot Shot ESB"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""HotShot ESB is an easy-drinking and remarkably smooth Extra Special Bitter, brewed in the classic-English style. More assertively hopped than ordinary bitters, light copper-colored HotShot showcases clean hop flavors, balanced by its slightly fruity nose and light-caramel malt character.\r\n\r\nWhile HotShot is one of Great Divide’s easiest-drinking and lower alcohol beers, its complex flavor profile makes it the perfect session beer for craft beer lovers."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,2,1
-hoffbrau_steaks_brewery_2-yellow_rose_cream_ale,0,0,244753694720,"{""name"":""Yellow Rose Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-hereford_hops_steakhouse_and_brewpub_3-lichthouse_lager,0,0,244734230528,"{""name"":""Lichthouse Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
-c_b_potts_of_cheyenne-big_horn_wyoming_blonde,0,0,244498038786,"{""name"":""Big Horn Wyoming Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-barley_creek_brewing-iron_arm_belgian_style_wheat,0,0,244363034624,"{""name"":""Iron Arm Belgian Style Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian-style summer favorite. Malted wheat, Pale, Munich and Cara Vienna malt, then moderately hopped with Saaz and a double dose of Hallertau. Served unfiltered with an orange wedge, this is fun in a glass."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,17,1
-brauerei_und_altbierkche_pinkus_mller-jubilate_special_reserve_anniversary_ale,0,0,244490174464,"{""name"":""Jubilate Special Reserve Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-dogfish_head_craft_brewery-90_minute_ipa,0,0,244607746049,"{""name"":""90 Minute IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Esquire Magazine calls our 90 Minute .IPA., \""perhaps the best I.P.A. in America.\"" An Imperial I.P.A. brewed to be savored from a snifter. A big beer with a great malt backbone that stands up to the extreme hopping rate. This beer is an excellent candidate for use with Randall The Enamel Animal!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,4,1
-seabright_brewery-amber,0,0,244990083074,"{""name"":""Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-george_gale_company-millennium_brew,0,0,244609056768,"{""name"":""Millennium Brew"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-alaskan_brewing-alaskan_pale,0,0,244378632192,"{""name"":""Alaskan Pale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden Ale. A blonde, lighter bodied beer with a floral aroma and a crisp, hoppy finish that's not bitter. The hop character of Alaskan Pale is due to dry hopping by hand during the fermentation process.\r\n\r\nA clean, softly malted body with a hint of citrus overtones, followed by a hop-accented dry, crisp finish.\r\n\r\nAlaskan Pale is made from glacier-fed water and a generous blend or European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches or rainfall we receive each year."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,54,1
-mickey_finn_s_brewery-imperial_delusion,0,0,244873887744,"{""name"":""Imperial Delusion"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
-anchor_brewing-porter,0,0,244362772482,"{""name"":""Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,16,1
-cigar_city_brewing-marshal_zhukov_s_imperial_stout,0,0,244480016385,"{""name"":""Marshal Zhukov's Imperial Stout"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Russian Imperial Stout is dedicated to Gregory Zhukov. Arguably one of World War II's finest generals and a man bold enough to appreciate the rich, complex flavors of a beer brewed to fortify a body through the Russian winter. Like military geniuses, Russian Imperial Stouts reach their peak with a little age on them, so we release Marshal Zhukov's Russian Imperial Stout in sweltering August so that it will be at peak flavor come January or February.\r\n\r\nOpaque black in color, the aroma has notes of espresso, chocolate, dark sweet toffee with hints of black strap molasses. The flavor starts with an unsweetened chocolate character and supporting notes of herbal dryness from English hop varietals. It then moves into dark toffee sweetness and closes with a slap of roasty espresso. Zhukov's Imperial Stout pairs well with Mushroom Solyanka, dark chocolate, cherries and ground wars in Russia. Enjoy, comrade."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,15,1
-brauhaus_johann_albrecht_dsseldorf-kupfer,0,0,244478902272,"{""name"":""Kupfer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_dsseldorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-harpoon_brewery_boston-harpoon_ufo_hefeweizen,0,0,244750811137,"{""name"":""Harpoon UFO Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""From Harpoon's site:\r\n\r\n\""UFO Hefeweizen is an American unfiltered wheat beer. Perhaps UFO’s initial sensory perception is also its most prominent: a cloudy golden color and a dense, frothy head. The yeast, which has not been filtered out, accounts for the cloudiness of UFO. Wheat malt tends to create a larger head than barley malt, the cereal grain most often used in brewing. When served in a traditional wheat beer glass with a lemon, UFO presents an appealing and distinctive visual image.\r\n\r\nThe aroma has a faint but clear citrus-like character. This is produced by the special yeast and accounts for the Bavarian tradition of serving hefeweizens with a lemon. The lemon accentuates the yeast’s fruity, tart fragrance. UFO has a soft mouthfeel and a refreshing, light body. The wheat malts and subtle hopping give the beer a mild, delicate flavor. UFO has a clean finish. Unlike some imported hefeweizens, UFO does not have the spicy, tropical flavors typical of European-brewed style.\r\n\r\nThe overall character is a cloudy appearance with a citrus-like aroma, light body, and clean finish. Serve with a lemon.\"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,41,1
-pinehurst_village_brewery,0,0,244999782400,"{""name"":""Pinehurst Village Brewery"",""city"":""Aberdeen"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.1315,""lon"":-79.4295}}",1,47,1
-brouwerij_sint_jozef-limburgse_witte,0,0,244489781248,"{""name"":""Limburgse Witte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sint_jozef"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-salado_creek_brewing_company-honey_bock,0,0,244989689856,"{""name"":""Honey Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salado_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
-stevens_point_brewery-augsburger_dark,0,0,245108047873,"{""name"":""Augsburger Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
-egan_brewing-abbot_pennings_grand_cru,0,0,244610105347,"{""name"":""Abbot Pennings Grand Cru"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-brasserie_d_achouffe-mcchouffe,0,0,244370833409,"{""name"":""McChouffe"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""Description : Dark Ale, strong, spicy, lightly hoppy, with evoluting taste. Natural Beer, bottle refermented, unfiltered, not pasteurised and without any additives\r\n\r\nAlcohol : 8,5% alc./vol.\r\n\r\nOriginal gravity : 16 °Plato\r\n\r\nStorage : Store the bottles vertically in a cold place, sheltered from light. The yeast deposit can either be drunk or left according to taste\r\n\r\nServe at : 8 to 12°C (botlle)"",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,33,1
-lake_superior_brewing-old_man_winter_warmer_2002,0,0,244751990786,"{""name"":""Old Man Winter Warmer 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-midnight_sun_brewing_co-sockeye_red_ipa,0,0,244874412032,"{""name"":""Sockeye Red IPA"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-butte_creek_brewing-organic_porter,0,0,244485718018,"{""name"":""Organic Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""butte_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,28,1
-flying_fish_brewing_company-exit_16_wild_rice_double_ipa,0,0,244608401409,"{""name"":""Exit 16 - Wild Rice Double IPA"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The fourth stop on our multi-year trip to explore New Jersey takes us to one of the most maligned places in the state- the Hackensack Meadowlands. It’s the place usually identified with landfills, pipelines, mob burials (alleged) and sports teams that say they’re from New York.\r\n\r\nAlthough no longer home to forests of giant cedars and salt hay marshes teeming with aquatic life, the Meadowlands is still an amazingly diverse ecosystem providing vital animal and plant habitat. In a nod to a once common food plant here, we’ve brewed this beer with wild rice. We also used brown and white rice, as well as two malts.\r\n\r\nRice helps the beer ferment dry to better showcase the five different hops we’ve added. Lots and lots of them. We then dry-hopped this Double IPA with even more-generous additions of Chinook and Citra hops to create a nose that hints at tangerine, mango, papaya and pine."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,5,1
-john_harvard_s_brewhouse_wilmington-pale_ale,0,0,244735213568,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
-ali_i_brewing-macadamia_nut_brown,0,0,244378959872,"{""name"":""Macadamia Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-callahan_s_pub_and_brewery-christmas_ale,0,0,244496596992,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""callahan_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-barley_john_s_brewpub-sunny_summer_ale,0,0,244360806400,"{""name"":""Sunny Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-bill_s_tavern_brewhouse,0,0,244361396225,"{""name"":""Bill's Tavern & Brewhouse"",""city"":""Cannon Beach"",""state"":""Oregon"",""code"":""97110"",""country"":""United States"",""phone"":""1-503-436-2202"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""188 North Hemlock""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.8981,""lon"":-123.961}}",1,12,1
-liberty_steakhouse_and_brewery-patriot_porter,0,0,244734623745,"{""name"":""Patriot Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-arcadia_brewing-starboard_stout,0,0,244379942912,"{""name"":""Starboard Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
-broad_ripple_brewing-extra_special_bitter,0,0,244478050305,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-new_holland_brewing_company-red_tulip,0,0,244875788289,"{""name"":""Red Tulip"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A red ale with rich and smooth flavors of malted barley, balanced by underlying hints of dark fruit. Brewed in homage to our hometown tulip festival, Red Tulip evokes spring’s renewing spirit. Excellent with roasted pork, red-meats and dried fruit.""}",1,46,1
-magic_hat-odd_notion_spring_08,0,0,244872904704,"{""name"":""Odd Notion Spring 08"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,40,1
-walking_man_brewery,0,0,245746761728,"{""name"":""Walking Man Brewery"",""city"":""Stevenson"",""state"":""Washington"",""code"":""98648"",""country"":""United States"",""phone"":""509.427.5520"",""website"":""http://www.walkingmanbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""240 SW First Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.6922,""lon"":-121.885}}",1,20,1
-clipper_city_brewing_co,0,0,244477001729,"{""name"":""Clipper City Brewing Co."",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21227"",""country"":""United States"",""phone"":""1-410-247-7822"",""website"":""http://www.ccbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Clipper City our mission is to bring back the local brewery, and to do it in such a way that we are more than just a fringe player, but a positive part of our area. To accomplish this mission we have created a broad portfolio of products and brands with enough diversity that we have at least one beer that can appeal to everyone. Whether your preference is for a classic American style lager beer, or a big, challenging Hop Cubed Ale, we have a something that will suit your taste. Our goal is to brew beers for people who dare to walk up to the edge of the mountain and actually jump forward. Our beers are for those who chart a bolder course. Our brewery is named for the famed Clipper ship - first developed and built in our home port of Baltimore. The Clipper ship is the symbol for a strong nautical and maritime heritage with a commitment to craftsmanship of the highest caliber. It captures both the hardy nature of our working class history and the romance of what lies on the seas ahead. Why be normal when you can be EXTRAARGHdinary? We believe in bringing beer drinkers the quality and flavor of a handcrafted beer while supporting the local communities we serve."",""address"":[""4615-B Hollins Ferry Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2308,""lon"":-76.6751}}",1,8,1
-elysian_brewery_public_house-avatar_jasmine_ipa,0,0,244609253378,"{""name"":""Avatar Jasmine IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-brimstone_brewing,0,0,244479426560,"{""name"":""Brimstone Brewing"",""city"":""Frederick"",""state"":""Maryland"",""code"":""20176"",""country"":""United States"",""phone"":""1-888-258-7434"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4607 Wedgewood Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3628,""lon"":-77.4265}}",1,14,1
-beach_chalet_brewery-alexander_alt,0,0,244380467201,"{""name"":""Alexander Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
-green_bay_brewing-helles_bock,0,0,244734689280,"{""name"":""Helles Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,2,1
-holsten_brauerei-edel,0,0,244753694721,"{""name"":""Edel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""holsten_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-high_point_wheat_beer_company,0,0,244734230529,"{""name"":""High Point Wheat Beer Company"",""city"":""Butler"",""state"":""New Jersey"",""code"":""7405"",""country"":""United States"",""phone"":""(973) 838-7400"",""website"":""http://www.ramsteinbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founded in 1994, the High Point Brewing Company is the first exclusive wheat beer brewery in America. The founder and driving force of High Point is award-winning homebrewer, Greg Zaccardi. After working as a brewer in southern Germany, Greg returned to the US to open his brewery. His Ramstein beers are made with the same care and precision he learned in Germany. In fact, the wheat, barley, hops and yeast used in Ramstein are all imported directly from Bavaria."",""address"":[""22 Park Place""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.0016,""lon"":-74.3403}}",1,0,1
-capital_brewery-capital_prairie_gold,0,0,244498104320,"{""name"":""Capital Prairie Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,56,1
-beach_chalet_brewery-playland_pale_ale,0,0,244363100160,"{""name"":""Playland Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-brauereigasthof_adler,0,0,244490174465,"{""name"":""Brauereigasthof Adler"",""city"":""Herbertingen"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7586-/-378"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ortsstrae 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.0778,""lon"":9.3996}}",1,39,1
-dragonmead_microbrewery-armageddon_grand_cru,0,0,244607811584,"{""name"":""Armageddon Grand Cru"",""abv"":11.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Grand Crus are traditionally known as \""The best beer that a brewery makes.\"" This Belgian-style quad lives up to that name and then some. Available once a year, in May to celebrate our Anniversary."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,4,1
-ship_inn_brewpub-esb,0,0,244990083075,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-grand_teton_brewing_2,0,0,244736065536,"{""name"":""Grand Teton Brewing #2"",""city"":""Victor"",""state"":""Idaho"",""code"":""83455"",""country"":""United States"",""phone"":""1-208-787-9000"",""website"":""http://www.grandtetonbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""430 Old Jackson Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.5984,""lon"":-111.108}}",1,6,1
-anheuser_busch-sun_dog_amber_wheat,0,0,244378632193,"{""name"":""Sun Dog Amber Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Sun Dog is an unfiltered beer, with a naturally cloudy appearance and fuller texture which allows it to stand up to spicy foods like Thai noodle salads and Cuban sandwiches. The beer is best served in a tall, wide-mouthed glass which opens up the aromas of the beer and showcases its beautiful long-lasting head of white foam."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,54,1
-minocqua_brewing_company-40_golden_lager,0,0,244873887745,"{""name"":""#40 Golden Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-appalachian_brewing_company-susquehanna_stout,0,0,244362772483,"{""name"":""Susquehanna Stout"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This representation of the classic Irish Dry Stout has a smooth roast flavor due to the use of specially roasted barley. The barley kernels are kilned at very high temperatures until they are dark brown to black in color. \r\nThe Susquehanna River is named after the Susquehannock Indians who settled in our area. This shallow river is over one mile wide in the Harrisburg area and flows from southern New York through Pennsylvania to the Chesapeake Bay."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
-commonwealth_brewing_1-famous_porter,0,0,244480016386,"{""name"":""Famous Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,15,1
-brouwerij_bavik_de_brabandere-petrus_gouden_tripel_ale,0,0,244478967808,"{""name"":""Petrus Gouden Tripel Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-heller_bru_trum,0,0,244750811138,"{""name"":""Heller Bru Trum"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-56060"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dominikanerstrae 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.892,""lon"":10.8853}}",1,41,1
-portsmouth_brewery-5_c_s_ipa,0,0,244999782401,"{""name"":""5 C's IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a West Coast IPA is golden, medium-bodied ale that is very hop forward. The use of Cascade, Chinook, Columbus, Centennial and Crystal hops makes this beer a hophead’s dream."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-brouwerij_van_den_bossche-buffalo_belgian_stout,0,0,244489781249,"{""name"":""Buffalo Belgian Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_den_bossche"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-schloss_eggenberg-doppelbock_dunkel,0,0,244989689857,"{""name"":""Doppelbock Dunkel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""DoppelBock Dunkel has a pleasant full and creamy body, with a cofeeish aroma. Nicely warming with toffeelike malty sweetness, balanced by a hoppy-bitterness in the finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,21,1
-storm_brewing-precipitation_pilsner,0,0,245108047874,"{""name"":""Precipitation Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true North German Style Pilsner. Light in body and packed full of Czech Saaz hops. The distinctive Pilsner aroma and dry, refreshing taste make a great accompaniment to a hot Vanouver day."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,23,1
-egan_brewing-wilsteraner_altbier,0,0,244610170880,"{""name"":""Wilsteraner Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
-brasserie_de_l_abbaye_de_scourmont_trappistes,0,0,244370833410,"{""name"":""Brasserie de l'Abbaye de Scourmont (Trappistes)"",""city"":""Chimay-Forges"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-060-21-30-63"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Route de Rond Point 294""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.9842,""lon"":4.3111}}",1,33,1
-lion_nathan_australia_hunter_street-hahn_special_vintage_2000,0,0,244874608640,"{""name"":""Hahn Special Vintage 2000"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_nathan_australia_hunter_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,44,1
-mill_creek_brewpub-penitentiary_porter,0,0,244874412033,"{""name"":""Penitentiary Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mill_creek_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
-carver_brewing_co-colorado_trail_nut_brown_ale,0,0,244485718019,"{""name"":""Colorado Trail Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The slightly roasted flavor and nutty palate with a hint of hops make this beer subtle and drinkable."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,28,1
-founders_brewing-double_trouble_imperial_ipa,0,0,244608466944,"{""name"":""Double Trouble Imperial IPA"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,5,1
-jolly_pumpkin_artisan_ales-oro_de_calabaza,0,0,244735213569,"{""name"":""Oro de Calabaza"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the Franco-Belgian tradition of strong golden ales. Spicy and peppery with a gentle hop bouquet and the beguiling influence of wild yeast."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,3,1
-alpine_beer_company,0,0,244378959873,"{""name"":""Alpine Beer Company"",""city"":""Alpine"",""state"":""California"",""code"":""91901"",""country"":""United States"",""phone"":""1-619-445-2337"",""website"":""http://www.alpinebeerco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2351 Alpine Boulevard""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.8355,""lon"":-116.765}}",1,55,1
-captain_lawrence_brewing_company-sun_block_belgian_style_witte,0,0,244496596993,"{""name"":""Sun Block - Belgian Style Witte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer was created as a summer thirst quencher, because we all know how hot and humid it can get in New York during the summer. We brewed this beer using both coriander and orange peel in the boil to increase both the aroma and flavor of this beer. Make sure you don’t get burned this summer, drink your Sun Block."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,52,1
-beach_brewing,0,0,244360806401,"{""name"":""Beach Brewing"",""city"":""Orlando"",""state"":""Florida"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":28.5383,""lon"":-81.3792}}",1,10,1
-birra_forst,0,0,244361396226,"{""name"":""Birra Forst"",""city"":""Lagundo / Algund"",""state"":"""",""code"":""0"",""country"":""Italy"",""phone"":""39-0473-260111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Via Val Venosta, 8""]}",1,12,1
-lwenbru_zrich,0,0,244857438208,"{""name"":""Lwenbru Zrich"",""city"":""Zrich"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brandschenkestrasse 150""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.3642,""lon"":8.5245}}",1,1,1
-arthur_guinness_son-guinness_extra_stout,0,0,244379942913,"{""name"":""Guinness Extra Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-07-22 20:00:20"",""description"":""GUINNESS® Extra Stout is steeped in heritage - a whole costume drama in a bottle. It"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
-brouwerij_alken_maes-grimbergen_blonde,0,0,244478050306,"{""name"":""Grimbergen Blonde"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_alken_maes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-nordsj_grdsbryggeri,0,0,244875788290,"{""name"":""Nordsj Grdsbryggeri"",""city"":""Motala"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":58.5366,""lon"":15.0373}}",1,46,1
-manayunk_brewery_and_restaurant-schuylkill_punch,0,0,244872904705,"{""name"":""Schuylkill Punch"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""Ruby colored ale fermented with over 500 pounds of real black and red raspberries for a distinct berry aroma and a tart, sweet flavor. This beer is gently filtered to preserve its delicate profile and is made with both Belgian Ale Yeast and our Proprietary Lager Strain."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,40,1
-wild_goose_brewery_llc,0,0,245746761729,"{""name"":""Wild Goose Brewery, LLC"",""city"":""Fredrick"",""state"":""Maryland"",""code"":""21703"",""country"":""United States"",""phone"":""(301) 694-7899"",""website"":""http://www.wildgoosebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4607 Wedgewood Blvd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3628,""lon"":-77.4265}}",1,20,1
-crabby_larry_s_brewpub_steak_crab_house-calico_jack_amber_ale,0,0,244477067264,"{""name"":""Calico Jack Amber Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, malty beer made with classic American hops for a full and complex flavor. Very smooth in aroma and palate. The caramel overtones leave a nice finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-erie_brewing_company-fallenbock,0,0,244609318912,"{""name"":""Fallenbock"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""History states that the first Oktoberfest was on October 12, 1810: For the commemoration of the marriage between Crown Prince Ludwig and Princess Therese of Saxe-Hildburghausen. Keeping up with Erie Brewing’s German brewing influence, our brewer creates Fallenbock, a classic Oktoberfest lager that is a harmonious marriage of classic malts and hops that has a wonderful clean and crisp flavor to celebrate Autumn and Oktoberfest."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
-brouwerij_boon,0,0,244479426561,"{""name"":""Brouwerij Boon"",""city"":""Lembeek"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-2-356-66-44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Fonteinstraat 65""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7123,""lon"":4.2197}}",1,14,1
-beach_chalet_brewery,0,0,244380467202,"{""name"":""Beach Chalet Brewery"",""city"":""San Francisco"",""state"":""California"",""code"":""94121"",""country"":""United States"",""phone"":""1-415-386-8439"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1000 Great Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7694,""lon"":-122.51}}",1,59,1
-grumpy_troll_restaurant_and_brewery,0,0,244734689281,"{""name"":""Grumpy Troll Restaurant and Brewery"",""city"":""Mount Horeb"",""state"":""Wisconsin"",""code"":""53572"",""country"":""United States"",""phone"":""1-608-437-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""105 South Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0081,""lon"":-89.7383}}",1,2,1
-hook_norton_brewery-best_bitter,0,0,244753694722,"{""name"":""Best Bitter"",""abv"":3.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-hofmark_brauerei,0,0,244734230530,"{""name"":""Hofmark Brauerei"",""city"":""Cham"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9971-/-3301"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofmarkstrae 15""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.1672,""lon"":12.6399}}",1,0,1
-carlsberg_bryggerierne-elephant,0,0,244498104321,"{""name"":""Elephant"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_bryggerierne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,56,1
-bell_s_brewery_inc-bell_s_batch_9000,0,0,244363100161,"{""name"":""Bell's Batch 9000"",""abv"":12.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Black, dense, and rich, this is a great ale for the cellar.\"" This big brew is made with molasses and brewer's licorice."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,17,1
-brewdog_ltd-rip_tide,0,0,244490174466,"{""name"":""Rip Tide"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong, silky smooth imperial stout with a deep, dark ruby appearance. Mocha, bitter chocolate, liquorice and dark cherry flavours prevail, before the balanced, warming and encapsulating finish.\r\n\r\nA contemporary Scottish take on an age old Russian classic style originally brewed for the Tsars. Our interpretation brings together hops from both sides of the Atlantic, amazing flavoured malts and dark sugars.\r\n\r\nLike the original BrewDog, this beer would never bite you but would much rather give you a lick on the face. Look Out!\r\n\r\nServing Suggestion: Enjoy with an air of aristocratic nonchalance"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,39,1
-elysian_brewery_public_house-cyclops_barleywine,0,0,244607811585,"{""name"":""Cyclops Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-sierra_nevada_brewing_co-bigfoot_1999,0,0,244990148608,"{""name"":""Bigfoot 1999"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-green_bay_brewing-marzenbier,0,0,244736065537,"{""name"":""Marzenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,6,1
-asahi_breweries-kuronama,0,0,244378632194,"{""name"":""Kuronama"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asahi_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
-mountain_sun_pub_brewery-altmans_alt,0,0,244873887746,"{""name"":""Altmans Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mountain_sun_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
-arcadia_brewing-cocoa_loco,0,0,244362838016,"{""name"":""Cocoa Loco"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Great chocolate stoudt."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,16,1
-copper_dragon_brewing,0,0,244480081920,"{""name"":""Copper Dragon Brewing"",""city"":""Carbondale"",""state"":""Illinois"",""code"":""62901"",""country"":""United States"",""phone"":""1-618-549-3348"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.7273,""lon"":-89.2168}}",1,15,1
-brouwerij_bavik_de_brabandere-wittekerke,0,0,244478967809,"{""name"":""Wittekerke"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-holsten_brauerei-astra_urtyp,0,0,244750811139,"{""name"":""Astra Urtyp"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""holsten_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-prescott_brewing_company-liquid_amber,0,0,244999847936,"{""name"":""Liquid Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
-abbaye_de_leffe,0,0,244369195008,"{""name"":""Abbaye de Leffe"",""city"":""Dinant"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dinant""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.2606,""lon"":4.9122}}",1,31,1
-brown_street_brewery,0,0,244489781250,"{""name"":""Brown Street Brewery"",""city"":""Rhinelander"",""state"":""Wisconsin"",""code"":""54501"",""country"":""United States"",""phone"":""1-715-369-2100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 North Brown Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.638,""lon"":-89.4127}}",1,38,1
-slab_city_brewing-milkhouse_stout,0,0,244989689858,"{""name"":""Milkhouse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-stout_brothers_public_house-underground_ipa,0,0,245108113408,"{""name"":""Underground IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
-erie_brewing_company-misery_bay_ipa,0,0,244610170881,"{""name"":""Misery Bay IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The view from Oliver Perry Monument across Lake Erie’s historic Misery Bay provides a constant reminder of the hardships endured during the Battle of Lake Erie. Misery Bay IPA is brewed as a tribute to Misery Bay and Graveyard Pond, final resting place for many brave sailors and soldiers. Misery Bay IPA offers a complex malt profile loaded with American hops at 75 IBU’s, and finishes at 6.5 % alcohol by volume."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
-brasserie_de_la_senne,0,0,244370833411,"{""name"":""Brasserie de la Senne"",""city"":""Sint-Pieters-Leeuw"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-0497-/-93.23.75"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Victor Nonnemansstraat 40a""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7853,""lon"":4.2437}}",1,33,1
-little_apple_brewing-prairie_pale,0,0,244874608641,"{""name"":""Prairie Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-millstream_brewing-maifest,0,0,244874412034,"{""name"":""Maifest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,43,1
-cedar_brewing-helles_honey_bock,0,0,244485783552,"{""name"":""Helles Honey Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
-goose_island_beer_company_clybourn-honker_s_ale,0,0,244608466945,"{""name"":""Honker's Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""Honker’s Ale combines a spicy hop aroma with a rich malt middle to create a perfectly balanced ale that is immensely drinkable. A smooth, drinkable English Bitter for those looking for more from their beer."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,5,1
-krogh_s_restaurant_and_brewpub-old_krogh_oatmeal_stout,0,0,244735213570,"{""name"":""Old Krogh Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
-anheuser_busch-bud_ice_light,0,0,244379025408,"{""name"":""Bud Ice Light"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced in 1994."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-cedar_brewing-summer_alt,0,0,244496662528,"{""name"":""Summer Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
-bierbrouwerij_bavaria-hollandia,0,0,244360806402,"{""name"":""Hollandia"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-bj_s_restaurant_and_brewery-bj_s_annual_grand_cru,0,0,244361396227,"{""name"":""BJ's Annual Grand Cru"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,12,1
-magic_hat-jinx,0,0,244857438209,"{""name"":""Jinx"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""An ale for dancing bonfires and falling leaves.\r\nJinx prepares the bones for snow. It's a full bodied strong ale the color of maple's golden leaves in the season's fading sun. Finished with a touch of peat-smoked whiskey malt, Jinx offers sweet, toasty aromas of caramel, tea, and smoke. Deep flavors of dark candy sugar and warming alcohol notes are balanced by a spicy hop bitterness."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,1,1
-ballast_point_brewing-sculpin_india_pale_ale,0,0,244380008448,"{""name"":""Sculpin India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Sculpin IPA is a testament to our humble beginnings as Home Brew Mart. Founded in 1992, the Mart continues to be a catalyst for the San Diego brewing scene, setting the trend for handcrafted ales. Inspired by our customers, employees and brewers, the Sculpin IPA is bright with aromas of apricot, peach, mango and lemon. Its lighter body also brings out the crispness of the hops. This delicious Ballast Point Ale took a Bronze Medal at the 2007 Great American Beer Festival in the Pro Am category. The Sculpin fish has poisonous spikes on its fins that can give a strong sting. Ironically, the meat from a Sculpin is considered some of the most tasty. Something that has a sting but tastes great, sounds like a Ballast Point India Pale Ale."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
-brouwerij_strubbe,0,0,244478115840,"{""name"":""Brouwerij Strubbe"",""city"":""Ichtegem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-58-81-16"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Markt 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0923,""lon"":3.01}}",1,11,1
-oggi_s_pizza_and_brewing_vista-irish_stout,0,0,244875788291,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,46,1
-marquette_harbor_brewery_and_restaurant-amber_ale,0,0,244872904706,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marquette_harbor_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,40,1
-wild_river_brewing_and_pizza_cave_junction-nut_brown_ale,0,0,245746761730,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,20,1
-cucapa_brewing_company-cucapa_honey_ale,0,0,244477067265,"{""name"":""Cucapa Honey Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cucapa_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Craft Amber Ale, brewed using Honey from Northern Mexico."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-erie_brewing_company-mad_anthony_s_ale,0,0,244609318913,"{""name"":""Mad Anthony's Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Anthony Wayne adopted a military career at the outset of the American Revolutionary War, where his military exploits and fiery personality quickly earned him a promotion to the rank of brigadier general and the sobriquet of \""Mad Anthony\"". Erie Brewing Co’s Classic American Pale Ale features a balanced malt and hop flavor, which we feel the Nutty General would approve of despite his revolutionary tendencies."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-brouwerij_de_block-satan_red,0,0,244479426562,"{""name"":""Satan Red"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_block"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-blue_point_brewing,0,0,244380532736,"{""name"":""Blue Point Brewing"",""city"":""Patchogue"",""state"":""New York"",""code"":""11772"",""country"":""United States"",""phone"":""1-631-475-6944"",""website"":""http://www.bluepointbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""161 River Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7591,""lon"":-73.0215}}",1,59,1
-harpoon_brewery_boston-harpoon_munich_dark,0,0,244734689282,"{""name"":""Harpoon Munich Dark"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Harpoon Munich Dark is a blend of dark malts that creates a deeper hue than some other beers brewed in this style. The grains which create a malty chocolate-like flavor also add a warm malty nose that mingles with the subtle hop aroma. This medium bodied beer is balanced quite well with a moderately bitter hop finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
-hoppy_brewing_company-hoppy_face_amber_ale,0,0,244753760256,"{""name"":""Hoppy Face Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Is an award-winning, traditional, all-natural style of beer that falls under the category of a \""West Coast\"" India Pale Ale (IPA). Characterized by its high hop content, high alcohol content and deep amber color, Hoppy Face™ is brewed using water with a high mineral content. Using only the finest 2-row malted barley and great northwestern grown hops, this combination results in a clean, crisp, well-balanced beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\r\nIt will put a smile on your face!!!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-hoppin_frog_brewery-hop_dam_triple_ipa,0,0,244734230531,"{""name"":""Hop Dam Triple IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Some say “bigger is better!”. At Hoppin’ Frog, we built a massive hop dam to handle the enormous amount of hops added to this colossal American Triple I.P.A. An intense experience of citrus and piney hop character is complimented by layers of rich malt flavor. Behold our new standard for hoppy beers."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,0,1
-cheshire_cat_brewery-ipa,0,0,244498104322,"{""name"":""IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
-bierbrouwerij_de_koningshoeven,0,0,244363100162,"{""name"":""Bierbrouwerij De Koningshoeven"",""city"":""Berkel-Enschot"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-013-5358147"",""website"":""http://www.latrappe.nl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Eindhovenseweg 3""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.544,""lon"":5.1285}}",1,17,1
-brouwerij_het_anker,0,0,244490240000,"{""name"":""Brouwerij Het Anker"",""city"":""Mechelen"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-015-28-71-47"",""website"":""http://www.hetanker.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Guido Gezellelaan 49""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0325,""lon"":4.473}}",1,39,1
-elysian_brewery_public_house-the_wise_esb,0,0,244607877120,"{""name"":""The Wise ESB"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,4,1
-silver_gulch_brewing_company,0,0,244990148609,"{""name"":""Silver Gulch Brewing Company"",""city"":""Fox"",""state"":""Alaska"",""code"":""99708"",""country"":""United States"",""phone"":""(907) 452-2739"",""website"":""http://www.ptialaska.net/~gbrady/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Silver Gulch Brewing and Bottling Co. has been in operation since February 1998 in the small mining community of Fox, Alaska, located about 10 miles north of Fairbanks on the Steese Highway. Silver Gulch Brewing grew from brewmaster Glenn Brady's home-brewing efforts in 5-gallon batches to its current capacity of 24-barrel (750 gallon) batches."",""address"":[""2195 Old Steese Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":64.9583,""lon"":-147.622}}",1,22,1
-heller_bru_trum-aecht_schlenkerla_rauchbier_marzen,0,0,244736131072,"{""name"":""Aecht Schlenkerla Rauchbier Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-bamberger_mahr_s_bru-hell,0,0,244378697728,"{""name"":""Hell"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-nodding_head_brewpub-ich_bin_ein_berliner_weisse,0,0,244873887747,"{""name"":""Ich Bin Ein Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-bass_brewers,0,0,244362838017,"{""name"":""Bass Brewers"",""city"":""Burton-upon-Trent"",""state"":""Staffordshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01283)-513347"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""137 High Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.8046,""lon"":-1.6281}}",1,16,1
-de_halve_maan-straffe_hendrik_bruin,0,0,244612726784,"{""name"":""Straffe Hendrik Bruin"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-brouwerij_liefmans-liefmans_kriekbier,0,0,244479033344,"{""name"":""Liefmans Kriekbier"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,13,1
-hook_norton_brewery-twelve_days,0,0,244750876672,"{""name"":""Twelve Days"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
-pyramid_alehouse_brewery_and_restaurant_seattle-tilted_kilt_ale,0,0,244999913472,"{""name"":""Tilted Kilt Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,47,1
-abita_brewing_company-satsuma_harvest_wit,0,0,244369260544,"{""name"":""Satsuma Harvest Wit"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Real Louisiana Satsumas, golden wheat, oats and the finest barley create Abita Satsuma Harvest Wit. Pale and cloudy, like the haze on a hot summer day, this white beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing. \r\n\r\nAbita Satsuma Harvest Wit is very versatile and can compliment a number of dishes. This brew pairs well with salads, fish, shrimp and lobster, as long as the dishes are not too spicy. Thai dishes, which often have citric notes in their flavor profile, would also perfectly compliment the orange flavors in Abita Satsuma Harvest Wit."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,31,1
-c_b_potts_of_cheyenne-big_horn_buttface_amber,0,0,244489846784,"{""name"":""Big Horn Buttface Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
-southern_star_brewing_company-buried_hatchet_stout,0,0,245107130368,"{""name"":""Buried Hatchet Stout"",""abv"":8.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_star_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Jet-black in color, this monster smells of coffee and chocolate. The taste is much of the same, with hints of creamy toffee and roasted malt. Smooth and delicious, this medium bodied ale is all about the malts, but has enough hop bitterness to be balanced."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-taylor_brewing-palpitations_porter,0,0,245108113409,"{""name"":""Palpitations Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
-fish_brewing_company_fish_tail_brewpub-monkfish_tripel,0,0,244610236416,"{""name"":""Monkfish Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-brasserie_de_saint_sylvestre,0,0,244370898944,"{""name"":""Brasserie De Saint Sylvestre"",""city"":""St-Sylvestre-Cappel"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.28.40.15.49"",""website"":""http://www.brasserie-st-sylvestre.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""121, rue de la Chapelle""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7975,""lon"":2.5412}}",1,33,1
-marble_brewery,0,0,244874674176,"{""name"":""Marble Brewery"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":""87102"",""country"":""United States"",""phone"":""505.243.2739"",""website"":""http://marblebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Marble Brewery is located in beautiful Downtown Albuquerque area, conveniently located near Interstate 25 and just a stone's throw from the railroad tracks. Our spacious tap room and extensive bar is complimented by an equally expansive patio that offers plenty of shaded, picnic-style seating. For both beer lovers and curious and thirsty tourists, a visit to Marble Brewery is a must when in Albuquerque."",""address"":[""111 Marble Ave NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.0928,""lon"":-106.647}}",1,44,1
-millstream_brewing-schokolade_bock,0,0,244874477568,"{""name"":""Schokolade Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,43,1
-cervecera_hondurea,0,0,244485783553,"{""name"":""Cervecera Hondurea"",""city"":""San Pedro Sula"",""state"":"""",""code"":"""",""country"":""Honduras"",""phone"":""504-550-0100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Carretera a Puerto Corts""]}",1,28,1
-goose_island_beer_company_clybourn,0,0,244608532480,"{""name"":""Goose Island Beer Company - Clybourn"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60614"",""country"":""United States"",""phone"":""1-800-466-7363"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1800 North Clybourn Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9137,""lon"":-87.6543}}",1,5,1
-lakefront_brewery-eastside_dark,0,0,244735279104,"{""name"":""Eastside Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-anheuser_busch-green_valley_stone_mill_pale_ale,0,0,244379025409,"{""name"":""Green Valley Stone Mill Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-clipper_city_brewing_co-loose_cannon_hop3_ale,0,0,244496662529,"{""name"":""Loose Cannon Hop3 Ale"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Loose Cannon Hop3 Ale - called Hop 3 (hop cubed) ale to reflect the enormous amount of hops in this beer: over 3 pounds per barrel! Also the beer is hopped 3 ways - in the kettle, in the hop back, and dry hopped. Winner of the Overall Best of Show Award in the Maryland State Governor's Cup 2005 Competition and voted the #1 IPA by Mahaffey’s Pub. We are very excited about this new product and have decided to make this beer available year round!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
-brasserie_de_la_senne-stouterik_the_brussels_stout,0,0,244360871936,"{""name"":""Stouterik / The Brussels Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-21st_amendment_brewery_cafe-21a_ipa,0,0,244376535040,"{""name"":""21A IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep golden color. Citrus and piney hop aromas. Assertive malt backbone supporting the overwhelming bitterness. Dry hopped in the fermenter with four types of hops giving an explosive hop aroma. Many refer to this IPA as Nectar of the Gods. Judge for yourself. Now Available in Cans!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
-blue_cat_brew_pub,0,0,244361461760,"{""name"":""Blue Cat Brew Pub"",""city"":""Rock Island"",""state"":""Illinois"",""code"":""61201"",""country"":""United States"",""phone"":""1-309-788-8247"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""113 18th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5118,""lon"":-90.5746}}",1,12,1
-main_street_beer_company_1-sweet_stout,0,0,244857503744,"{""name"":""Sweet Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_beer_company_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
-big_bang_brewery_closed-space_aged_lager,0,0,244380008449,"{""name"":""Space-Aged Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_bang_brewery_closed"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-browar_okocim,0,0,244478115841,"{""name"":""Browar Okocim"",""city"":""Brzesko"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-0146865000"",""website"":""http://www.okocim.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Browarna 14""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.9622,""lon"":20.6003}}",1,11,1
-oggi_s_pizza_and_brewing_vista,0,0,244875853824,"{""name"":""Oggi's Pizza and Brewing - Vista"",""city"":""Vista"",""state"":""California"",""code"":""92083"",""country"":""United States"",""phone"":""1-760-295-3581"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""425 South Melrose Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.2029,""lon"":-117.255}}",1,46,1
-mendocino_brewing_hopland-black_hawk_stout,0,0,244872970240,"{""name"":""Black Hawk Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
-woodforde_s_norfolk_ales-norfolk_nog_old_dark_ale,0,0,245746827264,"{""name"":""Norfolk Nog Old Dark Ale"",""abv"":99.99,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""woodforde_s_norfolk_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,20,1
-de_leyerth_brouwerijen-urthel_tonicum_finiboldhus,0,0,244609646592,"{""name"":""Urthel Tonicum Finiboldhus"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-f_x_matt_brewing-saranac_pale_ale,0,0,244609384448,"{""name"":""Saranac Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A beer that would make the English jealous! This true English Pale Ale is rich and fruity, yet finishes crisp. You'll love the copper amber color and medium body."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-brouwerij_liefmans,0,0,244479492096,"{""name"":""Brouwerij Liefmans"",""city"":""Oudenaarde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-055-31-13-92"",""website"":""http://www.liefmans.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 Aalststraat""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8439,""lon"":3.617}}",1,14,1
-boscos_memphis_brewing-dunkel,0,0,244380532737,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boscos_memphis_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-heartland_brewery_union_square-indiana_pale_ale,0,0,244734754816,"{""name"":""Indiana Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
-hoptown_brewing-copper_wheat,0,0,244753825792,"{""name"":""Copper Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoptown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-issaquah_brewhouse-oak_stout,0,0,244734230532,"{""name"":""Oak Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-costal_extreme_brewing_company,0,0,244498104323,"{""name"":""Costal Extreme Brewing Company"",""city"":""Middletown"",""state"":""Rhode Island"",""code"":""2842"",""country"":""United States"",""phone"":""(401) 849-5232"",""website"":""http://www.newportstorm.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""307 Oliphant Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.537,""lon"":-71.2796}}",1,56,1
-big_sky_brewing-moose_drool_brown_ale,0,0,244363100163,"{""name"":""Moose Drool Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""It's chocolate brown in color with a creamy texture. A malty beer with just enough hop presence to keep it from being too sweet. The aroma mostly comes from the malt with a hint of spice added by the hops. Moose Drool is brewed with pale, caramel, chocolate, and whole black malts; and Kent Goldings, Liberty, and Willamette hops. It has an original gravity of 13 degrees Plato, and is 4.2% alcohol by weight, 5.3% by volume."",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
-bullfrog_brewery-smoked_porter,0,0,244490240001,"{""name"":""Smoked Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, RICH dark ale with a complex combination of beechwood smoked malts, chocolate, coffee and caramel flavors rounding out the beers smooth creamy body."",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
-engine_house_9-imperial_pale,0,0,244607877121,"{""name"":""Imperial Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
-socorro_springs_brewing,0,0,245107458048,"{""name"":""Socorro Springs Brewing"",""city"":""Socorro"",""state"":""New Mexico"",""code"":""87801"",""country"":""United States"",""phone"":""1-505-838-0650"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1012 North California Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.0701,""lon"":-106.893}}",1,22,1
-illinois_brewing,0,0,244736131073,"{""name"":""Illinois Brewing"",""city"":""Bloomington"",""state"":""Illinois"",""code"":""61701"",""country"":""United States"",""phone"":""1-309-829-2805"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 North Center Street #111""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4787,""lon"":-88.9946}}",1,6,1
-bandana_brewery-anniversary_ale,0,0,244378697729,"{""name"":""Anniversary Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,54,1
-northwoods_brewpub_grill-white_weasel_beer,0,0,244873953280,"{""name"":""White Weasel Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-bear_republic_brewery-heritage_scottish_ale,0,0,244362838018,"{""name"":""Heritage Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,16,1
-de_leyerth_brouwerijen-urthel_hop_it,0,0,244612792320,"{""name"":""Urthel Hop-It"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,15,1
-brouwerij_roman-ename_tripel,0,0,244479033345,"{""name"":""Ename Tripel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_roman"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-independence_brewing_co-jasparilla,0,0,244750876673,"{""name"":""Jasparilla"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brilliantly golden, Jasperilla is a unique take on an old ale. Biscuity malt flavors meld with subtle plum and berry notes, produced by a special blend of English Old Ale and Chico yeasts. Brewed once a year, and aged for six months prior to release, the Jasperilla is smooth despite its 9% abv.\r\nJasper dressed as Hosehead from Strange Brew\r\n\r\nWe named this beer after our dog Jasper because he has brought so much joy to our lives. We got Jasper from a local dog rescue group called Mixed Breed Rescue. He has been a constant source of smiles and kept our spirits high through many late nights and long hours at the brewery.\r\n\r\nJasperilla is so good and smooth that you'll beg like a dog for more, roll over for a belly rub, howl at the moon...you get the picture."",""style"":""Old Ale"",""category"":""British Ale""}",1,41,1
-rahr_sons_brewing_company-rahr_s_bucking_bock,0,0,244999913473,"{""name"":""Rahr's Bucking Bock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Bucking Bock - it's a traditional German Spring Bock Beer - golden in color and mildly hopped...... Kick'n in at 8% alcohol - it has a smooth malty character that will surely thaw you out after a long cold winter. Spring is here and so is Rahr's Bucking Bock!"",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,47,1
-amherst_brewing_company-cascade_ipa,0,0,244369326080,"{""name"":""Cascade IPA"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light in color, medium body, with a hop bitterness and Cascade hop finish."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
-captain_lawrence_brewing_company-captain_lawrence_xtra_gold,0,0,244489846785,"{""name"":""Captain Lawrence Xtra Gold"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is the result of the marriage between two very distinct beer styles; the Belgian Tripel & American IPA. We have taken the best qualities from both styles and allowed them to shine through. The fruity and spicy notes from the imported Belgian yeast strain & the pungent flavors and aromas of the American grown Amarillo hops flow seamlessly together to create this flavorful ale. Straight from the Captain’s cellar to yours, we hope you enjoy."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,38,1
-southern_tier_brewing_co-farmer_s_tan_imperial_pale_lager,0,0,245107195904,"{""name"":""Farmer's Tan Imperial Pale Lager"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Neolithic humans evolved from nomadic hunters into a more settled agricultural society, changing life forever. The ‘founder’ crops they raised included wheat and barley. It is little surprise that the first examples of brewing appeared during this age.\r\n\r\nBrewers owe much to the epoch. Similarly, we thank our farmer friends of today for cultivating the ingredients the are responsible for the beers we now enjoy. Their laborious days spent ourdoors under the hot sun earn them respect, as well as a mark of distinction: the farmer's tan. Yes, the inevitable red and white hallmark of hard work."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
-terrapin_beer_company-terrapin_coffee_oatmeal_imperial_stout,0,0,245108113410,"{""name"":""Terrapin Coffee Oatmeal Imperial Stout"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Black as night, this coffee stout is thick, rich and full of real coffee flavor. Brewed with the Terrapin Wake-n-Bake coffee blend created by Terrapin & Jittery Joe’s Coffee."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,23,1
-fitger_s_brewhouse_brewery_and_grill-witchtree_esb,0,0,244610236417,"{""name"":""Witchtree ESB"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-brasserie_du_bouffay-ambr,0,0,244370898945,"{""name"":""Ambr"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bouffay"",""updated"":""2011-10-04 00:25:39"",""description"":"""",""style"":""Out of Category"",""category"":""Other Style""}",1,33,1
-marzoni_s_brick_oven_brewing_co-locke_mountain_light,0,0,244874674177,"{""name"":""Locke Mountain Light"",""abv"":3.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Refreshing Light-Bodied Golden Lager"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,44,1
-minocqua_brewing_company,0,0,244874477569,"{""name"":""Minocqua Brewing Company"",""city"":""Minocqua"",""state"":""Wisconsin"",""code"":""54548"",""country"":""United States"",""phone"":""1-715-356-2600"",""website"":""http://www.minocquabrewingcompany.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""238 Lake Shore Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.8722,""lon"":-89.7097}}",1,43,1
-coast_brewing-beau_rivage_bock,0,0,244485783554,"{""name"":""Beau Rivage Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
-granite_city_food_brewery_saint_cloud-london_banker_esb,0,0,244735737856,"{""name"":""London Banker ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-left_coast_brewing-hop_juice_double_ipa,0,0,244735279105,"{""name"":""Hop Juice Double IPA"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Here at Left Coast Brewing Co. we pride ourselves on being one of the first breweries to pioneer a Double IPA style beer. In 2003, we brewed our first Double IPA, and haven't looked back since. This hop monster uses Premium American 2- Row and a touch of light crystal malt to create a solid malt foundation. The recipe calls for hops to be used in every step of the brewing process; in the mash, in a hop back, in the fermenter, and in the bright tanks. We use hop extract, hop pellets and hop flowers, hence the name Hop Juice. Hop Juice spends more than 4 weeks dry hopping in the fermenter and the bright beer tank. It is approximately 9.4% abv and has massive IBUs. Hop usage is over 4lbs per barrel. Hopeheads, step up to the plate!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,3,1
-atwater_block_brewing-salvation,0,0,244379025410,"{""name"":""Salvation"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our version of India Pale Ale. Brewed with European malts and Northwest hops and then generously Dry Hopped with Cascade Hops for a nice citrus finish. Truly a Salvation for all Hop Heads."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
-coast_brewing-biloxi_light,0,0,244496662530,"{""name"":""Biloxi Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
-brasseries_kronenbourg,0,0,244477591552,"{""name"":""Brasseries Kronenbourg"",""city"":""Strasbourg"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.88.27.44.88"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""68 route d'Oberhausbergen""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.593,""lon"":7.7149}}",1,10,1
-alaskan_brewing-alaskan_esb,0,0,244376600576,"{""name"":""Alaskan ESB"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Extra Special Bitter Ale. Alaskan ESB is darker and hoppier and is brewed and fermented at different temperatures than our popular Alt-style Amber. It has an exquisite copper color derived from Crystal malt and an aggressive, yet pleasant hop character.\r\n\r\nMalty with roasted overtones, Alaskan ESB has a crisp finish resulting from the use of premium Northwest hops.\r\n\r\nAlaskan ESB is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,49,1
-brasserie_clarysse-st_hermes_abbey_ale,0,0,244361461761,"{""name"":""St.Hermes Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_clarysse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-main_street_station_casino_brewery_and_hotel,0,0,244857569280,"{""name"":""Main Street Station Casino, Brewery and Hotel"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89101"",""country"":""United States"",""phone"":""1-800-713-8933"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 North Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.1755,""lon"":-115.145}}",1,1,1
-blue_cat_brew_pub-river_back_jack_ipa,0,0,244380008450,"{""name"":""River Back Jack IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
-bube_s_brewery-bube_s_kolsch,0,0,244478115842,"{""name"":""Bube's Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Clean, crisp, easy drinking Colonge, Germany style ale. Kolsch's smoothness comes from special Kolsch yeast, German Hallertau hops, a slow fermentation and lager like conditioning.""}",1,11,1
-on_tap_bistro_brewery-patriot_pale_ale,0,0,244875853825,"{""name"":""Patriot Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-michigan_brewing-golden_pheasant,0,0,244872970241,"{""name"":""Golden Pheasant"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
-youngs_company_brewery-oatmeal_stout,0,0,245746827265,"{""name"":""Oatmeal Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
-devil_s_canyon-full_boar,0,0,244609712128,"{""name"":""Full Boar"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""devil_s_canyon"",""updated"":""2011-07-28 19:06:02"",""description"":"""",""style"":""Out of Category"",""category"":""Other Style""}",1,8,1
-faultline_brewing_1-belgian_abbey,0,0,244609384449,"{""name"":""Belgian Abbey"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-brouwerij_lindemans-framboise,0,0,244479492097,"{""name"":""Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,14,1
-boston_beer_company-samuel_adams_hallertau_imperial_pilsner,0,0,244380598272,"{""name"":""Samuel Adams Hallertau Imperial Pilsner"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An amazing treat for hops lovers.\r\n\r\nSamuel Adams Hallertau Imperial Pilsner is a celebration of the extraordinary Hallertau Mittelfrueh hop variety. This rare Noble Bavarian hop, considered to be one of the best in the world, is prized for its quality and aromatic characteristics.\r\n\r\nThe beer, which is a deep golden color with a rich, creamy head, gives off an intense and complex Noble hop aroma unlike any other brew. With the first sip, beer enthusiasts will experience an explosion of hop flavor. The intensity of deep citrus, spicy Noble hop flavor is balanced with the slight sweetness from the malt. Due to the quality of the hops, this beer remains balanced and smoothly drinkable from beginning to end. The lingering \""hop signature\"" is an amazing treat for hops lovers.""}",1,59,1
-herkimer_pub_brewery-kolsch,0,0,244734754817,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""herkimer_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-hoptown_brewing-paint_the_town_red,0,0,244753825793,"{""name"":""Paint the Town Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoptown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-jack_russell_brewing-best_bitter_ale,0,0,244734296064,"{""name"":""Best Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-denmark_brewing-continental_pilsner,0,0,244630093824,"{""name"":""Continental Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denmark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-blue_cat_brew_pub-off_the_rail_pale_ale,0,0,244363165696,"{""name"":""Off The Rail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-burgerbrau_wolnzach-nikolausbier_altfrankisches_dunkel,0,0,244490240002,"{""name"":""Nikolausbier Altfränkisches Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burgerbrau_wolnzach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-fish_brewing_company_fish_tail_brewpub-old_woody_2005,0,0,244607877122,"{""name"":""Old Woody 2005"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,4,1
-southampton_publick_house-double_white,0,0,245107523584,"{""name"":""Double White"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":""What do brewmasters do in their free time? If you're Phil Markowski, the obsesseive brewmaster of Southampton, you brew at home, of course! Phil turned his fascination with Belgian-style white ales into a quest to master one of the most challenging beers to brew. Using rustic ingredients like un-malted wheat, Phil experimented over his stove until he felt it was perfect. Take one taste and you'll agree, Phil got it \""white.\"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,22,1
-inbev,0,0,244736196608,"{""name"":""InBev"",""city"":""Leuven"",""state"":"""",""code"":""3000"",""country"":""Belgium"",""phone"":"""",""website"":""http://www.inbev.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In a few words InBev is the world's leading brewer, realizing 14.4 billion euro in 2007. The company has a strong, balanced portfolio, holding the number one or number two position in over 20 key markets more than any other brewer. It has a key presence in both developed and developing markets. Headquartered in Leuven, Belgium, InBev employs almost 89 000 people worldwide. With sales in over 130 countries, the company works through six operational zones: North America, Western Europe, Central and Eastern Europe, Asia Pacific, Latin America North, and Latin America South."",""address"":[""Brouwerijplein 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8865,""lon"":4.7069}}",1,6,1
-bell_s_brewery_inc-expedition_stout,0,0,244378763264,"{""name"":""Expedition Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""The vintage port of American stout. A good ale for the cellar. Well suited for November storms and trips across the Sahara."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,54,1
-oaken_barrel_brewing-razz_wheat,0,0,244873953281,"{""name"":""Razz-Wheat"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
-bell_s_brewery_inc-big_porch_ale,0,0,244362838019,"{""name"":""Big Porch Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is brewed especially for the Grand Hotel located on Mackinaw Island, Michigan."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
-denver_chophouse_and_brewery-pale_ale,0,0,244612857856,"{""name"":""Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
-brouwerij_st_bernardus-abt_12,0,0,244479098880,"{""name"":""Abt 12"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""The absolute top quality in the hierarchy of the St. Bernardus beers. It is also the beer with the highest alcohol content (10.50 %).\r\nA dark ivory coloured beer with a high fermentation. \r\n\r\nThe show piece of the brewery. Thanks to its soft and unconditionally genuine aroma, the beer can be smoothly tasted. The Abt has a very fruity flavour."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,13,1
-iron_hill_brewery_wilmingon,0,0,244750876674,"{""name"":""Iron Hill Brewery - Wilmingon"",""city"":""Wilmington"",""state"":""Delaware"",""code"":""19805"",""country"":""United States"",""phone"":""1-302-658-8200"",""website"":""http://www.ironhillbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We're passionate about producing distinctive, full-flavored handcrafted beers, accompanied by freshfromscratch New American cuisine in a comfortable, casual atmosphere. Our goal has always been to provide food and beer that is inspired, consistently crafted and presented by a knowledgeable and courteous service staff."",""address"":[""620 South Madison Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.745,""lon"":-75.5561}}",1,41,1
-rahr_sons_brewing_company-rahr_s_summertime_wheat,0,0,244999913474,"{""name"":""Rahr's Summertime Wheat"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""There is nothing more refreshing than a cold SUMMERTIME WHEAT at the end of a hot Texas day. This refreshing, lightly hopped ale has unique banana and clove-like characteristics. It is unfiltered so the yeast character comes through with a light but full body."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
-anchor_brewing-christmas_ale_2003,0,0,244369326081,"{""name"":""Christmas Ale 2003"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-cervecera_jerome-cerveza_negra,0,0,244489846786,"{""name"":""Cerveza Negra"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-stone_brewing_co-vertical_epic_10_10_10,0,0,245107261440,"{""name"":""Vertical Epic 10.10.10"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-12-20 15:55:46"",""description"":""Fermented with the legendary Ardennes strain of Belgian yeast, 10.10.10 is a Belgian Strong Pale Ale brewed with pale malt and triticale (a cross of wheat and rye), hopped with German Perle hops, and steeped with chamomile during the whirlpool stage. In secondary fermentation, we added a juice blend of Muscat, Gewurztraminer, and Sauvignon Blanc grape varieties."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,21,1
-the_cambridge_house,0,0,245108178944,"{""name"":""The Cambridge House"",""city"":""Granby"",""state"":""Connecticut"",""code"":""6035"",""country"":""United States"",""phone"":""(860) 653-BREW"",""website"":""http://www.cambridgebrewhouse.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The best brewery in the Connecticut river valley. Hands down! It serves 2 beers that have won a total of 3 gold medals at big beer fests."",""address"":[""357 Salmon Brook Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9658,""lon"":-72.793}}",1,23,1
-founders_hill_brewing-heritage_wheat,0,0,244610301952,"{""name"":""Heritage Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
-brauerei_spezial-rauchbier_marzen,0,0,244487684096,"{""name"":""Rauchbier Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-metropolitan_brewing,0,0,244874739712,"{""name"":""Metropolitan Brewing"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60640"",""country"":""United States"",""phone"":"""",""website"":""http://www.metrobrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5121 N Ravenswood Ave,""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.975,""lon"":-87.674}}",1,44,1
-moose_s_tooth_pub_and_pizzeria-dark_knight,0,0,244874543104,"{""name"":""Dark Knight"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Knight (Baltic Porter) A Baltic porter is kind of a cross between an English porter and an Imperial Stout. Ours features a rich maltiness with hints of caramel, toffee and chocolate in both the flavor and aroma. Restrained hopping contributes a smooth full finish.""}",1,43,1
-dark_horse_brewing_co-one_oatmeal_stout,0,0,244485849088,"{""name"":""One Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Number one in a series of five stouts produced to help ease you through the cold and grey midwestern winters. This beer is full bodied with hints of chocolate, roasted barley, coffee flavors and a nice creamy head."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,28,1
-granville_island_brewing_company-cypress_honey_lager,0,0,244735803392,"{""name"":""Cypress Honey Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-lift_bridge_brewery,0,0,244735279106,"{""name"":""Lift Bridge Brewery"",""city"":""Stillwater"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.liftbridgebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.0565,""lon"":-92.8222}}",1,3,1
-augustiner_brau_munchen-dunkel,0,0,244379090944,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-coors_brewing_golden_brewery-coors_light,0,0,244496728064,"{""name"":""Coors Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coors Light is Coors Brewing Company's largest-selling brand and the fourth best-selling beer in the U.S. Introduced in 1978, Coors Light has been a favorite in delivering the ultimate in cold refreshment for more than 25 years. The simple, silver-toned can caught people's attention and the brew became nicknamed the \""Silver Bullet\"" as sales climbed."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,52,1
-brauhaus_faust,0,0,244477657088,"{""name"":""Brauhaus Faust"",""city"":""Miltenberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9371-/-9713-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hauptstrae 219""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.6993,""lon"":9.2492}}",1,10,1
-alaskan_brewing-winter_ale,0,0,244376600577,"{""name"":""Winter Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""English Olde Ale. Traditionally malty with the warming sensation of alcohol, Olde Ales are brewed in the fall as winter warmers.\r\n\r\nBrewed in the style of an English Olde Ale, this ale balances the sweet heady aroma of spruce tips with the clean crisp finish of noble hops. Its malty richness is complemented by the warming sensation of alcohol.\r\n\r\nAlaskan Winter is made from glacier-fed water, Sitka spruce tips and a generous blend of the finest quality European and Pacific Northwest hop varieties and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,49,1
-brasserie_de_brunehaut-mont_st_aubert,0,0,244361527296,"{""name"":""Mont St. Aubert"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic Belgian Bière de Garde - full of fruity esters, alcohol phenols, Belgian malts, noble hops and a dry, refreshing after-taste. Award-wining Mont Saint-Aubert received 'World's Best\"" recognition in the Bière de Garde category during the 2009 World Beer Awards (London).\r\nIn 2008 Mont Saint-Aubert took Silver medals in the Belgian-Style Pale Strong Ale category at the Brewers Association World Beer Cup and the Australian International Beer Awards.""}",1,12,1
-meantime_brewing_company_limited-india_pale_ale,0,0,244857569281,"{""name"":""India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meantime_brewing_company_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-bonfire_brewery-promethean_porter,0,0,244380073984,"{""name"":""Promethean Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bonfire_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
-bull_bush_pub_brewery-fall_fest,0,0,244478181376,"{""name"":""Fall Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,11,1
-otter_creek_brewing_wolaver_s_organic_ales-otter_creek_imperial_india_pale_ale,0,0,244875853826,"{""name"":""Otter Creek Imperial India Pale Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally brewed for thirsty British troops stationed on the subcontinent of India, India Pale Ales had to withstand the sea voyage around Africa. Brewers need to take full advantage of two preservatives at the time: hops and alcohol. They increased their hopping rates, doubled their malt useage to increase alcohol content, and dry-hopped the brew before it set out on its voyage.\r\nOur Imperial IPA carries on this tradition- and then some! The fruity and citrusy hop aroma intermingles perfectly with an assertive malty backbone. Our brewers added a generous supply of hops to this brew throughout the entire process to provide an enormous hop flavor and balance the elevated alcohol content.\r\n\r\nThis beer is 11% alcohol by volume, and 135 IBU!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,46,1
-minocqua_brewing_company-beekeepers_honey_ale,0,0,244872970242,"{""name"":""Beekeepers Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-aberdeen_brewing-scottish_ale,0,0,244372275200,"{""name"":""Scottish Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aberdeen_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-dogfish_head_craft_brewery-olde_school_barleywine,0,0,244609777664,"{""name"":""Olde School Barleywine"",""abv"":15.04,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,8,1
-firehouse_brewing-barely_blond,0,0,244609384450,"{""name"":""Barely Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-brouwerij_verhaeghe-echte_kriek,0,0,244479557632,"{""name"":""Echte Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_verhaeghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-boston_beer_works-ipa,0,0,244380598273,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-hofbru_kaltenhausen_salzachtal-edelweiss_dunkel_weissbier,0,0,244734754818,"{""name"":""Edelweiss Dunkel Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbru_kaltenhausen_salzachtal"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-humboldt_brewing-stout,0,0,244753825794,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-kessler_brewing-doppelbock,0,0,244734296065,"{""name"":""Doppelbock"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kessler_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,0,1
-deschutes_brewery-hop_trip_fresh_hop_pale_ale,0,0,244630159360,"{""name"":""Hop Trip Fresh Hop Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Fresh Hop Pale Ale is all about celebrating the hop harvest in the fall. Fresh picked hops have to be added to the brew immediately and in abundance. Roughly 270 pounds of Crystal hops from Doug Weathers' farm outside Salem, Oregon will be added to the 50 barrel batch in addition to some dry kilned whole flower hops. That adds up to approximately 5.5 pounds of hops per barrel brewed. Another deliciously interesting beer in our Bond Street Series."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
-boiler_room_brewpub,0,0,244363165697,"{""name"":""Boiler Room Brewpub"",""city"":""Laughlin"",""state"":""Nevada"",""code"":""89029"",""country"":""United States"",""phone"":""1-702-298-4000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2100 Casino Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.1584,""lon"":-114.573}}",1,17,1
-cedar_brewing-dunkelweisse,0,0,244490305536,"{""name"":""Dunkelweisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-fratellos_restaurant_and_brewery-oatmeal_stout,0,0,244607942656,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
-southampton_publick_house-english_pale_ale,0,0,245107589120,"{""name"":""English Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
-issaquah_brewhouse-bourbon_barrel_stout,0,0,244736196609,"{""name"":""Bourbon Barrel Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-big_river_brewing-pilsner,0,0,244378763265,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-okanagan_spring_brewery-premium_lager,0,0,244873953282,"{""name"":""Premium Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""okanagan_spring_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-boston_beer_company-samuel_adams_spring_ale,0,0,244362838020,"{""name"":""Samuel Adams Spring Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-deschutes_brewery-buzzsaw_brown,0,0,244612857857,"{""name"":""Buzzsaw Brown"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""By 1915, Bend, Oregon, was alive with the sound of the buzz saw, as two of the country's largest pine sawmills set up shop on the banks of the Deschutes River. The mills are gone now, but the smokestacks still stand testament to Bend's humble beginnings. \r\n\r\nBuzzsaw Brown is an easy-drinking beer that is refreshing after a hard day’s work. The timber mills in Bend may be closed, but whether your adventure includes a day of scaling rock faces, hitting 18 holes or skiing the slopes in spring, Buzzsaw Brown is the perfect end to a fun-filled day.\r\n\r\n“Buzzsaw Brown is one of my favorite beers,” says Deschutes Brewery Brewmaster Larry Sidor. “The unique combination of European and American malts makes it a very food friendly beer that pairs well with a wide variety of flavors.”"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
-brouwerij_st_bernardus-prior_8,0,0,244479098881,"{""name"":""Prior 8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This noble delicious beer with a high fermentation has a ruby purple colour with a full malty and fruity taste (8% alcohol content). \r\n\r\nThis beer has a beautiful round froth due to the second fermentation with a taste that creates a perfect balance between sweet and sour."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,13,1
-james_page_brewing-iron_range_amber_lager,0,0,244750942208,"{""name"":""Iron Range Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""james_page_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
-railway_brewing-ipa_pale_ale,0,0,244999979008,"{""name"":""IPA Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""railway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-andechser_klosterbrauerei-weissbier_dunkel,0,0,244369391616,"{""name"":""Weißbier Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""andechser_klosterbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-circle_v_brewing-bullseye_bitter_esb,0,0,244489846787,"{""name"":""Bullseye Bitter ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""circle_v_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-straub_brewery,0,0,245107261441,"{""name"":""Straub Brewery"",""city"":""St. Mary's"",""state"":""Pennsylvania"",""code"":""15857"",""country"":""United States"",""phone"":""814-834-2875"",""website"":""http://www.straubbeer.com/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""303 Sorg Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4277,""lon"":-78.5539}}",1,21,1
-the_livery-double_paw,0,0,245108178945,"{""name"":""Double Paw"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""A single malt and single hop version of an American Brewers classic style. This is definitely our hoppiest beer and quickly becoming a hop head cult classic!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,23,1
-gasthaus_brauerei_max_moritz-hefeweizen,0,0,244610301953,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_brauerei_max_moritz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,9,1
-bridgeport_brewing-haymaker_extra_pale_ale,0,0,244487749632,"{""name"":""Haymaker Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-millstream_brewing-colony_oatmeal_stout,0,0,244874739713,"{""name"":""Colony Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
-new_belgium_brewing-2_below,0,0,244874543105,"{""name"":""2° Below"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pull on your wool socks and crack open a 2° Below Ale. This tasty winter warmer started life as a small batch beer brewed for the Al Johnson Uphill Downhill – a telemark ski race in Crested Butte, Colorado. The Uphill Downhill celebrates the exploits of Al Johnson, letter carrier extraordinaire, who delivered mail by ski in the late 1800’s. Dry hopping during fermentation creates a floral nose with a hint of pepper and spicy, subtle undertones. 2° Below provides a bright, hoppy palate and a cheery warm afterglow."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,43,1
-deschutes_brewery-green_lakes_organic_ale,0,0,244618231808,"{""name"":""Green Lakes Organic Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Discover Deschutes Brewery’s intriguing amber ale, our Ode to Mother Earth. Experience its mellow malt profile intertwined with subtly surprising hop flavors. Green Lakes Organic Ale is brewed with five types of 100% organic malted barley and balanced with Liberty and Salmon-Safe Sterling hops. Easy to drink. Easy on the Environment. Downright Delicious. Who knew celebrating Mother Earth could taste so good.\r\n\r\nAfter working with Oregon Tilth for nearly six months, Deschutes Brewery received organic certification for its 50 barrel brew house and can now brew tasty organic ales for year-round enjoyment.\r\n\r\nFish need cool clean water. So do you. That’s why we sourced Salmon-Safe certified Sterling hops for our first organic beer. The way these flavorful, rich hops are grown makes sure that streams are shaded and there is not runoff to nearby waterways. That way the rivers stay cool and clean for migrating salmon. Not only is our Green Lakes beer organic, it helps protect our rivers as well."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
-great_lakes_brewing-eliot_ness_amber_lager,0,0,244735803393,"{""name"":""Eliot Ness Amber Lager"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber lager with rich, fragrant malt flavors balanced by crisp, noble hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-loaf_and_stein_brewing-red_ale,0,0,244858290176,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
-aviator_brewing_company,0,0,244379090945,"{""name"":""Aviator Brewing Company"",""city"":""Fuquay Varina"",""state"":""North Carolina"",""code"":""27526"",""country"":""United States"",""phone"":""(919)567-BEER"",""website"":""http://www.aviatorbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""209 Technology Park Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6197,""lon"":-78.8085}}",1,55,1
-coronado_brewing_company-island_pale_ale_ipa,0,0,244496728065,"{""name"":""Island Pale Ale (IPA)"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Islander IPA is a powerful West Coast IPA. This beer bites back with an intense hoppy zing and high alcohol content. The Islander IPA is dry hopped with tons of Centennial & Chinook hops and its fruity aroma will win your approval."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
-brauhaus_johann_albrecht_konstanz-nickelbier,0,0,244477722624,"{""name"":""Nickelbier"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,10,1
-allguer_brauhaus_ag_kempten_brausttte_leuterschach-sailerbrau_rauchenfels_steinweizen,0,0,244376666112,"{""name"":""Sailerbräu Rauchenfels Steinweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten_brausttte_leuterschach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-brasserie_de_l_abbaye_des_rocs-speciale_noel,0,0,244361527297,"{""name"":""Spéciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-mikkeller-beer_geek_breakfast,0,0,244857569282,"{""name"":""Beer Geek Breakfast"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mikkeller"",""updated"":""2010-07-22 20:00:20"",""description"":""Breakfast is the most important meal of the day, many say, and if you are a beer geek there is no better way to start the day than with a powerful, complex morning stout. The unique mix of oats and coffee gives this beer large body and power, while the coffee, at the same time, creates a nice balance."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,1,1
-bonfire_brewery,0,0,244380073985,"{""name"":""Bonfire Brewery"",""city"":""Northville"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.4311,""lon"":-83.4833}}",1,58,1
-capital_brewery-capital_oktoberfest,0,0,244478181377,"{""name"":""Capital Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,11,1
-panther_brewing_company-three_stooges_beer,0,0,244999323648,"{""name"":""Three Stooges Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""panther_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
-moab_brewery-scorpion_pale_ale,0,0,244873035776,"{""name"":""Scorpion Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moab_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-abita_brewing_company-turbodog,0,0,244372340736,"{""name"":""Turbodog"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abita Turbodog is a dark brown ale brewed with Willamette hops and a combination of British pale, crystal and chocolate malts.\r\n\r\nThis combination gives Turbodog its rich body and color and a sweet chocolate-toffee like flavor. Turbodog began as a specialty ale but has gained a huge loyal following and has become one of our three flagship brews.\r\n\r\nJust a bit stronger than our other brews, so . . .beware of the dog!"",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,37,1
-estes_park_brewery-trail_ridge_red,0,0,244609777665,"{""name"":""Trail Ridge Red"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our red is a special bitter. This means it has medium body and mild bitterness. These balance well with the rich copper color. We use American hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-flat_earth_brewing_company,0,0,244609449984,"{""name"":""Flat Earth Brewing Company"",""city"":""St. Paul"",""state"":""Minnesota"",""code"":""55116"",""country"":""United States"",""phone"":"""",""website"":""http://flatearthbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""After years of careful planning and mortgaging everything the Flat Earth Brewing Company was brought to life in 2007 by head brewer Jeff Williamson and his wife Cathie. In search of a calmer life and an even better beer, Jeff turned his passion for brewing into a career. After a temporary stint at Northern Brewer and a job as an assistant brewer at Minneapolis Town Hall Brewery, Flat Earth opened in Saint Paul and set out to create beers not normally found in the upper Midwest. Flat Earth's distinctive brews are often inspired by the couple's travels and time spent in conversation with family and friends. The company's brewing on the edge philosophy is reflected in its stylish interpretation of traditional brewing assumptions. Today, Flat Earth Brewing produces a variety of artisan ales and lagers every month. As the beers roll out of the brewery, you're sure to see a theme develop around their names a hint of conspiracy, perhaps. The names are meant to get people thinking and talking. Whether you enjoy Flat Earth beers at home or out with friends, there are no secrets when it comes to good beer."",""address"":[""2035 Benson Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9084,""lon"":-93.1538}}",1,7,1
-carmel_brewing-hefeweizen,0,0,244479557633,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carmel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
-boulder_beer_company-singletrack_copper_ale,0,0,244380663808,"{""name"":""Singletrack Copper Ale"",""abv"":4.97,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-humboldt_brewing-pale_ale,0,0,244734820352,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
-kenya_breweries-tusker_premium_lager,0,0,244753825795,"{""name"":""Tusker Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kenya_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_xh,0,0,244734296066,"{""name"":""Hitachino Nest XH"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark ale with a tan head. Subtle sake flavor from cask aging."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,0,1
-egan_brewing-princess_of_darkness_porter,0,0,244630224896,"{""name"":""Princess of Darkness Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
-21st_amendment_brewery_cafe-watermelon_wheat,0,0,244377124864,"{""name"":""Watermelon Wheat"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""The definition of summer in a pint glass. This unique, American-style wheat beer, is brewed with 400 lbs. of fresh pressed watermelon in each batch. Light turbid, straw color, with the taste and essence of fresh watermelon. Finishes dry and clean. Now Available in Cans!"",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,50,1
-bonaventure_brewing_co-bonaventure_pale_ale,0,0,244363165698,"{""name"":""Bonaventure Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bonaventure_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Light amber color and a mild malty background. Well-hopped featuring Cascade hops with a distinct floral finish."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-celis_brewery-grand_cru,0,0,244490371072,"{""name"":""Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-gordon_biersch_brewing-gordon_biersch_czech_lager,0,0,244607942657,"{""name"":""Gordon Biersch Czech Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,4,1
-st_peter_s_brewery-cream_stout,0,0,245107589121,"{""name"":""Cream Stout"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,22,1
-jt_whitney_s_brewpub_and_eatery,0,0,244736196610,"{""name"":""JT Whitney's Brewpub and Eatery"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53711"",""country"":""United States"",""phone"":""1-608-274-1776"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""674 South Whitney Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0519,""lon"":-89.4737}}",1,6,1
-blue_corn_caf_and_brewery_albuquerque-plaza_porter,0,0,244378763266,"{""name"":""Plaza Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_corn_caf_and_brewery_albuquerque"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
-old_dominion_brewing_co,0,0,244874018816,"{""name"":""Old Dominion Brewing Co."",""city"":""Dover"",""state"":""Delaware"",""code"":""19901"",""country"":""United States"",""phone"":""(302) 678-4810"",""website"":""http://www.olddominion.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1284 McD Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.154,""lon"":-75.4884}}",1,42,1
-brauerei_grieskirchen_ag,0,0,244480081920,"{""name"":""Brauerei Grieskirchen AG"",""city"":""Grieskirchen"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-72-48/607-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stadtplatz 14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.2351,""lon"":13.8292}}",1,16,1
-dock_street_beer-rye_ipa,0,0,244612857858,"{""name"":""Rye IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""An aggressively hopped American Style Pale Ale brewed with Simcoe and Amarillo hops. The use of 20% rye gives this ale a unique dry and spicy character."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-brouwerij_van_steenberge-augustijn_ale,0,0,244479164416,"{""name"":""Augustijn Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-john_harvard_s_brew_house_harvard_square-framingham_maibock,0,0,244750942209,"{""name"":""Framingham Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brew_house_harvard_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,41,1
-real_ale_brewing_company-full_moon_pale_rye_ale,0,0,245000044544,"{""name"":""Full Moon Pale Rye Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Tawny red and full of malt and hops, Full Moon's unique flavor truly satisfies. The smooth sweetness of malted rye and barley is complemented by generous helpings of Willamette and Cascade hops, resulting in an assertive American amber ale."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,47,1
-anheuser_busch-redbridge,0,0,244369391617,"{""name"":""Redbridge"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Redbridge beer doesn’t need to make promises to stand out from the crowd; its very essence sets it apart. Redbridge is made without wheat or barley, so the approximately 3.2 million consumers who are unable to drink beer made with barley due to Celiac Disease or because they follow a wheat-free or gluten-free diet can once again enjoy a great tasting beer. Redbridge is a rich, full-bodied lager brewed from sorghum for a well-balanced, moderately hopped taste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-coastal_fog_brewing-pale,0,0,244489912320,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coastal_fog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
-thirsty_dog_brewing-orthus_belgian_dubbel,0,0,245107261442,"{""name"":""Orthus Belgian Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Orthus was the two-headed hell hound brother of Cerberus, the three-headed dog that guarded the gates of hell. Orthus is a Belgian Dubbel brown in color, 7 grains, 3 hops, Trappist high gravity yeast. Very Drinkable."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,21,1
-the_round_barn_winery_brewery-round_barn_summer_wheat,0,0,245108178946,"{""name"":""Round Barn Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An unpretentious American pale wheat beer, our Summer Wheat pours a cloudy golden-orange, just like a sunset over Lake Michigan. Its assertive wheat flavor is complimented with hints of citrus zest. Garnish with a slice of orange or lemon. Round Barn beer is bottle conditioned, decant into a weizen glass before drinking for the best taste experience."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
-glen_ellyn_sports_brew-g_e_lite,0,0,244610301954,"{""name"":""G.E. Lite"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
-brouwerij_girardin,0,0,244487749633,"{""name"":""Brouwerij Girardin"",""city"":""Sint-Ulriks-Kapelle"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-024-52-64-19"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lindenbergstraat 10""]}",1,33,1
-minneapolis_town_hall_brewery-smoked_porter,0,0,244874805248,"{""name"":""Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-o_gara_s_bar_grill-sligo_red,0,0,244874543106,"{""name"":""Sligo Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-dragonmead_microbrewery-final_absolution,0,0,244618231809,"{""name"":""Final Absolution"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dragonmead's signature product! This is the ultimate Belgian style. The very high gravity of this beer is balanced by the smoothness of its finish. Banana and Clove aromas come from the Belgian yeast strain combining with the generous dose of Belgian Candi Sugar. The Saaz hops help to give this beer a balanced bitterness with no noticeable hop aroma."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,28,1
-grumpy_troll_restaurant_and_brewery-trailside_wheat,0,0,244735803394,"{""name"":""Trailside Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
-martini_brauerei-weissbier_dunkel,0,0,244858355712,"{""name"":""Weissbier Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-bell_s_brewery_inc-octoberfest_beer,0,0,244379156480,"{""name"":""Octoberfest Beer"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A coppery amber lager that showcases a full bodied, malty flavor that is balanced by a refreshing bitterness derived from fine noble hops."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,55,1
-crested_butte_brewery_pub,0,0,244496728066,"{""name"":""Crested Butte Brewery & Pub"",""city"":""Crested Butte"",""state"":""Colorado"",""code"":""81224"",""country"":""United States"",""phone"":""1-970-349-5026"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""226 Elk Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8698,""lon"":-106.987}}",1,52,1
-brewery_vivant-vivant_tripel,0,0,244477722625,"{""name"":""Vivant Tripel"",""abv"":9.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_vivant"",""updated"":""2011-06-22 12:22:12"",""description"":""A classic golden ale, with subtle esters of banana and bubblegum. This beer pours with a creamy head and ends with a sweetness of light Belgian candi sugars. Our brewmaster aged this ale for an extended period to round out the flavors. A great traditional Belgian brew. "",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,10,1
-anchor_brewing-anchor_summer_beer,0,0,244376666113,"{""name"":""Anchor Summer Beer"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Anchor Summer is the first American wheat beer in modern times. Our first brew of this light and refreshing beer was in the summer of 1984.\r\n\r\nAnchor Summer is an all-malt beer, and over 50% of its malt comes from malted wheat. It is fermented with a Triticum aestivum, AKA wheat traditional top-fermenting \""ale\"" yeast because we prefer the clean flavors developed by this yeast. We believe that this style best celebrates the refreshingly light flavor of malted wheat. You may notice that the head on this beer is unusually abundant, with a consistency similar to whipped egg whites. This is due to protein contributed by the wheat.\r\n\r\nThe brewers at Anchor are proud to have revived not only rich hearty dark beers, but also this light crisp style of a modern American wheat beer.\r\n\r\nSummer getaway Wheat malt contributes to an unusual lightness and dryness to the palate, and this—combined with the distinctive flavor of the wheat—makes for a perfect thirst-quenching beverage. It is the ideal drink for beer lovers who appreciate tradition and character in their beer, but also seek a lighter, refreshing style, perfect for warm weather.\r\n\r\n-http://www.anchorbrewing.com/beers/summerbeer.htm"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
-brasserie_duyck-jenlain_blonde,0,0,244478312448,"{""name"":""Jenlain Blonde"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_duyck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-moosehead_breweries-moosehead_lager,0,0,244857634816,"{""name"":""Moosehead Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosehead_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
-boston_beer_company-samuel_adams_noble_pils,0,0,244380073986,"{""name"":""Samuel Adams Noble Pils"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Noble Pils is one of the only brews made with all five Noble hops from the world’s growing regions. its bright flavor and lively, citrus hop character reminds us that the warm days of spring are just a few weeks away."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,58,1
-carlsberg_sverige_ab,0,0,244478181378,"{""name"":""Carlsberg Sverige AB"",""city"":""Falkenberg"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":""46-08-757-70-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rstadvgen""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":56.9002,""lon"":12.5405}}",1,11,1
-pivovar_herold_beznice,0,0,244999389184,"{""name"":""Pivovar Herold Beznice"",""city"":""Beznice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-318-682-047"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nadrazni ul.""]}",1,46,1
-murphy_s_wagon_wheel,0,0,244873035777,"{""name"":""Murphy's Wagon Wheel"",""city"":""Hastings"",""state"":""Nebraska"",""code"":""68901"",""country"":""United States"",""phone"":""1-402-463-3011"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""107 North Lincoln Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5843,""lon"":-98.3912}}",1,40,1
-adnams_co-adnam_s_suffolk_special_bitter,0,0,244372340737,"{""name"":""Adnam's Suffolk Special Bitter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Adnams Suffolk Special Bitter, at 4.5% alcohol by volume, is a dry, crisp, refreshing, and distinctly hoppy example of its style.\r\n\r\nThis beer is also available in some markets in tradtional cask form, as Adnams Bitter. At only 3.7% alcohol, Adnams Bitter is the classic English 'ordinary,' though we think you'll agree that there's full of flavor.\r\n\r\nDespite its rich heritage and enduring fame, Adnams is not a company willing to rest on its laurels. Its continued commitment to quality and innovative packaging designs has made it Britain’s fastest growing brewery over the last two years. To top it off, Adnams’ head brewer was recently chosen as Britain’s Brewer of the Year by a panel of his peers."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,37,1
-faultline_brewing_1-stout,0,0,244609777666,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
-founders_brewing-centennial_ipa,0,0,244609449985,"{""name"":""Centennial IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Selected as a benchmark for the Beer Judge Certification Program used in all American based beer judgings. Centennial IPA has quickly become the IPA of choice. Pour yourself a pint of this complex flavorful ale and bask in the frothy head's floral bouquet. Relish the immense citrus accents, achieved by the abundance of dry hopping. This ale's sweet, malty undertones balance the hop character with a finish that never turns too bitter."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
-carver_brewing_co-old_oak_amber_ale,0,0,244479623168,"{""name"":""Old Oak Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A well balanced American Amber Ale. Smooth malt character balanced with a healthy dose of Cascade hops aged on oak chips - our most popular beer."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
-brasserie_dupont-saison_vielle_provision,0,0,244498956288,"{""name"":""Saison Vielle Provision"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-industrias_la_constancia_ilc-regia_extra,0,0,244734820353,"{""name"":""Regia Extra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_sweet_stout,0,0,244753891328,"{""name"":""Hitachino Nest Sweet Stout"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-knig_brauerei-pilsener,0,0,244734296067,"{""name"":""Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-etna_brewing,0,0,244630224897,"{""name"":""Etna Brewing"",""city"":""Etna"",""state"":""California"",""code"":""96027"",""country"":""United States"",""phone"":""1-530-467-5277"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""131 Callahan""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4559,""lon"":-122.846}}",1,56,1
-3_fonteinen_brouwerij_ambachtelijke_geuzestekerij-oude_geuze,0,0,244377124865,"{""name"":""Oude Geuze"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""3_fonteinen_brouwerij_ambachtelijke_geuzestekerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,50,1
-boston_beer_company-samuel_adams_chocolate_bock,0,0,244363231232,"{""name"":""Samuel Adams Chocolate Bock"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,17,1
-cervecera_cuauhtmoc_moctezuma-tecate,0,0,244490371073,"{""name"":""Tecate"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-gottberg_brew_pub-tin_lizzie_hefeweizen,0,0,244607942658,"{""name"":""Tin Lizzie Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,4,1
-stieglbrauerei_zu_salzburg_gmbh-paracelsus_zwickl,0,0,245107589122,"{""name"":""Paracelsus Zwickl"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Paracelsus Zwickl is a natural beer specialty with a mellow impression on the tongue. The aftertaste unfolds a slight bitterness. Zwickl-beer is not filtered and therefore shows some cloudiness due to rests of yeast, minerals and trace elements.\r\n\r\nThis very special beer is brewing at its best using a sophisticated recipe combined with love and dedication. Stiegl only uses excellent ingredients from Austrian agricultural suppliers, applying biological techniques. As a result of this Paracelsus Zwickl beer was awarded the Bio-Austria certificate. Bio-production is subject to strict yearly controls by “Austria-Bio-Guaranty”.\r\n\r\n“Bier is a really divine medicine”. This quotation comes from Paracelsus (1493 – 1541). He was a well known physician, forward thinker and visionary who lived in Salzburg for many years. He found out that beer had healing powers.""}",1,22,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2006,0,0,244736262144,"{""name"":""Harvest Ale 2006"",""abv"":11.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,6,1
-brasserie_d_achouffe-biere_de_mars,0,0,244378828800,"{""name"":""Bière de Mars"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-olde_peninsula_brewpub_and_restaurant-haymarket_ale,0,0,244874018817,"{""name"":""Haymarket Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
-brauerei_hrle,0,0,244480147456,"{""name"":""Brauerei Hrle"",""city"":""Leutkirch im Allgäu"",""state"":""Baden-Württemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7561-/-9828-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Hopfengarten 5""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8243,""lon"":10.0239}}",1,16,1
-edelweissbrauerei_farny-humpis_original_naturtrub,0,0,244612857859,"{""name"":""Humpis-Original Naturtrub"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-browar_zywiec-porter,0,0,244479164417,"{""name"":""Porter"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_zywiec"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
-jolly_pumpkin_artisan_ales-noel_de_calabaza,0,0,244750942210,"{""name"":""Noel de Calabaza"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep mahogany and malty, layered hops, figs, raisins, sugar plums, cashews betwixt rum laden truffles.""}",1,41,1
-rock_bottom_restaurant_brewery_denver-falcon_pale_ale,0,0,245000044545,"{""name"":""Falcon Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
-appalachian_brewing_company-trail_blaze_organic_brown_ale,0,0,244369391618,"{""name"":""Trail Blaze Organic Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Trail Blaze Organic American Brown Ale exhibits a beautiful deep copper color and an evident hop bitterness & aroma. This is balanced against roasted caramel-like characteristics and hints of chocolate. \r\n\r\nOur first in a series of organic beers is named for the markers that keep a hiker on the correct path. Many of the hiking trails in our area have simple to very distinguished trail blazes. After a long hike, there is nothing better at the end of the trail than ABC organic ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
-commonwealth_brewing_1-golden_ale,0,0,244489912321,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
-thirsty_dog_brewing-stud_service_stout,0,0,245107326976,"{""name"":""Stud Service Stout"",""abv"":3.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional dry Irish Stout. Very Flavorful while low in calories and alcohol. An easy drinking “session beer” that has a nice caramel flavor an smooth finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
-three_floyds_brewing-robert_the_bruce_scottish_ale,0,0,245108244480,"{""name"":""Robert the Bruce Scottish Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A big malty body from chocolate and roasted malts, well balanced with just the right combination of hops. Robust yet smooth, a true malt-lover's delight."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,23,1
-glenwood_canyon_brewing_company-dos_rios_vienna_lager,0,0,244610367488,"{""name"":""Dos Rios Vienna Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glenwood_canyon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
-brouwerij_van_hoegaarden-hoegaarden,0,0,244487749634,"{""name"":""Hoegaarden"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_hoegaarden"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoegaarden is the authentic Belgian wheat or white beer. It has a unique and extremely complex brewing process whereby the brand is first top fermented and then is refermented within the bottle - ending up in a unique cloudy-white appearance. The brand's unique appearance is mirrored by its one-of-a-kind taste - sweet and sour beer with a little bitterness, slightly spicy, with a strong touch of coriander and a hint of orange, perfect for warm summer days, instead of other refreshing beverages. Refreshing, a little quirky, and decidedly different - naturally."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
-mishawaka_brewing-raspberry_wheat_ale,0,0,244874805249,"{""name"":""Raspberry Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,44,1
-otto_s_pub_and_brewery-spruce_creek_lager,0,0,244874608640,"{""name"":""Spruce Creek Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This light refreshing American lager has a malty smooth character and low hop bitterness."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
-einbecker_brauhaus_ag,0,0,244618297344,"{""name"":""Einbecker Brauhaus AG"",""city"":""Einbeck"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)5561-/-797-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Papenstrae 4-7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.8162,""lon"":9.8643}}",1,28,1
-heineken_hungaria,0,0,244735868928,"{""name"":""Heineken Hungária"",""city"":""Sopron"",""state"":"""",""code"":"""",""country"":""Hungary"",""phone"":"""",""website"":""http://www.heinekenhungaria.hu/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Known before Soproni Sörgyár"",""address"":[]}",1,5,1
-mcmenamins_mill_creek-irish_stout,0,0,244858421248,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
-brasserie_de_silenrieux-sara_buckwheat_ale,0,0,244379156481,"{""name"":""Sara Buckwheat Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silenrieux"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-de_proef_brouwerij-zoetzuur_flemish_ale,0,0,244628455424,"{""name"":""Zoetzuur Flemish Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-brooklyn_brewery,0,0,244477722626,"{""name"":""Brooklyn Brewery"",""city"":""Brooklyn"",""state"":""New York"",""code"":""11211"",""country"":""United States"",""phone"":""1-718-486-7422"",""website"":""http://www.brooklynbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""79 North Eleventh Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7215,""lon"":-73.9575}}",1,10,1
-anchor_brewing-old_foghorn_1998,0,0,244376666114,"{""name"":""Old Foghorn 1998"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-brasserie_la_caracole-saxo,0,0,244478377984,"{""name"":""Saxo"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-new_belgium_brewing-fat_tire_amber_ale,0,0,244857634817,"{""name"":""Fat Tire Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Named in honor of our founder Jeff's bike trip through Belgium, Fat Tire Amber Ale marks a turning point in the young electrical engineer's home brewing. \r\n\r\nBelgian beers use a far broader pallet of ingredients (fruits, spices, esoteric yeast strains) than German or English styles. Jeff found the Belgian approach freeing. Upon his return, Jeff created Fat Tire and Abbey Belgian Ale, (assuming Abbey would be his big gun). He and his wife, Kim traveled around sampling their homebrews to the public. \r\n\r\nFat Tire's appeal quickly became evident. People liked everything about it. Except the name. Fat Tire won fans is in its sense of balance: toasty, biscuit-like malt flavors coasting in equilibrium with hoppy freshness."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
-boston_beer_company-samuel_adams_white_ale,0,0,244380139520,"{""name"":""Samuel Adams White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Spicy yet smooth. Brewed with 10 exotic spices.\r\nThis beer's roots are in Belgium, and the classic Wit biers produced by Belgium's brewers. The style gets its name from the white, milky appearance of this unfiltered wheat ale. The brewers of Samuel Adams® beer, taking inspiration from the Belgians, have created a classic of their own. On the malt side, we use malted two row Pale barley, malted wheat, and Munich malt to give this beer a crisp, malty, cereal finish and smooth mouth feel. The hops used are Noble Tettnang Tettnanger hops. At the end of the kettle boil, we add a proprietary spice blend to give Samuel Adams® White Ale a unique and complex flavor, without being overpowering or cloying. The spice blend includes orange and lemon peel, dried plum, grains of paradise, coriander, anise, hibiscus, rose hips, tamarind, and vanilla. It is this special blend of spices that gives Samuel Adams® White Ale its unique character, complexity and refreshing drinkability. The beer is coarse filtered, leaving a white haze from the malt proteins. Our proprietary top fermenting ale yeast ferments the beer, imparting its signature character - bright and slightly fruity."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,58,1
-central_city_brewing_company-steelhead_stout,0,0,244478181379,"{""name"":""Steelhead Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
-privatbrauerei_erdinger_weissbru-oktoberfest_weizen,0,0,244999389185,"{""name"":""Oktoberfest Weizen"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-new_zealand_breweries_limited-speight_s_gold_medal_ale,0,0,244873035778,"{""name"":""Speight's Gold Medal Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_zealand_breweries_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,40,1
-21st_amendment_brewery_cafe-563_stout,0,0,244371423232,"{""name"":""563 Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep black color, toasted black burnt coffee flavors and aroma. Dispensed with Nitrogen through a slow-flow faucet giving it the characteristic cascading effect, resulting in a rich dense creamy head."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-adnams_co-adnams_tally_ho,0,0,244372406272,"{""name"":""Adnams Tally Ho"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The original winter warmer, Tally-Ho is actually a barley wine brewed to a nineteenth century recipe. It's sweet; it's heart-warming; it's rich - but watch out, it's got a kick like a drayman's horse!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,37,1
-firestone_walker_brewing_company-firestole_pale_31,0,0,244609843200,"{""name"":""Firestole Pale 31"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firestone_walker_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""One of the most award-winning American style pale ales in the country. This is the American beer style that started a revolution in taste. We’ve taken the classic British pale ale and elevated it with a wonderful dose of northwest American hops. A crisp floral hop aroma precedes a medium-bodied clean finishing ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
-founders_brewing-rubaeus,0,0,244609515520,"{""name"":""Rubaeus"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""As promised Founders Brewing Company has created something unlike the rest. Amongst this summers over croweded race to cloudy wheat beers, we have decided to embark down a path all our own. Using only fresh rasberries, rubaeus translates into intese flavors combined with a no hesitation malt bill. In fermentation we add fresh rasberries at five separate stages to achieve the ulttimate balance between tartness and sweetness."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,7,1
-cerveceria_la_constancia,0,0,244479623169,"{""name"":""Cervecería La Constancia"",""city"":""San Salvador"",""state"":"""",""code"":"""",""country"":""El Salvador"",""phone"":""2231-5143"",""website"":""http://www.laconstancia.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,14,1
-brasserie_fantme-dark_white,0,0,244499021824,"{""name"":""Dark White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-jacob_leinenkugel_brewing_company-fireside_nut_brown,0,0,244734820354,"{""name"":""Fireside Nut Brown"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
-kona_brewing-pipeline_porter,0,0,244753891329,"{""name"":""Pipeline Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pipeline Porter is smooth and dark with a distinctive roasty aroma and earthy complexity from its diverse blends of premium malted barley. This celebration of malt unites with freshly roasted 100% Kona coffee grown at Cornwell Estate on Hawaii’s Big Island, lending a unique roasted aroma and flavor. A delicate blend of hops rounds out this palate-pleasing brew."",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-lafayette_brewing-black_angus_oatmeal_stout,0,0,244734296068,"{""name"":""Black Angus Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lafayette_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
-f_x_matt_brewing-saranac_brown_ale,0,0,244630290432,"{""name"":""Saranac Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Brown Ale is brewed with American malt and hops, and traditional ale yeast. Look for a sweet, chocolaty taste, with balanced bitterness resulting in a full flavored but smoothly drinkable beer."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,56,1
-anchor_brewing-christmas_ale_2007,0,0,244377124866,"{""name"":""Christmas Ale 2007"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-boulder_beer_company-cold_hop,0,0,244363296768,"{""name"":""Cold Hop"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,17,1
-cigar_city_brewing-jai_alai_ipa,0,0,244490436608,"{""name"":""Jai Alai IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Jai Alai IPA is a monster interpretation of an American IPA. In fact, it is so big that it equals the alcohol of some double IPAs on the market. Our IPA uses 6 different hop varietals, with Simcoe hops only being used for dry hopping. The rest of the hop additions are blended at different IBU's (International Bittering Units) in groups of three hops per addition in order to create more hop complexity. At CCB, we love hops but also feel that balance is important for IPAs. So Jai Alai features a sturday caramel malt component which helps to create balance, staving off hop astringency. Ultimately, Jai Alai is a very strong interpretation of a single American IPA. We hope that it makes Tampa Bay natives happy because this is head brewer Wayne Wamble's favorite Cigar City beer and he'd love to share one with you!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
-great_dane_pub_and_brewing_2-stone_of_scone_scotch_ale,0,0,244735344640,"{""name"":""Stone of Scone Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,4,1
-stone_brewing_co-9th_anniversary_ipa,0,0,245107654656,"{""name"":""9th Anniversary IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,22,1
-knigsegger_walderbru-walderbrau_export,0,0,244736262145,"{""name"":""WalderBräu Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knigsegger_walderbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-brasserie_d_ecaussinnes,0,0,244378828801,"{""name"":""Brasserie d'Ecaussinnes"",""city"":""Ecaussinnes"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-067-/-34-22-77"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rue Restaumont, 118""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.5593,""lon"":4.1365}}",1,54,1
-oskar_blues_grill_and_brew-gordon,0,0,244874084352,"{""name"":""Gordon"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Gordon is a hybrid version of strong ale, somewhere between an Imperial Red and a Double IPA. We make it with six different malts and three types of hops, then dry-hop it with a mutha lode of Amarillo hops. It is 8.7% alcohol by volume, and has 85 International Bittering Units. \r\n\r\nIt features a gooey, resiny aroma and a luscious mouthfeel. Gordon is brewed with dash of chocolate malt in it, to round out its load of hops and balance the beer. The result is an assertive yet exceptionally smooth version of strong beer.\r\n\r\nWe brew Gordon in tribute to the late Gordon Knight. In addition to opening some of Colorado’s first microbreweries, Knight was a Vietnam vet, grade-A citizen, and huge promoter of craft beer. He lost his life in 2002 while fighting a wild fire outside of Lyons, Colorado.\r\n\r\nOriginally our winter seasonal beer, it has become a cult favorite of extreme-beer lovers, so we now brew occasional batches of Gordon throughout the year. Released in bottles in 2003 and 2004, Gordon is now sold in four packs of hand-labeled cans and on draft in select markets.\r\n\r\n--http://www.oskarblues.com/brew/"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,42,1
-breckenridge_brewery-471_double_ipa,0,0,244480212992,"{""name"":""471 Double IPA"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
-egan_brewing-hefeweizen,0,0,244612923392,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
-butte_creek_brewing,0,0,244479164418,"{""name"":""Butte Creek Brewing"",""city"":""Chico"",""state"":""California"",""code"":""95928"",""country"":""United States"",""phone"":""1-530-894-7906"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""945 West Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7245,""lon"":-121.848}}",1,13,1
-kulmbacher_mnchshof_bru-original_pils,0,0,244751007744,"{""name"":""Original Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_mnchshof_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-rock_bottom_restaurant_brewery_minneapolis-eric_the_red,0,0,245000044546,"{""name"":""Eric the Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
-bamberger_mahr_s_bru-ungespundet_lager_hefetrub,0,0,244369457152,"{""name"":""Ungespundet Lager Hefetrub"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-coors_brewing_golden_brewery-coors_extra_gold_lager,0,0,244489977856,"{""name"":""Coors Extra Gold Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coors' Extra Gold Lager is a rich, full-flavored lager that has a deep golden color. Extra Gold Lager starts with the slow aging of its roasted malts, which are then combined with its other premium ingredients and slow-brewed to produce this exceptional, refined lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
-titletown_brewing-belgian_summer_ale,0,0,245107326977,"{""name"":""Belgian Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-timmermans-timmermans_faro,0,0,245108244481,"{""name"":""Timmermans Faro"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-gottberg_brew_pub-princess_of_darkness_porter,0,0,244610367489,"{""name"":""Princess of Darkness Porter"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
-brouwerij_van_hoegaarden-original_white_ale,0,0,244487815168,"{""name"":""Original White Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_hoegaarden"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoegaarden, both unique and very refreshing, is an authentic Belgian wheat beer. In fact, it is the original “Wit” beer! First brewed in 1445, this top-fermented beer is refermented in the bottle or keg. Hoegaarden has a distinctive, cloudy yellow colour and a uniquely refined taste that balances a slight spiciness from a touch of coriander and orange peel.""}",1,33,1
-nebraska_brewing_company-brunette_nut_brown_ale,0,0,244874805250,"{""name"":""Brunette Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
-pete_s_brewing-wicked_ale,0,0,244998209536,"{""name"":""Wicked Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pete's Wicked Ale is an experience out of the ordinary. Our tantalizing ruby-brown ale with distinctive malts and aromatic Brewers Gold hops is sure to stir up an urge to get loose."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
-elliott_bay_brewery_and_pub-riot_ale,0,0,244618362880,"{""name"":""Riot Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-hoffbrau_steaks_brewery_2-dunkel_weizen,0,0,244735868929,"{""name"":""Dunkel Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-mia_and_pia_s_pizzeria_and_brewhouse-kalamath_basin_ipa,0,0,244858421249,"{""name"":""Kalamath Basin IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mia_and_pia_s_pizzeria_and_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
-brasserie_de_silly-scotch,0,0,244379222016,"{""name"":""Scotch"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-dogfish_head_craft_brewery-60_minute_ipa,0,0,244628520960,"{""name"":""60 Minute IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer. A session India Pale Ale brewed with Warrior, Amarillo & 'Mystery Hop X.' A powerful East Coast I.P.A. with a lot of citrusy hop character. THE session beer for beer geeks like us!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
-brouwerij_de_block,0,0,244477788160,"{""name"":""Brouwerij De Block"",""city"":""Merchtem-Peizegem"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-37-21-59"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nieuwbaan 92""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.985,""lon"":4.2226}}",1,10,1
-anderson_valley_brewing-horn_of_the_bear_barleywine,0,0,244376731648,"{""name"":""Horn of the Bear Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-brauerei_hrlimann-hexen_brau,0,0,244478377985,"{""name"":""Hexen Bräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_hrlimann"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
-new_holland_brewing_company-full_circle,0,0,244857700352,"{""name"":""Full Circle"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A kölsch-style beer, Full Circle is a refreshing celebration of our brewery’s belief in balance. The soft, well-rounded malt character, light hop profile and crisp finish bring us back around to the familiar tastes of classic, thirst-quenching beer. We recommend Full Circle with fish and just about anything from the grill.""}",1,1,1
-brasserie_bnifontaine-castelain_st_amand_french_country_ale,0,0,244380139521,"{""name"":""Castelain St.Amand French Country Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_bnifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-cervecera_centro_americana_s_a,0,0,244478246912,"{""name"":""Cervecera Centro Americana S.A."",""city"":""Guatemala City"",""state"":"""",""code"":"""",""country"":""Guatemala"",""phone"":""502-288-1555-/-289-1"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3ra.Av.Norte Final, Finca El Zapote, Zona 2""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":14.6133,""lon"":-90.5353}}",1,11,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh-weisse_dunkel,0,0,244999454720,"{""name"":""Weisse Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-o_gara_s_bar_grill-irish_gold,0,0,244873101312,"{""name"":""Irish Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-21st_amendment_brewery_cafe-north_star_red,0,0,244370898944,"{""name"":""North Star Red"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep amber color. Subtle hop floral nose intertwined with sweet crystal malt aromas. Rich malt flavors supporting a slight bitterness finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
-aass_brewery-juleol,0,0,244371488768,"{""name"":""Juleøl"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Norwegian Juleøl can be traced back more that 1000 years. The \""Gulatinglov\"", one of the first Norwegian laws written in the 9th century, has a chapter on brewing beer for the midwinter celebration in January. The festivities were held to celebrate the Norse Gods; Odin, Frøy and Njord as well as the \""return\"" of the sun.\r\nFurthermore, the tradition was adopted by the Vikings that brought Christianity to the country between 1000 and 1100. They moved the tradition to December in connection with the birth of Jesus. \r\nIn those days a farmer that did not set aside the best crop to produce the beer could lose his house to the king and the church. The law has been changed, but we promise you that we still use the very best of malt, yeast, hops, and pure Norwegian water to produce our Christmas beer.\r\n\r\nAass Juleøl has won most of the Norwegian Juleøl taste test conducted over time. For those of you that know what \""lutefisk\"" is, Aass Juleøl is the perfect choice of beverage to this traditional Norwegian dish."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,35,1
-anderson_valley_brewing-winter_solstice_seasonal_ale_1992,0,0,244372406273,"{""name"":""Winter Solstice Seasonal Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-first_coast_brewing-golden_lager,0,0,244609843201,"{""name"":""Golden Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""first_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-gaslight_brewery-pirate_pale,0,0,244609515521,"{""name"":""Pirate Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-chelsea_brewing_company,0,0,244479623170,"{""name"":""Chelsea Brewing Company"",""city"":""New York"",""state"":""New York"",""code"":""10011"",""country"":""United States"",""phone"":""212.336.6440"",""website"":""http://chelseabrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Chelsea Brewing Company, rated the best brewery in New York, is a first class waterfront restaurant and the only micro-brewery in Manhattan located at pier 59.With over 15 years of experience, and 8 National Awards, we are proud to serve up to 27 natural hand-crafted ales and specialty beers using only the finest malts and hops from around the world. We offer beer tastings, brewery tours and group packages."",""address"":[""Chelsea Piers, Pier 59""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.7457,""lon"":-74.0086}}",1,14,1
-brewery_creek_brewing,0,0,244499087360,"{""name"":""Brewery Creek Brewing"",""city"":""Mineral Point"",""state"":""Wisconsin"",""code"":""53565"",""country"":""United States"",""phone"":""1-608-987-3298"",""website"":""http://www.brewerycreek.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewery Creek. It's where we live. It's where we work. When we started this project we decided to pursue three businesses. Just so we wouldn't get bored. The lodging business includes five rooms at the Inn, and two Cottages on Shake Rag Street. Then there is the Brewpub Restaurant in the Commerce Street building. Last but certainly not least is the Brewery Creek Brewing Company, behind the glass doors of the restaurant. Our brewery is a modern, 15-barrel brew house capable of making up to 3,000 barrels of beer per year. I an make ales or lagers, but mostly it has been ales, which tend to have a more complex flavor profile. I can use a simple one step infusion mash, or more elaborate multi-temperature steps."",""address"":[""23 Commerce Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.8606,""lon"":-90.1772}}",1,59,1
-jacob_leinenkugel_brewing_company-hefeweizen,0,0,244734820355,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
-live_oak_brewing-oaktoberfest,0,0,244876312576,"{""name"":""Oaktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A fall classic, our Oaktoberfest emphasizes rich malt flavor. We use German malt and hops to give it an authentic Bavarian character. The rich, maltiness of this brew is a good match with spicy cuisine, as well as barbecue. Live Oak Oaktoberfest will certainly raise the level of enjoyment at your next fall gathering. Available September - December"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
-lakefront_brewery-organic_extra_special_bitter,0,0,244734361600,"{""name"":""Organic Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-fifty_fifty_brewing_co-imperial_eclipse_stout,0,0,244630290433,"{""name"":""Imperial Eclipse Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,56,1
-anderson_valley_brewing-deep_enders_dark,0,0,244377190400,"{""name"":""Deep Enders Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
-brasserie_d_ecaussinnes-ultrablonde,0,0,244363296769,"{""name"":""Ultrablonde"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_ecaussinnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-climax_brewing_copmany,0,0,244490436609,"{""name"":""Climax Brewing Copmany"",""city"":""Roselle Park"",""state"":""New Jersey"",""code"":""7204"",""country"":""United States"",""phone"":""(908) 620-9585"",""website"":""http://www.climaxbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""112 Valley Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6598,""lon"":-74.283}}",1,39,1
-great_divide_brewing-old_ruffian,0,0,244735410176,"{""name"":""Old Ruffian"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Ruffian is a hefty, hop-forward Barley Wine. Seemingly mellow at first sniff, with its subtle fruit aromas and complex caramel sweetness, this deep mahogany-hued ale quickly shows its true character marked by bold hop flavors and massive hop bitterness. Old Ruffian’s rich, slightly creamy, caramel malt mouthfeel balances its grapefruit, pine, and floral hop flavors, working wonders on your palate."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,4,1
-sweetwater_brewing_atlanta-blue,0,0,245107654657,"{""name"":""Blue"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweetwater Blue is a unique light bodied ale enhanced with a hint of fresh blueberries. This euphoric experience begins with an appealing blueberry aroma and finishes as a surprisingly thirst-quenching ale."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,22,1
-lakefront_brewery-bock,0,0,244736262146,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,6,1
-brasserie_de_l_abbaye_val_dieu-triple,0,0,244378828802,"{""name"":""Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-oskar_blues_grill_and_brew-old_chub,0,0,244874149888,"{""name"":""Old Chub"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Chub is a Scottish strong ale brewed with hearty amounts of seven different malts, including crystal and chocolate malts, and a smidge of US and UK hops. Old Chub also gets a dash of beechwood-smoked grains imported from Bamburg, Germany, home of the world's greatest smoked beers. Old Chub is 8% alcohol by volume. While Dale's satisfies our hop addiction, Old Chub takes care of our deep affections for malt. The cola-colored beer (almost black) features a tan head, a creamy, skim-milk mouthfeel, and rich, semi-sweet flavors of caramel and chocolate throughout. The addition of smoked grains gives Old Chub a delicate kiss of smoke on the finish. Old Chub is the beer equivalent of a lightly smoked single malt scotch, or your favorite dark chocolate. We call it Rocky Mountain Mutha's Milk. People who tell us defiantly, \""I don't drink dark beer,\"" often fall deeply in love with Old Chub. We can't blame them."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,42,1
-brewery_de_troch,0,0,244480212993,"{""name"":""Brewery De Troch"",""city"":""Ternat"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-582-10-27"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Langestraat 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.853,""lon"":4.1649}}",1,16,1
-elysian_brewery_public_house,0,0,244612923393,"{""name"":""Elysian Brewery & Public House"",""city"":""Seattle"",""state"":""Washington"",""code"":""98122"",""country"":""United States"",""phone"":""1-206-860-1920"",""website"":""http://www.elysianbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1221 East Pike Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.614,""lon"":-122.316}}",1,15,1
-cigar_city_brewing-big_sound_scotch_ale,0,0,244479229952,"{""name"":""Big Sound Scotch Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Big Sound Scotch Ale is dedicated to our good buddy Gino, the most punk rock bagpiper you'll ever meet, and the rest of the men and women of Tampa Bay Pipes and Drums. Brown in color, Big Sound has huge notes of dark sweet toffee with underlying mild notes of coffee in the aroma. The flavor starts with a slight note of cherry and then opens into a Goliath of a malt character with notes of dark sweet toffee, slight hints of coffee and mild notes of toasted bread in the finish. Big Sound Scotch Ale pairs well with Haggis, Highland Games, Huge Heads and Enormous Pillows and of course Bagpipe music."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,13,1
-laconner_brewing,0,0,244751007745,"{""name"":""LaConner Brewing"",""city"":""LaConner"",""state"":""Washington"",""code"":""98257"",""country"":""United States"",""phone"":""1-360-466-1415"",""website"":""http://www.insidelaconner.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""117 South First Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3917,""lon"":-122.495}}",1,41,1
-ross_valley_brewing-kolsch,0,0,245000110080,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ross_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-barley_creek_brewing-navigator_golden_ale,0,0,244369522688,"{""name"":""Navigator Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Another one of our most popular brews. Navigator Gold has a crisp and slighly hoppy finish. It's cold filtered and moderately carbonated."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,31,1
-crescent_city_brewhouse-steam,0,0,244489977857,"{""name"":""Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-titletown_brewing-weizen_bock,0,0,245107326978,"{""name"":""Weizen Bock"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,21,1
-timmermans-timmermans_kriek,0,0,245108244482,"{""name"":""Timmermans Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,23,1
-gottberg_brew_pub-wilsteraner_altbier,0,0,244610367490,"{""name"":""Wilsteraner Altbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
-bull_bush_pub_brewery-barleywine,0,0,244487815169,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-o_grady_s_brewery_and_pub_1-chicago_fire,0,0,244874870784,"{""name"":""Chicago Fire"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-pete_s_place,0,0,244998275072,"{""name"":""Pete's Place"",""city"":""Krebs"",""state"":""Oklahoma"",""code"":""74554"",""country"":""United States"",""phone"":""1-918-423-2042"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""120 SW Eighth Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":34.9251,""lon"":-95.7253}}",1,43,1
-f_x_matt_brewing-saranac_chocolate_amber,0,0,244618362881,"{""name"":""Saranac Chocolate Amber"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""There comes a time every year in the Adirondacks when a heavier, more malty brew compliments the cold winter months. This brew showcases a variety of dark roasted malts, producing a beer with a rich chocolaty flavor.""}",1,28,1
-jacob_leinenkugel_brewing_company-big_butt_doppelbock,0,0,244735868930,"{""name"":""Big Butt Doppelbock"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,5,1
-miller_brewing-miller_genuine_draft_64,0,0,244858421250,"{""name"":""Miller Genuine Draft 64"",""abv"":2.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,3,1
-brasserie_duyck-biere_de_noel,0,0,244497580032,"{""name"":""Bière de Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_duyck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-dortmunder_actien_brauerei_dab-traditional,0,0,244628520961,"{""name"":""Traditional"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
-cervejaria_sudbrack-eisenbahn_escura,0,0,244477788161,"{""name"":""Eisenbahn Escura"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,10,1
-anheuser_busch-michelob_ultra_amber,0,0,244376731649,"{""name"":""Michelob Ultra Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Michelob ULTRA Amber is an American-style amber lager that boasts a beautifully rich, dark-amber color with a full-bodied, malty taste that also is low in calories and carbohydrates."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
-brennerei_distillerie_radermacher,0,0,244478443520,"{""name"":""Brennerei-Distillerie Radermacher"",""city"":""Raeren"",""state"":""Lige"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)87-85.82.32"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Spitalstrasse 50""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.6718,""lon"":6.122}}",1,12,1
-nodding_head_brewpub-60_shilling,0,0,244857700353,"{""name"":""60 Shilling"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""lighter Scotish-Style Ale... amber in color with plenty of maltiness... reminds us all that sometime there just aren't enough O's in smooth"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,1,1
-brasserie_de_cazeau-tournay_black,0,0,244380205056,"{""name"":""Tournay Black"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_cazeau"",""updated"":""2010-07-22 20:00:20"",""description"":""Tournay Black is a bottle conditioned, Belgian stout brewed by Brasserie de Cazeau which is a farm-brewery located in the south of Belgium. It was originally brewed as a winter ale under the name Tournay de Noel, but later became a year-round release. They didn't provide much specific detail about how it was brewed except to say that it is made with water, malts, candi-sugar, hops, and yeast. It is 7.6% ABV with a recommended drinking temperature of +/- 50 degrees. The brewer states that the tasting notes are of, \""roasted malts, coffee, bitter chocolate, earth, and cigar ash.\"" Well, I am a prodigious cigar smoker and I can't say that I would want to consume the ash."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,58,1
-coast_brewing-biloxi_blonde,0,0,244478246913,"{""name"":""Biloxi Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-raccoon_river_brewing-maibock,0,0,244999454721,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
-oak_creek_brewery-king_crimson,0,0,244873101313,"{""name"":""King Crimson"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,40,1
-abita_brewing_company-triple_citra_hopped_satsuma_wit,0,0,244370964480,"{""name"":""Triple Citra Hopped Satsuma Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:53:48"",""description"":""Similar to the Harvest Wit but with a lot more punch. A very pronounce citrus aroma with a triple hop flavor makes for one great beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
-ali_i_brewing-amber_ale,0,0,244371488769,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
-arthur_guinness_son,0,0,244372471808,"{""name"":""Arthur Guinness & Son"",""city"":""Dublin"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":""http://www.guinness.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St. James's Gate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.3433,""lon"":-6.2846}}",1,37,1
-flatlander_s_restaurant_brewery-locomotive_stout,0,0,244609843202,"{""name"":""Locomotive Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
-glen_ellyn_sports_brew-equinox_e_s_b,0,0,244609515522,"{""name"":""Equinox E.S.B."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-chimay_abbaye_notre_dame_de_scourmont,0,0,244479688704,"{""name"":""Chimay (Abbaye Notre Dame de Scourmont)"",""city"":""Chimay"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":""+32 (0)60 21 03 27"",""website"":""http://www.chimay.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Chimay is an authentic Trappist beer that is it is brewed within a Trappist monastery, under the control and responsibility of the monastic community. Only 6 beers in Belgium can carry the appellation Trappist: Chimay, Orval, Rochefort, Westmalle, Westvleteren and Achel."",""address"":[""Route de Charlemagne 8""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.0355,""lon"":4.3777}}",1,14,1
-brouwerij_het_anker-gouden_carolus_ambrio_1471,0,0,244499087361,"{""name"":""Gouden Carolus Ambrio 1471"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-jasper_ridge_brewery-iron_red_ale,0,0,244734885888,"{""name"":""Iron Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
-lost_coast_brewery-downtown_brown,0,0,244876378112,"{""name"":""Downtown Brown"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, full-bodied nut brown ale, lightly hopped with a hint of roasted chocolate and crystal malts. This ale is dark in color without the heavy taste of porter or stout."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,48,1
-lang_creek_brewry,0,0,244734361601,"{""name"":""Lang Creek Brewry"",""city"":""Marion"",""state"":""Montana"",""code"":""59925"",""country"":""United States"",""phone"":""(406) 858-2200"",""website"":""http://langcreekbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Good beer here!!"",""address"":[""655 Lang Creek Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.014,""lon"":-115.011}}",1,0,1
-firehouse_brewing,0,0,244630290434,"{""name"":""Firehouse Brewing"",""city"":""Rapid City"",""state"":""South Dakota"",""code"":""57701"",""country"":""United States"",""phone"":""1-605-348-1915"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""610 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0812,""lon"":-103.227}}",1,56,1
-angelic_brewing-bacchanal_blonde,0,0,244377190401,"{""name"":""Bacchanal Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""angelic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-brasserie_d_orval,0,0,244363296770,"{""name"":""Brasserie d'Orval"",""city"":""Villers-devant-Orval"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-061-31-12-61"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Abbaye de Notre-Dame d'Orval""]}",1,17,1
-coast_brewing-sunset_amber,0,0,244490436610,"{""name"":""Sunset Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
-great_lakes_brewing-christmas_ale,0,0,244735410177,"{""name"":""Christmas Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A holiday ale brewed with honey and spiced with fresh ginger and cinnamon. Availability, November to December.""}",1,4,1
-t_bonz_gill_grill_and_brewery-raspberry_wheat,0,0,245107654658,"{""name"":""Raspberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,22,1
-lancaster_brewing_co,0,0,244736262147,"{""name"":""Lancaster Brewing Co."",""city"":""Lancaster"",""state"":""Pennsylvania"",""code"":""17602"",""country"":""United States"",""phone"":""717-391-6258"",""website"":""http://www.lancasterbrewing.com/index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We brew our beer in the heart of Lancaster County, Pennsylvania with great respect for the old traditions of brewing. Our master brewer, Christian Heim, has a strong commitment to quality and uses advanced brewing techniques to produce a consistent and high quality beer. Savor the hopped aromas as they come alive and accentuate the wholesome malt flavors in our ales and lagers."",""address"":[""302 N. Plum St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0438,""lon"":-76.2984}}",1,6,1
-brasserie_la_caracole-troublette,0,0,244497317888,"{""name"":""Troublette"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-ottakringer_brauerei_ag,0,0,244874215424,"{""name"":""Ottakringer Brauerei AG"",""city"":""Wien"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""0043 (0) 1 491000"",""website"":""http://www.ottakringer.at/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ottakringerstrasse 91""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.2133,""lon"":16.3229}}",1,42,1
-brewery_ommegang-rare_vos,0,0,244480278528,"{""name"":""Rare Vos"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,16,1
-estes_park_brewery-samson_stout,0,0,244612923394,"{""name"":""Samson Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our commemorative ale honors Samson the elk. This is an oatmeal stout that is full-bodied with a wonderful roasted flavor and just a touch of sweetness."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
-city_brewing_company_llc,0,0,244479229953,"{""name"":""City Brewing Company, LLC"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":""54601"",""country"":""United States"",""phone"":""1-608-785-4200"",""website"":""http://www.citybrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""City Brewing Company is a premier, state-of-the-art beverage production and packaging company located in La Crosse, WI. Our facility has been transformed from a historical brewery into a facility capable of manufacturing and packaging beers, teas, soft drinks, energy drinks and other new age beverages. Our packaging capacity of over 50 million cases makes us one of the largest beverage producers in the country."",""address"":[""925 South Third Street""]}",1,13,1
-laughing_dog_brewing,0,0,244751007746,"{""name"":""Laughing Dog Brewing"",""city"":""Ponderay"",""state"":""Idaho"",""code"":""83852"",""country"":""United States"",""phone"":""208-263-9222"",""website"":""http://www.laughingdogbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Great Local brew. They have 5 main brews, but the 2 I love most are their Pale Ale and Cream Ale. The Pale Ale has a great hoppy finish, while the Cream Ale has a nice smooth taste. They also have a few other great brews!"",""address"":[""55 Emerald Industrial Park Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3003,""lon"":-116.538}}",1,41,1
-route_66_brewery-winter_wheat,0,0,245000110081,"{""name"":""Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-basil_t_s_brew_pub_and_italian_grill-apple_ale,0,0,244369522689,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""basil_t_s_brew_pub_and_italian_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,31,1
-crooked_waters_brewing-steamboat_oatmeal_stout,0,0,244489977858,"{""name"":""Steamboat Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crooked_waters_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-tommyknocker_brewery_and_pub-cocoa_porter,0,0,245107392512,"{""name"":""Cocoa Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-troegs_brewing-scratch_16_2008,0,0,245108310016,"{""name"":""Scratch #16 2008"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #16-2008 combines the bitterness of two aroma hops, the lush sweetness of honey and malt and an earthly yeast taste creating a Winter Warmer designed to ward off the coldest days.\r\n\r\nThe dark, rich amber color comes from a combination of molasses and crystal malts; the Thames Valley brings a distinct earthly flavor; white the blend of hops creates fruity (Amarillo) and piney (Cluster) bitterness.\r\n\r\nThe Winter Warmer ends with a slight warming sensation from the elevated alcohol content. Enjoy this one throughout the winter months. Cheers."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,23,1
-gottberg_brew_pub,0,0,244610433024,"{""name"":""Gottberg Brew Pub"",""city"":""Columbus"",""state"":""Nebraska"",""code"":""68601"",""country"":""United States"",""phone"":""1-402-562-6488"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2804 13th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.4295,""lon"":-97.3623}}",1,9,1
-burgerbrau_wolnzach-roggenbier,0,0,244487815170,"{""name"":""Roggenbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burgerbrau_wolnzach"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
-oakshire,0,0,244874870785,"{""name"":""Oakshire"",""city"":""Eugene"",""state"":""Or"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-07-07 07:44:13"",""description"":"""",""address"":[]}",1,44,1
-ph_woods_diner_and_brewery-hard_woods_pale,0,0,244998340608,"{""name"":""Hard Woods Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ph_woods_diner_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
-f_x_matt_brewing-saranac_golden_pilsner,0,0,244618362882,"{""name"":""Saranac Golden Pilsner"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Pilsener is a light bodied American Wheat Beer that is judiciously hopped with Cascade and Tettnang hops. \""Dry-Hopping\"" imparts the distinctive hop aroma and finish. Look for a smooth, crisp taste and brilliant golden color. Enjoy!"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,28,1
-jolly_pumpkin_artisan_ales-calabaza_blanca,0,0,244735934464,"{""name"":""Calabaza Blanca"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Aged in large oak casks and refermented in the bottle, Calabaza Blanca is a Belgian Biere Blanche. Spiced with orange peel and corriander, you'll find it refreshingly tart, with a wonderfully dry finish."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,5,1
-minneapolis_town_hall_brewery-bright_spot_golden_ale,0,0,244858421251,"{""name"":""Bright Spot Golden Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This American-style golden ale is our lightest, in both color and flavor. Bright Spot is brewed with locally malted 2-row barley and the finest American, Czech and German hops lending a well-balanced, refreshing taste. A compliment to nearly any of our menu choices."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,3,1
-brouwerij_de_gouden_boom,0,0,244497580033,"{""name"":""Brouwerij de Gouden Boom"",""city"":""Brugge"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2094,""lon"":3.2252}}",1,55,1
-dostal_alley-powder_keg_raspberry_porter,0,0,244628586496,"{""name"":""Powder Keg Raspberry Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dostal_alley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-coopers_brewery-birell,0,0,244477788162,"{""name"":""Birell"",""abv"":0.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Birell has all the hallmarks of a great premium beer, rich colour, full malty flavour and the ability to quench a thirst, with one important difference - virtually no alcohol. \r\n\r\nBrewed under license in Australia by Coopers, Birell is made using only the finest Australian malted barley, hops and yeast, with no artificial additives or preservatives.\r\n\r\nCoopers Birell may be found in most supermarkets (375ml bottles or cans)."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,10,1
-appalachian_brewing_company-coconut_porter,0,0,244376797184,"{""name"":""Coconut Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Based on the winning Homebrew Contest entry by John Slotterback and Fred Rogers, this dark, roasty porter is infused with fresh coconut which produces a sweet finish. The coconut balances the chocolaty notes, producing a taste not unlike German chocolate cake in a glass! This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg."",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
-brewery_ommegang-three_philosophers,0,0,244478443521,"{""name"":""Three Philosophers"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,12,1
-north_country_brewery-friar_s_porter,0,0,244857765888,"{""name"":""Friar's Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust porter has a lot of caramel and chocolate flavor balanced with the flavor and aroma of fuggle hops."",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-brasserie_de_l_abbaye_des_rocs-grand_cru,0,0,244380205057,"{""name"":""Grand Cru"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-coast_brewing-steel_head_stout,0,0,244478246914,"{""name"":""Steel Head Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
-red_lodge_ales,0,0,244999454722,"{""name"":""Red Lodge Ales"",""city"":""Red Lodge"",""state"":""Montana"",""code"":""59068"",""country"":""United States"",""phone"":""1-406-446-4607"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""417 North Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.1913,""lon"":-109.247}}",1,46,1
-oakshire-watershed_ipa,0,0,244873101314,"{""name"":""Watershed IPA"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oakshire"",""updated"":""2011-07-07 07:44:10"",""description"":"""",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,40,1
-amherst_brewing_company-honey_pilsner,0,0,244370964481,"{""name"":""Honey Pilsner"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp light lager, slightly malty with subtle hints of wildflower honey. Finished with Hallertau and Saaz hops"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,34,1
-alltech_s_lexington_brewing_company-limestone_1897_original_amber_ale_discontinued,0,0,244371488770,"{""name"":""Limestone 1897 Original Amber Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
-avery_brewing_company-fourteen,0,0,244372471809,"{""name"":""Fourteen"",""abv"":9.46,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-free_state_brewing-old_backus_barleywine_1997,0,0,244609908736,"{""name"":""Old Backus Barleywine 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""free_state_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,8,1
-golden_gate_park_brewery-frambosia,0,0,244609515523,"{""name"":""Frambosia"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,7,1
-climax_brewing_copmany-climax_wheat_ale,0,0,244479688705,"{""name"":""Climax Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoffmann Hefeweizen is our newest offering and is a traditional German wheat beer made from 60% wheat malt and 40% barley malt. Wheat Ales such as this typically have banana and clove flavors but as Dave dislikes clove, he used a special yeast to strengthen the banana flavors. Hefeweizen is a nice, light, crisp summer beer that can be served with lemon or flavored syrups."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,14,1
-brouwerij_van_steenberge-piraat_10_5,0,0,244499087362,"{""name"":""Piraat 10.5%"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Piraat is a 'living' beer, which means that after the primary fermentation in the keg, the beer also continues to evolve during the secondary fermentation in the bottle or in the keg after packaging. This is a world-class amber colored beer. American beer connoisseurs give it 98 out of 100. No other beer scores better. The flavor is so complex and so rich that every swallow conjures up new associations. Note the spicy light sweetness, which is richly balanced with the robust bitterness of the hops. It is an adventure of a beer, a treat.\"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,59,1
-keg_microbrewery_restaurant-brown,0,0,244734885889,"{""name"":""Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
-mad_river_brewing_company,0,0,244876443648,"{""name"":""Mad River Brewing Company"",""city"":""Blue Lake"",""state"":""California"",""code"":""95525"",""country"":""United States"",""phone"":""707-668-4151"",""website"":""http://www.madriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewmaster Bob Smith's dream to open a small brewery began in the late seventies. Seeking knowledge and ingredients Smith joined with a small number of individuals who were laying the foundation of the craft beer movement in California. With a small group of investors Smith formed Mad River Brewing Company in 1989. Now in our 2nd decade we continue our commitment to producing fine ales combining the most traditional brewing methods with an environmentally sound approach. For centuries the English have been known for their brewing expertise. At Mad River Brewing Company we are long on tradition and continue to handcraft our ales in the truest sense. Our award winning ales have become renowned for their unique flavor profile and consistent quality."",""address"":[""101 Taylor Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.8786,""lon"":-123.992}}",1,48,1
-lost_coast_brewery-8_ball_stout,0,0,244857110528,"{""name"":""8-Ball Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
-firehouse_grill_brewery-red_ale,0,0,244630290435,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
-anheuser_busch-natural_light,0,0,244377255936,"{""name"":""Natural Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,50,1
-brasserie_fantme-chocolat,0,0,244480671744,"{""name"":""Chocolat"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-coronado_brewing_company-point_loma_porter,0,0,244490502144,"{""name"":""Point Loma Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter, very dark in color and a roasted malt flavor from chocolate malts. Its slight bitterness is rightfully balanced with a sweet smooth finish. A full-bodied beer with medium hop bitterness and aroma."",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
-great_lakes_brewing-glockenspiel,0,0,244735410178,"{""name"":""Glockenspiel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,4,1
-tailgate_beer-tailgate_amber_wave,0,0,245107720192,"{""name"":""Tailgate Amber Wave"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Why put everything in a category? Live outside the box. The ‘flagship’ of TailGate Beer, Amber Wave, is a completely unique and individual beer that raises the standards and breaks all the molds.\r\n\r\nAmber Wave was inspired by America's amber waves of grain and is as unique as apple pie. The intellectuals behind TailGate Beer created this dark, rose colored ale that drinks like honey and lingers of light caramel, with notes of chocolate and sweet subtle hops. Surprise yourself, and others, with your sophisticated palate and acute ability to find the best beer brewed for drinking, not sampling."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-left_hand_brewing_company-juju_ginger,0,0,244736327680,"{""name"":""JuJu Ginger"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-brauerei_fssla,0,0,244497317889,"{""name"":""Brauerei Fssla"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-26516"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Obere Knigsstrae 19-21""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.8942,""lon"":10.8855}}",1,54,1
-pivara_skopje,0,0,244997816320,"{""name"":""Pivara Skopje"",""city"":""Skopje"",""state"":"""",""code"":"""",""country"":""Macedonia, the Former Yugoslav Republic of"",""phone"":"""",""website"":""http://www.pivaraskopje.com.mk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.0038,""lon"":21.4522}}",1,42,1
-broad_ripple_brewing-porter,0,0,244480278529,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,16,1
-fitger_s_brewhouse_brewery_and_grill,0,0,244612988928,"{""name"":""Fitger's Brewhouse, Brewery and Grill"",""city"":""Duluth"",""state"":""Minnesota"",""code"":""55804"",""country"":""United States"",""phone"":""1-218-726-1392"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 East Superior Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.7926,""lon"":-92.0909}}",1,15,1
-deschutes_brewery-red_chair_ipa,0,0,244612005888,"{""name"":""Red Chair IPA"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Chair IPA is named after the oldest operating lift at Mt. Bachelor, a classic old school double that locals flock to on fresh powder mornings. This beer has been wildly popular with our pub regulars, who always seem to know when we have hit on something special. \r\n\r\nThis IPA is a bright copper beauty with a solid head and perfect lacing that typifies Deschutes ales. It has a plush body with satiny caramel flavors derived from seven varieties of malt. Despite all of this, Red Chair is still a hop forward ale, but not in the way many have gotten used to. You will find no cloying, mouth puckering bitterness here. In its place a straight up succulent citrus punch to the nose."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,13,1
-magnolia_pub_and_brewery,0,0,244873232384,"{""name"":""Magnolia Pub and Brewery"",""city"":""San Francisco"",""state"":""California"",""code"":""94117"",""country"":""United States"",""phone"":""1-415-864-7468"",""website"":""http://www.magnoliapub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1398 Haight Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.7702,""lon"":-122.445}}",1,41,1
-russian_river_brewing-supplication,0,0,245000110082,"{""name"":""Supplication"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brown ale aged in Pinot Noir wine barrels for one year with sour cherries, Brettanomyces yeast, and Lactobacillus & Pedicoccus bacteria.""}",1,47,1
-bell_s_brewery_inc-third_coast_old_ale,0,0,244369522690,"{""name"":""Third Coast Old Ale"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A barley wine with deep amber color. The brandy of ales, this beer has vintage character and will mature in the bottle at cellar temperature for years."",""style"":""Old Ale"",""category"":""British Ale""}",1,31,1
-de_struise_brouwers-black_albert,0,0,244622622720,"{""name"":""Black Albert"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_struise_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,38,1
-tucher_bru-bajuvator_doppelbock,0,0,245107392513,"{""name"":""Bajuvator Doppelbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
-twin_ports_brewing-bourbon_barrel_scotch_ale,0,0,245108310017,"{""name"":""Bourbon Barrel Scotch Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-great_dane_pub_and_brewing_1-black_earth_porter,0,0,244737376256,"{""name"":""Black Earth Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
-camerons_brewery_company,0,0,244487880704,"{""name"":""Camerons Brewery Company"",""city"":""Harltepool"",""state"":""Cleveland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01429)-266-666"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lion Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,33,1
-oasis_brewery_and_restaurant-pale_ale,0,0,244874936320,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oasis_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-ipa,0,0,244998340609,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-faultline_brewing_1-kolsch,0,0,244618428416,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_beer,0,0,244736000000,"{""name"":""Hitachino Nest Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
-minneapolis_town_hall_brewery-west_bank_pub_ale,0,0,244858486784,"{""name"":""West Bank Pub Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Most welcoming British pubs off a house ale or \""pub ale\"" — this is ours. We use only the finest English barley, hops and yeast to create this classic English-style pale ale. It is noted for its nice malt flavor balanced with a medium hop presence. The pub ale is often referred to as our house \""session beer\"" (a beer you can drink a number of and not fall off your barstool)."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,3,1
-brouwerij_van_eecke-poperings_hommel_ale,0,0,244497645568,"{""name"":""Poperings Hommel Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_eecke"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-dragonmead_microbrewery-bronze_griffin,0,0,244628586497,"{""name"":""Bronze Griffin"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweet Orange Blossom Honey is combined with Belgian two-row malted barley and Munich malt to create another Belgian classic. Tetternger and E. Kent Goldings hops are added to round out the finish of this beer. The aroma of the honey remains without the sugary sweetness."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,52,1
-cooperstown_brewing_company-strike_out_stout,0,0,244477853696,"{""name"":""Strike Out Stout"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Strike Out\"" is brewed with 6 malts including a balanced portion of chocolate and crystal malts. It is also brewed with 5% flaked oats for a velvet-like mouth feel. English pale, Munich and black malt, plus roasted barley round out the malt bill. Considerably lower in alcohol than both Benchwarmer Porter and Old Slugger Pale Ale, \""Strike Out\"" is a well-rounded stout, opaque black in color with a roasted palate."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
-appalachian_brewing_company-hinterland_hefe_weizen,0,0,244376797185,"{""name"":""Hinterland Hefe Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A special German wheat ale yeast produces clove and banana flavors during fermentation leaving this unfiltered beer with an incredibly spicy and fruity complexity!\r\n\r\nOur Brewmaster has acquired many medals at the Great American Beer Festival for this beer style. A difficult, four-step infusion mash schedule produces the complexity of this traditional beer style."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,49,1
-bridgeport_brewing-old_knucklehead_1999,0,0,244478443522,"{""name"":""Old Knucklehead 1999"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-oak_creek_brewery-pullman_porter,0,0,244857765889,"{""name"":""Pullman Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-brasserie_du_bouffay,0,0,244380205058,"{""name"":""Brasserie du Bouffay"",""city"":""Carquefou"",""state"":"""",""code"":""44470"",""country"":""France"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-10-04 00:24:33"",""description"":""La Brasserie du Bouffay est situ"",""address"":[""54 Rue des Monceaux""]}",1,58,1
-coniston_brewing-premium_xb_bluebird_bitter,0,0,244478312448,"{""name"":""Premium XB Bluebird Bitter"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coniston_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-restaurant_isarbru,0,0,244999520256,"{""name"":""Restaurant Isarbru"",""city"":""Pullach im Isartal"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-798961"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kreuzeckstrae 23""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.0708,""lon"":11.5311}}",1,46,1
-ohio_brewing-fest,0,0,244873166848,"{""name"":""Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
-amicas_pizza_microbrews_and_more,0,0,244371030016,"{""name"":""Amicas Pizza, Microbrews and More"",""city"":""Salida"",""state"":""Colorado"",""code"":""81201"",""country"":""United States"",""phone"":""1-719-539-5219"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""136 East Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.535,""lon"":-105.992}}",1,34,1
-anheuser_busch-michelob_light,0,0,244371554304,"{""name"":""Michelob Light"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Michelob Light is a full-flavored and rich-tasting light lager offering a malty sweetness and aromatic hop profile\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
-ballast_point_brewing-yellowtail_pale_ale,0,0,244372471810,"{""name"":""Yellowtail Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""So where can you taste a Kolsch? There are no Kolsches being imported into the United States. So you could fly to Cologne. A better idea is to come to Ballast Point Brewing Company and try our Yellowtail Pale Ale Kolsch. We make it with 5% Wheat, finish hop it with Liberty and Tettnanger hops, and ferment it with a yeast we borrowed from a brewery in Cologne. So come on in and enjoy a taste of the Rhineland!!""}",1,37,1
-glen_ellyn_sports_brew,0,0,244609908737,"{""name"":""Glen Ellyn Sports Brew"",""city"":""Glen Ellyn"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8775,""lon"":-88.067}}",1,8,1
-goose_island_beer_company_clybourn-dublin_stout,0,0,244609581056,"{""name"":""Dublin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-clipper_city_brewing_co-red_sky_at_night,0,0,244479688706,"{""name"":""Red Sky at Night"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is brewed in the Belgian Saison style (country farm house ale). A potent yet delicate ale, brewed with a unique Belgian yeast which develops a spicy, fruity flavor. Enormously complex. Available from May to around August."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,14,1
-bube_s_brewery,0,0,244499152896,"{""name"":""Bube's Brewery"",""city"":""Mount Joy"",""state"":""Pennsylvania"",""code"":""17552"",""country"":""United States"",""phone"":""717) 653-2056"",""website"":""http://www.bubesbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bube's Brewery is located within the original brewery's icehouse. The mash/lauter tun and kettle have a 3.5 bbl capacity (approximately 110 gallons.) The brewers usually brew two consecutive batches to meet the capacity of the 10 bbl fermenters. In the brewery there are two 10 bbl fermenters and one 10 bbl conditioning tank for lagered beer."",""address"":[""102 North Market Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.1119,""lon"":-76.5031}}",1,59,1
-kralovsky_pivovar_krusovice-imperial_czech_premium_lager,0,0,244734885890,"{""name"":""Imperial Czech Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kralovsky_pivovar_krusovice"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-malt_shovel_brewery-james_squire_australian_best_ale_limited_release,0,0,244876509184,"{""name"":""James Squire Australian Best Ale Limited Release"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""malt_shovel_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-manayunk_brewery_and_restaurant-brilliant_barstool,0,0,244857176064,"{""name"":""Brilliant Barstool"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""A true English session ale brewed in the pale ale style using ye olde techniques of yesteryear. Specially crafted to inspire you and your thirstiest mates barstool conversations. Light copper in colour. This pint is quite malty with just enough East Kent hops for a nice, earthy hoppiness. Naturally cask conditioned, this may be served a little cold for a true Brit but is a \r\ncomplimentary double nod to one of the 1st beer styles. Cheers mate!"",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,0,1
-flossmoor_station_brewery-pullman_nut_brown_ale,0,0,244630355968,"{""name"":""Pullman Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-anheuser_busch-ziegenbock_amber,0,0,244377255937,"{""name"":""Ziegenbock Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
-brauerei_herrenhausen-premium_pilsener,0,0,244480737280,"{""name"":""Premium Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_herrenhausen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-crane_river_brewpub_and_cafe-sod_house_altbier,0,0,244490567680,"{""name"":""Sod House Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-harpoon_brewery_boston-harpoon_brown_session_ale,0,0,244735410179,"{""name"":""Harpoon Brown Session Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Harpoon Brown is brewed to accentuate the sweeter, rounder notes derived from six different malts, including a de-husked chocolate malt that adds a hint of chocolate. The blend of these malts produces a beer that is complex and delicious without being heavy. This drinkable beer is perfect as a session beer or paired with foods.\r\n\r\nThis is the first year-round Harpoon beer the brewery has released in almost a decade. While the craft beer industry has seen a growing trend in \""extreme\"" beers, the brewers of Harpoon wanted to create something they could sit down and enjoy over an extended period of time - a session beer. At 4.3% alcohol by volume, the Harpoon Brown Ale has the lowest alcohol content of all Harpoon beers.\r\n\r\nHarpoon Brown Ale will be available in bottles and on draft beginning in March 2007. An evening of celebrations to toast the beer's release will be held at locations throughout New England on Thursday, March 8th, including tastings at Harpoon's breweries in Boston, MA and Windsor, VT"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
-the_bruery-saison_de_lente,0,0,245107785728,"{""name"":""Saison De Lente"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Spring Saison is light blonde in color with a fresh hoppiness and a wild and rustic Brettanomyces character. Lighter in color and alcohol than our Saison Rue, yet equally complex in its own way. Perfect for warmer weather and Spring celebrations."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,22,1
-lion_brewery_ceylon_ltd,0,0,244859535360,"{""name"":""Lion Brewery Ceylon Ltd."",""city"":""Colombo"",""state"":"""",""code"":"""",""country"":""Sri Lanka"",""phone"":""94-331535-42"",""website"":""http://www.lionbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""No-254, Colombo Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.7548,""lon"":-9.1883}}",1,6,1
-brauereigasthof_adler-pils,0,0,244497383424,"{""name"":""Pils"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauereigasthof_adler"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-pizza_beer-mamma_mia_pizza_beer,0,0,244997881856,"{""name"":""Mamma Mia! Pizza Beer"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizza_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""An ale flavored with fresh tomatoes, oregano, basil and garlic."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,42,1
-brouwerij_nacional_balashi-balashi,0,0,244480278530,"{""name"":""Balashi"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_nacional_balashi"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,16,1
-flossmoor_station_brewery-zephyr_golden_ale,0,0,244612988929,"{""name"":""Zephyr Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
-dock_street_beer-satellite_stout,0,0,244612071424,"{""name"":""Satellite Stout"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""A bold roasty stout with 50lbs of organic fair trade espresso beans. A tribute to the best coffee house in town. Coffee lovers will easily embrace this delicious brew."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
-malt_shovel_brewery-james_squire_india_pale_ale,0,0,244873297920,"{""name"":""James Squire India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""malt_shovel_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-sabmiller_india-haywards_black,0,0,245000175616,"{""name"":""Haywards Black"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Haywards Black, India’s first genuine stout beer , is handcrafted from a rich blend of the world famous Caledon valley dark roasted barley malt along with a blend of imported and locally produced pale malts. New Zealand’s super alpha hops give Haywards Black a unique and pleasantly bitter taste with a hop like aroma. The Dark Roasted malt provides a rich dark colouring along with a unique smoky taste and aroma. The Slow brewing process which incorporates specially managed yeast creates the creamy head and the rich smooth taste that stout is so much loved for. \r\n\r\nhttp://www.sabmiller.in/brands_haywards_black.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-bellows_brew_crew-stout,0,0,244369588224,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
-deschutes_brewery-jubelale,0,0,244622688256,"{""name"":""Jubelale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Did you know that Jubelale was the first beer ever bottled by Deschutes Brewery? Highly anticipated every fall, Jubelale is in a category of its own with a flavor and following that is impossible to match. Dark crystal malt creates that “luscious” holiday note while the roasty flavor and bountiful hops excite your tastebuds, reminding you why Jubelale is the perfect holiday beer"",""style"":""Winter Warmer"",""category"":""Other Style""}",1,38,1
-two_brothers_brewing-domaine_dupage_french_country_ale,0,0,245107392514,"{""name"":""Domaine DuPage French Country Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Domaine DuPage is a rural, northern France, amber colored ale. This well balanced beer is full and sweet up front with caramel, toasty, and fruity characters. The finish has a gentle floral and spicy hop balance that cleanses the palate."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,21,1
-tyranena_brewing-stone_teepee_pale_ale,0,0,245108375552,"{""name"":""Stone Teepee Pale Ale"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The legend of Tyranena began 3,000 years ago, with a group of pyramids and effigy mounds constructed in a remote valley formed by a vast, slow-moving glacier. \r\n\r\nToday, these ancient \""stone tepees\"" lie 60 feet below the surface of Rock Lake in Jefferson County, Wisconsin. No one is certain how or why they were built, but many have speculated on their origin, purpose and the people who built them. \r\n\r\nWe invite you to develop your own theories on the legend and mystery of Tyranena while enjoying a Stone Tepee Pale Ale.\r\n\r\n Stone Tepee Pale Ale is brewed in the tradition of an American pale ale. This beer celebrates the American hop, with its characteristic bitterness, flavor and aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-great_divide_brewing-fresh_hop_pale_ale,0,0,244737376257,"{""name"":""Fresh Hop Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The September hop harvest is a once-a-year opportunity to brew with fresh hops, also called “wet hops.” Given the perishable nature of just-harvested hop cones, they are shipped overnight to Great Divide shortly after harvest. The morning of the scheduled hop delivery in Denver, Great Divide’s brewers begin brewing Fresh Hop and are ready to hop the beer just as the fresh hops are delivered.\r\n\r\nUsing fresh hops is a big endeavor, requiring four to five times the volume of hops compared to the usual process of using pelletized hops. This complex process brings impressive results: Fresh Hop is an American-Style Pale Ale with moderate hop bitterness marked by a unique and intensely grassy hop flavor and aroma. Fresh Hop is a superbly refreshing, medium bodied, light-copper colored pale ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-chimay_abbaye_notre_dame_de_scourmont-chimay_grand_reserve_chimay_blue,0,0,244487880705,"{""name"":""Chimay Grand Reserve(Chimay Blue)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""Named Grande Réserve in 75 cl (25.4 fl.oz.) bottles, it is principally distinguished by its character of a strong beer. \r\n\r\nThis is a beer whose fragrance of fresh yeast with a light, flowery rosy touch is especially pleasant. \r\n\r\nIts flavour, noticed when tasting it, only accentuates the pleasant sensations perceived in the aroma , while revealing a light but pleasant touch of roasted malt.\r\n\r\nThis top fermented Trappist beer , refermented in the bottle, is not pasteurised.""}",1,33,1
-oconomowoc_brewing,0,0,244874936321,"{""name"":""Oconomowoc Brewing"",""city"":""Oconomowoc"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.1117,""lon"":-88.4993}}",1,44,1
-aldaris-zelta,0,0,244363755520,"{""name"":""Zelta"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aldaris"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-rogue_ales-uber_pilsner,0,0,244998406144,"{""name"":""Über Pilsner"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A German style Pilsner, pale gold in color, medium bodied with a malty aroma and a crisp hop bitterness (100% Sterling hops). Uber Pils is brewed with three Great Western and two Weyermann malts, Czech Pils Yeast and Free Range Coastal Waters. UberFest Pils is available in the classic Rogue 22-ounce bottle and kegs, from late autumn through early spring. No Chemicals, Additives, or Preservatives"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,43,1
-fish_brewing_company_fish_tail_brewpub-wild_salmon_pale_ale,0,0,244618428417,"{""name"":""Wild Salmon Pale Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-liefmans_breweries-all_saints_belgian_white_ale,0,0,244736000001,"{""name"":""All Saints Belgian White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-north_country_brewery-double_vision_ipa,0,0,244858552320,"{""name"":""Double Vision IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Double your fun, double your pleasure and try and stay out of double trouble with this hopped up I.P.A."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
-brouwerij_van_honsebrouck-kasteel_bier_brune,0,0,244497645569,"{""name"":""Kasteel Bier Brune"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-dublin_brewing,0,0,244628586498,"{""name"":""Dublin Brewing"",""city"":""Dublin"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.3441,""lon"":-6.2675}}",1,52,1
-court_avenue_brewing-capital_raspberry_wheat,0,0,244477853697,"{""name"":""Capital Raspberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,10,1
-atlantic_brewing_company-bar_harbor_real_ale,0,0,244376797186,"{""name"":""Bar Harbor Real Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atlantic_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A good, clean nutbrown ale with a malty body. This is our most popular ale due to its smooth and malty flavor.\r\n\r\nWe use a mixture of pale, crystal and black malts in this one, and our primary hop is Target, though we also add some Whitbread Goldings Variation as well.\r\n\r\nThe Real Ale is best fresh, so fresh in fact, that it's great right out of the bright tank.""}",1,49,1
-brouwerij_abdij_saint_sixtus-trappist_westvleteren_blonde,0,0,244478443523,"{""name"":""Trappist Westvleteren Blonde"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_saint_sixtus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,12,1
-onopa_brewing-nut_brown_ale,0,0,244857765890,"{""name"":""Nut Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
-breckenridge_bbq_of_omaha-oatmeal_stout,0,0,244498628608,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
-daleside_brewery-old_legover,0,0,244478312449,"{""name"":""Old Legover"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-routh_street_brewery_and_grille-classic_pale,0,0,244999520257,"{""name"":""Classic Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-old_hat_brewery-stubbins_stout,0,0,244873166849,"{""name"":""Stubbins Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
-angelic_brewing,0,0,244371030017,"{""name"":""Angelic Brewing"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53703"",""country"":""United States"",""phone"":""1-608-257-2707"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0785,""lon"":-89.382}}",1,34,1
-anheuser_busch-natural_ice,0,0,244371554305,"{""name"":""Natural Ice"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
-brasserie_brouwerij_cantillon-classic_gueuze,0,0,244372537344,"{""name"":""Classic Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,37,1
-goose_island_beer_company_fulton_street-christmas_ale,0,0,244609908738,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-gottberg_brew_pub-jack_of_spades_schwarzbier,0,0,244609581057,"{""name"":""Jack of Spades Schwarzbier"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,7,1
-coast_range_brewing-auld_lang_syne,0,0,244479754240,"{""name"":""Auld Lang Syne"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-butterfield_brewing_1-pale_bock,0,0,244499152897,"{""name"":""Pale Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""butterfield_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,59,1
-lakefront_brewery-lakefront_ipa,0,0,244734951424,"{""name"":""Lakefront IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,2,1
-manhattan_beach_brewing-pier_pale_ale,0,0,244876509185,"{""name"":""Pier Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manhattan_beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-manhattan_beach_brewing-blonde,0,0,244857241600,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manhattan_beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-four_peaks_brewing-caulfield_s_rye,0,0,244630355969,"{""name"":""Caulfield's Rye"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our rye beer is made with 20% flaked rye and rye malt. The addition of rye creates a dry, spicy flavor with a crisp, grainy aroma. We went with a lighter color and lower bitterness to compliment these flavors. It has an alcohol content of around 4.9%."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,56,1
-appalachian_brewing_company,0,0,244377255938,"{""name"":""Appalachian Brewing Company"",""city"":""Harrisburg"",""state"":""Pennsylvania"",""code"":""17110"",""country"":""United States"",""phone"":""717.221.1080"",""website"":""http://www.abcbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Appalachian Brewing Company is a unique large-capacity microbrewery and full-service brewpub located at 50 North Cameron Street Harrisburg, PA."",""address"":[""50 N. Cameron St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.2659,""lon"":-76.8753}}",1,50,1
-brauerei_schtzengarten,0,0,244480802816,"{""name"":""Brauerei Schtzengarten"",""city"":""Sankt-Gallen"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-071-/-243-43-43"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St. Jakobstrasse 37""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.4301,""lon"":9.3794}}",1,17,1
-crane_river_brewpub_and_cafe-whooping_wheat,0,0,244490567681,"{""name"":""Whooping Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-hochstiftliches_brauhaus_in_bayern,0,0,244735475712,"{""name"":""Hochstiftliches Brauhaus in Bayern"",""city"":""Motten"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9748-/-71-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brckenauer Strae 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.3949,""lon"":9.7724}}",1,4,1
-triumph_brewing_of_princeton-amber_ale,0,0,245107785729,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
-lion_brewery_inc-lionshead,0,0,244859600896,"{""name"":""Lionshead"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
-brewmasters_restaurant_and_brewery_south-icemaster,0,0,244497448960,"{""name"":""Icemaster"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-pony_express_brewing-tornado_ale,0,0,244997947392,"{""name"":""Tornado Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pony_express_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
-cains-ipa,0,0,244480344064,"{""name"":""IPA"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:17:57"",""description"":""IPA is one of Cains"",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,16,1
-flying_dog_brewery-kerberos,0,0,244612988930,"{""name"":""Kerberos"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The long-awaited arrival of our Belgian-style Tripel is upon us. Named after the mythical Greek three-headed dog that guards the gates of hell, Kerberos is a traditional Belgian-style Tripel with a dark golden color has a sweet flavor with a dry and spicy finish. This nectar of the Gods is deceptively strong at 8.5% and is bottle conditioned for an authentic flavor."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,15,1
-dogfish_head_craft_brewery-indian_brown_ale,0,0,244612071425,"{""name"":""Indian Brown Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A cross between a Scotch Ale, an I.P.A., and an American Brown, this beer is well-hopped and malty at the same time. It is brewed with Aromatic barley and caramelized brown sugar."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,13,1
-mcmullen_sons-special_reserve_anniversary_porter,0,0,244873297921,"{""name"":""Special Reserve Anniversary Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmullen_sons"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
-saint_arnold_brewing,0,0,245000175617,"{""name"":""Saint Arnold Brewing"",""city"":""Houston"",""state"":""Texas"",""code"":""77092"",""country"":""United States"",""phone"":""1-713-686-9494"",""website"":""http://www.saintarnold.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Saint Arnold Brewing Company, located in Houston, is Texas' Oldest Craft Brewery. Our goal is to brew world class beers and deliver them to our customers as fresh as possible making them the best beers in Texas. Our customers are beer lovers - people that appreciate great, full-flavored beers. Our small crew of seventeen does everything at the brewery: brew the beer, filter the beer, keg the beer, bottle the beer, sell the beer and drink the beer. For us, this is a passion, not a job. We believe that this comes through in the beers we make. Our beers have soul. "",""address"":[""2522 Fairway Park Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":29.8123,""lon"":-95.4675}}",1,47,1
-bethlehem_brew_works-arc_weld_alt,0,0,244369588225,"{""name"":""Arc Weld Alt"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bethlehem_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Smooth and malty dark copper German ale common to Duseldorf. Brewed with imported Munich malts, tettnang hops and imported yeast giving this brew a unique flovor."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,31,1
-dillon_dam_brewery-extra_special_bitter,0,0,244622688257,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dillon_dam_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-upstream_brewing_company_at_legacy,0,0,245107458048,"{""name"":""Upstream Brewing Company at Legacy"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68130"",""country"":""United States"",""phone"":""1-402-778-0100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""17070 Wright Plaza""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2331,""lon"":-96.1811}}",1,21,1
-victory_brewing-dark_lager,0,0,245108375553,"{""name"":""Dark Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
-great_waters_brewing_company-capitol_esb,0,0,244737441792,"{""name"":""Capitol ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-cigar_city_brewing-humidor_series_jai_alai_cedar_aged_india_pale_ale,0,0,244487880706,"{""name"":""Humidor Series Jai Alai Cedar Aged India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""he Humidor Series is a rotating offering of Cigar City Brewing beer aged on cedar. Cedar has a more subtle effect on beer than more traditional woods like oak. But, we think that once you taste it you’ll agree that cedar deserves a place alongside oak in the brewer’s wood-aging toolbox."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
-onopa_brewing-porter,0,0,244874936322,"{""name"":""Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
-america_s_brewing-golden_light,0,0,244363821056,"{""name"":""Golden Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
-sabmiller_india-knock_out,0,0,244998406145,"{""name"":""Knock Out"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Country of origin: India \r\nBeer type: Lager \r\nAlcohol content by volume: < 8 % by volume \r\nCarbohydrates: - \r\nTaste: Smooth and strong with a rich malty taste \r\nMalts: Indian malts, 6 row barley \r\nHops: Hops extract from Germany and Indian hops palate \r\nColour: Golden yellow \r\nAvailability: India \r\nFermentation process: Bottom-fermented \r\nServing temperature: 7 - 9 °C \r\nPackaging: 650 ml, 330 ml Indian standard glass bottle ; 500 ml cans and 330 ml cans,( in select markets) \r\n\r\nhttp://www.sabmiller.in/brands_knock-out.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
-flatlander_s_restaurant_brewery-olde_orchard_ale,0,0,244618493952,"{""name"":""Olde Orchard Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
-long_valley_pub_brewery-esb,0,0,244859076608,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-north_country_brewery,0,0,244858552321,"{""name"":""North Country Brewery"",""city"":""Slippery Rock"",""state"":""Pennsylvania"",""code"":""16057"",""country"":""United States"",""phone"":""(724)-794-BEER"",""website"":""http://www.northcountrybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nestled in the heart of downtown Slippery Rock, North Country Brewery typically features 10-15 beers that rotate seasonally. While this unique restaurant and brewery inhabits a former funeral home, it is quite lively inside. Featuring a great menu and fun events, North Country Brewery is a great stop for any beer lover."",""address"":[""141 South Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.0638,""lon"":-80.0556}}",1,3,1
-budjovick_mansk_pivovar-samson_crystal_diplomat_dark_beer,0,0,244497711104,"{""name"":""Samson Crystal Diplomat Dark Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""budjovick_mansk_pivovar"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-egan_brewing-old_gak_strong_ale,0,0,244628652032,"{""name"":""old gak strong ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,52,1
-d_l_geary_brewing_company-geary_s_pale_ale,0,0,244477853698,"{""name"":""Geary's Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""d_l_geary_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""A classic British pale ale with a nod to the legendary beers of Burton-on-Trent. Copper-colored, dry, clean and crisp with lots of late hope taste in an appetizing complex with ale fruitiness from imported Hampshire yeast.\"" ~ http://www.gearybrewing.com/pages/pale.php"",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,10,1
-august_schell_brewing-weizen,0,0,244376862720,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,49,1
-brouwerij_de_achelse_kluis-trappist_bruin_bier_biere_brune,0,0,244478509056,"{""name"":""Trappist Bruin Bier / Bière Brune"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-ottakringer_brauerei_ag-ottakringer_helles,0,0,244857831424,"{""name"":""Ottakringer Helles"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ottakringer_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-bricktown_brewery-get_fuggled,0,0,244498694144,"{""name"":""Get Fuggled"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-de_proef_brouwerij-flemish_primitive_wild_ale_surly_bird,0,0,244610891776,"{""name"":""Flemish Primitive Wild Ale (Surly Bird)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-san_marcos_brewery_grill-oatmeal_stout,0,0,244999520258,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,46,1
-oregon_trail_brewery-bourbon_barrel_porter,0,0,244873232384,"{""name"":""Bourbon Barrel Porter"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oregon_trail_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
-anheuser_busch-michelob_winter_s_bourbon_cask_ale,0,0,244371030018,"{""name"":""Michelob Winter's Bourbon Cask Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""During even the coldest of weather, warm up to the smooth, robust taste of our Winter's Bourbon Cask Ale. Full of rich aromas that you find in the winter months, hints of vanilla and flavorful hops, this is a beer that is great for pouring into a large tulip glass and enjoying with friends around a fireplace."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,34,1
-appalachian_brewing_company-ipa_series_horizon,0,0,244371554306,"{""name"":""IPA Series (Horizon)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
-brasserie_de_l_abbaye_val_dieu,0,0,244372537345,"{""name"":""Brasserie de l'Abbaye Val-Dieu"",""city"":""Aubel"",""state"":""Lige"",""code"":"""",""country"":""Belgium"",""phone"":""32-087-68-75-87"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Val Dieu 225""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.7046,""lon"":5.822}}",1,37,1
-granite_city_food_brewery_saint_cloud-oktoberfest,0,0,244736983040,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,8,1
-grand_teton_brewing_2-teton_ale,0,0,244736393216,"{""name"":""Teton Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_teton_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-columbia_bay_brewery_restaurant_and_pub-da_bier_altbier,0,0,244479754241,"{""name"":""Da Bier Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""columbia_bay_brewery_restaurant_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,14,1
-calhoun_s_microbrewery,0,0,244499218432,"{""name"":""Calhoun's Microbrewery"",""city"":""Knoxville"",""state"":""Tennessee"",""code"":""37919"",""country"":""United States"",""phone"":""1-865-673-3377"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6515 Kingston Pike""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.932,""lon"":-84.012}}",1,59,1
-listermann_brewing_company-42_cream_ale,0,0,244857896960,"{""name"":""#42 Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""listermann_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,2,1
-mcmullen_sons-special_reserve_oatmeal_ale,0,0,244876509186,"{""name"":""Special Reserve Oatmeal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmullen_sons"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-marzoni_s_brick_oven_brewing_co-patchway_pale_ale,0,0,244857241601,"{""name"":""Patchway Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Nicely Hopped, Medium Bodied Pale Ale"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,0,1
-fratellos_restaurant_and_brewery-sesquicentennial_light_ale,0,0,244630355970,"{""name"":""Sesquicentennial Light Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-athenian_brewery-athenian,0,0,244377255939,"{""name"":""Athenian"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""athenian_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-brooklyn_brewery-local_1,0,0,244480802817,"{""name"":""Local 1"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In Williamsburg, Brooklyn, we forge barley malt and hops from Germany, aromatic raw sugar from Mauritius and yeast from Belgium into our latest beer, Brooklyn Local 1.\r\n\r\nBehind the full golden color you'll find an alluring aroma, a dynamic complex of flavors, Belgian flair, Brooklyn fortitude and a dusting of our special yeast. To create this beer, we use the old technique of 100% bottle re-fermentation, a practice now rare even in Europe. It gives this beer a palate of unusual depth. Enjoy it locally or globally, as an aperitif or with your favorite dishes. It is particularly nice with spicy seafood and with fine cheeses."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,17,1
-crane_river_brewpub_and_cafe-zlate_pivo_golden_beer,0,0,244490567682,"{""name"":""Zlaté Pivo Golden Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-hoppin_frog_brewery-b_o_r_i_s_the_crusher_oatmeal_imperial_stout,0,0,244735541248,"{""name"":""B.O.R.I.S. The Crusher Oatmeal-Imperial Stout"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Bodacious Oatmeal Russian Imperial Stout will crush you like no other! This is the grand-daddy of all stout styles, with an intensely deep roasted and full bodied flavor. A robust hop character adds a refreshing balance."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,4,1
-triumph_brewing_of_princeton-bengal_gold_india_pale_ale,0,0,245107851264,"{""name"":""Bengal Gold India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-little_apple_brewing-bison_brown_ale,0,0,244859600897,"{""name"":""Bison Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,6,1
-bridgeport_brewing-old_knucklehead_2000,0,0,244497448961,"{""name"":""Old Knucklehead 2000"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-port_washington_brewing,0,0,244997947393,"{""name"":""Port Washington Brewing"",""city"":""Port Washington"",""state"":""Wisconsin"",""code"":""53074"",""country"":""United States"",""phone"":""1-262-377-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.3872,""lon"":-87.8756}}",1,42,1
-cambridge_brewing-cambridge_amber,0,0,244480344065,"{""name"":""Cambridge Amber"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Well balanced, medium-bodied, with a deep amber-red color, this beer's complex palate covers all the bases. A malty caramel sweetness is followed by notes of chocolate and a dry, slightly roasty finish, complemented by a touch of fruity, spicy hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
-folx_les_caves-grottenbier,0,0,244612988931,"{""name"":""Grottenbier"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""folx_les_caves"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-east_end_brewing_company-ugly_american,0,0,244612071426,"{""name"":""Ugly American"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""THE UGLY AMERICAN is a perfectly enjoyable classic Belgian Trippel corrupted almost beyond recognition with a completely inappropriate amount of US hops. Only in America can such excessive excesses be fully appreciated, celebrated, and enjoyed...and for now, only at East End Brewing! To make this one a little more cellar-able, and a lot more portable, it's going into the bottle."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,13,1
-meckatzer_lwenbru-weiss_gold,0,0,244873363456,"{""name"":""Weiss-Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meckatzer_lwenbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-sherlock_s_home-queen_anne_light,0,0,245000175618,"{""name"":""Queen Anne Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-big_dog_s_brewing_company,0,0,244369588226,"{""name"":""Big Dog's Brewing Company"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89130"",""country"":""United States"",""phone"":""1-702-645-1404"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4543 North Rancho Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.2426,""lon"":-115.236}}",1,31,1
-duck_rabbit_craft_brewery-duck_rabbit_brown_ale,0,0,244622753792,"{""name"":""Duck-Rabbit Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Duck-Rabbit Brown Ale is an American brown ale brewed with loads of hops from start to finish (it’s hoppy and beautifully bitter). Amarillo hops in the boil provide a spicy citrusy bitterness. Saaz dry hops in the fermentor provide a refined flowery aroma. These hops are supported by a grain bill of seven varieties of malt. Oh yeah!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,38,1
-utah_brewers_cooperative-wasatch_polygamy_porter,0,0,245107458049,"{""name"":""Wasatch Polygamy Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""utah_brewers_cooperative"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
-viking_brewing-big_swede_swedish_style_imperial_stout,0,0,245747023872,"{""name"":""Big Swede Swedish-Style Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""viking_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,23,1
-green_bay_brewing-hinterland_amber_ale,0,0,244737441793,"{""name"":""Hinterland Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-commonwealth_brewing_1-special_old_ale,0,0,244487946240,"{""name"":""Special Old Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,33,1
-otter_creek_brewing_wolaver_s_organic_ales,0,0,244875001856,"{""name"":""Otter Creek Brewing & Wolaver's Organic Ales"",""city"":""Middlebury"",""state"":""Vermont"",""code"":""5753"",""country"":""United States"",""phone"":""1-888-473-0727"",""website"":""http://www.ottercreekbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Otter Creek beers are craft brewed with the finest domestic malts and hops available."",""address"":[""793 Exchange Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0197,""lon"":-73.1693}}",1,44,1
-anheuser_busch-michelob_black_tan,0,0,244363886592,"{""name"":""Michelob Black & Tan"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-saint_arnold_brewing-saint_arnold_amber_ale,0,0,244998471680,"{""name"":""Saint Arnold Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A well balanced, full flavored, amber ale. It has a rich, malty body with a pleasant caramel character derived from a specialty Caravienne malt. A complex hop aroma, with a hint of floral and citrus comes from a combination of Cascades and Liberty hops. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \r\n\r\nSaint Arnold Amber Ale is best consumed at 50 - 55° Fahrenheit."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
-abbaye_de_leffe-brune_brown,0,0,244363362304,"{""name"":""Brune (Brown)"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_leffe"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark brown with a nice tan head.\r\nSweet and aromatic.\r\nSmooth and best served cold from a goblet or chalice.\r\n\r\nI have had this on tab, in a 12oz bottle and 1 liter bottle. It is very common on to be on tap in Belgium and Paris as well as in a bottle in the UK.\r\n\r\nI have not seen it in the US nor can I find a distributor that could get it.""}",1,18,1
-gaslight_brewery-bulldog_blonde,0,0,244618493953,"{""name"":""Bulldog Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-main_street_alehouse-powell_porter,0,0,244859076609,"{""name"":""Powell Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
-northwoods_brewpub_grill-dark_walnut_stout,0,0,244858617856,"{""name"":""Dark Walnut Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
-california_cider_company-ace_pear_cider,0,0,244497711105,"{""name"":""Ace Pear Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""california_cider_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-egan_brewing-who_the_helles_chuck,0,0,244628652033,"{""name"":""Who The Helles Chuck?"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-deep_creek_brewing,0,0,244610498560,"{""name"":""Deep Creek Brewing"",""city"":""McHenry"",""state"":""Maryland"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.5584,""lon"":-79.3528}}",1,10,1
-aviator_brewing_company-old_bulldog_extra_special,0,0,244376862721,"{""name"":""Old BullDog Extra Special"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aviator_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A hearty extra special beer or basically a pale ale on steroids. A dark amber beer with a rich blend of malts. The base malt is full kilned pale 2-row barley and is combined with full tasting crystal malt. This beer has a great heavy late hop addition of East Kent Goldings (that cost us our lunch money for weeks...). ALWAYS AVAILABLE or at least we try."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,49,1
-brouwerij_lindemans-gueuze_cuvee_rene,0,0,244478574592,"{""name"":""Gueuze Cuvée René"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden hue sets off the wonderful almost champagne like taste.""}",1,12,1
-pacific_beach_brewhouse-crystal_pier_pale_ale,0,0,244857831425,"{""name"":""Crystal Pier Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-bridgeport_brewing-porter,0,0,244498759680,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
-double_mountain_brewery_taproom,0,0,244610957312,"{""name"":""Double Mountain Brewery & Taproom"",""city"":""Hood River"",""state"":""Oregon"",""code"":""97031"",""country"":""United States"",""phone"":""541-387-0042"",""website"":""http://www.doublemountainbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Matt Swihart and Charlie Devereux founded Double Mountain in 2007 with a clear mission: make great beer for craft beer fans. Ours is a brewers' brewery, with an uncompromising focus on beer quality. From the beginning, our goal was to make beers that we liked to drink. All of our beers are served up unfiltered and long-aged, to deliver maximum flavor and character. The beers can be very complex and assertive, but with the ultimate goal of proper balance. We aim to satisfy both the hardcore aficionados and the more casual craft beer fan, all in the same glass."",""address"":[""8 Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.71,""lon"":-121.515}}",1,11,1
-sand_creek_brewing_company-groovy_beer,0,0,244999585792,"{""name"":""Groovy Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,46,1
-pacific_rim_brewing-driftwood_ale,0,0,244997160960,"{""name"":""Driftwood Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-backwater_brewing-wingdam_wheat,0,0,244371095552,"{""name"":""Wingdam Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backwater_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
-arcobrau_grafliches_brauhaus,0,0,244371619840,"{""name"":""Arcobrau Grafliches Brauhaus"",""city"":""Moos"",""state"":""Baden-Wurttemberg"",""code"":""94554"",""country"":""Germany"",""phone"":""09938 / 918 180"",""website"":""http://www.arcobraeu.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schlossalle 1""]}",1,35,1
-brasserie_dupont-avec_les_bons_voeux,0,0,244372602880,"{""name"":""Avec Les Bons Voeux"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-great_dane_pub_and_brewing_1-bourbon_barleywine,0,0,244737048576,"{""name"":""Bourbon Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-green_flash_brewing,0,0,244736458752,"{""name"":""Green Flash Brewing"",""city"":""Vista"",""state"":""California"",""code"":""92083"",""country"":""United States"",""phone"":""1-760-597-9012"",""website"":""http://www.greenflashbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1430 Vantage Court #104A""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.136,""lon"":-117.225}}",1,7,1
-d_l_geary_brewing_company,0,0,244479819776,"{""name"":""D.L. Geary Brewing Company"",""city"":""Portland"",""state"":""Maine"",""code"":""4103"",""country"":""United States"",""phone"":"""",""website"":""http://www.gearybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The D.L. Geary Brewing Company was incorporated in October, 1983 by David and Karen Geary who shared the vision of producing world class products on a small scale for local and regional consumption. At that time, there were only 13 so-called microbreweries in the United States, almost all of them in California and the Pacific Northwest. In the winter of 1984, David Geary began a period of training and research in Scotland and England. With the help of Peter Maxwell Stuart, a Scottish nobleman and brewer who arranged introductions and itineraries, he worked in a half-dozen small commercial breweries from the highlands of Scotland to the south coast of England."",""address"":[""38 Evergreen Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.7076,""lon"":-70.3149}}",1,14,1
-cervejaria_kaiser_brasil,0,0,244499218433,"{""name"":""Cervejaria Kaiser Brasil"",""city"":""Ponta Grossa"",""state"":""Paran"",""code"":"""",""country"":""Brazil"",""phone"":""55-(42)-219-2000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Avenida Tocantins, 199 / Caixa Postal 621""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-25.1688,""lon"":-50.1298}}",1,59,1
-mad_crab_restaurant_and_brewery-pirates_pilsner,0,0,244857896961,"{""name"":""Pirates Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-mickey_finn_s_brewery-gudenkrisp_kolsch,0,0,244876574720,"{""name"":""Güdenkrisp Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-mercury_brewing_company-1084_barleywine,0,0,244857241602,"{""name"":""1084 Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,0,1
-front_street_brewery,0,0,244630421504,"{""name"":""Front Street Brewery"",""city"":""Davenport"",""state"":""Iowa"",""code"":""52801"",""country"":""United States"",""phone"":""1-563-322-1569"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""208 East River Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5202,""lon"":-90.5725}}",1,56,1
-atwater_block_brewing-mai_bock,0,0,244377321472,"{""name"":""MAI-BOCK"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional german helles bock, golden in color and brewed with only the finest imported malt and hops. The distinct malty sweetness is balanced by a pronounced hop finish. Brewed to Welcome the Spring Season."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
-brouwerij_de_dolle_brouwers-stille_nacht,0,0,244480802818,"{""name"":""Stille Nacht"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-de_halve_maan-brugse_zot_double,0,0,244623147008,"{""name"":""Brugse Zot Double"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""Besides the goldenblond ale, a darker version of the townbeer has been created : Brugse Zot double, with 7,5 % Vol alc. It is brewed with 6 special kinds of malt, which give the beer a rich taste. The worldly renowned Tcheque Saaz hop from Zatec has been chosen to give the beer this unique bitter note. Brugse Zot double is a fill and stronger beer, highly appreciated by the beerlovers."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,39,1
-hoppy_brewing_company,0,0,244735541249,"{""name"":""Hoppy Brewing Company"",""city"":""Sacramento"",""state"":""California"",""code"":""95819"",""country"":""United States"",""phone"":""1-916-451-4677"",""website"":""http://www.hoppy.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Currently, our company is growing our full service brewpub here in Sacramento, while at the same time self-distributing our products to retailers in the Sacramento area. We are brewing all of our products here in Sacramento and have 10 products on tap here at the brewpub. In addition, our current California distribution network consists of just one hard working distributor: A & D Distributing. We utilize this established distributor in their selected market to sell principally to the packaged/bottle market through authorized retail outlets, and the on-premises draft market through establishments licensed to serve alcoholic beverages. Our core products (i.e., Hoppy Face, Liquid Sunshine and Total Eclipse) are currently available in draft and 22 ounce bottles, and only available in the Sacramento and San Jose areas, but that will likely change as we continue to expand this year."",""address"":[""6300 Folsom Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5551,""lon"":-121.43}}",1,4,1
-upstream_brewing_old_market-capitol_premium_pale_ale,0,0,245107851265,"{""name"":""Capitol Premium Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our English-style pale ale is a medium-bodied \r\namber beer. Light, malty flavors combine with aromatic \r\nhops for a beer that is thirst quenching and easy \r\nto drink. One of our most popular beers."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
-mad_crab_restaurant_and_brewery-wheat,0,0,244859666432,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
-brouwerij_alken_maes,0,0,244497448962,"{""name"":""Brouwerij Alken-Maes"",""city"":""Jumet"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-071-34-02-22"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Derbque 7""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.4431,""lon"":4.4147}}",1,54,1
-porterhouse_restaurant_and_brewpub,0,0,244998012928,"{""name"":""Porterhouse Restaurant and Brewpub"",""city"":""Lahaska"",""state"":""Pennsylvania"",""code"":""18931"",""country"":""United States"",""phone"":""1-215-794-9373"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5775 Lower Mountain Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.3341,""lon"":-75.012}}",1,42,1
-capitol_city_brewing_4,0,0,244480344066,"{""name"":""Capitol City Brewing #4"",""city"":""Arlington"",""state"":""Virginia"",""code"":""22206"",""country"":""United States"",""phone"":""1-703-578-3888"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2700 South Quincy Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.8411,""lon"":-77.0869}}",1,16,1
-fratellos_restaurant_and_brewery-fox_light,0,0,244613054464,"{""name"":""Fox Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
-elysian_brewery_public_house-loki,0,0,244612071427,"{""name"":""Loki"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-mercury_brewing_company-ipswich_harvest,0,0,244873363457,"{""name"":""Ipswich Harvest"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Highly regarded among hop-lovers, our Harvest Ale is a balanced and flavorful autumnal offering, to be enjoyed during the cool, crisp days of fall. We use a darker Caramunich malt and just a touch of chocolate malt along with a blend of Warrior, Ahtanum, and Columbus hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
-ship_inn_brewpub-golden_wheat_light,0,0,245000241152,"{""name"":""Golden Wheat Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-blue_point_brewing-toasted_lager,0,0,244369653760,"{""name"":""Toasted Lager"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""TOASTED LAGER\r\n\r\nBlue Point Brewing's award-winning Toasted Lager is our flagship product. Copper in color this brew is made from six different malts including: English Pale, Crystal, Munich, Carapils, Wheat and Belgian Caravienna. Toasted Lager displays a balanced flavor of malt and hop which makes for easy drinking. Special lager yeast is used to produce that long lasting, smooth finish. The \""toasted\"" part of the name refers to our direct-fire brew kettle’s hot flames that impart a toasted flavor to our most popular microbrew."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-eel_river_brewing,0,0,244622753793,"{""name"":""Eel River Brewing"",""city"":""Fortuna"",""state"":""California"",""code"":""95540"",""country"":""United States"",""phone"":""1-707-725-2739"",""website"":""http://eelriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1777 Alamar Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5793,""lon"":-124.153}}",1,38,1
-valley_brewing_company-uberhoppy_imperial_ipa,0,0,245107458050,"{""name"":""Uberhoppy Imperial IPA"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A massively hopped Imperial IPA brewed to celebrate Valley Brews 10th anniversary. 1 pound of hops were added every 10 minutes during a 100 minute boil, a total of 10 different boiling hops. 4 different fresh hops were used in the hopback and then the beer was passed through a chamber containing 10 lbs of fresh hops on the way from the serving tanks to the bar taps. Hopperiffic."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,21,1
-vintage_50_restaurant_and_brew_lounge-50_cat_ipa,0,0,245747023873,"{""name"":""50 CAT IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vintage_50_restaurant_and_brew_lounge"",""updated"":""2010-07-22 20:00:20"",""description"":""An American style India Pale Ale. This medium bodied, light bronze hued brew has an aggressive hop character and flavor from the use of American hops in dry hopping. Our interpretation comes in at 13.0 degrees plato with IBU’s in the mid 40’s. The American hop varietals used as Kettle additions were Amarillo and Chinook and this was dry hopped with Chinook as well."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
-green_flash_brewing-west_coast_ipa,0,0,244737507328,"{""name"":""West Coast IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This West Coast-Style India Pale Ale is extravagantly hopped, full flavored, medium bodied and copper colored. A menagerie of hops is combined throughout the brewing process to impart specific characteristics. Hops used include Simcoe for a unique fruitiness and grapefruit zest, Columbus for strong hop pungency, Centennial for pine and citrus notes, and Cascade for floral aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
-deschutes_brewery-the_abyss,0,0,244620066816,"{""name"":""The Abyss"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Abyss has immeasurable depth inviting you to explore and discover its rich, complex profile. Hints of molasses, licorice and other alluring flavors draw you in further and further with each sip. And at 11% alcohol by volume, you will want to slowly savor each and every ounce. \r\n\r\nNovember 2008 marks the third release of this dark and mysterious imperial stout. Limited availability in wax-dipped 22-ounce bottles and on draft at a few select establishments. \r\n\r\n“The Abyss was one of those beers I didn’t want to end. I was totally blown away - this is precious stuff.” Christian DeBenedetti, beer writer and Men’s Journal contributor"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,33,1
-pleasanton_main_street_brewery-zone_7_porter,0,0,244998602752,"{""name"":""Zone 7 Porter"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
-appleton_brewing-adler_brau_classic_porter,0,0,244363886593,"{""name"":""Adler Bräu Classic Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
-san_diego_brewing-grantville_gold,0,0,244998471681,"{""name"":""Grantville Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-alesmith_brewing-wee_heavy,0,0,244363362305,"{""name"":""Wee Heavy"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,18,1
-granite_city_food_brewery_saint_cloud-victory_lager,0,0,244745371648,"{""name"":""Victory Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
-maritime_pacific_brewing-clipper_gold_hefeweizen,0,0,244859142144,"{""name"":""Clipper Gold Hefeweizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-old_hat_brewery-apple_ale,0,0,244858617857,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,3,1
-capital_brewery,0,0,244497711106,"{""name"":""Capital Brewery"",""city"":""Middleton"",""state"":""Wisconsin"",""code"":""53562"",""country"":""United States"",""phone"":""1-608-836-7100"",""website"":""http://www.capital-brewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7734 Terrace Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0949,""lon"":-89.5163}}",1,55,1
-element_brewing_company,0,0,244628652034,"{""name"":""Element Brewing Company"",""city"":""Millers Falls"",""state"":""MA"",""code"":""01349"",""country"":""United States"",""phone"":""413-835-6340"",""website"":""http://www.elementbeer.com"",""type"":""brewery"",""updated"":""2011-04-18 05:17:29"",""description"":""Nano Brewery specializing in bottle conditioned ales."",""address"":[""30 Bridge St""]}",1,52,1
-deschutes_brewery-black_butte_xxi,0,0,244610498561,"{""name"":""Black Butte XXI"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It usually means bigger. Richer. And we can think of no better way to describe the taste of this even-bolder take on our classic, Black Butte Porter. Black Butte XX is an imperial porter with a lot more malt and hops, a wealth of coffee, cocoa nibs and aged in bourbon oak barrels. XX. It also means 20. Enjoy one during our 20th anniversary. On the flavor scale - It’s legendary."",""style"":""Porter"",""category"":""Irish Ale""}",1,10,1
-barfer_das_kleine_brauhaus-blonde,0,0,244376862722,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barfer_das_kleine_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-brouwerij_roman,0,0,244478574593,"{""name"":""Brouwerij Roman"",""city"":""Oudenaarde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-055-45-54-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hauwaart 105""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.831,""lon"":3.6759}}",1,12,1
-paulaner-1634_urtyp_hell,0,0,244980711424,"{""name"":""1634 Urtyp Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-brouwerij_de_dolle_brouwers-special_extra_export_stout,0,0,244498759681,"{""name"":""Special Extra Export Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-fish_brewing_company_fish_tail_brewpub-winterfish_ale,0,0,244610957313,"{""name"":""WinterFish Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
-santa_rosa_brewing-wee_heavy,0,0,244999585793,"{""name"":""Wee Heavy"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_rosa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,46,1
-paulaner-hacker_pschorr_original_oktoberfest,0,0,244997226496,"{""name"":""Hacker-Pschorr Original Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
-ballast_point_brewing-navigator_doppelbock,0,0,244371161088,"{""name"":""Navigator Doppelbock"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,34,1
-bbc_brewing_co_llc-hell_for_certain,0,0,244371619841,"{""name"":""Hell for Certain"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-brauerei_leibinger-edel_spezial,0,0,244489256960,"{""name"":""Edel-Spezial"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_leibinger"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-hereford_hops_steakhouse_and_brewpub_3-schwarzbier,0,0,244737048577,"{""name"":""Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,8,1
-grolsche_bierbrouwerij-grolsch_dunkel_weizen,0,0,244736458753,"{""name"":""Grolsch Dunkel Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""Grolsch Dunkel Weizen is the darker version of Grolsch Premium Weizen."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,7,1
-de_friese_bierbrouwerij_us_heit-us_heit_dubbel_tarwe_bier,0,0,244612333568,"{""name"":""Us Heit Dubbel Tarwe Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_friese_bierbrouwerij_us_heit"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,14,1
-cherryland_brewing-cherry_rail,0,0,244499218434,"{""name"":""Cherry Rail"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,59,1
-magic_hat-circus_boy,0,0,244857962496,"{""name"":""Circus Boy"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""THE Hefeweizen. Unfiltered and unfettered, Circus Boy is a unique and refreshing American-style Hefeweizen. Is he a who? Or a what? Or perhaps some of both? \r\n\r\nBrewed with organic lemongrass."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
-mickey_finn_s_brewery-main_street_raz,0,0,244876574721,"{""name"":""Main Street Raz"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,48,1
-middle_ages_brewing-the_duke_of_winship,0,0,244857241603,"{""name"":""The Duke of Winship"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A sensual dark brew with the softness of a Scotch ale crafted with the malt make-up of an English Porter."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,0,1
-frstliche_brauerei_thurn_und_taxis_regensburg,0,0,244630421505,"{""name"":""Frstliche Brauerei Thurn Und Taxis Regensburg"",""city"":""Regensburg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9451-/-412"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Waffnergasse 6-8""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.0156,""lon"":12.0913}}",1,56,1
-aviator_brewing_company-hotrod_red,0,0,244377321473,"{""name"":""HotRod Red"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aviator_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A somewhat classic Irish Red Ale. This ale is feisty and a bit hoppy. There is a malty sweetness and a somewhat dry finish. Traditional East Kent Goldings but with a nice touch of Cascade and dash of roasted barley give this ale a great taste. ALWAYS AVAILABLE...or at least we try."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,50,1
-brouwerij_de_smedt-affligem_dobbel,0,0,244480868352,"{""name"":""Affligem Dobbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_smedt"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-de_leyerth_brouwerijen-urthel_novicius_vertus,0,0,244623212544,"{""name"":""Urthel Novicius Vertus"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-indian_wells_brewing-mojave_red,0,0,244735541250,"{""name"":""Mojave Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
-vetter_s_alt_heidelberger_brauhaus,0,0,245107916800,"{""name"":""Vetter�s Alt Heidelberger Brauhaus"",""city"":""Heidelberg"",""state"":""Baden-Württemberg"",""code"":""69117"",""country"":""Germany"",""phone"":"""",""website"":""http://www.brauhaus-vetter.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founded 1987, Vetter Old Heidelberg Brewpub, was the first Bewpub in Heidelberg."",""address"":[""Steingasse 9""]}",1,22,1
-mammoth_brewing-amber,0,0,244859666433,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mammoth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,6,1
-brouwerij_de_ranke-guldenberg,0,0,244497448963,"{""name"":""Guldenberg"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-prairie_rock_brewing_elgin-ale,0,0,244998012929,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
-cedar_brewing,0,0,244480409600,"{""name"":""Cedar Brewing"",""city"":""Cedar Rapids"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.9625,""lon"":-91.6918}}",1,16,1
-furstlich_furstenbergische_brauerei-pils,0,0,244613054465,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""furstlich_furstenbergische_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-endehouse_brewery_and_restaurant-porter,0,0,244612136960,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""endehouse_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
-michigan_brewing-russian_imperial_stout,0,0,244873428992,"{""name"":""Russian Imperial Stout"",""abv"":10.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Take an India Pale Ale and feed it steroids! Although open to the same interpretation as its sister styles, you should expect something robust, malty, alcoholic and with a hop profile that might rip your tongue out. The Imperial usage comes from Russian Imperial stout, a style of strong stout originally brewed in England for the Russian Imperial Court of the late 1700s; though Double IPA is often the preferred name."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,41,1
-shipwrecked_brew_pub-bayside_blonde_ale,0,0,245000241153,"{""name"":""Bayside Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-bonaventure_brewing_co,0,0,244369653761,"{""name"":""Bonaventure Brewing Co"",""city"":""Los Angeles"",""state"":""California"",""code"":""90071"",""country"":""United States"",""phone"":""(213) 236-0802"",""website"":""http://www.bonaventurebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Local beers brewed on-site on the 4th floor patio of the Bonaventure Hotel. Terrific views of Downtown LA, traditional American food, friendly staff, local flavor."",""address"":[""404 South Figueroa Street #418""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.0532,""lon"":-118.256}}",1,31,1
-egan_brewing-j_s_stout,0,0,244622819328,"{""name"":""J&S; Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-wainwright_brewing-evil_eye_ale,0,0,245746892800,"{""name"":""Evil Eye Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wainwright_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-walldorff_brew_pub-hopnoxxxious,0,0,245747089408,"{""name"":""Hopnoxxxious"",""abv"":7.45,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""This hophead's delight contains 7 hop additions. A malt background balances the hoppy bitterness for a complex flavor."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,23,1
-grizzly_bay_brewing-hammerhead_red,0,0,244737507329,"{""name"":""Hammerhead Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-diamond_knot_brewery_alehouse-icebreaker_barley_wine,0,0,244620132352,"{""name"":""Icebreaker Barley Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh-wiesen_edel_weisse,0,0,244998668288,"{""name"":""Wiesen Edel Weisse"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,44,1
-avery_brewing_company-karma,0,0,244363886594,"{""name"":""Karma"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,19,1
-sapporo_breweries_chuo,0,0,244998471682,"{""name"":""Sapporo Breweries - Chuo"",""city"":""Tokyo"",""state"":""Kanto"",""code"":"""",""country"":""Japan"",""phone"":""81-(03)-3572-6111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10-1 Ginza 7-chome, Chuo-ku""]}",1,43,1
-allentown_brew_works-pawn_shop_porter,0,0,244363362306,"{""name"":""Pawn Shop Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark brown with ruby highlights this brew has a deep chocolate flavor backed by a smooth caramel finish. Brewed with English malt and hops for an authentic flavor"",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
-green_flash_brewing-barleywine,0,0,244745437184,"{""name"":""Barleywine"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American-style Barleywine undergoes a three hour boil to intensify the caramel malts and the enormous Pacific Northwest hop charge. The result is a rich, estery brew with toffee notes and citrus hop flavors layered throughout. Enjoy this brew fresh today or lay it down for aging to see how the flavors of each vintage evolve."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,28,1
-mcguire_s_irish_pub_and_brewery_pensacola-what_the_gent_on_the_floor_is_having_1997,0,0,244859207680,"{""name"":""What the Gent on the Floor is Having 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcguire_s_irish_pub_and_brewery_pensacola"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-otter_creek_brewing_wolaver_s_organic_ales-stovepipe_porter,0,0,244858617858,"{""name"":""Stovepipe Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Stovepipe Porter is made in the traditional porter stlye, and is a favorite with all porter lovers. Ruby-black in color, Stovepipe Porter has a rich palate and a roasted, hoppy aroma. It is delicious on its own or with a meal, and tastes great with chocolate."",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
-cerveceria_la_constancia-caguama,0,0,244497776640,"{""name"":""Caguama"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cerveceria_la_constancia"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,55,1
-elk_creek_cafe_and_aleworks-winkleblink_ale,0,0,244628717568,"{""name"":""Winkleblink Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""This light colored ale gains its subtle, bread-like flavor from a balance of gently kilned malted barley and choice malted wheat. A restrained addition of hops, contributes a pleasingly delicate floral aroma."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,52,1
-doemens_e_v-1809,0,0,244610564096,"{""name"":""1809"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""doemens_e_v"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-bavarian_barbarian_brewing_company-hammerin_ale,0,0,244376862723,"{""name"":""Hammerin' Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hammerin’ Ale is the Barbarian’s first beer. Brewed to be a well-balanced, easy-going beer, Hammerin’ Ale comes from a rather simple recipe which yields a deep amber color and a sublime balance of malt character and hop flavors. This beer goes very well with grilled meats and is meant to be enjoyed year-round. Hammerin’ Ale is an excellent choice for “Barbarians” who are new to craft beer."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,49,1
-brouwerij_slaghmuylder-witkap_pater_tripel,0,0,244478574594,"{""name"":""Witkap-Pater Tripel"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_slaghmuylder"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-abbaye_notre_dame_du_st_remy,0,0,244379549696,"{""name"":""Abbaye Notre Dame du St Remy"",""city"":""Rochefort"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-084/22.01.47"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de l'Abbaye 8""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.1999,""lon"":5.2277}}",1,57,1
-pleasanton_main_street_brewery-pleasanton_pale,0,0,244980711425,"{""name"":""Pleasanton Pale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-brouwerij_kerkom,0,0,244498759682,"{""name"":""Brouwerij Kerkom"",""city"":""Kerkom"",""state"":""Limburg"",""code"":"""",""country"":""Belgium"",""phone"":""32-011-68-20-87"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Naamsesteenweg 469""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7763,""lon"":5.166}}",1,58,1
-flyers_restraunt_and_brewery-peacemaker_porter,0,0,244611022848,"{""name"":""Peacemaker Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter in style, a dark and full bodied ale with hints of roasted barley and flavors of coffee and bitter sweet chocolate on the palate."",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
-schloss_eggenberg-urbock_23,0,0,244999651328,"{""name"":""Urbock 23°"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""Schloss Eggenberg Urbock 23° is one of the strongest beers in the world. We keep the Urbock 23° in our Schloss cellars for 9 months until it is dark gold and strongly matured. Urbock 23° has received the highest acknowledgments and honours at international exhibitions and world evaluations. It is brewed exclusively from natural raw ingredients after the purity requirement of 1516. Schloss Eggenberg Urbock is filled in a 0.33 litre designer bottle embossed with Schloss Eggenberg and in barrels for the export (20 and 30 litre)."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,46,1
-ridgeway_brewing-ipa,0,0,244997226497,"{""name"":""IPA"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
-bear_republic_brewery-xp_pale_ale,0,0,244371161089,"{""name"":""XP Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
-bear_republic_brewery,0,0,244371619842,"{""name"":""Bear Republic Brewery"",""city"":""Healdsburg"",""state"":""California"",""code"":""95448"",""country"":""United States"",""phone"":""1-707-433-2337"",""website"":""http://www.bearrepublic.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""345 Healdsburg Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.6112,""lon"":-122.871}}",1,35,1
-brauerei_und_altbierkche_pinkus_mller-organic_hefewizen,0,0,244489322496,"{""name"":""Organic Hefewizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,37,1
-herkimer_pub_brewery,0,0,244737048578,"{""name"":""Herkimer Pub & Brewery"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55408"",""country"":""United States"",""phone"":""1-612-821-0101"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2922 Lyndale Avenue South""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9491,""lon"":-93.2885}}",1,8,1
-hale_s_ales_3-el_jefe_weizen_ale,0,0,244736458754,"{""name"":""El Jefe Weizen Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
-de_proef_brouwerij-andelot_angelique,0,0,244612399104,"{""name"":""Andelot Angelique"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-crabby_larry_s_brewpub_steak_crab_house-crabby_larry_s_irish_red_ale,0,0,244499283968,"{""name"":""Crabby Larry's Irish Red Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich and smooth on the pallate this ale is a near perfect \""Irish Red\"". A variety of hops, Mt. Hood, Liberty & Fuggles combined with some roasted barley make an agreeable brew."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,59,1
-michigan_brewing-mackinac_pale_ale,0,0,244857962497,"{""name"":""Mackinac Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic American style pale ale. A well balanced, light copper colored, medium bodied ale with a distinctive hop bitterness and aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
-moylan_s_brewery_restaurant-kilt_lifter_scottish_ale,0,0,244876574722,"{""name"":""Kilt Lifter Scottish Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,48,1
-mill_steakhouse,0,0,244857307136,"{""name"":""Mill Steakhouse"",""city"":""Littleton"",""state"":""Colorado"",""code"":""80120"",""country"":""United States"",""phone"":""1-303-798-5280"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5798 South Rapp Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.612,""lon"":-105.019}}",1,0,1
-g_heileman_brewing-special_export,0,0,244630421506,"{""name"":""Special Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""g_heileman_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
-bamberger_mahr_s_bru-hefeweissbier,0,0,244377321474,"{""name"":""Hefeweißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
-brouwerij_strubbe-vlas_kop,0,0,244480868353,"{""name"":""Vlas Kop"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_strubbe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-denver_chophouse_and_brewery-redwing,0,0,244623212545,"{""name"":""Redwing"",""abv"":4.73,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
-isle_of_skye_brewing_company-wee_beast,0,0,244735606784,"{""name"":""Wee Beast"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""isle_of_skye_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,4,1
-yaletown_brewing-downtown_brown,0,0,245747023872,"{""name"":""Downtown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yaletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,22,1
-marshall_brewing_company,0,0,244859666434,"{""name"":""Marshall Brewing Company"",""city"":""Tulsa"",""state"":""Oklahoma"",""code"":""74104"",""country"":""United States"",""phone"":""(918) 292-8781"",""website"":""http://marshallbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""618 S. Wheeling Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":36.152,""lon"":-95.9647}}",1,6,1
-cains-finest_bitter,0,0,244497448964,"{""name"":""Finest Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:09:21"",""description"":""A regular winner of awards for quality and flavour, and winner of the silver medal at the International Brewing Industry Awards 2002, this refreshing yet full-bodied bitter is a favourite with beer drinkers everywhere. The rich flavours of premium malt and goldings hops are unmistakable in this well balanced, traditionally brewed bitter."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,54,1
-privatbrauerei_erdinger_weissbru-erdinger_weizen,0,0,244998012930,"{""name"":""Erdinger Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":""The famous Bavarian specialty\r\n\r\nErdinger Weissbier 'crystal clear' is particularly welcome as a tasty thirst-quencher for hot summer days.\r\n\r\nThis specialty wheat beer gets its 'crystal clear' appearance from a particularly long filtration process, known in the industry as \""fine filtration\"", whereby the beer becomes completely clear.\r\n\r\nThis gives Erdinger Weissbier 'crystal clear' its sparkling and refreshing character - which also makes it the ideal wheat beer for warm summer days.\r\n\r\nBrewed in strict accordance with our own traditional recipe, Erdinger Weissbier 'crystal clear' meets the highest quality standards and satisfies the most sophisticated palate."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
-cervecera_cuauhtmoc_moctezuma-dos_equis_amber_lager,0,0,244480409601,"{""name"":""Dos Equis Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-george_bateman_and_son_ltd-victory_ale,0,0,244613054466,"{""name"":""Victory Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_bateman_and_son_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-engine_house_9-hefeweizen,0,0,244612136961,"{""name"":""Hefeweizen"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,13,1
-midnight_sun_brewing_co-kodiak_brown_nut_brown_ale,0,0,244873428993,"{""name"":""Kodiak Brown Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Rugged yet smooth, Kodiak Brown Ale balances caramel and roasted malts with enticing Northwest hops. Inspired by the adventurous spirit readily found in Alaska, Kodiak Brown Ale invites you to take the road less traveled. Like true Alaskans, we are not afraid of the dark."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
-shipyard_brewing_portland-fuggles_ipa,0,0,245000241154,"{""name"":""Fuggles IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
-boston_beer_company-samuel_adams_utopias_mmiv,0,0,244369653762,"{""name"":""Samuel Adams Utopias MMIV"",""abv"":24.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-egan_brewing-queen_of_clubs_schwarzbier,0,0,244622819329,"{""name"":""Queen of Clubs Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
-wedge_brewery-iron_rail_ipa,0,0,245746892801,"{""name"":""Iron Rail IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wedge_brewery"",""updated"":""2011-05-23 10:39:09"",""description"":""English Style India Pale Ale, Maris Otter 2-row, Canadian Honey Malt and Belgian Crystal.\nCentennial, Kent Golding, and Cascade are added Five times during the process, including Dry Hopping.\n\nAroma: Earthy, Citrusy, and Resinous\nTasting/Flavor: Orangy and Sugary Apricots\nFinish: Malt Sweetness Balanced by Dry Hops"",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,21,1
-warsteiner_brauerei-warsteiner_premium_oktoberfest,0,0,245747089409,"{""name"":""Warsteiner Premium Oktoberfest"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,23,1
-high_falls_brewing,0,0,244737507330,"{""name"":""High Falls Brewing"",""city"":""Rochester"",""state"":""New York"",""code"":""14605"",""country"":""United States"",""phone"":""1-585-263-9446"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""445 St.Paul Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1646,""lon"":-77.6155}}",1,9,1
-diamond_knot_brewery_alehouse-steamer_glide_stout,0,0,244620197888,"{""name"":""Steamer Glide Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,33,1
-pyramid_ales_brewery-hart_espresso_stout,0,0,244998668289,"{""name"":""Hart Espresso Stout"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
-avery_brewing_company-mephistopheles_stout,0,0,244363886595,"{""name"":""Mephistopheles Stout"",""abv"":16.03,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
-schussenrieder_erlebnisbrauerei-pils,0,0,244998471683,"{""name"":""Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-alltech_s_lexington_brewing_company,0,0,244363427840,"{""name"":""Alltech's Lexington Brewing Company"",""city"":""Lexington"",""state"":""Kentucky"",""code"":""40508"",""country"":""United States"",""phone"":""1-859-887-3406"",""website"":""http://www.kentuckyale.com/kentuckyale/Index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Producers of Kentucky Ale brand. Also a very esteemed educational institution, specializing in distilling sciences and fermentation sciences."",""address"":[""401 Cross Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.0501,""lon"":-84.5088}}",1,18,1
-hacker_pschorr_bru-original_oktoberfest,0,0,244745502720,"{""name"":""Original Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hacker_pschorr_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,28,1
-midnight_sun_brewing_co-sloth,0,0,244859207681,"{""name"":""Sloth"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""SLOTH Belgian-style Imperial Stout is deliberately dark as hell. The pour is slow and sluggish. Its head is menacing, becoming torn and tattered Belgian lace on the sides of the glass as you cautiously consume this brew—sip by insidious sip. \r\n\r\nThe aroma is sweet from heavy malt and big alcohol with notes of vanilla, coconut and whiskey from the oak. The depth & breadth of roasted malt flavors loiters on the palate while the robust finish lingers, well, forever. \r\n\r\nSLOTH...Just add couch."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,5,1
-pacific_coast_brewing-gray_whale,0,0,244981432320,"{""name"":""Gray Whale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
-copper_eagle_brewing-guinea_pig_amber_ale,0,0,244497776641,"{""name"":""Guinea Pig Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
-faultline_brewing_1-belgian_tripel,0,0,244628717569,"{""name"":""Belgian Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-dubuque_brewing_and_bottling,0,0,244610564097,"{""name"":""Dubuque Brewing and Bottling"",""city"":""Dubuque"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.5006,""lon"":-90.6646}}",1,10,1
-bavarian_barbarian_brewing_company-square_feet_wheat,0,0,244376862724,"{""name"":""Square Feet Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Square Feet Wheat is loosely based on a Berliner Weisse style of beer from Germany. It has a refreshing, yet slight wheat and malt sweetness that is supported by a distinct hop presence. On hot Summer days, Square Feet Wheat will cool you off. Bring it along to pool parties, picnics and backyard cookouts. Instead of a boring wedge of lemon or orange, try Square Feet Wheat with a splash of raspberry extract or a dash of essence of Woodruff – both a customary addition to Berliner Weisse beers in Berlin.""}",1,49,1
-brouwerij_st_bernardus-biere_blanche,0,0,244478574595,"{""name"":""Bière Blanche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-allguer_brauhaus_ag_kempten_brausttte_leuterschach,0,0,244379615232,"{""name"":""Allguer Brauhaus AG Kempten, Brausttte Leuterschach"",""city"":""Marktoberdorf"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8342-/-9647-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schwendener Strae 18""]}",1,57,1
-port_brewing_company-bombshell_barleywine,0,0,244980776960,"{""name"":""Bombshell Barleywine"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-brouwerij_st_bernardus-pater_6,0,0,244498825216,"{""name"":""Pater 6"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This name became a reference. This beer is mostly pointed out with its product name: “a Paterke”. \r\n\r\nThis “Paterke” is a chestnut coloured dark beer with a high fermentation (6.7 alcohol content) and a full taste."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,58,1
-flying_dog_brewery-k_9_cruiser_winter_ale,0,0,244611022849,"{""name"":""K-9 Cruiser Winter Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The psycho in the pack... K-9 Cruiser is a dark, sweet and malty winter warmer that will captivate any adventurous craft brew drinker. A true Flying Dog original, K-9 Cruiser is the perfect brew to warm you up in those cold winter months."",""style"":""Old Ale"",""category"":""British Ale""}",1,11,1
-sierra_nevada_brewing_co-bigfoot_1997,0,0,244999651329,"{""name"":""Bigfoot 1997"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-rivers_effortless_dining,0,0,244997292032,"{""name"":""Rivers Effortless Dining"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84121"",""country"":""United States"",""phone"":""1-801-733-6600"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.638,""lon"":-111.69}}",1,40,1
-bell_s_brewery_inc-oberon_ale,0,0,244371161090,"{""name"":""Oberon Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""An American wheat ale brewed with Saaz hops. Spicy and fruity, Oberon is the color and scent of a summer afternoon."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
-bell_s_brewery_inc-pale_ale,0,0,244371685376,"{""name"":""Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing, blond colored pale ale. Bell's pale ale is made almost exclusively from pale malt. It expresses a spicy floral hop aroma and taste."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-brauhaus_onuma,0,0,244489322497,"{""name"":""Brauhaus Onuma"",""city"":""Onuma"",""state"":""Hokkaido"",""code"":"""",""country"":""Japan"",""phone"":""81-0138-67-2227"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Onuma""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0646,""lon"":141.347}}",1,37,1
-high_falls_brewing-genesee_cream_ale,0,0,244737114112,"{""name"":""Genesee Cream Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-hannen_brauerei-alt,0,0,244736524288,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hannen_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
-dempsey_s_restaurant_brewery,0,0,244612464640,"{""name"":""Dempsey's Restaurant & Brewery"",""city"":""Petaluma"",""state"":""California"",""code"":""94952"",""country"":""United States"",""phone"":""1-707-765-9694"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""50 East Washington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.2362,""lon"":-122.64}}",1,14,1
-de_dochter_van_de_korenaar-bravoure,0,0,244631339008,"{""name"":""Bravoure"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_dochter_van_de_korenaar"",""updated"":""2010-07-22 20:00:20"",""description"":""copper -coloured complex tasting ale with a soft smokey taste combined with some caramel-malt to give it a long lasting chocolate-like aftertaste""}",1,59,1
-middle_ages_brewing-wailing_wench,0,0,244857962498,"{""name"":""Wailing Wench"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and robust brewed in the style of a American strong ale, full bodied and screaming with hops.""}",1,2,1
-nebraska_brewing_company-cardinal_pale_ale,0,0,244876574723,"{""name"":""Cardinal Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-miller_brewing-red_dog,0,0,244857307137,"{""name"":""Red Dog"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,0,1
-gore_range_brewery,0,0,244630487040,"{""name"":""Gore Range Brewery"",""city"":""Edwards"",""state"":""Colorado"",""code"":""81632"",""country"":""United States"",""phone"":""1-970-926-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""105 Edwards Village Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.6441,""lon"":-106.596}}",1,56,1
-bandana_brewery-saint_peter_red,0,0,244377387008,"{""name"":""Saint Peter Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
-brown_street_brewery-czech_pilsner,0,0,244480933888,"{""name"":""Czech Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-dortmunder_actien_brauerei_dab-hansa_imported_dortmunder,0,0,244623278080,"{""name"":""Hansa Imported Dortmunder"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":""Surviving beer from the Dortmunder Hansa-Brauerei before being acquired by Actien."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-jacob_leinenkugel_brewing_company-leinenkugel_s_sunset_wheat,0,0,244735606785,"{""name"":""Leinenkugel's Sunset Wheat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,4,1
-mia_and_pia_s_pizzeria_and_brewhouse,0,0,244859666435,"{""name"":""Mia and Pia's Pizzeria and Brewhouse"",""city"":""Klamath Falls"",""state"":""Oregon"",""code"":""97603"",""country"":""United States"",""phone"":""1-541-884-4880"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3545 Summers Lane (restaurant)""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.2249,""lon"":-121.782}}",1,6,1
-cleveland_chophouse_and_brewery,0,0,244497448965,"{""name"":""Cleveland ChopHouse and Brewery"",""city"":""Cleveland"",""state"":""Ohio"",""code"":""44113"",""country"":""United States"",""phone"":""1-216-623-0909"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""824 West St.Clair Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.4995,""lon"":-81.6994}}",1,54,1
-privatbrauerei_hofmhl,0,0,244998012931,"{""name"":""Privatbrauerei Hofmhl"",""city"":""Eichsttt"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8421-/-9808-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofmhlstrae 10""]}",1,42,1
-cervecera_jerome,0,0,244480409602,"{""name"":""Cervecera Jerome"",""city"":""Mendoza"",""state"":"""",""code"":"""",""country"":""Argentina"",""phone"":""54-0261-4320449"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mendoza""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-32.8902,""lon"":-68.844}}",1,16,1
-glacial_lakes_brewing,0,0,244613054467,"{""name"":""Glacial Lakes Brewing"",""city"":""New York Mills"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.518,""lon"":-95.3761}}",1,15,1
-ettaler_klosterbetriebe_abteilung_brauerei_destillerie,0,0,244612136962,"{""name"":""Ettaler Klosterbetriebe Abteilung Brauerei & Destillerie"",""city"":""Ettal"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8822-/-74450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kaiser-Ludwig-Platz 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.569,""lon"":11.0942}}",1,13,1
-midnight_sun_brewing_co-obliteration_ii,0,0,244873494528,"{""name"":""Obliteration II"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration II is yet another dynamic Double IPA. Its aroma is intense with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration II finishes with poignant bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,41,1
-skagit_river_brewing-highwater_porter,0,0,245000306688,"{""name"":""Highwater Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
-brasserie_de_l_abbaye_des_rocs-belgian_burgundy_ale,0,0,244369719296,"{""name"":""Belgian Burgundy Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-empyrean_brewing_company-dark_side_vanilla_porter,0,0,244622819330,"{""name"":""Dark Side Vanilla Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-weinkeller_brewery_berwyn-marzen,0,0,245746892802,"{""name"":""Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,21,1
-wild_onion_brewing-paddy_pale_ale,0,0,245747089410,"{""name"":""Paddy Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_onion_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
-holsten_brauerei,0,0,244737572864,"{""name"":""Holsten-Brauerei"",""city"":""Hamburg"",""state"":""Hamburg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)40-/-381010"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Holstenstrae 224""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":53.5621,""lon"":9.9451}}",1,9,1
-dinkelacker_schwaben_bru-sanwald_dunkelweizen,0,0,244620197889,"{""name"":""Sanwald Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dinkelacker_schwaben_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-redhook_ale_brewery-wheat_hook,0,0,244998668290,"{""name"":""Wheat Hook"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-ballast_point_brewing-come_about_imperial_stout,0,0,244363952128,"{""name"":""Come About Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,19,1
-shepherd_neame-bishops_finger_kentish_strong_ale,0,0,244998537216,"{""name"":""Bishops Finger Kentish Strong Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shepherd_neame"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-anchor_brewing-bock,0,0,244363427841,"{""name"":""Bock"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,18,1
-half_moon_bay_brewing-mavericks_amber_ale,0,0,244745502721,"{""name"":""Mavericks Amber Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
-minneapolis_town_hall_brewery-smoked_helles_lager,0,0,244859207682,"{""name"":""Smoked Helles Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This light german style Helles Lager was brewed with a small percentage of beechwood smoked malt. Light and delicate east drinking lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-ph_woods_diner_and_brewery,0,0,244981497856,"{""name"":""PH Woods Diner and Brewery"",""city"":""Moreno Valley"",""state"":""California"",""code"":""92553"",""country"":""United States"",""phone"":""1-951-653-3850"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23060 Alessandro Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.9176,""lon"":-117.26}}",1,3,1
-dick_s_brewing-danger_ale,0,0,244629700608,"{""name"":""Danger Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,55,1
-fifty_fifty_brewing_co-trifecta_belgian_style_tripel,0,0,244628717570,"{""name"":""Trifecta Belgian Style Tripel"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""There are hundreds of Trappist Monasteries in the world, many of them make fruitcake. This beer is not made by Monks nor does it resemble fruitcake. Furthermore, Truckee has no Trappist Monastery and that, my friend, is why we at FiftyFifty bring you Trifecta. This is one of FiftyFifty's seasonal ales, and is a high alcohol Belgian style beer. Brewed with inspiration from Belgian Trappist Ales, Trifecta also includes locally grown Purple Sage Honey. With a complex spiciness tempered by the sweeter notes from the sage honey, flavors of spicy sage, alcohol, and mild malt sweetness are apparent, and sage and clove like aromas predominate. Coming in at over 8%, this beer is deceptively strong."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,52,1
-duclaw-venom,0,0,244610629632,"{""name"":""Venom"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""This American-Style Pale Ale is aggressively hopped giving it a citrusy flavor and aroma. No antidote needed. This beer is dark-golden, medium-bodied and very “hoppy.” It is American-style because American-grown hops are used rather that European."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-bj_s_pizza_grill_and_brewery_jantzen_beach-whiskey_stout,0,0,244376928256,"{""name"":""Whiskey Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_pizza_grill_and_brewery_jantzen_beach"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-brouwerij_sterkens-st_paul_special,0,0,244478640128,"{""name"":""St. Paul Special"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-amherst_brewing_company-lewmeister_oktoberfest,0,0,244379615233,"{""name"":""Lewmeister Oktoberfest"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber, full-bodied lager made in the traditional style with German hops. Brewed in early August and put on tap with a keg of the previous years batch by October of each year. This beer is brewed in memory of \""Lewis\"", the owners beer-drinking long-haired Dachsund, who passed away at 17-1/2 on 8/17/99."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,57,1
-port_brewing_company-z_u_later_doppelbock,0,0,244980776961,"{""name"":""Z-U-Later Doppelbock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,1,1
-brouwerij_sterkens-st_sebastiaan_golden,0,0,244498825217,"{""name"":""St. Sebastiaan Golden"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-flying_fish_brewing_company-imperial_espresso_porter,0,0,244611022850,"{""name"":""Imperial Espresso Porter"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust dark brew has been created using rich Colombian dark roast coffee to celebrate our 10th anniversary in royal fashion. The enticing regal aromas of toffee and licorice lead to the coronation of taste; a palate of malty richness exhibiting chocolate and coffee notes, balanced by the noble and novel Mt. Rainer hop, all topped with a rich creamy crown. This very special offering will warm your soul and lift your spirits. Oh yeah, it also packs a royal kick at 8% alcohol."",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
-sly_fox_brewhouse_and_eatery_royersford-seamus_irish_red,0,0,245117616128,"{""name"":""Seamus Irish Red"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-rogue_ales-artisan_lager,0,0,244997292033,"{""name"":""Artisan Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A vienna style lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
-bellows_brew_crew-pretty_girl_pilsner,0,0,244371161091,"{""name"":""Pretty Girl Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-bierbrouwerij_bavaria-de_horste_vermeer_traditional_dutch_ale,0,0,244371685377,"{""name"":""De Horste Vermeer Traditional Dutch Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-brauhaus_sternen-honey_brown_ale,0,0,244489388032,"{""name"":""Honey Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-hopworks_urban_brewery,0,0,244737114113,"{""name"":""Hopworks Urban Brewery"",""city"":""Portland"",""state"":""Oregon"",""code"":""97202"",""country"":""United States"",""phone"":""(503) 201-8957"",""website"":""http://hopworksbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""HUB is Portland's first Eco-Brewpub to offer all organic handcrafted beers, fresh local ingredients, and a sustainable building with a relaxed and casual atmosphere. Brewmaster Christian Ettinger has spent the past year and half constructing his dream brewpub. HUB incorporates all aspects of sustainability. From composting to rain barrels, and from pervious pavers to hand dryers, we have made every effort to protect our future with a thoughtful alternative. Hopworks has four distinct areas including a family friendly restaurant with play area, a vibrant bicycle bar, banquet mezzanine, and outdoor beer-garden. Our 20 barrel brewery produces 3000 barrels a year and provides our restaurant with ten different HUB organic beers on tap and two cask ales at all times. We have parking for seventy cars, eight motorcycles and up to fifty bikes. Our world-class beer, New York style pizza, and wonderful staff are some of the best you will find anywhere."",""address"":[""2944 SE Powell Blvd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.4969,""lon"":-122.635}}",1,8,1
-harpoon_brewery_windsor-esb,0,0,244736524289,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_windsor"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-denver_chophouse_and_brewery-pilsner,0,0,244612464641,"{""name"":""Pilsner"",""abv"":4.99,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
-denver_chophouse_and_brewery-buffalo_gold,0,0,244631404544,"{""name"":""Buffalo Gold"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-midnight_sun_brewing_co-old_whiskers,0,0,244858028032,"{""name"":""Old Whiskers"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our perennial summer seasonal beer, first brewed in Summer 1995 when we opened. \r\n\r\nAffectionately called \""Spunky and Chunky\"", Old Whiskers Hefeweizen is a traditional Bavarian-style unfiltered wheat beer. Created with equal parts malted wheat and pale two-row malt, Old Whiskers is lightly hopped to style. A unique Bavarian strain of yeast imparts a clove- or banana-like aroma and flavor. (We swear we did not put cloves into the brew. It is the magical powers of The Yeast.) Old Whisker is delicious and refeshing--the perfect summer quencher, served with or without a slice of lemon."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
-new_glarus_brewing_company-tripel,0,0,244876640256,"{""name"":""Tripel"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-mudshark_brewing-upriver_lager,0,0,244857307138,"{""name"":""UpRiver Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Light American Lager, Our Lightest, Lowest Carb. Beer"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,0,1
-gottberg_brew_pub-all_american_gold,0,0,244630487041,"{""name"":""All-American Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-beach_chalet_brewery-endless_summer_cream_ale,0,0,244377387009,"{""name"":""Endless Summer Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-bryggeriet_lfabrikken-porter,0,0,244480933889,"{""name"":""Porter"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bryggeriet_lfabrikken"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
-eder_heylands-schlappeseppl_export,0,0,244623278081,"{""name"":""Schlappeseppl Export"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eder_heylands"",""updated"":""2010-07-22 20:00:20"",""description"":""A classically brewed export beer with a slight aroma of hops.\r\n\r\n\r\nAwarded with the gold medal by\r\nGerman Agriculture Society-DLG\r\n2005, 2006 and 2007\r\nMonde Selection, Brüssel 2003 and 2005\r\n2007 with Grand Gold\r\nand with the silver medal by\r\nWorld Beer Cup, Colorado 2002"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-john_martin_sa,0,0,244735606786,"{""name"":""John Martin sa"",""city"":""Genval"",""state"":"""",""code"":""1332"",""country"":""Belgium"",""phone"":"""",""website"":""http://www.anthonymartin.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rue du cerf""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.7298,""lon"":4.508}}",1,4,1
-midnight_sun_brewing_co-jupiter_belgian_style_champagne_trippel,0,0,244859731968,"{""name"":""Jupiter - Belgian-style \""Champagne\"" Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,6,1
-coast_brewing-ruby_red_lager,0,0,244497514496,"{""name"":""Ruby Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-randy_s_fun_hunters_brewery_restaurant_and_banquet_center-wheat_ale,0,0,244998078464,"{""name"":""Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
-cervejaria_sudbrack-eisenbahn_south_american_pale_ale_s_a_p_a,0,0,244480475136,"{""name"":""Eisenbahn South American Pale Ale (S.A.P.A.)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
-goose_island_beer_company_fulton_street-pils,0,0,244613120000,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-firehouse_brewery_restaurant-stout,0,0,244612202496,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
-millstream_brewing,0,0,244873494529,"{""name"":""Millstream Brewing"",""city"":""Amana"",""state"":""Iowa"",""code"":""52203"",""country"":""United States"",""phone"":""1-319-622-3672"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""835 48th Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.7972,""lon"":-91.8652}}",1,41,1
-south_shore_brewery-cream_ale,0,0,245117943808,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-brewery_de_troch-chapeau_fraises_lambic,0,0,244486832128,"{""name"":""Chapeau Fraises Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,31,1
-engine_house_9,0,0,244622884864,"{""name"":""Engine House #9"",""city"":""Tacoma"",""state"":""Washington"",""code"":""98406"",""country"":""United States"",""phone"":""1-253-272-3435"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""611 North Pine""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.256,""lon"":-122.473}}",1,38,1
-wild_onion_brewing,0,0,245746892803,"{""name"":""Wild Onion Brewing"",""city"":""Lake Barrington"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.2108,""lon"":-88.1652}}",1,21,1
-wychwood_brewery-black_wych_stout,0,0,245747089411,"{""name"":""Black Wych Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,23,1
-hops_grillhouse_brewery_cherry_creek-alligator_ale,0,0,244737572865,"{""name"":""Alligator Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-duneland_brewhouse_pub_and_restaurant-salmon_tail_pale_ale,0,0,244620263424,"{""name"":""Salmon Tail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duneland_brewhouse_pub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-rivers_effortless_dining-porter,0,0,244998733824,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivers_effortless_dining"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
-bandana_brewery-kasota_ipa,0,0,244363952129,"{""name"":""Kasota IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-sierra_nevada_brewing_co-bigfoot,0,0,244998537217,"{""name"":""Bigfoot"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nThis year marks the 25th release of Bigfoot®. Our award-winning barleywine boasts a dense, fruity bouquet, an intense flavor palate and a deep reddish-brown color. Its big maltiness is superbly balanced by a wonderfully bittersweet hoppiness. \r\n\r\n"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,43,1
-anderson_valley_brewing-high_rollers_wheat_beer,0,0,244363427842,"{""name"":""High Rollers Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-hapa_s_brew_haus_and_restaurant-el_nino_pale_ale,0,0,244745502722,"{""name"":""El Niño Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-moon_river_brewing_company,0,0,244859273216,"{""name"":""Moon River Brewing Company"",""city"":""Savannah"",""state"":""Georgia"",""code"":""31401"",""country"":""United States"",""phone"":""912.447.0943"",""website"":""http://www.moonriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Moon River Brewing Company is founded on our obsession with creating the ideal restaurant and brewery experience. Striving for this ideal, we are committed to providing three basic services. We are dedicated, first and foremost, to providing you with a comfortable and relaxing environment with prompt and cheerful service. Secondly, we are committed to serving you a delicious variety of freshly prepared foods. Our kitchen is a boiling pot of diversity, offering a range of dishes from simple comfort food to eclectic gourmet cuisine. Finally, we are undeniably passionate about serving great beer."",""address"":[""21 W. Bay St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.081,""lon"":-81.0915}}",1,5,1
-pivovar_v_hurbanove,0,0,244981497857,"{""name"":""Pivovar v Hurbanove"",""city"":""Hurbanovo"",""state"":"""",""code"":"""",""country"":""Slovakia"",""phone"":""421-35---765-41-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Novozamocka Cesta 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8809,""lon"":18.1972}}",1,3,1
-ej_phair_brewing_company_and_alehouse,0,0,244629766144,"{""name"":""EJ Phair Brewing Company and Alehouse"",""city"":""Concord"",""state"":""California"",""code"":""94520"",""country"":""United States"",""phone"":""1-925-691-4253"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2151 Salvio Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.978,""lon"":-122.034}}",1,55,1
-fish_brewing_company_fish_tail_brewpub-10_squared_10,0,0,244628783104,"{""name"":""10 Squared (10²)"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""The Mighty Fish Brewers first produced Ten Squared Anniversary Ale to celebrate Fish Brewing Company’s tenth anniversary. The ale was so good and the response to it so overwhelmingly positive that it has become the crown jewel of REEL ALEs. Ten different hops: Horizon, Chinook, Columbus, Willamette, Tradition, Northern Brewer, Santiam, Tettnanger, Cascade and Golding, in the order of their use -- give Ten Squared a unique hop character which has to be tasted to be believed. \r\n\r\nEven with 100 IBUs, this brew sports a strong malt backbone. Two-row Pale, Caramel 40, Caramel 75, Special B and Aromatic malts impart remarkable balance for such a hop monster. This is smooth ale with surprising similarities to ten year old malt whiskey. Produced for the holidays, 10 102 Anniversary Ale is usually available into late spring."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
-f_x_matt_brewing-saranac_imperial_stout,0,0,244610695168,"{""name"":""Saranac Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Imperial Stout is part of our \""High Peaks Series,\"" a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial Stout is brewed with 11 malts to balance a deliciouse chocolate and coffee roasted flavor with a spicy herbal character of the generous kettle and dry hops."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,10,1
-bj_s_pizza_grill_and_brewery_jantzen_beach,0,0,244376928257,"{""name"":""BJ's Pizza, Grill, and Brewery - Jantzen Beach"",""city"":""Portland"",""state"":""Oregon"",""code"":""97217"",""country"":""United States"",""phone"":""1-503-289-5566"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""12105 North Center Avenue""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5235,""lon"":-122.676}}",1,49,1
-bull_bush_pub_brewery,0,0,244478640129,"{""name"":""Bull & Bush Pub & Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80246"",""country"":""United States"",""phone"":""1-303-759-0333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4700 Cherry Creek Drive South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.705,""lon"":-104.936}}",1,12,1
-anheuser_busch-bud_light_lime,0,0,244379680768,"{""name"":""Bud Light Lime"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Exactly what it says, Bud Light and Lime. Brewed in Georgia."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,57,1
-prescott_brewing_company-ponderosa_ipa,0,0,244980776962,"{""name"":""Ponderosa IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
-calhoun_s_microbrewery-cherokee_red_ale,0,0,244498825218,"{""name"":""Cherokee Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""calhoun_s_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-four_peaks_brewing-kilt_lifter_scottish_style_ale,0,0,244611088384,"{""name"":""Kilt Lifter Scottish-Style Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our award-winning Flagship ale is now in bottles!! This is an ale made in the tradition of the great strong ales of Scotland. Amber colored, malty sweet with underlying note of smokiness. \r\n\r\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,11,1
-sly_fox_brewhouse_and_eatery_royersford,0,0,245117681664,"{""name"":""Sly Fox Brewhouse and Eatery - Royersford"",""city"":""Royersford"",""state"":""Pennsylvania"",""code"":""19468"",""country"":""United States"",""phone"":""1-610-948-8088"",""website"":""http://www.slyfoxbeer.com/index1.asp"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A full production brewery and accompanying restaurant opened in 2004 by the owners of Sly Fox Brewhouse & Eatery in nearby Phoenixville. The 20bbl brewhouse packages a wide range of beers in 12oz cans, 22oz bottles and 750ml bottles. Pikeland Pils, a multiple GABF Gold Medal Winner, and O'Reilly's Stout, a nitro-poured, draught-only beer named after brewer Brian O'Reilly's grandfather are among its most popular beers, on and off premises, as are such Belgian-style delights as Incubus Tripel, Ichor Quadrupel, Saison Vos & Black Raspberry Reserve. Sly Fox is also noted for its Bock Beers (see listing for the Phoenixville pub for more details) and annual Christmas Ale."",""address"":[""312 North Lewis Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1943,""lon"":-75.534}}",1,46,1
-rogue_ales-chocolate_stout,0,0,244997292034,"{""name"":""Chocolate Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The recipe for Rogue Chocolate Stout was created several years ago for export to Japan. The exported twelve ounce Chocolate Bear Beer bottle label is in Kanji and features a teddy bear with a pink heart on his belly. Chocolate Stout was released for Valentines Day in 2001 in a twenty-two ounce bottle for the US market. The label features a Roguester (Sebbie Buhler) on the label. The bottled of Chocolate Stout is available on a very limited basis in the US, so get it while you can! \r\n\r\nHedonistic! Ebony in color with a rich creamy head. The mellow flavor of oats, chocolate malts, and real chocolate are balanced perfectly with the right amount of hops for a bittersweet finish. Chocolate Stout is brewed with 10 ingredients: Northwest Harrington and Klages, Crystal 135-165 and Beeston Chocolate Malts, Cascade Hops, Rolled Oats and Roasted Barley, Natural Chocolate Flavor, Free Range Coastal Waters and PacMan Yeast. Chocolate Stout is available year-round only in the classic 22-ounce bottle and on draft."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
-big_river_brewing,0,0,244371226624,"{""name"":""Big River Brewing"",""city"":""Richmond"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-271-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""180 - 14200 Entertainment Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.1344,""lon"":-123.065}}",1,34,1
-big_sky_brewing-trout_slayer,0,0,244371750912,"{""name"":""Trout Slayer"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Trout Slayer is a filtered wheat ale, fermented at cool temperatures, making it a smooth drinkable session beer. Brewed with Palisade, Glacier, and Mt. Hood hops, this straw colored beer is sure to please any craft beer drinker. IBU 35 SRM 5 ABV 4.7%"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,35,1
-brewery_creek_brewing-dark_mild,0,0,244489388033,"{""name"":""Dark Mild"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""To quote Dr. John Harrison, a great influence on my brewing, \""Mild ale is the only beer with an uninterrupted history from medieval times to the present day.\"" The \""mild\"" means low hop bitterness, \""...which is the only essential feature of a mild ale.\"" They can be light or dark in color, high or low in alcohol, dry or sweet. This is difficult for modern style wiennies to grasp. How can one style be so many things? How can I judge it good or bad?. The current Brewery Creek Dark Mild is medium brown, soft hops and about 3.5% abv. It could be a bit more estery. It is a lovely style."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,37,1
-iron_city_brewing_co-iron_city,0,0,244737179648,"{""name"":""Iron City"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Iron City has been the ‘Burgh’s signature beer since 1861. This premium lager has become a proud tradition of the city and its people. Just try to imagine a Pittsburgh football, baseball or hockey game without an ice cold Iron.\r\n\r\nWe still brew Iron City fresh daily – but now, instead of delivering it to Pittsburgh neighborhoods in horse-drawn buggies, we deliver it to your favorite hangouts. You can get an Iron at national restaurant chains, upscale eateries, and – of course – your favorite local bar. You can also find it at more than 330 regional beer distributors. Because Iron City is brewed locally, it goes from the brewery to you within a matter of days. You won’t find a fresher beer anywhere in Pittsburgh!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-heller_bru_trum-aecht_schlenkerla_rauchbier_urbock,0,0,244736524290,"{""name"":""Aecht Schlenkerla Rauchbier Urbock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":""A smoked bock beer for Bamberg's strong beer season (October through December). Matured for months in ancient rock-cellars underneath Bamberg and tapped freshly from the oakwood cask. Similar to, but much bigger than the classic Maerzen style."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,7,1
-devil_s_canyon,0,0,244612530176,"{""name"":""Devil's Canyon"",""city"":""Belmont"",""state"":""CA"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-07-28 19:03:35"",""description"":"""",""address"":[]}",1,14,1
-denver_chophouse_and_brewery-wild_turkey_bourbon_stout,0,0,244631404545,"{""name"":""Wild Turkey Bourbon Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-miller_brewing-miller_chill,0,0,244858028033,"{""name"":""Miller Chill"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Launched in 2007, Miller Chill is the only light beer brewed with a hint of lime and a pinch of salt to provide a truly refreshing beer experience. Through all of our marketing efforts, beer drinkers will see that Miller Chill is a celebration and fusion of the best of two cultures, great light beer from America and the chelada style from Mexico. It's the new alternative in mainstream low-cal beers ... one that provides a crisper, smoother, more refreshing beer experience."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,2,1
-niagara_falls_brewing-weisse_beer,0,0,244876640257,"{""name"":""Weisse Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-namibia_breweries,0,0,244857307139,"{""name"":""Namibia Breweries"",""city"":""Windhoek"",""state"":"""",""code"":"""",""country"":""Namibia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 206""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-22.5589,""lon"":17.0825}}",1,0,1
-gray_brewing-witbier,0,0,244756643840,"{""name"":""Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-bethlehem_brew_works-ch_47_pale_ale,0,0,244377387010,"{""name"":""CH-47 Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bethlehem_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""This light copper, dry finishing American Pale Ale is an excellent addition to the Brew Works fleet of pale ales. A hefty sling load weight of Chinook hops gives this beer its distinctive bite. Chinook and Amarillo hops contribute to its almost citrus aroma. A hopheads delight!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-cervecera_cuauhtmoc_moctezuma-bohemia_clasica,0,0,244480933890,"{""name"":""Bohemia Clásica"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
-egan_brewing-blonde_ale,0,0,244623278082,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,39,1
-jolly_pumpkin_artisan_ales-weizen_bam_biere,0,0,244735672320,"{""name"":""Weizen Bam Bière"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Ruddy golden, with yeast driven esters of banana, spicy clove, and nutmeg all wrapped up with a generous dose of rapscillion delight."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,4,1
-midnight_sun_brewing_co-oosik_amber_ale,0,0,244859731969,"{""name"":""Oosik Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Oosik Amber Ale is a true German-style altbier, brewed with pale, Munich and crystal malts. Deep amber with copper highlights, Oosik sports a toasted and caramel malt profile, balanced by traditional noble hops. A special yeast strain ferments this ale at cooler lager temperatures, giving it a smooth malt character and a clean finish. \r\n\r\nWant to hang—so to speak—for a while? Oosik Amber Ale gives you hang time. Great flavor, big mouthfeel, satisfying finish…all in a session-worthy beer. Compare it to other ambers—Oosik rules. Look for our 20-inch Oosik tap in better beer bars throughout AK. \r\n\r\nYou can't just have a little Oosik. \r\n\r\nBUY the Oosik \""Love is Hard\"" tee - men's and women's styles available.\r\n\r\nAvailability:\r\nAK - draft (year-round)"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
-coast_range_brewing-california_blonde_ale,0,0,244497514497,"{""name"":""California Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-river_west_brewing-spiced_porter,0,0,244998078465,"{""name"":""Spiced Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-cervezas_alhambra,0,0,244480475137,"{""name"":""Cervezas Alhambra"",""city"":""Granada"",""state"":"""",""code"":"""",""country"":""Spain"",""phone"":""34-958817205"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Avenida de Murcia, 1""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":37.1875,""lon"":-3.6018}}",1,16,1
-grand_teton_brewing_1,0,0,244739997696,"{""name"":""Grand Teton Brewing #1"",""city"":""Wilson"",""state"":""Wyoming"",""code"":""83014"",""country"":""United States"",""phone"":""1-307-733-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1295 North West Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.4988,""lon"":-110.877}}",1,15,1
-fish_brewing_company_fish_tail_brewpub,0,0,244612202497,"{""name"":""Fish Brewing Company & Fish Tail Brewpub"",""city"":""Olympia"",""state"":""Washington"",""code"":""98501"",""country"":""United States"",""phone"":""1-360-943-3650"",""website"":""http://www.fishbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""From our home in beautiful Olympia, Washington, Fish Brewing Company has been hand-crafting ales of Northwest proportions since 1993. Then, using a system cobbled from brewing and dairy equipment, we brewed for our neighbors up and down Puget Sound. Growing steadily since, Fish is now an award-winning craft brewer with distribution throughout the Pacific Northwest and beyond."",""address"":[""515 Jefferson Street SE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.0437,""lon"":-122.897}}",1,13,1
-minhas_craft_brewery-berghoff_oktoberfest_beer,0,0,244873494530,"{""name"":""Berghoff Oktoberfest Beer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,41,1
-south_shore_brewery-pale_ale,0,0,245118009344,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
-brewery_vivant,0,0,244486897664,"{""name"":""Brewery Vivant"",""city"":""Grand Rapids"",""state"":""MI"",""code"":""49506"",""country"":""United States"",""phone"":""616 719 1604"",""website"":""http://breweryvivant.com"",""type"":""brewery"",""updated"":""2011-06-22 12:19:30"",""description"":""Brewery Vivant is the realization of years of dreaming and much discussion of what a great brewery can be. What makes our brewery different from the rest is the way we approach our craft and operate our business. The core of Brewery Vivant can be found at the crossroads of three passions:\n\n 1. Our love of the tradition and artistic approach of the Belgian & French styles of beers\n 2. Devotion to using local sources for ingredients and running our business according to the three pillars of sustainability; Environmental Integrity, Social Equity, and Economic Viability\n 3. Sharing the experience of how beer and food can be paired to uplift the enjoyment of both\n"",""address"":[""925 Cherry Street SE""]}",1,31,1
-foster_s_australia_ltd,0,0,244622884865,"{""name"":""Foster's Australia Ltd."",""city"":"""",""state"":"""",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":""http://www.fostersbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Foster's Lager is the largest selling Australian beer brand in the world with more than 100 million cases of Foster's consumed worldwide every year. Brewed in nine countries and over 20 plants, Foster's Lager is widely sold and distributed throughout Australia, Asia, the Pacific, Europe, the Americas and the Middle East. It is the world's third most widely distributed brand, available in more than 150 countries. Foster's Lager is the international flagship brand for the Foster's group. -http://www.fosters.com.au/enjoy/beer/fosters_the_brand.htm"",""address"":[]}",1,38,1
-yellowstone_valley_brewing-grizzly_wulff_wheat,0,0,245746958336,"{""name"":""Grizzly Wulff Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yellowstone_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
-illinois_brewing-porter_from_hell,0,0,244737572866,"{""name"":""Porter From Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""illinois_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
-eel_river_brewing-certified_organic_extra_pale_ale,0,0,244620263425,"{""name"":""Certified Organic Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-rivertowne_pour_house-leroy_s_brown_ale,0,0,244998733825,"{""name"":""LeRoy's Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in honor of Andrew’s Grandfather LeRoy, this big bad nut brown ale has a fantastic malt character made up of caramel and chocolate flavors. One taste and you will see why this is the baddest beer in the whole damn town!!!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
-barley_creek_brewing-mountaineer_maibock,0,0,244363952130,"{""name"":""Mountaineer Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A German style lager. Light in color, with medium to full body and mild hop bitterness."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,19,1
-sierra_nevada_brewing_co-bigfoot_2001,0,0,244998537218,"{""name"":""Bigfoot 2001"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-anheuser_busch-spring_heat_spiced_wheat,0,0,244363427843,"{""name"":""Spring Heat Spiced Wheat"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-heineken_international-dark_lager,0,0,244745568256,"{""name"":""Dark Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-mussel_inn-strong_ox,0,0,244859273217,"{""name"":""Strong Ox"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mussel_inn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-portsmouth_brewery-bottle_rocket_ipa,0,0,244981563392,"{""name"":""Bottle Rocket IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An explosion of hops dominate this deep golden ale. Brewed with four varieties of hops & dry hopped with three other hops, the flavor is powerful. Not a harsh bitterness, but a full hop flavor."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
-elliott_bay_brewery_and_pub-alembic_pale,0,0,244629831680,"{""name"":""Alembic Pale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-fitzpatrick_s_brewing-prairie_thunder_pale_ale,0,0,244628783105,"{""name"":""Prairie Thunder Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
-faultline_brewing_2-hefe_weizen,0,0,244610695169,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,10,1
-blue_point_brewing-fresh_hops_pale_ale,0,0,244376928258,"{""name"":""Fresh Hops Pale Ale"",""abv"":5.0,""ibu"":36.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-12-20 15:32:12"",""description"":""Blue Point Brewing's Pale Ale has a light golden color but explodes with a rich full-flavor. This refreshing ale is top-fermented and hopped at four different stages of the brewing process. English pale malt lends complexity to this brew. Small amounts of Wheat and Carapils round out the malt bill. Brewed to satisfy the hop lover, this pale ale has an immediate floral-citrus flavor that pervades the overall character of this hoppy, quenching microbrew."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-captain_lawrence_brewing_company-captin_lawrence_smoked_porter,0,0,244478705664,"{""name"":""Captin Lawrence Smoked Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A complex beer, with layers of flavors unfolding as this beer slides down your throat. Before the introduction of indirect-fired malt kilns, all beers had a smoky flavor. Today only a handful of brewers produce beer reminiscent of those of the past. We use imported German smoked malt to add depth and complexity to our Smoked Porter."",""style"":""Porter"",""category"":""Irish Ale""}",1,12,1
-anheuser_busch-budweiser_select,0,0,244379680769,"{""name"":""Budweiser Select"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Bud Select is a new beer offering a bold taste with a full and distinct flavor that finishes clean. Budweiser Select was developed using two-row and roasted specialty malts for a rich color. It offers excellent drinkability and a taste that does not linger."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,57,1
-pugsley_brewing_llc,0,0,244980842496,"{""name"":""Pugsley Brewing LLC"",""city"":""Portland"",""state"":""Maine"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.6615,""lon"":-70.2553}}",1,1,1
-cambridge_brewing,0,0,244498825219,"{""name"":""Cambridge Brewing"",""city"":""Cambridge"",""state"":""Massachusetts"",""code"":""2139"",""country"":""United States"",""phone"":""1-617-494-1994"",""website"":""http://www.cambrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Kendall Square #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3664,""lon"":-71.0911}}",1,58,1
-fratellos_restaurant_and_brewery-trolleycar_stout,0,0,244611153920,"{""name"":""Trolleycar Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
-smuttynose_brewing_co-robust_porter,0,0,245117681665,"{""name"":""Robust Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This hearty, mahogany colored ale is brewed to evoke the dark, full-bodied ales that were a favorite of dockworkers and warehousemen (hence the name “Porter”) in 19th century London. It is a good bet that when Dickens’ Mr. Pickwick sat down for a pint, we would have been drinking an ale much like our Robust Porter.This is a smooth and very drinkable beer, characterized by its well-balanced malt and hops, plus subtle notes of coffee and chocolate."",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
-saint_louis_brewery_schlafy_tap_room-dry_hopped_apa,0,0,244997357568,"{""name"":""Dry-Hopped APA"",""abv"":5.9,""ibu"":50.0,""srm"":10.6,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2011-02-07 14:26:33"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-blackstone_restaurant_brewery-nut_brown_ale,0,0,244371226625,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blackstone_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
-bison_brewing-organic_gingerbread_ale,0,0,244371750913,"{""name"":""Organic Gingerbread Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-brimstone_brewing-big_ale,0,0,244489388034,"{""name"":""Big Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brimstone_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,37,1
-iron_hill_brewery_wilmingon-irish_red_ale,0,0,244737179649,"{""name"":""Irish Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-hereford_hops_restaurant_and_brewpub_1-wolverine_wheat_beer,0,0,244736589824,"{""name"":""Wolverine Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
-diamond_knot_brewery_alehouse-ipa,0,0,244612530177,"{""name"":""IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""OUR FLAGSHIP BEER, the one for which we're known throughout the Puget Sound. Columbus hops impart intense bitterness with flavors of grapefruit and a hint of cedar."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
-deschutes_brewery-black_butte_porter,0,0,244631470080,"{""name"":""Black Butte Porter"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Towering high above Central Oregon, jetting into clear blue skies, Black Butte can be seen for miles. From its base flows the legendary Metolius River--with its source hidden deep beneath ancient lava flows. \r\n\r\nBlack Butte Porter, crafted from chocolate and crystal malts, is Deschutes Brewery’s flagship brand. With a rich and distinctive flavor, this porter has enjoyed a loyal and passionate following since its first pint in 1988."",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
-moab_brewery-dead_horse_ale,0,0,244858093568,"{""name"":""Dead Horse Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moab_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-northwoods_brewpub_grill-birch_wood_ale,0,0,244876640258,"{""name"":""Birch Wood Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-new_belgium_brewing-la_folie,0,0,244857372672,"{""name"":""La Folie"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""La Folie Wood-Aged Biere, is our original wood-conditioned beer, resting in French Oak barrels between one and three years before being bottled. . Peter Bouckaert, came to us from Rodenbach – home of the fabled sour red. Our La Folie emulates the spontaneous fermentation beers of Peter’s beloved Flanders with sour apple notes, a dry effervescence, and earthy undertones. New in 2010, we'll do a single bottling of La Folie for the year. Collect the 22oz unique to 2010 designed bottle and start a yearly wood-aged collection of goodness.""}",1,0,1
-great_divide_brewing-oak_aged_yeti_imperial_stout,0,0,244756709376,"{""name"":""Oak Aged Yeti Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Crack open Yeti Imperial Stout’s sophisticated sibling – Oak Aged Yeti Imperial Stout. Although these beers come from the same clan, they have entirely different personalities. Aging on a blend of French and toasted oak chips infuses a subtle oak and vanilla character into Yeti’s already intense chocolate, roasted coffee malt flavor and hugely assertive hop profile. Who says you can’t tame a Yeti?"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,56,1
-bierbrouwerij_de_koningshoeven-dubbel,0,0,244377452544,"{""name"":""Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-chelsea_brewing_company-sunset_red_ale,0,0,244480999424,"{""name"":""Sunset Red Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-elysian_brewery_public_house-perseus_porter,0,0,244623278083,"{""name"":""Perseus Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
-keg_microbrewery_restaurant,0,0,244735672321,"{""name"":""Keg Microbrewery & Restaurant"",""city"":""Stevens Point"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.5236,""lon"":-89.5746}}",1,4,1
-montana_brewing-sandbagger_gold,0,0,244859797504,"{""name"":""Sandbagger Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-coeur_d_alene_brewing_company,0,0,244497514498,"{""name"":""Coeur d'Alene Brewing Company"",""city"":""Coeur d'Alene"",""state"":""Idaho"",""code"":""83814"",""country"":""United States"",""phone"":""(208) 664-2739"",""website"":""http://www.cdabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""209 Lakeside Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6745,""lon"":-116.784}}",1,54,1
-sabmiller_india-foster_s_lager_beer,0,0,244998078466,"{""name"":""Foster's Lager Beer"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Foster's® Lager is a uniquely Australian beer, brewed with the finest sun-dried malted barley, the purest water, and Foster's® own specially bred 'Pride of Ringwood' hops imported directly from Australia to give the beer an authentic flavor. Foster's® Lager Beer has always been at the forefront of brewing technology and the Foster's® Lager brewed today is the result of over a century of attention of the brewing art. Quality has been the strength of Foster's® since its earliest days and remains a paramount concern at every stage of the beer's journey from brewery to consumer. Foster's® crisp, clean flavour won it immediate international acclaim when it was first brewed in Melbourne in 1888. Today, more than one hundred years later, it is still recognized as one of the world's best beers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
-cherryland_brewing-raspberry_beer,0,0,244480475138,"{""name"":""Raspberry Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,16,1
-hambleton_ales-toleration,0,0,244740063232,"{""name"":""Toleration"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hambleton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-frederic_robinson_ltd-old_tom_barley_wine,0,0,244612268032,"{""name"":""Old Tom Barley Wine"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederic_robinson_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-minhas_craft_brewery-dempsey_stout,0,0,244873494531,"{""name"":""Dempsey Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
-spanish_peaks_brewing,0,0,245118074880,"{""name"":""Spanish Peaks Brewing"",""city"":""Polson"",""state"":""Montana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.blackdogales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Polson MT 59860""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6959,""lon"":-114.176}}",1,47,1
-brouwerij_bavik_de_brabandere-petrus_blond_ale,0,0,244486963200,"{""name"":""Petrus Blond Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-founders_brewing-founders_devil_dancer,0,0,244622884866,"{""name"":""Founders Devil Dancer"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Founders most complex, most innovative, most feared and yet most revered ale produced. Massive in complexity the huge malt character balances the insane amount of alpha's used to create this monster. More IBU's than any brewery has documented, more than you would believe and dry-hopped for twenty-six days straight with a combination of 10 hop varieties. Dangerously drinkable and deliciously evil. We dare you to dance with the Devil."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,38,1
-independence_brew_pub,0,0,244737572867,"{""name"":""Independence Brew Pub"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19107"",""country"":""United States"",""phone"":""1-215-922-4292"",""website"":""http://www.independencebrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1150 Filbert Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9526,""lon"":-75.1594}}",1,9,1
-elliott_bay_brewery_and_pub-dry_hopped_ipa,0,0,244620263426,"{""name"":""Dry Hopped IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
-rock_bottom_restaurant_brewery_chicago-goat_toppler_mai_bock,0,0,244998733826,"{""name"":""Goat Toppler Mai Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_chicago"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,44,1
-barrel_house_brewing_co,0,0,244364017664,"{""name"":""Barrel House Brewing Co."",""city"":""Cincinnati"",""state"":""Ohio"",""code"":""45214"",""country"":""United States"",""phone"":""513-421-2337"",""website"":""http://www.barrelhouse.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established as a brewpub in 1995 in the historic Over-The-Rhine neighborhood of Cincinnati, The BarrelHouse Brewing Company has since transitioned into a regionally distributed microbrewery offering an impressive selection of both innovative styles of ales and traditional lagers. Brewed and bottled in small batches with only honest ingredients, BarrelHouse beers are extremely fresh and exceptionally flavorful. Thank you for embracing our fiercely independent vision of a hand-crafted future for all! Operating as a brewpub from August 1995 until February 2005, The BarrelHouse Brewing Company recently relocated to our current location in the West End of downtown Cincinnati. We officially reopened with a completed expansion plan in April 2005. Our expansion included almost doubling our fermentation capacity as well as the addition of a brand new bottling line. Our first order of bottled beer hit Ohio area stores in June 2006 and we have subsequently begun to enter markets that were previously unavailable. The BarrelHouse Brewing Company brews on a 15 BBL brewhouse manufactured by Century. One BBL equals 31 gallons therefore; our beers are hand-crafted in 465 gallon batches. Our ales are ready after approximately fourteen days while our lagers are conditioned for upwards of six weeks. By brewing in small batches, our brewers are able to achieve an optimal level of quality control while creating a consistently flavorful product. While our brewing process is quite labor intensive, we believe that hand-crafting our beers sets us apart from the majority of breweries in the U.S. today. Our dedication is unparalleled and quite evident in the final packaged product."",""address"":[""544B W. Liberty St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1136,""lon"":-84.526}}",1,19,1
-ska_brewing_company,0,0,244998602752,"{""name"":""Ska Brewing Company"",""city"":""Durango"",""state"":""Colorado"",""code"":""81301"",""country"":""United States"",""phone"":""970.247.5792"",""website"":""http://www.skabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""545 Turner Drive""]}",1,43,1
-anheuser_busch-wild_blue_blueberry_lager,0,0,244363493376,"{""name"":""Wild Blue Blueberry Lager"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Wild Blue is brewed with a blend of German hops from the Hallertau region in Bavaria and classic Aroma hops from the Willamette Valley in the Pacific Northwest. A combination of two- and six-row barley malt was also chosen specifically for this recipe. Beer lovers will also appreciate this specialty fruit-infused lager's striking burgundy color, ripe blueberry aroma and its ability to stand up to the strongest of foods."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,18,1
-high_falls_brewing-dundee_pale_bock_lager,0,0,244745568257,"{""name"":""Dundee Pale Bock Lager"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Certain things seem interminable. The line at the DMV. The commencement address. Winter. \r\n\r\nBut take heart. Even the longest, darkest winter gives way to spring and a new sense of optimism that the best is just ahead. That thought—and an itchy wool robe—sustained the monks through times of fasting. Their reward? A bock beer with the power to rejuvenate the body and the soul. That, and the opportunity to exchange the wool robe for a nice burlap one. \r\n\r\nSo when you’re stuck in the middle of that seemingly endless glass of mediocre beer, be optimistic. A Dundee Pale Bock awaits.\r\n\r\nA traditional German Maibock with a deep, golden color, malty-sweet aroma, and clean finish from Magnum and Czech Saaz hops."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,28,1
-new_century_brewing_company-edison_light_beer,0,0,244859338752,"{""name"":""Edison Light Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_century_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-privat_brauerei_schmucker_ober_mossau_kg-schwarz_bier,0,0,244981563393,"{""name"":""Schwarz Bier"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privat_brauerei_schmucker_ober_mossau_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,3,1
-elliott_bay_brewery_and_pub-luna_weizen,0,0,244629831681,"{""name"":""Luna Weizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-full_sail_brewing_1-amber_ale,0,0,244628848640,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,52,1
-fish_brewing_company_fish_tail_brewpub-thornton_creel_ale,0,0,244610695170,"{""name"":""Thornton Creel Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-blue_point_brewing-hoptical_illusion,0,0,244376993792,"{""name"":""Hoptical Illusion"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
-carlow_brewing_company,0,0,244478705665,"{""name"":""Carlow Brewing Company"",""city"":""Carlow"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353 (0)59 9134356"",""website"":""http://www.carlowbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Carlow Brewing Company is a small Irish Brewery established in 1998. Carlow, a small town located in the Barrow Valley Region, the traditional malt and hop producing region in Ireland, once boasted a number of breweries, but the practice had been discontinued for over 100 years until revived in 1998 by Carlow Brewing Company. "",""address"":[""The Goods Store, Station Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.7196,""lon"":-6.846}}",1,12,1
-appleton_brewing-adler_brau_1848_lager,0,0,244379680770,"{""name"":""Adler Bräu 1848 Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-pumphouse_pizza_and_brewing-t_p_h_porter,0,0,244980842497,"{""name"":""T.P.H. Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pumphouse_pizza_and_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-capital_brewery-autumnal_fire,0,0,244498890752,"{""name"":""Autumnal Fire"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
-front_street_brewery-raging_river_ale,0,0,244611153921,"{""name"":""Raging River Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-southern_tier_brewing_co-raspberry_porter,0,0,245117747200,"{""name"":""Raspberry Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
-samuel_smith_old_brewery_tadcaster-nut_brown_ale,0,0,244997357569,"{""name"":""Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""Often called “mild” if it is on draft, brown ale is a walnut-colored specialty of the North of England. A festive-occasion beer, brown ale is one of the oldest English brewing styles, mentioned in literature in the 16th century. Beers brewed at the old brewery have a round, nutty flavor because of the Yorkshire square system of fermentation."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
-boston_beer_company-samuel_adams_golden_pilsner,0,0,244371292160,"{""name"":""Samuel Adams Golden Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-blicks_brewing-blind_side_pale_ale,0,0,244371816448,"{""name"":""Blind Side Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blicks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-brouwerij_abdij_saint_sixtus,0,0,244489453568,"{""name"":""Brouwerij Abdij Saint Sixtus"",""city"":""Westvleteren"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-057-40-10-57"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Donkerstraat 12""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8961,""lon"":2.7222}}",1,37,1
-james_page_brewing-voyageur_extra_pale_ale,0,0,244737179650,"{""name"":""Voyageur Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""james_page_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
-hereford_hops_steakhouse_and_brewpub_3-india_pale_ale,0,0,244736589825,"{""name"":""India Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-dixon_s_downtown_grill,0,0,244612530178,"{""name"":""Dixon's Downtown Grill"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-573-6100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7541,""lon"":-105.0}}",1,14,1
-deschutes_brewery-mirrorpond_pale_ale,0,0,244631470081,"{""name"":""Mirrorpond Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mirror Pond is just a short walk from the Deschutes Brewery & Public House in downtown Bend and reflects the Three Sisters Mountains. This scenic spot alongside the Deschutes River is the locals’ choice for summer festivals and concerts."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-moosejaw_pizza_dells_brewing_company-pilsner,0,0,244858093569,"{""name"":""Pilsner"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-o_grady_s_brewery_and_pub_1-prohibition_smokehouse_porter,0,0,244876705792,"{""name"":""Prohibition Smokehouse Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-new_jersey_beer_company-hudson_pale_ale,0,0,244857372673,"{""name"":""Hudson Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_jersey_beer_company"",""updated"":""2010-11-17 14:13:17"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,0,1
-great_lakes_brewing-holy_moses,0,0,244756774912,"{""name"":""Holy Moses"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Wit Ale spiced with orange peel, chamomile and coriander."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,56,1
-big_rock_brewery-cold_cock_porter_discontinued,0,0,244377452545,"{""name"":""Cold Cock Porter (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
-cooper_s_cave_ale_company-sagamore_stout,0,0,244480999425,"{""name"":""Sagamore Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sagamore Stout is a light, dry Irish Draught Stout. It is not only named for the street on which our brewery is located but also for the \""Sagamore\"" of the Mohicans, the Chief Chingachgook. Best quaffed using a wide mouthed, full blown English Pint."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
-f_x_matt_brewing-saranac_rachbier,0,0,244623343616,"{""name"":""Saranac Rachbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty German style lager is brewed with Bamberg smoked malt using only the best German hops and traditional lager yeast. Look for a smooth malty flavor with a hint of smoke in the finish.""}",1,39,1
-kostritzer_schwarzbierbrauerei-maibock,0,0,244735672322,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kostritzer_schwarzbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,4,1
-new_glarus_brewing_company-apple_ale,0,0,244859797505,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,6,1
-commonwealth_brewing_1-classic_stout,0,0,244497580032,"{""name"":""Classic Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
-samuel_smith_old_brewery_tadcaster-imperial_stout,0,0,244998144000,"{""name"":""Imperial Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
-cleveland_chophouse_and_brewery-kolsch,0,0,244480540672,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cleveland_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-hampshire_brewery-pride_of_romsey_ipa,0,0,244740063233,"{""name"":""Pride of Romsey IPA"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hampshire_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-furstlich_furstenbergische_brauerei-export,0,0,244612268033,"{""name"":""Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""furstlich_furstenbergische_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-mishawaka_brewing-indiana_pale_ale,0,0,244873494532,"{""name"":""INDIAna Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-st_stan_s_brewing_co-vhb,0,0,245118074881,"{""name"":""VHB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_stan_s_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
-brouwerij_de_ranke-kriek,0,0,244487028736,"{""name"":""Kriek"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-four_peaks_brewing-hop_knot_ipa,0,0,244622950400,"{""name"":""Hop Knot IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Hop Knot IPA is made only from American malt and lots of American hops, which produce a big, broad-shouldered, hoppy beer backed up by a character as warm as, well, Mom and apple pie… \r\n\r\nHop Knot IPA get its peculiar name from the weaving of four different hops added at four separate times during the brewing process. Including our cavernous hop-back, which gets so stuffed with whole leaf hops that we feel genuine guilt for its excess. Hop Knot is an ale that is to be enjoyed with friends, spicy food or any time you need a good hop fix without the harsh bitterness. We hope you enjoy this pioneering beer made in the bold spirit of Americans everywhere. \r\n\r\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-industrias_la_constancia_ilc-pilsner_of_el_salvador,0,0,244737638400,"{""name"":""Pilsner of El Salvador"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
-empyrean_brewing_company-festive_ale_2000,0,0,244620394496,"{""name"":""Festive Ale 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-sabmiller_india-peroni_nastro_azzurro,0,0,244998799360,"{""name"":""Peroni Nastro Azzurro"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Peroni its unique taste which is refreshing and dry, with a clear-cut, clean character and clarity, achieved through the exclusive brewing process. This ensures that the beer has both a fresh and natural quality. \r\n\r\nPositioned as ‘Italian style in a bottle’, from presentation to pouring the brand, Peroni has struck a chord with modern urbanites looking for cosmopolitan class. \r\n\r\nhttp://www.sabmiller.in/brands_peroni.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-bear_republic_brewery-late_harvest_fest_lager,0,0,244364017665,"{""name"":""Late Harvest Fest Lager"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty, copper-colored lager is styled after Munich's traditional \""Oktoberfest\"" beers. A full-bodied, rich malt character is balanced by a slight bitter finish. Perfect for cooler fall days, it is lagered for five weeks. Prost!!"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,19,1
-snipes_mountain_microbrewery_restaurant-roza_reserve,0,0,245116370944,"{""name"":""Roza Reserve"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snipes_mountain_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-appleton_brewing-adler_brau_eagle_lager,0,0,244363493377,"{""name"":""Adler Bräu Eagle Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-hofmark_brauerei-original_pils,0,0,244745633792,"{""name"":""Original Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofmark_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-niagara_falls_brewing,0,0,244859338753,"{""name"":""Niagara Falls Brewing"",""city"":""Niagara Falls"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-905-356-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6863 Lundy's Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0893,""lon"":-79.11}}",1,5,1
-pugsley_brewing_llc-kennebunkport_ipa,0,0,244981563394,"{""name"":""Kennebunkport IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pugsley_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Below-average but drinkable IPA, cheaply priced (~$1/bottle), and available at Trader Joe's."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
-emmett_s_tavern_and_brewery-belgian_wit,0,0,244629831682,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emmett_s_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-gaslight_brewery-80_shilling,0,0,244628848641,"{""name"":""80 Shilling"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-flyers_restraunt_and_brewery-barnstormer_brown_ale,0,0,244610760704,"{""name"":""Barnstormer Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""As the name implies, a rich deep brown ale in color with dark amber highlights. The flavor is slightly sweet with hints of nuts and toffee finishing smooth with no after taste."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
-boulevard_brewing_company-bob_s_47_oktoberfest,0,0,244376993793,"{""name"":""Bob's '47 Oktoberfest"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard’s fall seasonal beer, Bob’s ’47 Oktoberfest is a medium-bodied, dark amber brew with a malty flavor and well-balanced hop character. With this Munich-style lager we solute our friend Bob Werkowitch, Master Brewer and 1947 graduate of the U.S. Brewer‘s Academy. Available from September through October in bottles and on draught."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,49,1
-catawba_valley_brewing_company,0,0,244478705666,"{""name"":""Catawba Valley Brewing Company"",""city"":""Glen Alpine"",""state"":""NC"",""code"":""28628"",""country"":""United States"",""phone"":""828-430-6883"",""website"":""http://www.catawbavalleybrewingcompany.com/"",""type"":""brewery"",""updated"":""2011-02-16 12:36:49"",""description"":""The Catawba Valley Brewing Company grew out of a simple gift, and the love of good beer. A beginner's home brewing kit given years ago began a passion for brewing that could only culminate with production on a larger scale. It seemed natural to take production from a few gallons to a few barrels and beyond. During the summer of 1999 the business that is now Catawba Valley Brewing Company was born.\n\nIn April of 2007 the brewery relocated from Glen Alpine, NC to downtown Morganton, NC. In the process we didn't lose a customer or miss a delivery. In fact we achieved record spring sales. In addition to relocating we've also opened our taproom to the public. We encourage those interested in finely crafted beers to stop by and try our selection of beers. Getting a fresher beer is a near impossibility."",""address"":[""P.O. Box 1154""]}",1,12,1
-bell_s_brewery_inc-hopslam_ale,0,0,244379680771,"{""name"":""Hopslam Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A biting, bitter, tongue bruiser of an ale. With a name like Hopslam, what did you expect?"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
-pyramid_ales_brewery-scotch_brand_ale,0,0,244980842498,"{""name"":""Scotch brand Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,1,1
-cervejaria_sudbrack-eisenbahn_defumada,0,0,244498890753,"{""name"":""Eisenbahn Defumada"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-gordon_biersch_brewing-pilsner,0,0,244611219456,"{""name"":""Pilsner"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-southern_tier_brewing_co-southern_tier_tripel,0,0,245117747201,"{""name"":""Southern Tier Tripel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Don't let Tripel's light color and delicate aroma fool you, this is one serious beer brewed with maximum effort. First, we introduce the freshest barley to crystal filtered water. Second, we add the best hops shipped directly from Europe. Third, our special yeast is the catalyst for fermentations, gobbling sugar and creating alcohol as it works. \r\n\r\nSome say that the Belgian monks who first brewed this style called it triple to denote it's high alcohol content. Still others believe triple's origins lay in its triple fermentations; twice in the brewery and once in the bottle. Whatever the answer, ours is the Tripel threat."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
-scotch_irish_brewing-black_irish_plain_porter,0,0,244997423104,"{""name"":""Black Irish Plain Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scotch_irish_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
-boston_beer_company-samuel_adams_hefeweizen,0,0,244371292161,"{""name"":""Samuel Adams Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered wheat ale, fruity, bright, with a crisp flavor of wheat. Samuel Adams® Hefeweizen beer is a traditional spin on a classic American craft brewing style. The brewers of Samuel Adams® used both malted and unmalted wheat, and two row Pale barley for a clean malty, cereal note. This bright, fruity wheat ale is unfiltered, retaining a natural haze from malt proteins, crisp, bright flavors of wheat, and fresh, fruity ester complexity from our proprietary ale yeast. Accentuated with Noble Spalt-Spalter hops, Samuel Adams® Hefeweizen has an elegant and pleasant bitterness, finishing smooth and clean."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
-boston_beer_works-buckeye_oatmeal_stout,0,0,244371816449,"{""name"":""Buckeye Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-brouwerij_van_eecke-het_kapittel_pater,0,0,244489453569,"{""name"":""Het Kapittel Pater"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_eecke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-jt_whitney_s_brewpub_and_eatery-black_diamond_porter,0,0,244737245184,"{""name"":""Black Diamond Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
-hirschbru_privatbrauerei_hss-bavarian_weissbier_hefeweisse_weisser_hirsch,0,0,244736589826,"{""name"":""Bavarian-Weissbier Hefeweisse / Weisser Hirsch"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hirschbru_privatbrauerei_hss"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
-dragonmead_microbrewery-dead_monk_abbey_ale,0,0,244612595712,"{""name"":""Dead Monk Abbey Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian beer is brewed in the style of the Trappist Monks. Belgian Candi Sugar, Pilsen, Aromatic and Caramunich malts are balance by E. Kent Goldings, Mt. Hood and Saaz hops to construct a \""Big Beer\"". Traditional White Beer Yeast is used to make this beer have a large mouth-feel and lingering spice notes in the finish."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,14,1
-deschutes_brewery-obsidian_stout,0,0,244631470082,"{""name"":""Obsidian Stout"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Obsidian Stout gets is inspiration from one of the world's largest obsidian flows at Newberry Volcano--just a few miles south of the brewery. \""The Big Obsidian Flow,\"" as they call it, covers more than 700 acres with shiny black obsidian."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
-new_belgium_brewing-sunshine_wheat,0,0,244858093570,"{""name"":""Sunshine Wheat"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""SUNSHINE WHEAT is a great beer for trouncing thirst. Yet, it has a depth of character that inspires a quiet moment’s reflection. Sunshine Wheat swirls in the mouth with ripples of coriander and orange peel tartness, settling nicely into a tranquil sea of apple and honey tones. A filtered wheat beer, Sunshine offers a crisp, refreshing alternative to heavier-bodied heffe-weizens."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,2,1
-oak_creek_brewery-horseshoe_hefeweizen,0,0,244876705793,"{""name"":""Horseshoe Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
-olde_main_brewing-marzen_lager,0,0,244857372674,"{""name"":""Marzen Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,0,1
-hambleton_ales,0,0,244756774913,"{""name"":""Hambleton Ales"",""city"":""Melmerby"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01765)-640108"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Melmerby Green Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":54.1744,""lon"":-1.4844}}",1,56,1
-blitz_weinhard_brewing,0,0,244377452546,"{""name"":""Blitz-Weinhard Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Portland OR 97209""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5325,""lon"":-122.686}}",1,50,1
-dark_horse_brewing_co-tres_blueberry_stout,0,0,244613382144,"{""name"":""Tres Blueberry Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A full bodied stout made with all malted barley and blueberry. Flavors of chocolate, roast malt and light blueberry make up the palate with lots of fruity blueberry aroma."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
-faultline_brewing_2-pale_ale,0,0,244623343617,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
-loaf_and_stein_brewing-railroad_street_porter,0,0,244858683392,"{""name"":""Railroad Street Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,4,1
-new_holland_brewing_company-pilgrim_s_dole,0,0,244859797506,"{""name"":""Pilgrim's Dole"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pilgrim’s Dole is a barleywine-style ale made with fifty percent wheat malt, or what we at New Holland call a wheatwine. Pilgrim’s Dole blends warming and slightly sweet flavors with a unique caramelized character. It would be an excellent accent to nutty dishes, fruit crisps or creme brulee."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,6,1
-del_mar_stuft_pizza_and_brewing-stuft_pizza_torrey_pines_ipa,0,0,244629307392,"{""name"":""Stuft Pizza Torrey Pines IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""del_mar_stuft_pizza_and_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,54,1
-schlobrauerei_reckendorf-kellerbier,0,0,244998144001,"{""name"":""Kellerbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-copper_eagle_brewing,0,0,244480606208,"{""name"":""Copper Eagle Brewing"",""city"":""Grand Island"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.9454,""lon"":-122.304}}",1,16,1
-hereford_hops_steakhouse_and_brewpub_3-piva_bohemia,0,0,244740128768,"{""name"":""Piva Bohemia"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-gasthaus_brauerei_max_moritz-kellerpils,0,0,244612268034,"{""name"":""Kellerpils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_brauerei_max_moritz"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-mission_springs_brewing,0,0,244873494533,"{""name"":""Mission Springs Brewing"",""city"":""Mission"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-820-1009"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7160 Oliver Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.1323,""lon"":-122.343}}",1,41,1
-stone_brewing_co-stone_09_09_09_vertical_epic_ale,0,0,245118074882,"{""name"":""Stone 09.09.09 Vertical Epic Ale"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,47,1
-brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_blond_8,0,0,244487028737,"{""name"":""Achel Blond 8°"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,31,1
-fratellos_restaurant_and_brewery-titan_porter,0,0,244622950401,"{""name"":""Titan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
-iron_springs_pub_brewery-epiphany_ale,0,0,244737638401,"{""name"":""Epiphany Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-f_x_matt_brewing-saranac_belgian_white,0,0,244620394497,"{""name"":""Saranac Belgian White"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Belgian Style White beer is smooth, tangy and very thirst quenching. Brewed with a delicate combination of oats, wheat and barley malt, we season it ever so lightly with hops. Then we add sprinklings of coriander and orange peel for a refreshing brew with a citrus aroma. Don't be fooled by the cloudy appearance, that's expected of a classic Belgian-style \""Whitbier\"" or white beer."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,33,1
-saku_lletehas,0,0,244998799361,"{""name"":""Saku lletehas"",""city"":""Saku"",""state"":"""",""code"":"""",""country"":""Estonia"",""phone"":""372-6-508-400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tallinna mnt.2""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":59.3014,""lon"":24.6679}}",1,44,1
-bell_s_brewery_inc-java_stout,0,0,244364017666,"{""name"":""Java Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""The satisfying elements of both stout and coffee come together in this full-bodied treat. A marriage of Sumatra's best with rich chocolate and roasted malt provides for a truly enlightening beer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,19,1
-south_shore_brewery-witbier,0,0,245116436480,"{""name"":""Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-atwater_block_brewing-rost,0,0,244363558912,"{""name"":""Rost"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Rost (pronounced Roast) is a German word for Amber. Our Amber gets its coppery color from Pilsner. Munich and Caramel malts. Its rich malty sweetness is perfectly balanced by a slight hop finish and creamy head."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,18,1
-hops_grillhouse_brewery_cherry_creek-clearwater_light,0,0,244745633793,"{""name"":""Clearwater Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
-oaken_barrel_brewing-gnaw_bone_pale_ale,0,0,244859404288,"{""name"":""Gnaw Bone Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
-pyramid_ales_brewery,0,0,244981628928,"{""name"":""Pyramid Ales Brewery"",""city"":""Seattle"",""state"":""Washington"",""code"":""98134"",""country"":""United States"",""phone"":""(206) 682-8322"",""website"":""http://www.pyramidbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""91 S Royal Brougham Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.5924,""lon"":-122.334}}",1,3,1
-estes_park_brewery,0,0,244629897216,"{""name"":""Estes Park Brewery"",""city"":""Estes Park"",""state"":""Colorado"",""code"":""80517"",""country"":""United States"",""phone"":""970-586.5421"",""website"":""http://www.epbrewery.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The original Brewing equipment which consisted of a 4 1/4 Barrel Brewhouse was moved to Estes. For the first summer the Event Center kept the main floor as a stage and dance floor. For the first summer we offered four beers: Estes Park Porter, Estes Park Renegade, Longs Peak Raspberry Wheat and Estes Park Pale Ale. In the fall of 1994, Gordon Knight decided to sell his half of the business. When Gordon left, Eric Bratrud took over as the head Brewer. The Brewery also expanded to a 14 BBL Brewhouse and moved out onto the main floor where is now located. In 1995 we started packaging our beers in 12 oz bottles, which expanded our market. By this time we had added a number of beers including Trail Ridge Red, Estes Park Gold, Stinger Wild Honey Wheat and Samson Stout. 1995 was also the first year of the Best of the West Brewfest held in the Brewery parking lot. Since '95 we've continued to evolve both in our restaurant and with our brewing operations. In 2003 Tyler Lemirande and Eric Bratrud took over as owners."",""address"":[""470 Prospect Village Dr.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3707,""lon"":-105.526}}",1,55,1
-gold_crown_brewing-kings_pilsener,0,0,244628848642,"{""name"":""Kings Pilsener"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gold_crown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-fox_river_brewing_1-ipa,0,0,244610760705,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
-brasserie_de_brunehaut-abbaye_de_saint_martin_cuvee_de_noel,0,0,244376993794,"{""name"":""Abbaye de Saint-Martin Cuvée de Noel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A limited production, spiced Christmas ale available during the cold-weather months. (across the northern hemisphere)\r\nAbbye St. Martin Ales are pure Belgium.""}",1,49,1
-charles_wells_ltd-bombardier_premium_ale,0,0,244478771200,"{""name"":""Bombardier Premium Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""charles_wells_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-bellows_brew_crew-ipa,0,0,244379680772,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
-river_west_brewing-whistle_stop_weiss_beer,0,0,244980842499,"{""name"":""Whistle Stop Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
-clipper_city_brewing_co-heavy_seas_the_great_pumpkin_imperial_pumpkin_ale,0,0,244498890754,"{""name"":""Heavy Seas The Great Pumpkin Imperial Pumpkin Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The secret is in the 2.5 pounds of spice per barrel for this fall brew. We add the pumpkin during the mash at precisely the right time to create just the perfect balance of malt, hops, pumpkin and spice.\r\n\r\nestimated ABV 8.5% estimated IBU 25\r\nMalt, Hops, Pumpkin & our Secret Spices"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,58,1
-govnor_s_public_house-american_cream_ale,0,0,244611219457,"{""name"":""American Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
-spanish_peaks_brewing-american_pale_ale,0,0,245117747202,"{""name"":""American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
-shipyard_brewing_portland-pugsley_s_signature_series_imperial_porter,0,0,244997423105,"{""name"":""Pugsley's Signature Series Imperial Porter"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Porter is a full bodied, very dark, malty beer with a good roasted character coming from the Crystal, Chocolate and Black Patent Malts used in the mash. Warrior, English Fuggles, and East Kent Goldings Hops balance the malts with a good hop bite. The beer has an OG of 1.070, rounding out after fermentation with just a slight residual sweetness and cutting dry at the finish."",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
-boulevard_brewing_company-lunar_ale,0,0,244371357696,"{""name"":""Lunar Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first new year-round brand launch since 1996, Lunar Ale is in a category all its own. Brewed using a unique aromatic yeast, this refreshing variety is best described as a cloudy brown ale with a complex, malty aroma and flavor, and a crisp, dry finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
-brasserie_d_achouffe-la_chouffe_golden_ale,0,0,244371816450,"{""name"":""La Chouffe Golden Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,35,1
-brownings,0,0,244489453570,"{""name"":""Brownings"",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40202"",""country"":""United States"",""phone"":""502.515.0174"",""website"":""http://www.diningonmain.com/Brownings/Brownings_home.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In Browning's unique three-story brewing facility, Brew Master Brian Reymiller creates superior artisnal beers using only the best available grains and hops from England, Germany, and the Pacific Northwest. Reymiller brings to each pint of beer years of experience brewing award winning beer for Hops! Brewery, Smoky Mountain Brewing Company, and Victory Brewing Company. \t Executive Chef Jay Denham brings casual, Kentucky comfort-foods to the menu at Browning's. Jay's loves to use fresh and local ingredients for his inspiration of good old-fashioned home cooking. Growing up in Maysville, Ky. Jay learned to use the freshest and most wholesome ingredients while cooking for his family. His solid upbringing gave him a palate for great taste and is certainly eminent in his cuisine."",""address"":[""401 East Main St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2554,""lon"":-85.7441}}",1,37,1
-kulmbacher_brauerei_ag-kapuziner_kristall_weizen,0,0,244737245185,"{""name"":""Kapuziner Kristall-Weizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-hook_ladder_brewing_company-hook_ladder_backdraft_brown,0,0,244736655360,"{""name"":""Hook & Ladder Backdraft Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_ladder_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth and refreshing beer loaded with flavor. Specialty malts balanced with just the right amount of cascade hops give it a roasted taste and beautiful brown color. This drinkable brown ale easily rivals an expensive import."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
-eagle_brewing,0,0,244612595713,"{""name"":""Eagle Brewing"",""city"":""Mukilteo"",""state"":""Washington"",""code"":""98275"",""country"":""United States"",""phone"":""1-425-348-8088"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""625 Fourth Street""]}",1,14,1
-diamond_bear_brewing_co-paradise_porter,0,0,244631470083,"{""name"":""Paradise Porter"",""abv"":4.99,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_bear_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This medium bodied porter has notes of roasted and chocolate malts, making it a perfect balance of sweet and bitter. Generous hops give this brew a dry finish."",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
-odell_brewing-double_pilsner,0,0,244858159104,"{""name"":""Double Pilsner"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-oasis_brewery_annex-extra_special_bitter_ale,0,0,244876705794,"{""name"":""Extra Special Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oasis_brewery_annex"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-pacific_coast_brewing-hammerhead_barleywine_1990,0,0,244980449280,"{""name"":""Hammerhead Barleywine 1990"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-heartland_brewery_union_square-red_rooster_ale,0,0,244756840448,"{""name"":""Red Rooster Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
-boulevard_brewing_company-ten_penny_american_bitter,0,0,244377452547,"{""name"":""Ten Penny American Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-dogfish_head_craft_brewery-120_minute_ipa,0,0,244613447680,"{""name"":""120 Minute IPA"",""abv"":18.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Too extreme to be called beer? Brewed to a colossal 45-degree plato, boiled for a full 2 hours while being continuously hopped with high-alpha American hops, then dry-hopped daily in the fermenter for a month & aged for nother month on whole-leaf hops!!! Our 120 Minute I.P.A. is by far the biggest I.P.A. ever brewed! At 20% abv and 120 ibus you can see why we call this beer THE HOLY GRAIL for hopheads!\r\n\r\n-changed to be 18% for aging purposes according to Dogfish Head brewery."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,17,1
-finnegans,0,0,244623409152,"{""name"":""FINNEGANS"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55404"",""country"":""United States"",""phone"":"""",""website"":""http://www.finnegans.org"",""type"":""brewery"",""updated"":""2010-12-03 17:53:48"",""description"":""FINNEGANS was founded in 2000 in Minneapolis, Minnesota, from the belief that each and every one of us can make a difference in our community. And that true passion in that belief can move mountains and make magical things happen.\n\nWhen we created our first product, FINNEGANS Irish Amber, we made the decision to donate 100 percent of the profits back to the community where it's sold to help alleviate poverty. And we knew it was going to take hard work, unwavering passion, and even a little magic along the way to make it a sustainable effort.\n\nWhat a journey it's been.\n\nFINNEGANS Irish Amber is now sold throughout Minnesota, Wisconsin, and North Dakota. Since first being profitable in 2003, we have donated over $150,000 to the FINNEGANS Community Fund, which in turn has given grants to non-profits across the Midwest to support life-changing programs for the working poor. We plan to roll out a new FINNEGANS product in 2011, and eventually have an entire line of FINNEGANS branded products"",""address"":[""619 10th St. South"",""Suite 100""]}",1,39,1
-long_valley_pub_brewery-german_valley_amber,0,0,244858748928,"{""name"":""German Valley Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
-north_coast_brewing_company-red_seal_ale,0,0,244859797507,"{""name"":""Red Seal Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Malt and hops are beautifully married in this full-bodied, copper-red Pale Ale. Red Seal is generously hopped for a long, spicy finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
-deschutes_brewery,0,0,244629372928,"{""name"":""Deschutes Brewery"",""city"":""Bend"",""state"":""Oregon"",""code"":""97702"",""country"":""United States"",""phone"":""1-541-385-8606"",""website"":""http://www.deschutesbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Deschutes Brewery, located in Central Oregon along the banks of the wild and scenic Deschutes River, has brewed handcrafted traditional ales since 1988. Starting out as a small brewpub in the heart of downtown Bend, Deschutes' first beers were Black Butte Porter, Bachelor Bitter and Cascade Golden Ale. In 1993, Deschutes moved into its current brewing facility and has continued expanding and improving the facilities. With a 50-barrel traditional gravity brew house and a new one-of-a-kind 131-barrel Huppmann brew system from Germany, Deschutes now creates and experiments with specialty batches of limited beers while brewing large quantities of everyone's favorites like Mirror Pond Pale Ale. Consistently producing the highest quality beers is always Deschutes' number one priority and commitment. The Deschutes Brewery & Public House continues brewing unique beers at our original location while serving the finest Northwest pub cuisine. So when you find yourself in Bend, come on in and have a pint of Bachelor Bitter, the locals' favorite, or any of our other original ales brewed on-site. Deschutes Brewery's distinct ales; Black Butte Porter, Mirror Pond Pale Ale, Obsidian Stout, Inversion IPA, Bachelor ESB, Cascade Ale, Buzzsaw Brown (winter), Cinder Cone Red (spring), Twilight Ale (summer), Jubelale (fall) and other seasonal beers are available at pubs and markets in a neighborhood near you. --http://www.deschutesbrewery.com/About+Us/default.aspx"",""address"":[""901 SW Simpson Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0474,""lon"":-121.323}}",1,54,1
-sharktooth_brewing-stout,0,0,244998209536,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
-crabby_larry_s_brewpub_steak_crab_house,0,0,244480606209,"{""name"":""Crabby Larry's Brewpub Steak & Crab House"",""city"":""Chalfont"",""state"":""Pennsylvania"",""code"":""18914"",""country"":""United States"",""phone"":""1-215-822-8788"",""website"":""http://www.crabbylarrys.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""237 West Butler Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2795,""lon"":-75.2143}}",1,16,1
-hida_takayama_brewing_agricultural_company-weizen,0,0,244740128769,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hida_takayama_brewing_agricultural_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
-george_bateman_and_son_ltd,0,0,244612333568,"{""name"":""George Bateman and Son Ltd."",""city"":""Skegness"",""state"":""Lincoln"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01754)-880317"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mill Lane""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":53.1691,""lon"":0.3169}}",1,13,1
-new_belgium_brewing-1554_enlightened_black_ale,0,0,244873560064,"{""name"":""1554 Enlightened Black Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Born of a flood and centuries-old Belgian text, 1554 Enlightened Black Ale uses a light lager yeast strain and dark chocolaty malts to redefine what dark beer can be. In 1997, a Fort Collins flood destroyed the original recipe our researcher, Phil Benstein, found in the library. So Phil and brewmaster, Peter Bouckaert, traveled to Belgium to retrieve this unique style lost to the ages. Their first challenge was deciphering antiquated script and outdated units of measurement, but trial and error (and many months of in-house sampling) culminated in 1554, a highly quaffable dark beer with a moderate body and mouthfeel."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,41,1
-stuttgarter_hofbru,0,0,245118140416,"{""name"":""Stuttgarter Hofbru"",""city"":""Stuttgart"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)711-/-6488-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bblinger Strae 104""]}",1,47,1
-brouwerij_rodenbach,0,0,244487094272,"{""name"":""Brouwerij Rodenbach"",""city"":""Roeselare"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-27-28-10"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Spanjestraat 133-141""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9462,""lon"":3.1362}}",1,31,1
-g_heileman_brewing,0,0,244622950402,"{""name"":""G. Heileman Brewing"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.8014,""lon"":-91.2396}}",1,38,1
-kaiserdom_privatbrauerei_bamberg-premium_pilsener,0,0,244737638402,"{""name"":""Premium Pilsener"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-federation_brewery,0,0,244620460032,"{""name"":""Federation Brewery"",""city"":""Gateshead"",""state"":""Tyne and Wear"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0191)-4609023"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lancaster Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":54.9548,""lon"":-1.6576}}",1,33,1
-scharer_s_little_brewery,0,0,244998864896,"{""name"":""Scharer's Little Brewery"",""city"":""Picton"",""state"":""NSW"",""code"":""2571"",""country"":""Australia"",""phone"":""+61 2 4677 1415"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""180 Old Hume Hwy""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-34.1855,""lon"":150.607}}",1,44,1
-berliner_kindl_schultheiss_brauerei,0,0,244364083200,"{""name"":""Berliner-Kindl-Schultheiss-Brauerei"",""city"":""Berlin"",""state"":""Berlin"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)30-/-9609-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Indira-Ghandi-Strae 66-69""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.5234,""lon"":13.4114}}",1,19,1
-southend_brewery_and_smokehouse_charleston-ruby_red_lager,0,0,245116436481,"{""name"":""Ruby Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
-barley_brothers_brewery_and_grill,0,0,244363558913,"{""name"":""Barley Brothers Brewery and Grill"",""city"":""Lake Havasu City"",""state"":""Arizona"",""code"":""86403"",""country"":""United States"",""phone"":""1-928-505-7837"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1425 McCulloch Boulevard""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.4702,""lon"":-114.35}}",1,18,1
-hoptown_brewing,0,0,244745699328,"{""name"":""HopTown Brewing"",""city"":""Pleasanton"",""state"":""California"",""code"":""94588"",""country"":""United States"",""phone"":""1-925-426-1450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3015-D Hopyard Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.677,""lon"":-121.898}}",1,28,1
-odell_brewing-levity_amber_ale,0,0,244859404289,"{""name"":""Levity Amber Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Levity is our lighter take on the amber ale. Munich and honey malts give it a full-bodied flavor and a happy-go-lucky personality. Then we let the finishing hops shine, for a beer that's crisp instead of bitter, as many ambers are. Levity was named by our brewers partly for its light color - and partly for the way it just refuses to take itself too seriously. Hey, we could all use a little levity once in a while."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
-san_marcos_brewery_grill-pale_ale,0,0,244981628929,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
-ettaler_klosterbetriebe_abteilung_brauerei_destillerie-curator_dunkler_doppelbock,0,0,244629897217,"{""name"":""Curator Dunkler Doppelbock"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ettaler_klosterbetriebe_abteilung_brauerei_destillerie"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,55,1
-gottberg_brew_pub-cow_palace_scotch_ale,0,0,244628848643,"{""name"":""Cow Palace Scotch Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,52,1
-fratellos_restaurant_and_brewery-foxtoberfest,0,0,244610760706,"{""name"":""Foxtoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,10,1
-brasserie_des_vosges-bete_des_vosges,0,0,244377059328,"{""name"":""Bête des Vosges"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_vosges"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,49,1
-city_brewing_company_llc-pale_ale,0,0,244478771201,"{""name"":""Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-bierbrouwerij_bavaria,0,0,244379746304,"{""name"":""Bierbrouwerij Bavaria"",""city"":""Lieshout"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-0499-428111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Burg. van den Heuvelstraat 35""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.5163,""lon"":5.5977}}",1,57,1
-rock_bottom_restaurant_brewery_san_jose-raccoon_red_ale,0,0,244980842500,"{""name"":""Raccoon Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
-crane_river_brewpub_and_cafe-red_top_rye,0,0,244498956288,"{""name"":""Red Top Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-govnor_s_public_house-dublin_dunkelweizenbock,0,0,244611219458,"{""name"":""Dublin Dunkelweizenbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,11,1
-spoetzl_brewery-shiner_hefeweizen,0,0,245117747203,"{""name"":""Shiner Hefeweizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
-shmaltz_brewing_company,0,0,244997423106,"{""name"":""Shmaltz Brewing Company"",""city"":""San Francisco"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.shmaltz.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.7749,""lon"":-122.419}}",1,40,1
-boundary_bay_brewery_and_bistro-doppel_bock,0,0,244371357697,"{""name"":""Doppel Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boundary_bay_brewery_and_bistro"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,34,1
-brasserie_de_l_abbaye_val_dieu-blonde,0,0,244371881984,"{""name"":""Blonde"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""This authentic Abbey Ale is based on the recipe perfected centuries ago by the monks of Abbey Du Val-Dieu."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,35,1
-cat_s_paw_home_brew,0,0,244489519104,"{""name"":""Cat's Paw Home Brew"",""city"":"""",""state"":"""",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,37,1
-lagunitas_brewing_company-ipa,0,0,244737245186,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This is our unique version of an ancient style. A style as old as the ocean trade routes of the last centuries Great Ships. Not as old as the equator they had to cross twice enroute, nor as old as the 10,000 or so miles of Di-Hydrogen Oxide and Sodium upon which they sailed, but older than the Circulithium-4 Lentloid that binds the Lupulin Quartnate onto your taste buds. Weird. Think about it. Now stop. OK, go again, now stop. Think again, and stop. But we digress. Made with 43 different hops and 65 various malts, this redolent ale will likely float your boat, whatever planet you're on. \"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
-hop_back_brewery-thunder_storm,0,0,244736655361,"{""name"":""Thunder Storm"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
-emerson_brewing-taieri_george,0,0,244612595714,"{""name"":""Taieri George"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emerson_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-dick_s_brewing-irish_style_ale,0,0,244631535616,"{""name"":""Irish Style Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-otto_s_pub_and_brewery-jolly_roger_imperial_stout,0,0,244858159105,"{""name"":""Jolly Roger Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,2,1
-orchard_street_brewery-pale_ale,0,0,244876705795,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orchard_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-penn_brewery-penn_pilsner,0,0,244980514816,"{""name"":""Penn Pilsner"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship brand! An amber Vienna-style lager beer that is smooth, mellow and full bodied, with delicate hop aroma. Uses two-row barley malt and caramel-roasted malt. Based on founder Tom Pastorius' favorite German bier."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,0,1
-hereford_hops_restaurant_and_brewpub_1-stump_sitter_stout,0,0,244756840449,"{""name"":""Stump Sitter Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
-brasserie_de_brunehaut-abbaye_de_saint_martin_blonde,0,0,244377518080,"{""name"":""Abbaye de Saint-Martin Blonde"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""11.2oz bottle. Slightly hazy golden color with a white head. Earthy clay, light molasses, and buttered cauliflower aromas. A crisp, frothy entry leads to a dryish medium body of figs, creamy caramel, and roasted carrot flavors. This St. Martin Blonde ale finishes with dried fruit and cashew fade.\r\nAbbye St. Martin Ales are pure Belgium."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,50,1
-dortmunder_actien_brauerei_dab,0,0,244613513216,"{""name"":""Dortmunder Actien Brauerei DAB"",""city"":""Dortmund"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)231-/-8400-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Steigerstrae 20""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.5298,""lon"":7.4692}}",1,17,1
-flying_bison_brewing-barnstormer_pale_ale,0,0,244623409153,"{""name"":""Barnstormer Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American Pale Ale. Made with American pale malt for a brilliant straw gold color, American hops (Cascade) for a refreshing citrusy hop character, and our signature ale yeast for a clean smooth finish. Available on draft, and seasonally in our Mixed"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
-magic_hat-braggot,0,0,244858814464,"{""name"":""Braggot"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""An Ale Brewed with Honey\r\nOur inaugural Epic Elixir, Braggot is a most remarkable honey ale, made with specialty malts & wildflower honey from Vermont's Champlain Valley. The honey adds smoothness with subtle hints of chamomile.\r\n\r\nBraggot is an ale of shining perfection that simply must be experienced to be understood. But hurry ... for Braggot, as with each entry in our Humdinger series, vanishes almost as soon as it arrives. Get a bottle of Braggot today and come to know a new 'Ale of Legend'. \r\n\r\nWild Flower Honey, primarily Red Clover and Alfalfa from Champlain Valley Apiaries in Middlebury, Vermont. This represents 50% of the total fermentable sugars.\r\n\r\nChamomile: Whole Chamomile flowers steeped in hot wort.""}",1,4,1
-o_gara_s_bar_grill-honey_brown,0,0,244859863040,"{""name"":""Honey Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
-dix_barbecue_brewery-honey_brown,0,0,244629372929,"{""name"":""Honey Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-siletz_roadhouse_brewery,0,0,244998209537,"{""name"":""Siletz Roadhouse & Brewery"",""city"":""Siletz"",""state"":""Oregon"",""code"":""97380"",""country"":""United States"",""phone"":""1-541-444-2335"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""243 North Gaither Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.722,""lon"":-123.918}}",1,42,1
-cricket_hill-east_coast_lager,0,0,244480671744,"{""name"":""East Coast lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-07-22 20:00:20"",""description"":""The East Coast Lager is an easy drinking “golden” lager with a wonderful balance of crisp malt flavors and flowery hop finish. Built specifically with very low bitter aftertaste, the aroma is as clean as the taste.A difficult beer to brew because of the gentleness… this beer is magnificent!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-hoppin_frog_brewery,0,0,244740194304,"{""name"":""Hoppin Frog Brewery"",""city"":""Akron"",""state"":""Ohio"",""code"":""44306"",""country"":""United States"",""phone"":""(330) 352-4578"",""website"":""http://www.hoppinfrog.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1680-F East Waterloo Rd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.0247,""lon"":-81.4676}}",1,15,1
-goose_island_beer_company_clybourn-night_stalker,0,0,244612333569,"{""name"":""Night Stalker"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,13,1
-new_belgium_brewing-skinny_dip,0,0,244873560065,"{""name"":""Skinny Dip"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ever tried a Skinny Dip? You wouldn't be alone. Featured by both Men's Journal and the Today Show as a favorite summer brew, this full-bodied, highly drinkable beer makes a splash every summer in our Seasonal line-up. Cascade hops frolic with a hint of lime leaf, giving the beer complexity that's surprisingly refreshing."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,41,1
-surly_brewing-bender_beer,0,0,245118140417,"{""name"":""Bender Beer"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""surly_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is an amalgamation of styles; brown/porter/apa. Five distinct malts, including two from Belgium, give this beer added complexity and depth. We also add oatmeal to this beer to give it a smooth texture not usually associated with this type of beer. We add large amounts of American finishing hops to give Bender a citrus hop aroma because... we like hops. This is a session beer weighing in around 5% alcohol and 25 IBUs. Grab one today, we think you will want another!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,47,1
-brouwerij_t_ij-zatte_amsterdamse_tripel,0,0,244487094273,"{""name"":""Zatte Amsterdamse Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_t_ij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-gasthof_brauerei_zum_frohsinn-maisbier,0,0,244623015936,"{""name"":""Maisbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-kelmer_s_brewhouse-klout,0,0,244737703936,"{""name"":""Klout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
-flensburger_brauerei,0,0,244620525568,"{""name"":""Flensburger Brauerei"",""city"":""Flensburg"",""state"":""Schleswig-Holstein"",""code"":""24937"",""country"":""Germany"",""phone"":"""",""website"":""http://www.flens.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Munketoft 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":54.779,""lon"":9.4355}}",1,33,1
-schofferhofer-schofferhofer_hefeweizen_hell,0,0,244998864897,"{""name"":""Schöfferhofer Hefeweizen Hell"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schofferhofer"",""updated"":""2010-07-22 20:00:20"",""description"":""classic Hefeweizen, cloud because it is traditionally unfiltered, was tested and rated by the German consumer magazin \""Ökotest\"" as \""very good\"" for pureness and residues of pesticides and so on"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,44,1
-birrificia_le_baladin-wayan,0,0,244364083201,"{""name"":""Wayan"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-southern_tier_brewing_co-raspberry_wheat,0,0,245116502016,"{""name"":""Raspberry Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden wheat beer brewed with the finest North American malted barley and wheat. It's then lightly hopped with the choicest European varieties. The smooth, crisp golden wheat beer is then finished with a hint of rasberry. Enjoy this beer any time of the year."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,43,1
-barley_creek_brewing-cliffhanger_light_ale,0,0,244363624448,"{""name"":""Cliffhanger Light Ale"",""abv"":3.22,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest brew, this ale has a lower alcohol content than other Barley Creek brews. The Munich malt and Saaz and Hallertau hops give it a distinct German profile. Refreshing with a clean, dry finish."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,18,1
-icobes_b_v_b_a-biere_du_boucanier,0,0,244745699329,"{""name"":""Bière du Boucanier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""icobes_b_v_b_a"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-orkney_brewery,0,0,244859469824,"{""name"":""Orkney Brewery"",""city"":""Orkney"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01856)-841802"",""website"":""http://www.orkneybrewery.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Quoyloo""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":59.0697,""lon"":-3.3135}}",1,5,1
-sand_creek_brewing_company,0,0,244981694464,"{""name"":""Sand Creek Brewing Company"",""city"":""Black River Falls"",""state"":""Wisconsin"",""code"":""54615"",""country"":""United States"",""phone"":""(715) 284-7553"",""website"":""http://www.sandcreekbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""320 Pierce St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2929,""lon"":-90.8511}}",1,3,1
-fitger_s_brewhouse_brewery_and_grill-1100_wheat_wine,0,0,244629962752,"{""name"":""1100 Wheat Wine"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-gottberg_brew_pub-rumble_seat_stout_discontinued,0,0,244628979712,"{""name"":""Rumble Seat Stout (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
-front_street_brewery-old_davenport_gold,0,0,244610826240,"{""name"":""Old Davenport Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-brasserie_du_bocq-blanche_des_moines,0,0,244377059329,"{""name"":""Blanche des Moines"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bocq"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-coronado_brewing_company-nutter_brown,0,0,244478771202,"{""name"":""Nutter Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Medium-bodied and light brown in color. This mild ale has a sweet maltiness and roasted character. Unlike English brown ales, this brown ale has a noticeably hoppy flavor from its Willamette hops. Don’t be afraid to have a Nutter!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,12,1
-big_river_brewing-pale_ale,0,0,244379746305,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
-rogue_ales-shakespeare_stout,0,0,244980908032,"{""name"":""Shakespeare Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Stout was first introduced by Guinness in Ireland as \""Extra Stout\"" (a stronger version of their Porter). Later, the stronger Imperial and Double Stouts emerged. Sweet, Milk, and Oatmeal Stouts are English adaptations with less alcohol and less bitter then the dry Irish Stouts. Victorian England recognized Oatmeal Stouts nutritional value and it is traditionally the drink of choice for nursing mothers and athletes. It is a beer equally at home with oysters as it is with a homemade pizza and freshly tossed green salad (or as a float over ice cream).\r\n\r\nRogues Shakespeare Stout received a 99, the highest score of the 309 beers in 44 categories at the 1994 World Beer Championships. The June/July 1998 issue of Mens Journal included Rogue Ales Shakespeare Stout as one of \""The 100 Best Things to Eat in America.\""Based on Stuart Kallens book, \""The 50 Best Beers in the World\"", Shakespeare Stout was ranked the third best beer in the world and best American Beer--which makes it the Worlds Best Stout!\r\n\r\nRogues Shakespeare Stout is ebony in color, a rich creamy head and a mellow chocolate aftertaste. It is made from Northwest Harrington, Crystal, and Chocolate malts, roasted barley and rolled oats, along with Cascade hop. Shakespeare Stout is available in the classic 22-ounce bottle, a commemorative 3-litre bottle with ceramic swing-top, and on draft."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
-de_leyerth_brouwerijen-urthel_samaranth_quadrium_ale,0,0,244630814720,"{""name"":""Urthel Samaranth Quadrium Ale"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-great_divide_brewing-espresso_oak_aged_yeti,0,0,244738359296,"{""name"":""Espresso Oak Aged Yeti"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
-steamworks-ipanema_summer_white,0,0,245117812736,"{""name"":""Ipanema Summer White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Tall and tan and young and lovely\""\r\n\r\nOriginating in Belgium, this is a truly bilingual brew. Known as Biere Blanche in French, Witbier in Flemish and White beer in English. Unmalted wheat and oats are used in the grist to lend this brew its smooth, light body. Coriander seed and Curacao orange peel are added to the kettle to infuse this beer with a subtle, perfumey spiciness. The result is a light wheat beer with a fruity, tart finish - the essence of summer."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,46,1
-sonoran_brewing_company,0,0,245115191296,"{""name"":""Sonoran Brewing Company"",""city"":""Scottsdale"",""state"":""Arizona"",""code"":""85255"",""country"":""United States"",""phone"":""602-484-7775"",""website"":""http://www.sonoranbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10426 East Jomax Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.7268,""lon"":-111.853}}",1,40,1
-brasserie_artisanale_de_rulles-biere_de_gamme,0,0,244371357698,"{""name"":""Bière de Gamme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_artisanale_de_rulles"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-brauerei_schwelm,0,0,244488404992,"{""name"":""Brauerei Schwelm"",""city"":""Schwelm"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2336-/-4908-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Neumarkt 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2847,""lon"":7.2936}}",1,35,1
-central_city_brewing_company-boomers_red_ale,0,0,244489519105,"{""name"":""Boomers Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-lakefront_brewery-rendezvous_biere_de_garde,0,0,244737245187,"{""name"":""Rendezvous Bière de Garde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-independence_brew_pub-red_ale,0,0,244736720896,"{""name"":""Red Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-far_west_ireland_brewing,0,0,244612661248,"{""name"":""Far West Ireland Brewing"",""city"":""Redmond"",""state"":""Washington"",""code"":""98052"",""country"":""United States"",""phone"":""1-425-869-5933"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6701,""lon"":-122.118}}",1,14,1
-dockside_brewing-old_bridge_dark_lager,0,0,244631535617,"{""name"":""Old Bridge Dark Lager"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-otto_s_pub_and_brewery-tripel_ale,0,0,244858224640,"{""name"":""Tripel Ale"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An Abbey-style Tripel ale. This light colored traditional tripel is made with Pils malt and candisugar and fermented with a traditional yeast strain. Esterey and strong best describe this unique specialty beer."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,2,1
-otter_creek_brewing_wolaver_s_organic_ales-pale_ale,0,0,244876771328,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Pale Ale is a golden amber brew, made with Cascade hops from the Yakima Valley. Adding Cascades during conditioning captures the rich aroma of the hop, and completes the clean, well-balanced flavor of our American pale ale. Crisp, refreshing, exotically aromatic, and available all year."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-philadelphia_brewing_co,0,0,244980514817,"{""name"":""Philadelphia Brewing Co"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19125"",""country"":""United States"",""phone"":""215-427-BREW (2739)"",""website"":""http://philadelphiabrewing.com/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is, Philadelphia's one and only Philadelphia Brewing Company; brewers of fine hand crafted Ales from our historic brewery building in the Kensington neighborhood of Philadelphia. Like the history of brewing in Philadelphia the name Philadelphia Brewing Company has gone through many revivals. The same can be said of our brewery building - the former Wiesbrod and Hess Brewing Company complex in Kensington. At Philadelphia Brewing Co we take pride in our brews, our people, and our community. One person could never do everything that it takes to get beer into your glass. And it may sound obvious, but we won't brew anything that we wouldn't drink ourselves - you won't catch us drinking anything called Ultra unless it's a literal name meaning more flavor, more hops, more malt, more carbs. That's because we are Brewers; proud brewers of fine hand crafted Ales from our historic brewery building in the Kensington neighborhood of Philadelphia. Now that's out of the way; we will be starting out with four mainstay brews which will be available in draught and in bottles. Once we're stocked up on the core brews we'll start pumping out regular seasonal or specialty brews. The specialty series will be driven by our individual brewers and the desires and whims of the rest of our family. The beer is flowing at Philadelphia Brewing co! You can find our four brands on tap at finer establishments all around town!"",""address"":[""2423 Amber St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9827,""lon"":-75.1275}}",1,0,1
-high_desert_brewing_co,0,0,244756840450,"{""name"":""High Desert Brewing Co."",""city"":""Las Cruces"",""state"":""New Mexico"",""code"":""88005"",""country"":""United States"",""phone"":""(575) 525-6752"",""website"":""http://www.highdesertbrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""After years of recipe development, remodeling, and parking lot paving, the High Desert Brewing Co. opened it's doors in July of 1997 and has quickly become one of New Mexico's premier brewpubs. Our selection of hand crafted lagers and ales are produced on premises using the finest grains and hops. We brew small batches of about 100 gallons, ensuring that each beer is served at the peak of freshness. Our brews are available by the glass, pint, or pitcher and to-go in 1/2 gallon growlers and 5 gallon kegs. We make every attempt to keep all of our beers on tap at all times but once in a while one or two may not be available for a few days. These times are the perfect opportunity to stretch your taste and try something other than your favorite. Please let Bob or Donna, or any of the High Desert Brewing Co. staff know how you think we are doing."",""address"":[""1201 W. Hadley Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.3096,""lon"":-106.793}}",1,56,1
-brasserie_de_l_abbaye_des_rocs,0,0,244377518081,"{""name"":""Brasserie De L'Abbaye Des Rocs"",""city"":""Montignies-sur-Roc"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-065-75-59-99"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chausse Brunehault 37""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3705,""lon"":3.7263}}",1,50,1
-eel_river_brewing-climax_california_classic,0,0,244613513217,"{""name"":""Climax California Classic"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-flying_dog_brewery-horn_dog,0,0,244623474688,"{""name"":""Horn Dog"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""By far the biggest dog in the yard... Horn Dog Barley Wine is a dark and malty English-style Barely Wine that is aged for a minimum of three months before being packaged. Like a fine wine, this beer will only get better with age when stored at optimum conditions."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,39,1
-marin_brewing-hoppy_holidaze,0,0,244858814465,"{""name"":""Hoppy Holidaze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-o_gara_s_bar_grill,0,0,244859863041,"{""name"":""O'Gara's Bar & Grill"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55104"",""country"":""United States"",""phone"":""1-651-644-3333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""146 Snelling Avenue North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9458,""lon"":-93.167}}",1,6,1
-dogfish_head_craft_brewery-immort_ale,0,0,244629438464,"{""name"":""Immort Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-southampton_publick_house,0,0,245116108800,"{""name"":""Southampton Publick House"",""city"":""Southampton"",""state"":""New York"",""code"":""11968"",""country"":""United States"",""phone"":""1-631-283-2800"",""website"":""http://southamptonbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The word about the quality of our beer began to get around the metro New York region as soon as we turned on the spigots and started to serve it in our Southampton restaurant. Almost from day one, leading restaurants, pubs and taverns have requested our crafted brews for their own patrons. Our Brewmaster, Phil Markowski has personally directed the flow of our ales and lagers into the finest outlets. Our Mission is to offer a wide variety of specialty ales and lagers. Our small batch brews range from classic farmhouse styles to traditional sessions beers to be enjoyed year-round."",""address"":[""40 Bowden Square""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8903,""lon"":-72.3927}}",1,42,1
-dogfish_head_craft_brewery-beewolf_braggot,0,0,244613185536,"{""name"":""Beewolf Braggot"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a hybrid of ale and mead made with 51% malted barley (Pale and Munich malted barley) and 49% Orange blossom honey, it is lightly hopped, spiced with Hibiscus flowers and fermented with Australian ale yeast.\r\n\r\nOur Milton, DE microbrewery brewer Jon Talkington came up with this beer because of his love of different kinds of meads and his interest in Nordic lore and mythology. The name Beewolf is the name Beowulf translated, meaning bear.\r\n \r\nColor- light amber.\r\nAroma- Pear like fruitiness, with a clean malt and floral honey nose.\r\nFlavor- sweet malt and honey with a subtle fruitiness and a hint of caramel.\r\nABV 7.0%\r\nIBU's 25\r\n\r\nDue to the limited availability of Beewolf Braggot, we are sorry that we are not able to offer growlers to go.""}",1,16,1
-hp_bulmer,0,0,244740194305,"{""name"":""HP Bulmer"",""city"":""Hereford"",""state"":""Hereford and Worcester"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-01432-352000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Cider Mills""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.2626,""lon"":-71.8023}}",1,15,1
-great_dane_pub_and_brewing_1-landmark_gold,0,0,244739211264,"{""name"":""Landmark Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-new_glarus_brewing_company-home_town_blonde,0,0,244873560066,"{""name"":""Home Town Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-swan_brewery,0,0,245118140418,"{""name"":""Swan Brewery"",""city"":""Canning Vale"",""state"":""Western Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(08)-9350-0222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""25 Baile Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-32.0638,""lon"":115.912}}",1,47,1
-brown_street_brewery-munich_helle,0,0,244487094274,"{""name"":""Munich Helle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-gatz_brauhaus-helles_naturtrub,0,0,244623015937,"{""name"":""Helles Naturtrub"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gatz_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-kessler_brewing,0,0,244737703937,"{""name"":""Kessler Brewing"",""city"":""Helena"",""state"":""Montana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.5958,""lon"":-112.027}}",1,9,1
-flossmoor_station_brewery-station_master_wheat_ale,0,0,244620525569,"{""name"":""Station Master Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
-scuttlebutt_brewing-amber_ale,0,0,244998864898,"{""name"":""Amber Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
-boston_beer_company,0,0,244364148736,"{""name"":""Boston Beer Company"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2130"",""country"":""United States"",""phone"":""1-800-372-1131"",""website"":""http://www.samueladams.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Jim Koch founded The Boston Beer Company in 1984 because he believed that Americans deserved better beer. Today, we're a team of about 350 people, and we all share a common passion for bringing great Samuel Adams beers to beer lovers everywhere. We've worked hard for the many successes we've enjoyed over the years. The Boston Beer Company has been cited as one of the best companies to work for by Boston Magazine, one of the Best Entry-Level Jobs by The Princeton Review, and our beers have won more awards than any beer in history. Jim has been named an Entrepreneur of the Year by Inc. Magazine. Our brewers keep amazing us with innovative new brews, most recently Samuel Adams Utopias and Samuel Adams Chocolate Bock."",""address"":[""30 Germania Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3144,""lon"":-71.1034}}",1,19,1
-southern_tier_brewing_co,0,0,245116502017,"{""name"":""Southern Tier Brewing Co"",""city"":""Lakewood"",""state"":""New York"",""code"":""14750"",""country"":""United States"",""phone"":""716-763-5479"",""website"":""http://www.southerntierbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Southern Tier Brewing Company was founded in 2004 by Phineas DeMink and Allen Yahn with the vision of bringing small batch brewing back to a region rich in brewing tradition. In 2003 Skip and Phin purchased the defunct Old Saddle Back Brewing Co. in Pittsfield, Massachusetts. All the equipment was removed and brought back to Lakewood, New York and set up at its new 10,000 square foot home, The Southern Tier Brewing Company. The Brewery began operations in February 2004 distributing regionally. By 2005 sales covered the majority of the New York State and the eastern half of Pennsylvania. In the beginning their two Flagship brands were a Pilsner and Mild Ale. Oh yeah they also brewed IPA! As it turned out the flagships were a flop and the IPA was a huge success. They next launched a line of seasonal beers which have gained great success. Since the beginning, Southern Tier has experienced steady growth, currently distributing to over 25% of the United States. Multiple expansions have been made to keep up with demand and the brewery continues to be innovative by producing new products. Keep a look out for new products coming to stores near you."",""address"":[""2051A Stoneman Circle""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.1008,""lon"":-79.3357}}",1,43,1
-barley_s_2_smokehouse_and_brewpub,0,0,244363624449,"{""name"":""Barley's #2 Smokehouse and Brewpub"",""city"":""Columbus"",""state"":""Ohio"",""code"":""43215"",""country"":""United States"",""phone"":""1-614-485-0227"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1130 Dublin Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9745,""lon"":-83.049}}",1,18,1
-inveralmond_brewery-blackfriar,0,0,244745699330,"{""name"":""Blackfriar"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""inveralmond_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,28,1
-otto_s_pub_and_brewery-kclinger_s_brown_ale,0,0,244859469825,"{""name"":""KClinger's Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A brown ale brewed by Otto's for KClinger's Tavern in Hanover Pennsylvania."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,5,1
-santa_cruz_brewing,0,0,244981694465,"{""name"":""Santa Cruz Brewing"",""city"":""Santa Cruz"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.9741,""lon"":-122.031}}",1,3,1
-flying_dog_brewery-gonzo_imperial_porter,0,0,244629962753,"{""name"":""Gonzo Imperial Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Gonzo Imperial Porter is deep and complex. This turbo charged version of the Road Dog Porter is mysteriously dark with a rich malty body, intense roasted flavors, and a surprisingly unique hop kick. With Gonzo weighing in at 7.8% ABV, it will bite you in the ass if you don't show it the proper respect."",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
-hale_s_ales_3-amber_ale,0,0,244755267584,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,52,1
-golden_valley_brewery_and_pub-geist_bock,0,0,244610826241,"{""name"":""Geist Bock"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""This is one of our rare lagers brewed in the style of the German Heiliges Geist Bock, or Holy Ghost Bock. The name refers to the lighter nature of the beer as opposed to the darker and heavier Doppel Bock and Mai Bock also brewed during the spring in Germany. There is a rich malt flavor, a firm German style lager head, and a clean lagered finish to this beer. Available on draft or in 12 oz. bottles."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,10,1
-brasserie_duyck,0,0,244494565376,"{""name"":""Brasserie Duyck"",""city"":""Jenlain"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.27.49.70.03"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""113, rte Nationale""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.3089,""lon"":3.6285}}",1,49,1
-courage_brewery-john_courage_amber,0,0,244478836736,"{""name"":""John Courage Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courage_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-boulder_beer_company-obovoid_empirical_stout,0,0,244379746306,"{""name"":""Obovoid Empirical Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,57,1
-ronald_mengerink,0,0,244980908033,"{""name"":""ronald mengerink"",""city"":""baarle-hertog"",""state"":"""",""code"":""2387"",""country"":""Belgium"",""phone"":""0032 14699800"",""website"":""http://www.dedochtervandekorenaar.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""pastoor de katerstraat 24""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4421,""lon"":4.9232}}",1,1,1
-denver_chophouse_and_brewery-nut_brown_ale,0,0,244630880256,"{""name"":""Nut Brown Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
-great_divide_brewing,0,0,244738359297,"{""name"":""Great Divide Brewing"",""city"":""Denver"",""state"":""Colorado"",""code"":""80205"",""country"":""United States"",""phone"":""1-303-296-9460"",""website"":""http://www.greatdivide.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Since 1994, Great Divide has brewed the most balanced yet assertive and flavorful beers possible. This commitment has not gone unrewarded Great Divide has racked up 12 Great American Beer Festival Medals and four World Beer Cup awards, and was recently honored as the 23rd Best Brewer in the World in Ratebeer.com's World's Top 100 Brewers, (2007). See for yourself what the excitement is about and then introduce your friends to the new frontier of beer. --http://www.greatdivide.com"",""address"":[""2201 Arapahoe Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7539,""lon"":-104.989}}",1,11,1
-stillwater_artisanal_ales-stateside_saison,0,0,245117812737,"{""name"":""Stateside Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stillwater_artisanal_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An 'American Farmhouse Ale.' It's a Belgian-inspired brew that uses a combination of European malts, hops from New New Zealand and the United States.. and a classic farmhouse yeast to achieve a fruity, yet spicy, melange of flavors and aroma."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,46,1
-st_john_brewers-tropical_mango,0,0,245115191297,"{""name"":""Tropical Mango"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_john_brewers"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer that embodies the uniqueness and character of the Caribbean. Subtle malt notes start this beer off and it finishes with just the right amount of hops for balance.\r\n\r\nTropical Mango Pale Ale is a light pale ale with a mango fruit essence that is one of a kind taste. No matter where you are enjoying one it will bring you to a Caribbean state of mind."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-brasserie_des_vosges,0,0,244371423232,"{""name"":""Brasserie des Vosges"",""city"":""Dommartin les Remiremont"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.29.22.11.36"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""680 rue de la Brasserie""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":48.0028,""lon"":6.6583}}",1,34,1
-brewery_ommegang-obamagang_inauguration_ale,0,0,244488404993,"{""name"":""Obamagang Inauguration Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-cigar_city_brewing,0,0,244489519106,"{""name"":""Cigar City Brewing"",""city"":""Tampa"",""state"":""Florida"",""code"":""33607"",""country"":""United States"",""phone"":""813-348-6363 ext 206"",""website"":""http://cigarcitybeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3924 West Spruce Street Suite A""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":27.9587,""lon"":-82.5093}}",1,37,1
-left_coast_brewing,0,0,244737310720,"{""name"":""Left Coast Brewing"",""city"":""San Clemente"",""state"":""California"",""code"":""92673"",""country"":""United States"",""phone"":""1-949-361-9972"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1245 Puerta del Sol""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.4577,""lon"":-117.589}}",1,8,1
-iron_city_brewing_co,0,0,244736720897,"{""name"":""Iron City Brewing Co."",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15201"",""country"":""United States"",""phone"":""412-682-7400"",""website"":""http://www.ironcitybrewingcompany.com/Default.aspx"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Iron City Brewing Company is Pittsburgh born and brewed. We've been a Pittsburgh tradition since 1861. That was the year a German immigrant by the name of Edward Frauenheim founded Iron City Brewery and began a legacy of producing quality beers and lagers in the city of Pittsburgh. Today, the new Iron City Brewing Company is poised to carry on a tradition that is synonymous with pride, innovation and the Western Pennsylvania region. The new Iron City Brewing Company is committed to its employees, its customers, and the community. We have an experienced team with deep resources that is dedicated to making Iron City Brewing Company a successful brewery that the region can be proud to call its own."",""address"":[""3340 Liberty Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.461,""lon"":-79.9653}}",1,7,1
-fifty_fifty_brewing_co-base_camp_golden_ale,0,0,244612726784,"{""name"":""Base Camp Golden Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The lightest of FiftyFifty's ales, Base Camp is a thirst quenching delight. Pale straw to light gold in color, this beer has a mild malt flavor combined with light bitterness and hop flavor. This beer finishes dry and is very light and refreshing on the palate. Base Camp is a \""session beer\"", meaning you can easily toss back a few in one sitting. So go ahead, pull up a chair and camp out for awhile."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,14,1
-dogfish_head_craft_brewery-lawnmower,0,0,244631601152,"{""name"":""Lawnmower"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Lawnmower is our intro for those who need a little help jumping feet first into the crazy world that is Dogfish Head beer.\r\n\r\nIt's a starter beer, but it's not dumbed down. Lawnmower is made with quality ingredients and is a great thirst quencher - perfect to enjoy after a day in the sun mowing the lawn (or anything else that gets you hot and bothered)!\r\n\r\nDraft-Only, Limited Distribution"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-oyster_bar_bistro_and_brewery-belgian_style_wit,0,0,244858224641,"{""name"":""Belgian Style Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-otto_s_pub_and_brewery-mount_hill_pale_ale,0,0,244876771329,"{""name"":""Mount Hill Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An English pale ale brewed by Otto's for the Mount Hill Tavern in Harrisburg Pennsylvania."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,48,1
-pokka_beer_works,0,0,244980514818,"{""name"":""Pokka Beer Works"",""city"":""Nagoya"",""state"":""Chubu"",""code"":"""",""country"":""Japan"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.1814,""lon"":136.906}}",1,0,1
-high_falls_brewing-honey_brown,0,0,244756840451,"{""name"":""Honey Brown"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Brewer's Website:\r\nThe Dundee family began with Honey Brown Lager in the early 1990's during the height of the craft brewing resurgence. Introduced by then brewery head Jack \""JW\"" Wehle, Honey Brown was a full bodied lager brewed with natural honey provided by Wixon's Farm in the Finger Lakes town of Dundee, New York. The brand was an overwhelming success that defied definition as a style and grew to tremendous acclaim, garnering several medals at the World Beer Cup and the Great American Beer Festival."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
-brasserie_thiriez,0,0,244495286272,"{""name"":""Brasserie Thiriez"",""city"":""Esquelbecq"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.28.62.88.44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""22 rue Wormhout""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8851,""lon"":2.4329}}",1,50,1
-element_brewing_company-dark_element,0,0,244613513218,"{""name"":""Dark Element"",""abv"":8.75,""ibu"":65.5,""srm"":22.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""element_brewing_company"",""updated"":""2011-04-18 05:25:23"",""description"":""American Black Ale. Aromas of an American IPA, dark toffee and chocolate flavors without roasted bitterness."",""style"":""Specialty Beer"",""category"":""Other Style""}",1,17,1
-frederic_robinson_ltd-northern_glory_premium_ale,0,0,244623474689,"{""name"":""Northern Glory Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederic_robinson_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-miller_brewing-miller_lite,0,0,244858814466,"{""name"":""Miller Lite"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship brand, Miller Lite, is the great tasting, less filling beer that defined the American light beer category in 1975. We deliver a clear, simple message to consumers: \""Miller Lite is the better beer choice.\"" What's our proof? \r\n1) Miller Lite is the original light beer. \r\n2) Miller Lite has real beer taste because it's never watered down. \r\n3) Miller Lite is the only beer to win four gold awards in the World Beer Cup for best American-style light lager. (2006, 2002, 1998, 1996) \r\n4) Miller Lite has half the carbs of Bud Light and fewer calories*. \""Miller Lite. Good Call.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
-orkney_brewery-red_macgregor,0,0,244859863042,"{""name"":""Red MacGregor"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Macgregor is a unique beer: delicate and sophisticated yet the robust cask conditioned version of this beer was the first Scottish beer to win the BIIA World Cask Beer Gold Medal.\r\n\r\nOn the nose, this ruby-red beer is delicate, floral and fruity, with notes of violets, cherries, toffee and caramel. \r\n\r\nOn the palate, the fruits combine with a juicy malt character and hints of toasted malt, with a biscuit malt and spicy hop finish."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,6,1
-dragonmead_microbrewery-nagelweiss,0,0,244629504000,"{""name"":""Nagelweiss"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This German style wheat beer contains about 50% malted wheat and is balanced with Hallertau hops. This beer finishes low in gravity so the final taste is light on the palette and extremely drinkable. This is sure to be a favorite with first time and long time wheat beer drinkers."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,54,1
-southern_tier_brewing_co-hoppe_imperial_extra_pale_ale,0,0,245116174336,"{""name"":""Hoppe Imperial Extra Pale Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The simplicity of Hoppe tests the skill and ability of the brewer to create something truly majestic. We craft this much like a sculptor who uses only a hammer and chisel to shape stone into a masterpiece. Hoppe is spawned of these few essentials: barley, wheat, hops, yeast and water. This limited palette is an exercise in minimalism, with refined elements which are deliberately selected. This simple combination creates a golden shimmering brew infused with delicate aromas. The artful nature of this beer is exposed with the first taste. As the malt and hops create a composition of flavors, an elegant finish leaves an impression that your tastes will not soon forget."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,42,1
-f_x_matt_brewing-saranac_winter_wassail,0,0,244613185537,"{""name"":""Saranac Winter Wassail"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""At the heart of Saranac Winter Wassail is a classic English ale brewed with English Malt & Fuggles Hops. Look for hits of cinnamon, nutmeg, orange and allspice. Cheers to the holiday season!"",""style"":""Winter Warmer"",""category"":""Other Style""}",1,16,1
-humboldt_brewing-hemp_ale,0,0,244740259840,"{""name"":""Hemp Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-great_divide_brewing-hades,0,0,244739276800,"{""name"":""Hades"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hades is a Belgian-style strong golden ale brewed with a rare Belgian yeast strain that gives the beer a distinctive spicy flavor and aroma. Noticeable hops and medium malt character make it an extremely well-balanced, crisp ale."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,13,1
-new_glarus_brewing_company-wisconsin_belgian_red_brand,0,0,244873560067,"{""name"":""Wisconsin Belgian Red Brand"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-thomas_creek_brewery,0,0,245118205952,"{""name"":""Thomas Creek Brewery"",""city"":""Greenville"",""state"":""South Carolina"",""code"":""29605"",""country"":""United States"",""phone"":""1-864-605-1166"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2054 Piedmont Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.7968,""lon"":-82.4245}}",1,47,1
-c_h_evans_brewing_company,0,0,244487159808,"{""name"":""C.H. Evans Brewing Company"",""city"":""Albany"",""state"":""New York"",""code"":""12207"",""country"":""United States"",""phone"":""(518) 447-9000"",""website"":""http://www.evansale.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""19 Quackenbush Square""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6542,""lon"":-73.7481}}",1,31,1
-gold_crown_brewing,0,0,244623081472,"{""name"":""Gold Crown Brewing"",""city"":""Waterloo"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-886-2071"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""71 King Street North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.4676,""lon"":-80.5231}}",1,38,1
-krogh_s_restaurant_and_brewpub-brogen_meadow_pale_ale,0,0,244737703938,"{""name"":""Brogen Meadow Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-flying_dog_brewery-raging_bitch_belgian_ipa,0,0,244620525570,"{""name"":""Raging Bitch Belgian IPA"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""“Two inflammatory words... one wild drink. Nectar imprisoned in a bottle. Let it out. It is cruel to keep a wild animal locked up. Uncap it. Release it....stand back!! Wallow in its golden glow in a glass beneath a white foaming head. Remember, enjoying a RAGING BITCH, unleashed, untamed, unbridled- and in heat- is pure GONZO!! It has taken 20 years to get from there to here. Enjoy!”"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,33,1
-shepherd_neame-master_brew_bitter,0,0,244998930432,"{""name"":""Master Brew Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shepherd_neame"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-boulder_beer_company-planet_porter_boulder_porter,0,0,244364214272,"{""name"":""Planet Porter / Boulder Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
-spanish_peaks_brewing-winter_cheer,0,0,245116567552,"{""name"":""Winter Cheer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
-barley_s_brewing_1,0,0,244363624450,"{""name"":""Barley's Brewing #1"",""city"":""Columbus"",""state"":""Ohio"",""code"":""43215"",""country"":""United States"",""phone"":""1-614-228-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""467 North High Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9719,""lon"":-83.0027}}",1,18,1
-iron_hill_brewery_newark,0,0,244745764864,"{""name"":""Iron Hill Brewery - Newark"",""city"":""Newark"",""state"":""Delaware"",""code"":""19711"",""country"":""United States"",""phone"":""1-302-266-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""147 East Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.6834,""lon"":-75.7467}}",1,28,1
-pacific_rim_brewing-castaway_barley_wine_winter_ale,0,0,244982153216,"{""name"":""Castaway Barley Wine Winter Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-schloss_eggenberg,0,0,244981760000,"{""name"":""Schloss Eggenberg"",""city"":""Vorchdorf"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-76-14/63-45-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Eggenberg 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9904,""lon"":13.9238}}",1,3,1
-folx_les_caves,0,0,244629962754,"{""name"":""Folx-les-Caves"",""city"":""Jauche"",""state"":""Brabant Wallon"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""B-1350 Jauche""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.6818,""lon"":4.9547}}",1,55,1
-hannen_brauerei-hannen_alt,0,0,244755333120,"{""name"":""Hannen Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hannen_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""Classic German Alt"",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,52,1
-gordon_biersch_brewing-schwarzbier,0,0,244610891776,"{""name"":""Schwarzbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,10,1
-brasserie_la_binchoise-blonde_tradition,0,0,244494565377,"{""name"":""Blonde Tradition"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_binchoise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-de_leyerth_brouwerijen-urthel_vlaemse_bock,0,0,244611350528,"{""name"":""Urthel Vlaemse Bock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
-boulevard_brewing_company-double_wide_i_p_a,0,0,244379746307,"{""name"":""Double Wide I.P.A."",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Double-Wide I.P.A. uses Zeus and Magnum hops for both bittering and aroma, with Ahtanum hops added solely for aroma. Two additional dry hopping regimens employ Ahtanum, Centennial, and Chinook varietals. The resulting beer – not surprisingly – has a hop forward aroma, redolent of peach and apricot. The assertive flavor bursts forth with citrus notes of blood orange and lemon, a caramel malt backbone serves to balance the intensity of the hops. There is little restraint in the flavor of this beer; it is certainly not for the pedestrian palate."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
-sacramento_brewing_company-abbey_extra,0,0,244980908034,"{""name"":""Abbey Extra"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,1,1
-dragonmead_microbrewery-willy_s_oompa_loompa,0,0,244630945792,"{""name"":""Willy's Oompa-Loompa"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Little more can be said about this beer than these two words: Chocolate and Stout. This brew fills the palate with slightly sweet, super chocolate, malty flavor.""}",1,58,1
-gulpener_bierbrouwerij-mestreechs_aajt,0,0,244738424832,"{""name"":""Mestreechs Aajt"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gulpener_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-terrapin_beer_company-rye_squared,0,0,245117812738,"{""name"":""Rye Squared"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Double the malt, double the hops, and double the flavor of the original Rye Pale Ale recipe. (Hence the name Rye Squared.) With its mammoth hop aroma, bitterness and flavor, this beer is not for the faint at heart. The Rye Squared clocks in at a hefty 9.5% ABV so double your pleasure and double your fun because Terrapin went a little crazy with this one!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,46,1
-st_peter_s_brewery,0,0,245115256832,"{""name"":""St Peter's Brewery"",""city"":""Bungay"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01986)-782322"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St Peter's Hall""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.7282,""lon"":-76.5836}}",1,40,1
-brasserie_ellezelloise-hercule_stout,0,0,244488011776,"{""name"":""Hercule Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
-broad_ripple_brewing-lawnmower_pale_ale,0,0,244488470528,"{""name"":""Lawnmower Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-columbus_brewing_company-summer_teeth,0,0,244489584640,"{""name"":""Summer Teeth"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""columbus_brewing_company"",""updated"":""2011-03-08 12:22:14"",""description"":""This traditional Bavarian-style kellerbier originated from the small artisanal breweries of Franconia, where it is still a favorite in the local beer gardens. Ours is served unfiltered with a crisp, smooth finish that taste like sunshine. "",""style"":""Kellerbier - Ale"",""category"":""German Ale""}",1,37,1
-live_oak_brewing-live_oak_pilz,0,0,244860518400,"{""name"":""Live Oak Pilz"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp, clean, and refreshing, this pilsner is styled after the original Bohemian classic from the town of Pizen, Czech Republic, Pilz is a golden-colored brew that balances a pleasant hoppiness with its smooth malt flavor. It finishes dry with a moderate bitterness that is a hallmark of the style."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,8,1
-jacob_leinenkugel_brewing_company-original,0,0,244736720898,"{""name"":""Original"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
-gottberg_brew_pub-steinworthy_oktoberfest,0,0,244612726785,"{""name"":""Steinworthy Oktoberfest"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,14,1
-egan_brewing-irish_stout,0,0,244631601153,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
-oyster_bar_bistro_and_brewery,0,0,244858224642,"{""name"":""Oyster Bar Bistro and Brewery"",""city"":""Fort Wayne"",""state"":""Indiana"",""code"":""46825"",""country"":""United States"",""phone"":""1-260-490-6755"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.1475,""lon"":-85.1168}}",1,2,1
-paulaner-original_munich_premium_lager,0,0,245000306688,"{""name"":""Original Munich Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-pumphouse_brewery_restaurant-four_alarm_alt,0,0,244980514819,"{""name"":""Four Alarm Alt"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pumphouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,0,1
-hirschbru_privatbrauerei_hss-doppel_hirsch_bavarian_doppelbock,0,0,244756905984,"{""name"":""Doppel-Hirsch Bavarian-Doppelbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hirschbru_privatbrauerei_hss"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,56,1
-brauerei_fssla-weizla_hell,0,0,244495351808,"{""name"":""Weizla Hell"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
-ellicott_mills_brewing-alpenhof_baltic_porter,0,0,244613578752,"{""name"":""Alpenhof Baltic Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ellicott_mills_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
-fuller_smith_turner_pbc-refreshing_summer_ale,0,0,244623474690,"{""name"":""Refreshing Summer Ale"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-minocqua_brewing_company-nut_brown_ale,0,0,244858880000,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Perhaps the most ancient style of beer, our brown ale is robust with a hint of nut flavor. With definable malt characteristics, this dark ale is sure to please any beer enthusiast’s palate."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
-ostankinskij_pivovarennij_zavod,0,0,244859928576,"{""name"":""Ostankinskij Pivovarennij Zavod"",""city"":""Moskva"",""state"":""Moskva"",""code"":"""",""country"":""Russia"",""phone"":""7-(095)-979-32-36"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ogorodnyj Pr. 20""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.7558,""lon"":37.6176}}",1,6,1
-egan_brewing-the_lonely_guy_india_pale_ale,0,0,244629504001,"{""name"":""The Lonely Guy India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
-sprecher_brewing-sprecher_doppelbock,0,0,245116174337,"{""name"":""Sprecher Doppelbock"",""abv"":7.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark lager was originally brewed as liquid bread to sustain Bavarian monks while fasting. Its sweet complex malt character comes from brewing with many varieties of dark roasted caramel malts and long periods of cold storage (6 months)."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,42,1
-faultline_brewing_1-pale_ale,0,0,244613251072,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
-humboldt_brewing-red_nectar,0,0,244740259841,"{""name"":""Red Nectar"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
-great_waters_brewing_company-honey_wheat,0,0,244739276801,"{""name"":""Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-niagara_falls_brewing-kriek,0,0,244873625600,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
-thunderhead_brewery-amber_ale,0,0,245118205953,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
-capital_brewery-capital_brown_ale,0,0,244487159809,"{""name"":""Capital Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
-goose_island_beer_company_clybourn-hex_nut_brown_ale,0,0,244623081473,"{""name"":""Hex Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,38,1
-kulmbacher_brauerei_ag-kapuziner_schwarz_weizen,0,0,244737703939,"{""name"":""Kapuziner Schwarz-Weizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-foster_s_australia_ltd-foster_s_premium_ale,0,0,244620591104,"{""name"":""Foster's Premium Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""foster_s_australia_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,33,1
-sherlock_s_home,0,0,244998930433,"{""name"":""Sherlock's Home"",""city"":""Minnetonka"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.9133,""lon"":-93.5033}}",1,44,1
-brasserie_dupont-foret_saison,0,0,244364214273,"{""name"":""Foret Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-classic_pale_ale,0,0,245116567553,"{""name"":""Classic Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
-beck_s,0,0,244363689984,"{""name"":""Beck's"",""city"":"""",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.becks.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,18,1
-jacob_leinenkugel_brewing_company-leinenkugel_s_honey_weiss,0,0,244745764865,"{""name"":""Leinenkugel's Honey Weiss"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Select Pale and Wheat Malt, Cluster hops and a hint of Wisconsin honey give this unique refresher a clean, crisp, slightly sweet taste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
-pike_pub_and_brewery-kilt_lifter_scotch_ale,0,0,244982218752,"{""name"":""Kilt Lifter Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,5,1
-shaftebury_brewing,0,0,244981760001,"{""name"":""Shaftebury Brewing"",""city"":""Delta"",""state"":""British Columbia"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.1487,""lon"":-122.912}}",1,3,1
-front_street_brewery-bucktown_stout,0,0,244630028288,"{""name"":""Bucktown Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
-harbor_city_brewing-full_tilt_ipa,0,0,244755398656,"{""name"":""Full Tilt IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harbor_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
-gray_brewing-classic_american_pale_ale,0,0,244737900544,"{""name"":""Classic American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-brasserie_la_choulette-blonde,0,0,244494630912,"{""name"":""Blonde"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_choulette"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-de_struise_brouwers-witte,0,0,244611416064,"{""name"":""Witte"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_struise_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-brasserie_dupont-moinette_brune,0,0,244498169856,"{""name"":""Moinette Brune"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-santa_cruz_brewing-pacific_porter,0,0,244980908035,"{""name"":""Pacific Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_cruz_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
-egan_brewing-cow_palace_scotch_ale_1998,0,0,244630945793,"{""name"":""Cow Palace Scotch Ale 1998"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,58,1
-half_acre_beer_company,0,0,244738490368,"{""name"":""Half Acre Beer Company"",""city"":""Chicago"",""state"":""IL"",""code"":""60618"",""country"":""United States"",""phone"":"""",""website"":""http://inyourguts.blogspot.com/"",""type"":""brewery"",""updated"":""2010-11-14 11:17:07"",""description"":"""",""address"":[""4257 North Lincoln Avenue""]}",1,11,1
-terrapin_beer_company-terrapin_monk_s_revenge,0,0,245117878272,"{""name"":""Terrapin Monk's Revenge"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian IPA has a malt bill of a Belgian Tripel and a hop bill of a Double IPA. The yeast I chose for this beer comes from one of the 7 Trappist breweries.\r\n\r\nBelieve it or not, this is the first time in my professional brewing career that I have used dextrose (corn syrup) in a Terrapin brew. True to style no doubt.\r\n\r\n“Monk’s Revenge” (otherwise known as the “Big Nasty”) has all the flavor and aroma of a Double IPA while hidden beneath lies the malt character of a fine Belgian Tripel.\r\n\r\nI hope you enjoy my interpretation of this very fun style."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,46,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-bull_town_brown,0,0,245115256833,"{""name"":""Bull Town Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
-brewery_at_martha_s_vineyard,0,0,244488077312,"{""name"":""Brewery at Martha's Vineyard"",""city"":""Oak Bluffs"",""state"":""Massachusetts"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4548,""lon"":-70.565}}",1,34,1
-brouwerij_de_ranke,0,0,244488470529,"{""name"":""Brouwerij De Ranke"",""city"":""Wevelgem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-056-41-82-41"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brugsstraat 43""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8105,""lon"":3.1857}}",1,35,1
-copper_eagle_brewing-red_rooster_pale_ale,0,0,244489584641,"{""name"":""Red Rooster Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-malt_shovel_brewery,0,0,244860518401,"{""name"":""Malt Shovel Brewery"",""city"":""Camperdown"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":""61-(02)-9519-3579"",""website"":""http://www.maltshovel.com.au/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""99 Pyrmont Bridge Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":-33.8867,""lon"":151.174}}",1,8,1
-kelmer_s_brewhouse,0,0,244736786432,"{""name"":""Kelmer's Brewhouse"",""city"":""Santa Rosa"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.4405,""lon"":-122.714}}",1,7,1
-govnor_s_public_house,0,0,244739604480,"{""name"":""Govnor's Public House"",""city"":""Lake In The Hills"",""state"":""Illinois"",""code"":""60156"",""country"":""United States"",""phone"":""1-847-658-4700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""220 North Randall Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1779,""lon"":-88.3377}}",1,14,1
-elk_creek_cafe_and_aleworks-great_blue_heron_pale_ale,0,0,244631601154,"{""name"":""Great Blue Heron Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Much like the local icon it is named for, our version of American Pale Ale has a bold character. We add a healthy dose of hops in both the kettle and the finishing tank."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-pacific_coast_brewing-holiday_scottish_strong_ale,0,0,244981039104,"{""name"":""Holiday Scottish Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,2,1
-paulaner-salvator,0,0,245000372224,"{""name"":""Salvator"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""Paulaner Salvator, with its strong, typically malty flavour, is what you could call the \""original\"" Paulaner. The bottom-fermented \""Doppelbock\"" beer combines the finest hops and dark barley malt. The Paulaner monks used to drink Salvator as a food substitute during Lent. The most famous master brewer was Frater Barnabas, who took over the Paulaner monastery brewery in 1773. His original recipe remains practically unchanged to this day. In order to preserve the original, Paulaner registered the name \""Salvator\"" with the patent office in 1896.\r\n\r\nSalvator:\r\n18.3% original wort; 7.9% alcohol; 70.6 kcal/100 ml"",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,48,1
-rahr_sons_brewing_company-ugly_pug,0,0,244980580352,"{""name"":""Ugly Pug"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ugly Pug is a schwarzbier, or black lager. But the real story is its name. Fritz saw his mother-in-law’s pug, Oscar, lounging in a chair and he (Fritz) shouted, “What an ugly pug!” Everyone laughed. Your’re right – they were drinking a test batch that night."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,0,1
-hoptown_brewing-golden_ale,0,0,244756905985,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoptown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-brauhaus_johann_albrecht_dsseldorf-messing,0,0,244495482880,"{""name"":""Messing"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_dsseldorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-elliott_bay_brewery_and_pub-ipa,0,0,244613578753,"{""name"":""IPA"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
-gordon_biersch_brewing-maibock,0,0,244623540224,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,39,1
-molson_breweries_of_canada-full_moon_winter_ale,0,0,244858880001,"{""name"":""Full Moon Winter Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":""This full-bodied ale is brewed with roasted malts and a hint of Dark Belgian sugar for a perfectly balanced taste."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,4,1
-pacific_beach_brewhouse,0,0,244859928577,"{""name"":""Pacific Beach Brewhouse"",""city"":""Pacific Beach"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7978,""lon"":-117.24}}",1,6,1
-emery_pub-porter,0,0,244629569536,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emery_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
-staatliches_hofbrauhaus_in_munchen-munchner_kindl_weissbier_munchner_weisse,0,0,245116239872,"{""name"":""Münchner Kindl Weissbier / Münchner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,42,1
-firehouse_brewing-brown_cow_ale,0,0,244613251073,"{""name"":""Brown Cow Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,16,1
-independence_brew_pub-ipa,0,0,244740259842,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-green_flash_brewing-le_freak_belgian_style_ipa,0,0,244739342336,"{""name"":""Le Freak Belgian Style IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Extreme ale converging San Diego-style imperial pale ale and Belgian-style trippel."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,13,1
-nor_wester_brewery_and_public_house,0,0,244873625601,"{""name"":""Nor'Wester Brewery and Public House"",""city"":""Portland"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5235,""lon"":-122.676}}",1,41,1
-thunderhead_brewery-eigenberg_smoked_porter,0,0,245118271488,"{""name"":""Eigenberg Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-capital_brewery-capital_island_wheat,0,0,244487225344,"{""name"":""Capital Island Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,31,1
-govnor_s_public_house-fomharfest,0,0,244623147008,"{""name"":""Fomharfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,38,1
-lakefront_brewery-white,0,0,244737769472,"{""name"":""White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-fox_river_brewing_1-caber_tossing_scottish_ale,0,0,244620591105,"{""name"":""Caber Tossing Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-sierra_nevada_brewing_co-bigfoot_2000,0,0,244998930434,"{""name"":""Bigfoot 2000"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-brasserie_fantme-strange_ghost,0,0,244481458176,"{""name"":""Strange Ghost"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-honey_wheat,0,0,245116567554,"{""name"":""Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
-big_ridge_brewing-clover_pale_ale,0,0,244363689985,"{""name"":""Clover Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-jennings_brewery,0,0,244745764866,"{""name"":""Jennings Brewery"",""city"":""Cockermouth"",""state"":""Cumbria"",""code"":""CA13 9NE"",""country"":""United Kingdom"",""phone"":""0845 1297185"",""website"":""http://www.jenningsbrewery.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Castle Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.6649,""lon"":-3.3634}}",1,28,1
-pivara_skopje-skopsko,0,0,244982284288,"{""name"":""Skopsko"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivara_skopje"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-silverado_brewing-impale_ale,0,0,244981825536,"{""name"":""Impale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""silverado_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
-gilde_brauerei,0,0,244630028289,"{""name"":""Gilde Brauerei"",""city"":""Hannover"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)511-/-9808-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hildesheimer Strae 132""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.3544,""lon"":9.7532}}",1,55,1
-harpoon_brewery_windsor,0,0,244755398657,"{""name"":""Harpoon Brewery - Windsor"",""city"":""Windsor"",""state"":""Vermont"",""code"":""5089"",""country"":""United States"",""phone"":""1-802-674-5491"",""website"":""http://www.harpoonbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We started the Harpoon Brewery in 1986 because, like today, we loved beer and wanted more good choices. While traveling in Europe after college, we drank many wonderfully diverse, fresh, local beers. We also saw firsthand how important local breweries were to their communities. After our travels, we asked each other, why not bring great beer and that sense of community to New England? That was the genesis of the Harpoon Brewery. Twenty years later we still revel in making great beer and sharing that joy with our friends and neighbors. The success that we have had running Harpoon is due entirely to the wonderful employees who brew, package, warehouse, sell, deliver, and market our beer and you, the people who drink Harpoon. We hope that our sense of gratitude is reflected in both the quality of the beer and the spirit of fun and enjoyment surrounding our beer and breweries."",""address"":[""336 Ruth Carney Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.513,""lon"":-72.4015}}",1,52,1
-half_moon_bay_brewing-sandy_beach_blonde_hefeweizen,0,0,244737966080,"{""name"":""Sandy Beach Blonde Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,10,1
-brasserie_la_choulette-les_sans_culottes,0,0,244494827520,"{""name"":""Les Sans Culottes"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_choulette"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-delafield_brewhaus-hopfenstange_pils,0,0,244611416065,"{""name"":""Hopfenstange Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-brew_makers,0,0,244498169857,"{""name"":""Brew Makers"",""city"":""Mountain View"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.3861,""lon"":-122.084}}",1,57,1
-schlobrauerei_reckendorf-dunkel,0,0,244980908036,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-empyrean_brewing_company-chaco_canyon_honey_gold,0,0,244630945794,"{""name"":""Chaco Canyon Honey Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-half_pints_brewing_company,0,0,244738490369,"{""name"":""Half Pints Brewing Company"",""city"":""Winnipeg"",""state"":""Manitoba"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":""http://www.halfpintsbrewing.com"",""type"":""brewery"",""updated"":""2010-12-13 19:30:01"",""description"":"""",""address"":[""550 Roseberry Street""]}",1,11,1
-the_church_brew_works-millennium_trippel,0,0,245117878273,"{""name"":""Millennium Trippel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Trippel is a very special type of beer. A Belgian Trippel could be called the beer version of a Champagne. It is very light in color and highly carbonated giving an appearance similar to Champagne. The flavor is somewhat sweet and malty as well as strong."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
-stieglbrauerei_zu_salzburg_gmbh,0,0,245115322368,"{""name"":""Stieglbrauerei zu Salzburg GmbH"",""city"":""Salzburg"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-662-/-83-87-0"",""website"":""http://www.stieglbrauerei.at/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kendlerstraße 1""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.8005,""lon"":13.0444}}",1,40,1
-brewmasters_restaurant_and_brewery_south-olde_st_nick,0,0,244488142848,"{""name"":""Olde St.Nick"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-brouwerij_girardin-gueuze_1882,0,0,244488470530,"{""name"":""Gueuze 1882"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_girardin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,35,1
-copper_kettle_brewery-eislin_dubbel,0,0,244489584642,"{""name"":""Eislin Dubbel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Dubbel is a nice brown creamy sweet, malty and strong ale. It is a traditional Belgian dubbel ale with a secondary fermentation. This complex ale has many flavor characteristics. At 8% abv you will notice a slight alcohol warmth at the finish ."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,37,1
-mccashin_s_brewery_malthouse,0,0,244860518402,"{""name"":""McCashin's Brewery & Malthouse"",""city"":""Nelson"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(03)-547-0526"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""660 Main Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1989,""lon"":-98.0673}}",1,8,1
-klosterbrauerei_neuzelle-original_badebier_original_bathbeer_monastery_fun,0,0,244736786433,"{""name"":""Original Badebier / Original Bathbeer Monastery Fun"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,7,1
-gray_brewing-autumn_ale,0,0,244739670016,"{""name"":""Autumn Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,14,1
-erie_brewing_company-presque_isle_pilsner,0,0,244631666688,"{""name"":""Presque Isle Pilsner"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Presque Isle and the bay it creates have played many significant roles in the history of Erie and our young nation. The US Government chose this location to build a fleet of ships during the war of 1812 because it formed the only protected harbor on Lake Erie. In 1813, during the battle of Lake Erie, Commodore Oliver Hazard Perry successfully defended Lake Erie against the British with ships that were built on Presque Isle Bay, making a significant mark on the pages of history. Presque Isle Pilsner, a tribute to history is a hand crafted pilsner that is \""A noble beer for Noble People.\"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,59,1
-pacific_rim_brewing,0,0,244981039105,"{""name"":""Pacific Rim Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98106"",""country"":""United States"",""phone"":""1-206-764-3844"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9832 14th Avenue SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5143,""lon"":-122.353}}",1,2,1
-pennichuck_brewing_company-fireman_s_pail_ale,0,0,245000372225,"{""name"":""Fireman's Pail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-rail_house_restaurant_and_brewpub-red,0,0,244980580353,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,0,1
-kalamazoo_brewing-two_hearted_ale,0,0,244756905986,"{""name"":""Two-Hearted Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kalamazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
-brewer_s_art,0,0,244495482881,"{""name"":""Brewer's Art"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21201"",""country"":""United States"",""phone"":""410-547-6925"",""website"":""http://www.belgianbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Set in a grand Mt. Vernon townhouse, The Brewer's Art offers many temptations for your palate. Our seasonally-influenced menu of European-style country fare features meats, fish, seafood, pasta, and vegetarian offerings. Dinner is served daily between 5:30pm - 9:00pm (later on Thursdays, Fridays and Saturdays) and light fare is available from 4:00pm - 11:00pm. Our creative pastry chef prepares our homemade desserts. In addition to brewing our fine beers on the premises, we offer a carefully picked selection of beers and fine wines from around the world, and one of Baltimore's best selections of scotches and spirits."",""address"":[""1106 N. Charles St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3028,""lon"":-76.6164}}",1,50,1
-elm_city_brewing_co-elm_city_schwarzbier,0,0,244613578754,"{""name"":""Elm City Schwarzbier"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elm_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,17,1
-gottberg_brew_pub-1916_irish_stout,0,0,244623540225,"{""name"":""1916 Irish Stout"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
-mordue_brewery,0,0,244858945536,"{""name"":""Mordue Brewery"",""city"":""Wallsend"",""state"":""Tyne and Wear"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0191)-2961879"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""21A Oak Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":55.0167,""lon"":-1.4925}}",1,4,1
-penn_brewery-penndemonium,0,0,244982611968,"{""name"":""PENNdemonium"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced on May 1, 2007. Available May and June. Distributed throughout our network of wholesalers in draft and 22 oz. bottles."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,6,1
-english_ales_brewery-ironside_best,0,0,244629569537,"{""name"":""Ironside Best"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""english_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-rhubarb,0,0,245116239873,"{""name"":""Rhubarb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
-founders_brewing,0,0,244613251074,"{""name"":""Founders Brewing"",""city"":""Grand Rapids"",""state"":""Michigan"",""code"":""49503"",""country"":""United States"",""phone"":""1-616-776-1195"",""website"":""http://www.foundersbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founders Brewing Company, founded by Mike Stevens and Dave Engbers produced its first beer in November of 1997. Built out of a dream and a passion for home brewing, what started out as a hobby quickly became a thriving business. As the years have passed, Founders has built its brewery on the exploration of recipe development and brewing techniques. We are not the standard micro-brewery, rather we have traveled a path that breaks from the standard craft-brewer. Carving a niche out of the craft industry, Founders Brewing Company has built its reputation on producing very unique beers. Our focus is to offer our wholesalers, retailers and consumers a product that stands alone on the shelf and offers a true drinking experience to our friends, the consumer. As the years have passed, Founders has built its brewery on the exploration of recipe development and brewing techniques. We are not the standard micro-brewery, rather we have traveled a path that breaks from the standard craft-brewer. Carving a niche out of the craft industry, Founders Brewing Company has built its reputation on producing very unique beers. Our focus is to offer our wholesalers, retailers and consumers a product that stands alone on the shelf and offers a true drinking experience to our friends, the consumer."",""address"":[""235 Grandville Avenue SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.9585,""lon"":-85.6735}}",1,16,1
-industrias_la_constancia_ilc,0,0,244740259843,"{""name"":""Industrias La Constancia ILC"",""city"":""San Salvador"",""state"":"""",""code"":"""",""country"":""El Salvador"",""phone"":""503-231-5444"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Avenida Independencia No.526""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":13.6998,""lon"":-89.1832}}",1,15,1
-green_mountain_beverage-woodchuck_amber_draft_cider,0,0,244739342337,"{""name"":""Woodchuck Amber Draft Cider"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":""Woodchuck Amber is the original Woodchuck Cider. It's made from a blend of apples and fermented with champagne yeast to produce a great tasting and refreshing alcoholic drink. It's available in 6-packs and 12-packs, as well as on draft."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,13,1
-onion_pub_brewery-pale_ale,0,0,244873625602,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onion_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-thunderhead_brewery-honey_lager,0,0,245118271489,"{""name"":""Honey Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-carlsberg_bryggerierne,0,0,244487225345,"{""name"":""Carlsberg Bryggerierne"",""city"":""Kbenhavn"",""state"":"""",""code"":"""",""country"":""Denmark"",""phone"":""45-33-27-33-27"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vesterflledvej 100""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.6667,""lon"":12.5393}}",1,31,1
-gray_brewing-classic_oatmeal_stout,0,0,244749238272,"{""name"":""Classic Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-lazy_magnolia_brewing_company,0,0,244737769473,"{""name"":""Lazy Magnolia Brewing Company"",""city"":""Kiln"",""state"":""Mississippi"",""code"":""39556"",""country"":""United States"",""phone"":""(228) 467-2727"",""website"":""http://www.lazymagnolia.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7030 Roscoe Turner Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.3764,""lon"":-89.4497}}",1,9,1
-fuller_smith_turner_pbc-vintage_ale_2008,0,0,244620656640,"{""name"":""Vintage Ale 2008"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""I have crafted this very special ale from the finest Challenger and Northdown hops, Maris Otter malted barley, and of course, our unique yeast, to create a truly extraordinary limited edition brew.\r\n\r\nIndividually packed and numbered, this bottle is one of only one hundred and forty-five thousand produced."",""style"":""Old Ale"",""category"":""British Ale""}",1,33,1
-sly_fox_brewhouse_and_eatery_royersford-burns_scottish_ale,0,0,245116895232,"{""name"":""Burns Scottish Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-brasserie_la_binchoise-bruin_tradition_brune_tradition,0,0,244481523712,"{""name"":""Bruin Tradition / Brune Tradition"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_binchoise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-stieglbrauerei_zu_salzburg_gmbh-weizengold_dunkel,0,0,245116633088,"{""name"":""Weizengold Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This dark wheat beer specialty is a natural and spicy beer brand.""}",1,43,1
-birra_moretti-la_rossa,0,0,244363689986,"{""name"":""La Rossa"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birra_moretti"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,18,1
-keesmann_bru-bamberger_herren_pils,0,0,244745764867,"{""name"":""Bamberger Herren Pils"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keesmann_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-prairie_rock_brewing_elgin-vanilla_creme_ale,0,0,244982349824,"{""name"":""Vanilla Creme Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-slottskllans_bryggeri,0,0,245098676224,"{""name"":""Slottskllans Bryggeri"",""city"":""Uppsala"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":""46-018-15-58-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mrstagatan 10-12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":59.8544,""lon"":17.6627}}",1,3,1
-goose_island_beer_company_clybourn-goose_island_midway_ipa,0,0,244630028290,"{""name"":""Goose Island Midway IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
-hochstiftliches_brauhaus_in_bayern-will_brau_ur_bock,0,0,244755398658,"{""name"":""Will-Bräu Ur-Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hochstiftliches_brauhaus_in_bayern"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,52,1
-harpoon_brewery_boston-glacier_harvest_09_wet_hop_100_barrel_series_28,0,0,244738031616,"{""name"":""Glacier Harvest '09 Wet Hop (100 Barrel Series #28)"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""For the 28th session of the Harpoon 100 Barrel Series, we’re celebrating this year’s hop harvest with Glacier Harvest Wet Hop beer, a pale ale made with fresh Glacier hops.\r\n \r\nWet hop beers are brewed using fresh, “wet” hops instead of traditional dried hops—hops contain about 60% moisture when they are first picked.\r\n\r\nTypically, when hops are picked they are quickly dried and refrigerated to increase shelf life and make them more consistent for brewing. Freshly picked wet hops, however, need to be used within hours of harvest or they will begin to degrade rapidly. Wet hops retain more of their natural aroma and volatile flavors that dissipate when dried. This gives wet hop beers a fresher hop flavor and aroma than that of beers hopped with processed hops.\r\nThis yields an immersed, intense hop flavor in the beer.\r\n\r\nHarpoon brewer Ray Dobens, creator of the beer, added a heroic dose of fresh hops the day of the harvest.The hop flavor and aroma from this copper-colored ale comes from a generous late addition of freshly harvested “wet” hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-brauhaus_sternen-huusbier_hell,0,0,244494827521,"{""name"":""Huusbier Hell"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-diamond_knot_brewery_alehouse-hefe_weizen,0,0,244611416066,"{""name"":""Hefe-Weizen"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,12,1
-brewery_corsendonk-christmas_ale,0,0,244498235392,"{""name"":""Christmas Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-schooner_brewery-vail_pale_ale,0,0,244980908037,"{""name"":""Vail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-empyrean_brewing_company-eccentric_ale,0,0,244631011328,"{""name"":""Eccentric Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
-harvest_moon_brewery_cafe-golden_blonde,0,0,244738555904,"{""name"":""Golden Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvest_moon_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-unibroue-chambly_noire,0,0,245117878274,"{""name"":""Chambly Noire"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""The opaque blackness and beige-colored\r\nfoam mousse of Chambly Noire belie its light,\r\nrefreshing body and clean, long finish,\r\nfeaturing hints of roasted coffee beans, toast\r\nand toffee. \r\n\r\nWe recommend pairing it with grilled salmon,\r\nsteak or tuna au poivre, smoked meats,\r\ncoffee-crusted rack of lamb, or chocolate\r\nespresso flan."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,46,1
-stone_brewing_co,0,0,245115322369,"{""name"":""Stone Brewing Co."",""city"":""Escondido"",""state"":""California"",""code"":""92029"",""country"":""United States"",""phone"":""1-760-471-4999"",""website"":""http://www.stonebrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1999 Citracado Parkway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.1157,""lon"":-117.12}}",1,40,1
-bricktown_brewery-vanilla_berry_orange,0,0,244488142849,"{""name"":""Vanilla Berry Orange"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
-brouwerij_slaghmuylder-witkap_pater_singel_abbey_ale,0,0,244488470531,"{""name"":""Witkap-Pater Singel Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_slaghmuylder"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-dc_brau,0,0,244622229504,"{""name"":""DC Brau"",""city"":""Washington"",""state"":""DC"",""code"":""20018"",""country"":""United States"",""phone"":"""",""website"":""http://www.dcbrau.com/"",""type"":""brewery"",""updated"":""2011-08-08 19:02:40"",""description"":""The first brewery to open in the nation's capital since Prohibition."",""address"":[""3178-B Bladensburg Rd. NE""]}",1,37,1
-mendocino_brewing_ukiah-talon,0,0,244860583936,"{""name"":""Talon"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_ukiah"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-klosterbrauerei_weltenburg-hefe_weizen_hell,0,0,244736851968,"{""name"":""Hefe-Weizen Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
-hacker_pschorr_bru-weisse,0,0,244739670017,"{""name"":""Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hacker_pschorr_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,14,1
-estes_park_brewery-staggering_elk,0,0,244631666689,"{""name"":""Staggering Elk"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-palm_breweries-palm_speciale,0,0,244981104640,"{""name"":""Palm Speciale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""palm_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Since 250 years Palm, a top-fermented amber beer, is brewed in the Belgian province of Brabant. It has a soft, full and fruity taste. It is only available in the Benelux. In France it is known as \""Palm Belgique\"" with 6% alcohol percent."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
-pennichuck_brewing_company-halligan_ipa,0,0,245000437760,"{""name"":""Halligan IPA"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-rock_bottom_restaurant_brewery_south_denver,0,0,244980580354,"{""name"":""Rock Bottom Restaurant & Brewery - South Denver"",""city"":""Englewood"",""state"":""Colorado"",""code"":""80112"",""country"":""United States"",""phone"":""1-303-792-9090"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9627 East County Line Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.5678,""lon"":-104.874}}",1,0,1
-karl_strauss_brewery_gardens_sorrento_mesa-belgian_abbey_red,0,0,244756905987,"{""name"":""Belgian Abbey Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-brouwerij_de_landtsheer-malheur_brut_reserve,0,0,244495482882,"{""name"":""Malheur Brut Reserve"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-empyrean_brewing_company-burning_skye_scottish_ale,0,0,244613644288,"{""name"":""Burning Skye Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-granville_island_brewing_company-kitsilano_maple_cream_ale,0,0,244750024704,"{""name"":""Kitsilano Maple Cream Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-nogne_o_det_kompromisslose_bryggeri_a_s-god_jul_winter_ale,0,0,244858945537,"{""name"":""God Jul - Winter Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark ale brewed specially for the Christmas season, with a rich, complex taste of caramel. This is a strong, dark and rather sweet Christmas Beer – just the way we think a Christmas beer should be."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
-pivovar_starobrno-czech_premium_lager,0,0,244982677504,"{""name"":""Czech Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_starobrno"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-epic_brewing_company-epic_pale_ale,0,0,244629569538,"{""name"":""Epic Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""epic_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Supreme Champion Beer - New Zealand International Beer Awards"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
-stone_city_brewing-artist_colony_ale,0,0,245116239874,"{""name"":""Artist Colony Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
-fuller_smith_turner_pbc-fuller_s_esb,0,0,244613316608,"{""name"":""Fuller's ESB"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""ESB was launched into the Fuller's family in 1971, as a winter brew to replace a beer named Old Burton Extra. The potential of the beer was soon realised and ESB was installed as a permanent fixture, creating an immediate impact. \r\n\r\nNot only was it one of the strongest regularly brewed draught beers in the country (at 5.5% ABV), it was also one of the tastiest, and as the awareness of the beer grew, so did its popularity. ESB's reputation was soon enhanced after being named CAMRA's (Campaign for Real Ale) Beer of the Year in 1978, and the beer has not stopped winning since! \r\n\r\nWith three CAMRA Beer of the Year awards, two World Champion Beer awards, and numerous other gold medals to speak of, ESB is, quite simply, the Champion Ale."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,16,1
-ithaca_beer_company-nut_brown,0,0,244740325376,"{""name"":""Nut Brown"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The rich mahogany hue of the Nut Brown is the first thing you will notice. You'll find subtle hints of both chocolate and coffee. We delicately blend chocolate and caramel malts with four others to make this flavorful, easy drinking beer. The malt character will appeal to those looking for a moderately dark ale, but the smoothness is what will surprise all."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
-grolsche_bierbrouwerij-grolsch_premium_pilsner,0,0,244739342338,"{""name"":""Grolsch Premium Pilsner"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""The 'standard' Grolsch beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,13,1
-oyster_bar_bistro_and_brewery-pumpkin_ale,0,0,244873691136,"{""name"":""Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-titletown_brewing-railyard_ale,0,0,245118271490,"{""name"":""Railyard Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
-carolina_beer_company-cottonwood_endo_india_pale_ale,0,0,244487225346,"{""name"":""Cottonwood Endo India Pale Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This brew is a favorite for those who love hops! This medium copper-colored ale is dry hopped for a strong hop nose with medium malt overtones and hint of caramel that blend for one great tasting beer!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
-great_dane_pub_and_brewing_1-raspberry_ale,0,0,244749238273,"{""name"":""Raspberry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,38,1
-legacy_brewing_co-midnight_wit,0,0,244737769474,"{""name"":""Midnight Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Midnight Wit is a Belgian-style white ale with a medium body and spicy, citrus overtones. The texture is silky, creamy, and refreshingly delightful. Brewed with European Pilsner malt, unmalted wheat, a blend of 5 different spices and then fermented with a classic Belgian yeast strain. Our Brewmaster learned the art of brewing tantalizing and award-winning white beers during his time in Belgium and this beer shows it."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,9,1
-gaslight_brewery-bison_brown,0,0,244620656641,"{""name"":""Bison Brown"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
-smuttynose_brewing_co-shoals_pale_ale,0,0,245116960768,"{""name"":""Shoals Pale Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a classic English beer style is copper-colored, medium-bodied and highly hopped. Its flavor is delightfully complex: tangy fruit at the start, with an assertive hop crispness and a long malty palate that one well-known beer writer has compared to the flavor of freshly-baked bread."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-brauerei_hrle-dunkle_weisse,0,0,244481523713,"{""name"":""Dunkle Weisse"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_hrle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-stone_brewing_co-7th_anniversary_ipa,0,0,245116633089,"{""name"":""7th Anniversary IPA"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-blucreek_brewing_company,0,0,244363755520,"{""name"":""BluCreek Brewing Company"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53716"",""country"":""United States"",""phone"":""1-608-204-0868"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2605 South Stoughton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0598,""lon"":-89.3085}}",1,18,1
-kirin_brewery_company_ltd-kirin_light,0,0,244745830400,"{""name"":""Kirin Light"",""abv"":3.31,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kirin_brewery_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""From Kirin's Site:\r\n\r\nWith just 95 calories and full-flavor, Kirin Light is one of the few great world-class Lights.\r\n\r\nYou might think Kirin Light would be a lightweight contender, content to let his sturdier siblings steal the show. But this fitness-minded newcomer won't compromise. You won't have to compromise either - with just 95 calories and full flavor, Kirin Light is one of the few great world-class lights.\r\n\r\nWhat makes Kirin Light great\r\nCanadian barley malt, Czech hops, rich golden color"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,28,1
-pumphouse_brewery_restaurant-red_alert_ale,0,0,244982349825,"{""name"":""Red Alert Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pumphouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
-southern_tier_brewing_co-creme_brulee_imperial_milk_stout,0,0,245098741760,"{""name"":""Creme Brulee Imperial Milk Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Sweet Stout"",""category"":""British Ale""}",1,3,1
-goose_island_beer_company_clybourn-ruby_mild,0,0,244630093824,"{""name"":""Ruby Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,55,1
-hopworks_urban_brewery-crosstown_pale_ale,0,0,244755398659,"{""name"":""Crosstown Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer bridges east and west with a lane dedicated to riders who aren't afraid to get dirty. Three kinds of organic caramel malts and a 24 pound whirlpool hop bomb keep things interesting while the wheels go round and round. Cheers to narrow knobbies, kazoos, and more cowbell!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
-heartland_brewery_union_square-cornhusker_lager,0,0,244738031617,"{""name"":""Cornhusker Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-breckenridge_brewery-mountain_wheat,0,0,244494827522,"{""name"":""Mountain Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
-dirt_cheap_cigarettes_and_beer-beer,0,0,244611481600,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dirt_cheap_cigarettes_and_beer"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-brouwerij_bosteels-pauwel_kwak,0,0,244498300928,"{""name"":""Pauwel Kwak"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bosteels"",""updated"":""2010-07-22 20:00:20"",""description"":""LOOK:\r\nKwak is recognisable by its deep bright amber colour and a dense, creamy coloured head. The pale wood of the glass holder makes a pleasant contrast with the beer.\r\n\r\nSMELL:\r\nYou will smell a mellow, fruity and malty aroma with a slightly spicy character (coriander, hops). Additional earthy and very subtle aromas of banana and perhaps also a whiff of pineapple or mango in the background.\r\n\r\nTASTE:\r\nDiscover a very mellow, fruity attack, a nougat-like solidity, and a slightly spicy character with hints of liquorice passing into a warm finish that reminds you of caramelised banana. The bitterness always remains in the background but in the end emerges delicately.""}",1,57,1
-schussenrieder_erlebnisbrauerei-original_n_1_naturtrub,0,0,244980973568,"{""name"":""Original Nº 1 Naturtrüb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-empyrean_brewing_company-eccentric_belgian_wheat,0,0,244631011329,"{""name"":""Eccentric Belgian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-harvey_son_lewes,0,0,244738555905,"{""name"":""Harvey & Son (Lewes)"",""city"":""Lewes"",""state"":""East Sussex"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01273)-480209"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6 Cliffe High Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8742,""lon"":0.0167}}",1,11,1
-unicer-superbock,0,0,245117943808,"{""name"":""SuperBock"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unicer"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Authentic Flavour\"" Super Bock is the leading beer brand on the Portuguese market and is the only brand to have won 19 consecutive gold medals in the international contest \""Monde Sélection da la Qualité"",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
-sullivan_s_black_forest_brew_haus_grill-lost_sailor,0,0,245115387904,"{""name"":""Lost Sailor"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""A Hop Head's dream beer, enough said."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
-brouwerij_de_smedt-affligem_noel,0,0,244488142850,"{""name"":""Affligem Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_smedt"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-brouwerij_van_honsebrouck-kasteel_bier_donker_foncee,0,0,244488536064,"{""name"":""Kasteel Bier Donker-Foncee"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-egan_brewing-czech_out_this_pils,0,0,244622295040,"{""name"":""Czech Out This Pils!"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-midnight_sun_brewing_co-fallen_angel,0,0,244860583937,"{""name"":""Fallen Angel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Fallen Angel Golden Strong Ale, brewed on 6-6-6, is named in the tradition of Belgian golden strong ales--after the devil himself. \r\n\r\nMidnight Sun's Fallen Angel Golden Strong Ale is a traditional Belgian-style golden ale--beautiful gold in color with tiny, conniving bubbles forming a very thick, meticulous head. Effervescent and crisp, this seriously delicious elixir tempts the palate with apple (oh so Garden of Eden), pear and a little earthy mustiness. Fallen Angel captivates your senses with its lightness and brightness while its 8% ABV strength breathes fire into your soul, warming you from the inside out. \r\n\r\nAngel-like in appearance, the devil is in its strength. \r\n\r\nWith its introduction in 2006 and its immediate cult following, Fallen Angel is now brewed and released about once a year."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,8,1
-klosterbru_bamberg-braunbier,0,0,244736851969,"{""name"":""Braunbier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
-hair_of_the_dog_brewing-doggie_claws_2004,0,0,244739735552,"{""name"":""Doggie Claws 2004"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-f_x_matt_brewing-saranac_adirondack_lager,0,0,244631732224,"{""name"":""Saranac Adirondack Lager"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our classic German lager has a perfect balance of caramel malt sweetness. Look for a rich, amber color and medium body."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-pivovary_staropramen,0,0,244981104641,"{""name"":""Pivovary Staropramen"",""city"":""Praha"",""state"":"""",""code"":""150 54"",""country"":""Czech Republic"",""phone"":"""",""website"":""http://www.staropramen.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nadrazni 84""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0685,""lon"":14.4067}}",1,2,1
-port_brewing_company-wipeout_ipa,0,0,245000503296,"{""name"":""Wipeout IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This one is dedicated to everyone who has gotten up at the butt crack of dawn, headed towards the shores and found it 4-6 feet and offshore only to find 30 of your \""buddies\"" have already claimed the peak. As you paddle out, a swell arrives from nowhere signaling your turn to go. The surf Gods are shinning on you today. You turn, stroke like mad for the wave. Standing up you are alone and blammo you Wipeout....blowing the only chance of a right hander all to yourself. You know who you are. We've all been there too. It's inside each and every one of us.\r\n\r\nWelcome to the waters of Wipeout IPA, a massively hopped India Pale Ale with enough substance and body to overcome even the worst and most tragic of on the water spills. We brew Wipeout IPA for everyone- especially those hardy souls who brave the cold winter water and monster sets produced by an amazing northwest swell. \r\n\r\nOnly a tidal wave of hops can overcome the surging tide of malt that is required to produce a beer of this shape. We invite you to drop in, hang on and kick out the backside. That is, unless you enjoy wiping out and all the glory that goes with it.\r\n\r\nMalts- Two Row, Wheat, Carapils and English Crystal Malts\r\nHops- Amarillo, Centennial and Simcoe \r\nYeast- White Labs California Ale\r\n\r\nOriginal Gravity- 1.064\r\nTerminal Gravity- 1.008\r\n7.0% ABV\r\n\r\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-rogue_ales-trafalgar_ipa,0,0,244980580355,"{""name"":""Trafalgar IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Let Battle Commence... Trafalgar is a Gold Medal Award winning bottle conditioned India Pale Ale brewed to a 19th Century recipe. Listed in the Top 500 Ales in the World, Trafalgar measures 6% ABV. Brewed in the Royal Forest of Dean at Freeminer Brewery in the UK and distributed by Rogue Ales in the US.\r\n\r\nTrafalgar IPA is a true India Pale Ale, brewed to an original 19th Century recipe. IPA's were brewed at high APV and heavily hopped to enable their preservation on the long journey to the colonies from England. This Ale is brewed from the oldest working traditional floor maltings in Warminster, Wiltshire. The hops are traditional \""Goldings\"" variety grown around Ledbury, Herefordshire as they have been for centuries."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,0,1
-lake_placid_pub_brewery,0,0,244756905988,"{""name"":""Lake Placid Pub & Brewery"",""city"":""Lake Placid"",""state"":""New York"",""code"":""12946"",""country"":""United States"",""phone"":""518-523-3813"",""website"":""http://www.ubuale.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""813 Mirror Lake Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.2829,""lon"":-73.9813}}",1,56,1
-brouwerij_der_sint_benedictusabdij_de_achelse_kluis,0,0,244495548416,"{""name"":""Brouwerij der Sint-Benedictusabdij de Achelse Kluis"",""city"":""Achel"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":""http://www.achelsekluis.org/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2515,""lon"":5.546}}",1,50,1
-empyrean_brewing_company-third_stone_brown,0,0,244613644289,"{""name"":""Third Stone Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
-great_dane_pub_and_brewing_2-landmark_light,0,0,244750090240,"{""name"":""Landmark Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-oaken_barrel_brewing,0,0,244859011072,"{""name"":""Oaken Barrel Brewing"",""city"":""Greenwood"",""state"":""Indiana"",""code"":""46143"",""country"":""United States"",""phone"":""1-317-887-2287"",""website"":""http://www.oakenbarrel.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Oaken Barrel Brewing Co. has built its reputation on its award-winning beers. Head brewer Mark Havens and assistant brewer Andrew Castner brew a variety of fresh ales on-site in small batches. They use a fifteen barrel system to brew six standard house ales and a steady stream of specialty beers."",""address"":[""50 North Airport Parkway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.615,""lon"":-86.0901}}",1,4,1
-pivovar_v_hurbanove-golden_pheasant,0,0,244982677505,"{""name"":""Golden Pheasant"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_v_hurbanove"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-erie_brewing_company-heritage_alt_beer,0,0,244629635072,"{""name"":""Heritage Alt Beer"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Erie Brewing Co. Heritage Alt Beer - a classic, old style dark German ale possessing a subtle hint of roasted and chocolate malt flavor, with a smooth balanced finish. Erie Brewing first brewed this annually for the Erie German Heritage Festival. Erie Brewing’s Heritage Alt Beer popularity lead this beer from a commemorative beer for the festival to a complete packaged seasonal release for all to enjoy, whether you are of German Heritage or not. Prost!"",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,54,1
-thirsty_dog_brewing-cerberus_10_dog_ale,0,0,245116239875,"{""name"":""Cerberus 10 Dog Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is made with one grain and 4 Belgian yeasts, a deceptive golden color, and a malty palate lend complexity to this Belgian Trippel Ale."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,42,1
-goose_island_beer_company_clybourn-pmd_mild_ale,0,0,244613382144,"{""name"":""PMD Mild Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,16,1
-jarre_creek_ranch_brewing-amber_ale,0,0,244740325377,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jarre_creek_ranch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
-hambleton_ales-nightmare,0,0,244739407872,"{""name"":""Nightmare"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hambleton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
-pinehurst_village_brewery-double_eagle_high_test_scotch_ale,0,0,244997488640,"{""name"":""Double Eagle \""High-Test\"" Scotch Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,41,1
-tooheys-new,0,0,245118271491,"{""name"":""New"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tooheys"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
-climax_brewing_copmany-climax_doppel_bock,0,0,244487225347,"{""name"":""Climax Doppel Bock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally brewed by Monks to sustain them while they fasted during lent; the Doppel Bock is a big-bodied and flavorful beer."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,31,1
-great_divide_brewing-ridgeline_amber,0,0,244749303808,"{""name"":""Ridgeline Amber"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ridgeline Amber stands out as a stellar, complex choice in a sea of over-simplified amber beers available today. A malty, copper-hued treat from start to finish, Ridgeline begins with a distinctive, estery aroma. Followed with a complex, nutty malt flavor true to its Scottish-style heritage, Ridgeline delivers unparalleled character and dimension. A touch of hops rounds out its silky, full body, highlighting Ridgeline’s subtle but engrossing character. Show your friends that you care about their taste buds by turning them on to our imminently balanced and perfectly complex Ridgeline Amber. \r\n\r\nOf interest to Great Divide historians – Ridgeline originally debuted at the brewery as Great Divide’s first beer, Arapahoe Amber. It was renamed in 2004 to better reflect the Colorado lifestyle that Great Divide’s beers perfectly complement."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
-legends_brewhouse_eatery_of_green_bay-amber,0,0,244737835008,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legends_brewhouse_eatery_of_green_bay"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-goose_island_beer_company_clybourn-aviator_doppelbock,0,0,244620722176,"{""name"":""Aviator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
-southern_tier_brewing_co-imperial_mokah_blended_stout,0,0,245117026304,"{""name"":""Imperial Mokah Blended Stout"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A Jahva-Choklat hybrid.""}",1,44,1
-brauerei_leibinger,0,0,244481589248,"{""name"":""Brauerei Leibinger"",""city"":""Ravensburg"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)751-/-22469"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Friedhofstrae 20-36""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.7818,""lon"":9.6215}}",1,19,1
-storm_brewing,0,0,245116698624,"{""name"":""Storm Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""V5L 3V6"",""country"":""Canada"",""phone"":""(604) 255-9119"",""website"":""http://www.stormbrewing.org"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Storm Brewing thundered onto the market in June of 1995 with a brilliantly balanced ale called Red Sky Alt which was reminiscent of the great German Alt Biers of the Golden Years of European brewing. The instant success of Red Sky quickly established the reputation of Brewmaster and owner, James Walton. He is perceived as an innovator and as a stickler for quality by both the media and the trade. Recent expert evaluation rated Storm Brewing's Hurricane I.P.A. among the best in the whole of Canada."",""address"":[""310 Commercial Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2821,""lon"":-123.07}}",1,43,1
-brasserie_bnifontaine-jade,0,0,244363755521,"{""name"":""Jade"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_bnifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-klosterbrauerei_weltenburg,0,0,244745830401,"{""name"":""Klosterbrauerei Weltenburg"",""city"":""Regensburg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)941-/-2001-0"",""website"":""http://www.weltenburger.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Heitzerstrae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.0144,""lon"":12.075}}",1,28,1
-pyramid_ales_brewery-traditional_esb,0,0,244982349826,"{""name"":""Traditional ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-speakeasy_ales_and_lagers,0,0,245098741761,"{""name"":""Speakeasy Ales and Lagers"",""city"":""San Francisco"",""state"":""California"",""code"":""94124"",""country"":""United States"",""phone"":""1-415-642-3371"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1195-A Evans Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.7387,""lon"":-122.381}}",1,3,1
-gottberg_brew_pub-abtskelder_tripel,0,0,244630093825,"{""name"":""Abtskelder Tripel"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-jack_russell_brewing-farm_house_ale,0,0,244755464192,"{""name"":""Farm House Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-heavyweight_brewing,0,0,244738031618,"{""name"":""Heavyweight Brewing"",""city"":""Ocean"",""state"":""New Jersey"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Closed in 1996."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.9653,""lon"":-74.3118}}",1,10,1
-breckenridge_brewery-thunder_stout,0,0,244494893056,"{""name"":""Thunder Stout"",""abv"":4.95,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-dreher_srgyrak_zrt-bak,0,0,244611481601,"{""name"":""Bak"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dreher_srgyrak_zrt"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
-brouwerij_slaghmuylder,0,0,244498300929,"{""name"":""Brouwerij Slaghmuylder"",""city"":""Ninove"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-054-33-18-31"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Denterhoutembaan 2""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8417,""lon"":4.0213}}",1,57,1
-sierra_nevada_brewing_co-bigfoot_2004,0,0,244980973569,"{""name"":""Bigfoot 2004"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-estes_park_brewery-renegade_ipa,0,0,244631011330,"{""name"":""Renegade IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our award-winning India Pale Ale is a hop lover’s dream. We use Galena and Cascade hops in the kettle and dry-hop with more cascade during conditioning. This copper-colored ale has a nice maltiness to balance all the hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
-highland_brewing_company-cold_mountain_winter_ale,0,0,244738555906,"{""name"":""Cold Mountain Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our ever-changing spiced winter seasonal. A tasty brew that complements all your holiday festivities. It is typically malty in body, lightly hopped, and rounded out with spices that we vary from year to year."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,11,1
-weyerbacher_brewing_company-blanche,0,0,245750235136,"{""name"":""Blanche"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Clean, refreshing and perhaps just a bit tart, our brewers developed Weyerbacher Blanche just after their trip to Belgium during the winter of 2000. Blanche, meaning \""white\"", takes its name from the whitish haze in this pale gold brew, which is a result of the raw wheat and wheat malts used to brew this Belgian-style beer. \r\n\r\nIn 2002, Blanche was named as Best of the Mid-Atlantic/Southeast in the Belgian Specialty category at the US Beer Tasting Championships.\r\n\r\nWhite beers are well known as the principal product from Hoegaarden, a small town in a wheat-growing region east of Brussels. Light, cloudy and smooth, Weyerbacher Blanche brings you authentic Belgian-style flavor along with microbrewed quality and freshness.\r\n\r\nBlanche is a thirst quenching beer that combines character and flavor with a moderate alcohol content. Just try a bottle. In the nose you'll notice spiciness from the coriander seeds and dried curacao orange peels added during the boil. In the mouth you'll find a mild and refreshing ale with a hint of dryness from the wheat ingredients. A clean finish follows with just a hint of tart spiciness."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,46,1
-summit_brewing-great_northern_porter,0,0,245115387905,"{""name"":""Great Northern Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
-brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_bruin_5,0,0,244488208384,"{""name"":""Achel Bruin 5°"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,34,1
-c_b_potts_of_cheyenne-big_horn_total_disorder_porter,0,0,244488536065,"{""name"":""Big Horn Total Disorder Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
-f_x_matt_brewing-saranac_summer_ale,0,0,244622295041,"{""name"":""Saranac Summer Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""ith more than 2,800 bodies of water in the Adirondacks, it's not too hard to find a sunny place to relax, rest your feet and look out over the water. To celebrate summer in the Adirondacks, we've brewed a beer with generous amounts of wheat malt for a light, refreshing taste. Look for subtle hints of lemon."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,37,1
-mishawaka_brewing,0,0,244860583938,"{""name"":""Mishawaka Brewing"",""city"":""Mishawaka"",""state"":""Indiana"",""code"":""46545"",""country"":""United States"",""phone"":""1-574-256-9993"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3703 North Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6931,""lon"":-86.1818}}",1,8,1
-kulmbacher_brauerei_ag,0,0,244736917504,"{""name"":""Kulmbacher Brauerei AG"",""city"":""Kulmbach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9221-/-705-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lichtenfelser Strae 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.106,""lon"":11.4442}}",1,7,1
-hale_s_ales_3-moss_bay_extra,0,0,244739735553,"{""name"":""Moss Bay Extra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-flagstaff_brewing-sasquatch_stout,0,0,244631732225,"{""name"":""Sasquatch Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
-port_brewing_company-broken_keg_ice_bock,0,0,244981170176,"{""name"":""Broken Keg Ice Bock"",""abv"":15.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,2,1
-prescott_brewing_company-pine_tar_stout,0,0,245000503297,"{""name"":""Pine Tar Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-route_66_brewery-lake_shore_light,0,0,244980580356,"{""name"":""Lake Shore Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
-lost_coast_brewery,0,0,244879720448,"{""name"":""Lost Coast Brewery"",""city"":""Eureka"",""state"":""California"",""code"":""95501"",""country"":""United States"",""phone"":""1-707-445-4484"",""website"":""http://www.lostcoast.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""617 Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8032,""lon"":-124.165}}",1,56,1
-brouwerij_st_bernardus-st_bernardus_witbier,0,0,244495548417,"{""name"":""St. Bernardus Witbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional Witbier (Wheat beer) has been developed in cooperation with Master Brewer Pierre Celis, the Godfather of Hoegaarden and Celis White. \r\n\r\nThis beer as well has a second fermentation in the bottle, giving this beer its specific taste (5.5% alcohol content)."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,50,1
-engel_brauerei_schwbisch_gmnd_lang-trompe_la_mort,0,0,244613709824,"{""name"":""Trompe La Mort"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engel_brauerei_schwbisch_gmnd_lang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,17,1
-grumpy_troll_restaurant_and_brewery-2nd_street_amber,0,0,244750090241,"{""name"":""2nd Street Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
-oriental_brewery,0,0,244859011073,"{""name"":""Oriental Brewery"",""city"":"""",""state"":"""",""code"":"""",""country"":""Korea, Republic of"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Oriental Brewery or OB is a South Korean brewery established by the Doosan Group in 1952. It was purchased by InBev in 2003. Today OB produces several of Korea's most popular beverages including the OB, Cass and Cafri lager brands."",""address"":[]}",1,4,1
-prescott_brewing_company-prescott_pale_ale,0,0,244982677506,"{""name"":""Prescott Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
-f_x_matt_brewing-saranac_mountain_ale,0,0,244629635073,"{""name"":""Saranac Mountain Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Delicious Fruity ale is brewed with blackberries, raspberries and sweetened with a touch of blueberry honey. Light and refreshing.With a reddish-Amber color, be sure to look for the ale bitter and berry sweetness. Enjoy!"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,54,1
-tied_house_cafe_brewery_san_jose-maibock,0,0,245116305408,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,42,1
-goose_island_beer_company_clybourn-rye_stout,0,0,244613382145,"{""name"":""Rye Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-jasper_ridge_brewery,0,0,244740390912,"{""name"":""Jasper Ridge Brewery"",""city"":""Ishpeming"",""state"":""Michigan"",""code"":""49849"",""country"":""United States"",""phone"":""1-906-485-6017"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1075 Country Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.5015,""lon"":-87.679}}",1,15,1
-hereford_hops_steakhouse_and_brewpub_3-cleary_red,0,0,244739407873,"{""name"":""Cleary Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-pleasanton_main_street_brewery-island_wheat,0,0,244997488641,"{""name"":""Island Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
-trailhead_brewing_company-old_courthouse_stout,0,0,245118337024,"{""name"":""Old Courthouse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
-commonwealth_brewing_1-amber_ale,0,0,244487290880,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
-great_waters_brewing_company-saint_peter_pale_ale,0,0,244749369344,"{""name"":""Saint Peter Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
-lewis_clark_brewing_company-tumbleweed_ipa,0,0,244737835009,"{""name"":""Tumbleweed IPA"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lewis_clark_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A GOLD MEDAL WINNER at the Great American Beer Festival, beating out 98 other IPA's and chosen as the best IPA in the country! It's amber color and incredible hoppy aroma will keep you coming back for more. R-U-HOPPY?"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
-govnor_s_public_house-leprechaun_light,0,0,244747337728,"{""name"":""Leprechaun Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-spaten_franziskaner_brau-maibock,0,0,245117091840,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,44,1
-brewery_creek_brewing-american_blonde,0,0,244481654784,"{""name"":""American Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-sweetwater_brewing_atlanta-hummer,0,0,245116698625,"{""name"":""Hummer"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""SweetWater Hummer is a tasty Belgian White Ale brewed with coriander and orange peel. Cloudy with subtle fruit tones and a lingering finish. Everybody loves a Hummer!"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,43,1
-brasserie_mcauslan-st_ambroise_apricot_wheat_ale,0,0,244481064960,"{""name"":""St-Ambroise Apricot Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":""Apricot Wheat Ale blends various barley malts with malted wheat and natural apricot essence to create an original-tasting beer with a clean, fruit nose.\r\n\r\n5% alc/vol Available in Bottles and Draft"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
-lagunitas_brewing_company-undercover_investigation_shut_down_ale,0,0,244745895936,"{""name"":""Undercover Investigation Shut-Down Ale"",""abv"":9.28,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-qingdao_brewery-green_beer,0,0,244982415360,"{""name"":""Green Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""qingdao_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-steam_whistle_brewery,0,0,245098807296,"{""name"":""Steam Whistle Brewery"",""city"":""Toronto"",""state"":""ON"",""code"":""M5V 3M9"",""country"":""Canada"",""phone"":"""",""website"":""http://www.steamwhistle.ca"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""One kind of beer - Steamwhistle Lager."",""address"":[""255 Bremner Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.6414,""lon"":-79.3869}}",1,3,1
-great_dane_pub_and_brewing_2-new_peculier,0,0,244756119552,"{""name"":""New Peculier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,55,1
-jinro_coors_brewing-cass_fresh,0,0,244755464193,"{""name"":""Cass Fresh"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jinro_coors_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
-independence_brew_pub-kolsch,0,0,244738097152,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-brew_kettle_taproom_smokehouse_bop-big_woody_lager,0,0,244494893057,"{""name"":""Big Woody Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brew_kettle_taproom_smokehouse_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-duclaw,0,0,244611481602,"{""name"":""DuClaw"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21231"",""country"":""United States"",""phone"":""410-563-3400"",""website"":""http://www.duclaw.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""901 S. Bond St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2807,""lon"":-76.5944}}",1,12,1
-brouwerij_van_steenberge-bornem_double,0,0,244498300930,"{""name"":""Bornem Double"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,57,1
-sioux_falls_brewing,0,0,244980973570,"{""name"":""Sioux Falls Brewing"",""city"":""Sioux Falls"",""state"":""South Dakota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.55,""lon"":-96.7003}}",1,1,1
-f_x_matt_brewing-saranac_imperial_ipa,0,0,244631076864,"{""name"":""Saranac Imperial IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Imperial IPA is part our new High Peak Series, a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial IPA is brewed with 10 different malts and 10 different hops to make a delectably flavorful and complex Imperial IPA - at 85 IBU's and 8.5 % alc/vol."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,58,1
-indian_wells_brewing,0,0,244738555907,"{""name"":""Indian Wells Brewing"",""city"":""Inyokern"",""state"":""California"",""code"":""93527"",""country"":""United States"",""phone"":""1-760-377-5989"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2565 North Highway 14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6675,""lon"":-117.874}}",1,11,1
-whim_ales-old_izaak,0,0,245750300672,"{""name"":""Old Izaak"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whim_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
-sweetwater_brewing_atlanta,0,0,245115387906,"{""name"":""Sweetwater Brewing - Atlanta"",""city"":""Atlanta"",""state"":""Georgia"",""code"":""30324"",""country"":""United States"",""phone"":""1-404-691-2537"",""website"":""http://www.sweetwaterbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""195 Ottley Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.8087,""lon"":-84.3813}}",1,40,1
-browar_namyslow_sp_z_o_o-rycerskie,0,0,244488208385,"{""name"":""Rycerskie"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_namyslow_sp_z_o_o"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,34,1
-carlyle_brewing,0,0,244488601600,"{""name"":""Carlyle Brewing"",""city"":""Rockford"",""state"":""Illinois"",""code"":""61104"",""country"":""United States"",""phone"":""1-815-963-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""215 East State Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2689,""lon"":-89.0907}}",1,35,1
-firehouse_grill_brewery-double_ipa,0,0,244622426112,"{""name"":""Double IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,37,1
-molson_breweries_of_canada-golden,0,0,244860649472,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-lagunitas_brewing_company,0,0,244736917505,"{""name"":""Lagunitas Brewing Company"",""city"":""Petaluma"",""state"":""California"",""code"":""94954"",""country"":""United States"",""phone"":""1-707-769-4495"",""website"":""http://www.lagunitas.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1280 North McDowell Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2724,""lon"":-122.662}}",1,7,1
-hofbruhaus_traunstein,0,0,244739801088,"{""name"":""Hofbruhaus Traunstein"",""city"":""Traunstein"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)861-/-98866-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofgasse 6-11""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8691,""lon"":12.6505}}",1,14,1
-founders_brewing-canadian_breakfast_stout,0,0,244631797760,"{""name"":""Canadian Breakfast Stout"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,59,1
-rch_brewery-pitchfork_rebellious_bitter,0,0,244981170177,"{""name"":""Pitchfork Rebellious Bitter"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rch_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-snow_cap_ale,0,0,245000503298,"{""name"":""Snow Cap Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,48,1
-san_diego_brewing-old_395_barleywine,0,0,244980645888,"{""name"":""Old 395 Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-maclay_and_co,0,0,244879785984,"{""name"":""Maclay and Co."",""city"":""Clackmannan"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.1073,""lon"":-3.7528}}",1,56,1
-brouwerij_van_steenberge-bornem_triple,0,0,244495548418,"{""name"":""Bornem Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,50,1
-fitger_s_brewhouse_brewery_and_grill-lighthouse_ale,0,0,244613709825,"{""name"":""Lighthouse Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
-hereford_hops_steakhouse_and_brewpub_3-doppelbock,0,0,244750155776,"{""name"":""Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,39,1
-oskar_blues_grill_and_brew-one_nut_brown_ale,0,0,244859011074,"{""name"":""One Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""This big tasting brew is only available in the brewpub. Very smooth and balanced with a deep clear brown color. Lightly hopped."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
-prescott_brewing_company,0,0,244982743040,"{""name"":""Prescott Brewing Company"",""city"":""Prescott"",""state"":""Arizona"",""code"":""86301"",""country"":""United States"",""phone"":""(928) 771-2795"",""website"":""http://prescottbrewingcompany.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""130 W Gurley St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.542,""lon"":-112.47}}",1,6,1
-faultline_brewing_2-alt_bier,0,0,244629635074,"{""name"":""Alt Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
-tommyknocker_brewery_and_pub-maple_nut_brown_ale_ale,0,0,245116305409,"{""name"":""Maple Nut Brown Ale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Maple syrup is added to each barrel of Maple Nut Brown Ale to impart roasted sweetness balancing the nut flavor produced by chocolate malts."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
-great_dane_pub_and_brewing_1-stone_of_scone_scotch_ale,0,0,244740653056,"{""name"":""Stone of Scone Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-joboy_s_brew_pub-joboy_s_ipa,0,0,244740390913,"{""name"":""JoBoy's IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our offering to the hop heads! A decidedly hoppy, bitter, and moderately strong American IPA. We use a generous amount of whole leaf Cascade, Centennial and Citra hops to showcase the freshness and earthy flavors that only hops can provide."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-hoppin_frog_brewery-fresh_frog_raw_hop_imperial_pale_ale,0,0,244739407874,"{""name"":""Fresh Frog Raw Hop Imperial Pale Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Special hoppy flavors and aromas are captured by adding freshly picked, undired hops during the harvest.\r\n\r\nThese wet hops impart a character unlike other brews, that is quite unique and satisfying for those who love hops – the spice of beer. Smell the hop fields, smell the freshness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-prescott_brewing_company-petrified_porter,0,0,244997488642,"{""name"":""Petrified Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
-triumph_brewing_of_princeton-imperial_stout,0,0,245118337025,"{""name"":""Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
-deschutes_brewery-bond_street_19th_anniversary,0,0,244619280384,"{""name"":""Bond Street 19th Anniversary"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-hapa_s_brew_haus_and_restaurant-black_lava_lager,0,0,244749434880,"{""name"":""Black Lava Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
-licher_privatbrauerei,0,0,244737900544,"{""name"":""Licher Privatbrauerei"",""city"":""Lich"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)6404-/-82-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""In den Hardtberggrten""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.5208,""lon"":8.8166}}",1,9,1
-granite_city_food_brewery_omaha-duke_ipa,0,0,244747403264,"{""name"":""Duke IPA"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
-the_alchemist-heady_topper,0,0,245117091841,"{""name"":""Heady Topper"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Is our double I.P.A.! Loaded with hops, this one will put hair on your chest."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,44,1
-brouwerij_bavik_de_brabandere-petrus_dubbel_bruin_ale,0,0,244481720320,"{""name"":""Petrus Dubbel Bruin Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,19,1
-t_bonz_gill_grill_and_brewery-stout,0,0,245116698626,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,43,1
-brauhaus_johann_albrecht_konstanz,0,0,244481130496,"{""name"":""Brauhaus Johann Albrecht - Konstanz"",""city"":""Konstanz"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7531-/-25045"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Konradigasse 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6651,""lon"":9.175}}",1,18,1
-lake_superior_brewing,0,0,244745895937,"{""name"":""Lake Superior Brewing"",""city"":""Duluth"",""state"":""Minnesota"",""code"":""55806"",""country"":""United States"",""phone"":""1-218-723-4000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2711 West Superior Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.7611,""lon"":-92.1319}}",1,28,1
-raccoon_river_brewing-vanilla_creme_ale,0,0,244982415361,"{""name"":""Vanilla Creme Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-sweetwater_tavern_centreville-flying_armadillo_porter,0,0,245098872832,"{""name"":""Flying Armadillo Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_tavern_centreville"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
-great_divide_brewing-claymore_scotch_ale,0,0,244756119553,"{""name"":""Claymore Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,55,1
-knig_ludwig_schlobrauerei_kaltenberg-konig_ludwig_weissbier_dunkel,0,0,244755464194,"{""name"":""König Ludwig Weissbier Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_ludwig_schlobrauerei_kaltenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-indian_wells_brewing-eastern_sierra_lager,0,0,244738097153,"{""name"":""Eastern Sierra Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-brewdog_ltd-punk_ipa,0,0,244494893058,"{""name"":""Punk IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""This 6% trans-atlantic fusion IPA is light golden in colour with tropical fruits and light caramel on the nose. The palate soon becomes assertive and resinous with the New Zealand hops balanced by the biscuit malt. The finish is aggressive and dry with the hops emerging over the warming alcohol.\r\n\r\nThis fresh, full flavour natural beer is our tribute to the classic IPAs of yester-year. The post modern twist is the addition of amazing fruity hops giving an explosion of tropical fruit flavours and a sharp bitter finish."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
-eastern_shore_brewing-st_michaels_blonde_ale,0,0,244611481603,"{""name"":""St. Michaels Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eastern_shore_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,12,1
-bube_s_brewery-bube_s_hefeweizen,0,0,244498366464,"{""name"":""Bube's Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional German-style wheat beer is rich in banana and clove undertones, with a wonderful frothy head."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,57,1
-skagit_river_brewing-del_rio_lager,0,0,244980973571,"{""name"":""Del Rio Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
-f_x_matt_brewing-saranac_kolsch,0,0,244631076865,"{""name"":""Saranac Kolsch"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This golden sparkling blond ale was brewed to pay homage to a 1000-year tradition rooted in Cologne, Germany. Clear, crisp and easy to drink, the Kolsch of today is lighter than the \""House\"" beer that was served in Cologne 200 years ago - the city that made Kolsch famous. We hope you'll enjoy it!""}",1,58,1
-jack_s_brewing-grid_iron_amber_ale,0,0,244738621440,"{""name"":""Grid Iron Amber Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,11,1
-white_marsh_brewing_company,0,0,245750300673,"{""name"":""White Marsh Brewing Company"",""city"":""White Marsh"",""state"":""Maryland"",""code"":""21236"",""country"":""United States"",""phone"":""410.931.PUBS"",""website"":""http://www.redbrickstation.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8149 Honeygo Blvd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.3722,""lon"":-76.4638}}",1,46,1
-terrapin_beer_company-terrapin_golden_ale,0,0,245115453440,"{""name"":""Terrapin Golden Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Terrapin Beer Company was started by two guys who love big, bold beers. We are known for using a ton of flavorful ingredients and for pushing the envelope with the brews we create.\r\n\r\nWe have also been known to take pleasure in hiking, biking, kayaking, and just plain having fun in the great outdoors. When we get hot and sweaty even hopheads like us want nothing more than to enjoy a beer that is crisp and refreshing.\r\n\r\nWhich is why we created the perfect session beer – the Terrapin Golden Ale."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,40,1
-captain_lawrence_brewing_company-captin_lawrence_pale_ale,0,0,244488208386,"{""name"":""Captin Lawrence Pale Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""One of the first beers I brewed after moving out to California to begin my brewing education was a Pale Ale. This version is a true testament to the influences the Wild West had on my early brewing. My Pale Ale is loaded with US-grown Cascade, Crystal, and Columbus hops, so be sure to take a good sniff to enjoy their robust aromas before taking your first sip."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
-cherryland_brewing-golden_rail,0,0,244488667136,"{""name"":""Golden Rail"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-fitger_s_brewhouse_brewery_and_grill-9_wheats,0,0,244622426113,"{""name"":""9½ Wheats"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-molson_breweries_of_canada-rickard_s_white_ale,0,0,244860649473,"{""name"":""Rickard's White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,8,1
-lancaster_brewing_co-baltic_porter,0,0,244736983040,"{""name"":""Baltic Porter"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional lager-style beer, with its dark color and medium body, has a defined hop flavor balanced by the smoothness of extra special roasted malt. This healthy dose of over six malt flavors makes this beer perfect for the transition from winter into spring."",""style"":""Porter"",""category"":""Irish Ale""}",1,7,1
-hoffbrau_steaks_brewery_1-rodeo_red,0,0,244739801089,"{""name"":""Rodeo Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
-fuller_smith_turner_pbc,0,0,244631797761,"{""name"":""Fuller, Smith & Turner PBC"",""city"":""London"",""state"":""London"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0208)-996-2000"",""website"":""http://www.fullers.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chiswick Lane South""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.4877,""lon"":-0.2498}}",1,59,1
-redhook_ale_brewery-double_black_stout,0,0,244981170178,"{""name"":""Double Black Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,2,1
-pyramid_ales_brewery-apricot_weizen_ale,0,0,245000568832,"{""name"":""Apricot Weizen Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma.\r\n\r\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known.\r\n\r\nOriginal Gravity: 11.75\r\nAlcohol By Volume: 5.10%\r\nMalts: 2-Row Barley, Malted Wheat, Caramel\r\nHops: Nugget\r\nAvailability: Year Round\r\nBest Paired With: Appetizers, salads, and desserts such as pies and pastries.\r\n\r\nBest of the Northwest/Pacific in the \""Fruit Beer\"" category at the 2000 United States Beer Tasting Championship, 2000\r\nGold Medal, GABF, \""Fruit and Vegetable Beers\"", 1994"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
-shipyard_brewing_portland-ringwood_brewery_old_thumper_extra_special_ale,0,0,244980645889,"{""name"":""Ringwood Brewery Old Thumper Extra Special Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-magic_hat,0,0,244879785985,"{""name"":""Magic Hat"",""city"":""South Burlington"",""state"":""Vermont"",""code"":""5403"",""country"":""United States"",""phone"":""1-802-658-2739"",""website"":""http://www.magichat.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Burlington microbrewers of Humble Patience, Fat Angel, #9, Blind Faith IPA, and Heart of Darkness Oatmeal Stout."",""address"":[""5 Bartlett Bay Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4284,""lon"":-73.2131}}",1,56,1
-bull_bush_pub_brewery-big_ben_brown,0,0,244495548419,"{""name"":""Big Ben Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
-flatlander_s_restaurant_brewery-harvest_amber_ale,0,0,244613709826,"{""name"":""Harvest Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,17,1
-hoffbrau_steaks_brewery_2-buffalo_ale,0,0,244750155777,"{""name"":""Buffalo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
-pabst_brewing_company-piels_draft,0,0,244859076608,"{""name"":""Piels Draft"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It took “The Beer Drinker’s Beer” to introduce a real draft in a can—and you can still taste that milestone in brewing history today with every can of Piels. Our Draft Style delivers unsurpassed flavor and character like it was drawn straight from the tap!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
-r_b_brewing-pale_ale,0,0,244982808576,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""r_b_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
-firehouse_brewery_restaurant-bock,0,0,244629635075,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,54,1
-trade_winds_brewing,0,0,245116305410,"{""name"":""Trade Winds Brewing"",""city"":""Wailuku"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":20.8911,""lon"":-156.505}}",1,42,1
-great_lakes_brewing-blackout_stout,0,0,244740718592,"{""name"":""Blackout Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Russian Imperial Stout with a hearty malt body and bold hop flavor."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,16,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2005,0,0,244740456448,"{""name"":""Harvest Ale 2005"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,15,1
-hoppin_frog_brewery-silk_porter,0,0,244739473408,"{""name"":""Silk Porter"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, robust and silky-smooth, with many flavors of roasted, toasted and caramel malts. Porter is an old-world beer style, so popular that it helped start the industrial revolution. Taste the history."",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
-raccoon_river_brewing,0,0,244997554176,"{""name"":""Raccoon River Brewing"",""city"":""Des Moines"",""state"":""Iowa"",""code"":""50309"",""country"":""United States"",""phone"":""1-515-362-5222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 North Tenth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.5841,""lon"":-93.6296}}",1,41,1
-troegs_brewing-scratch_24_2009_van_de_hoorn,0,0,245118337026,"{""name"":""Scratch #24 2009 Van de Hoorn"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-deschutes_brewery-quail_springs_ipa,0,0,244619280385,"{""name"":""Quail Springs IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
-harviestoun_brewery-old_engine_oil_special_reserve_aged_in_malt_whisky_casks,0,0,244749434881,"{""name"":""Old Engine Oil Special Reserve (aged in malt whisky casks)"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harviestoun_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-lion_brewery_inc,0,0,244860846080,"{""name"":""Lion Brewery Inc."",""city"":""Wilkes Barre"",""state"":""Pennsylvania"",""code"":""18705"",""country"":""United States"",""phone"":""(800) 233-8327"",""website"":""http://www.lionbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""With a proud brewing heritage dating back to 1905, The Lion Brewery merges rustic architecture with state-of-the-art brewing technology, a contrast typified by the gleaming stainless steel aging tanks that sit alongside the traditional copper brew kettle. Our brewing process utilizes the traditional English method of upward infusion mashing in our combination mash lauter tun to create lagers and ales inspired by old world values, but with modern quality and consistency. The staff at The Lion Brewery is dedicated to producing true handcrafted beers, made right here in our century-old Brewhouse. All of our premium beers are made using only the four basic ingredients allowed by the Reinheitsgebot, or German purity law. Under the skillful supervision of our Master Brewer, Leo Orlandini, each of our lagers and ales are brewed in small batches using only the finest hops and malts available to guarantee the highest quality and freshness. Each product we brew is an original recipe especially created to deliver a fuller flavor than ordinary beers, yet with an approachable style and character. As a result, our beers have garnered numerous medals from the Great American Beer Festival and the World Beer Championships in recent years."",""address"":[""700 North Pennsylvania Blvd.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2557,""lon"":-75.8583}}",1,9,1
-granite_city_food_brewery_saint_cloud-pride_of_pilsen,0,0,244747468800,"{""name"":""Pride of Pilsen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-thirsty_dog_brewing-labrador_lager,0,0,245117091842,"{""name"":""Labrador Lager"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Traditional German Lager brewed with all German grain & yeast. Very drinkable."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-brouwerij_boon-geuze_boon,0,0,244481720321,"{""name"":""Geuze Boon"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":""Geuze, a mixture of old and young Lambic. The young Lambic is added to cause a refermentation in the bottle making for a delightfully sparkling and dry beer that has been likened, in all seriousness, to Champagne."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,19,1
-t_bonz_gill_grill_and_brewery-winterfest,0,0,245116764160,"{""name"":""Winterfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
-brewpub_on_the_green,0,0,244481130497,"{""name"":""Brewpub-on-the-Green"",""city"":""Fremont"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.5483,""lon"":-121.989}}",1,18,1
-lancaster_brewing_co-lancaster_hefe_weizen,0,0,244745961472,"{""name"":""Lancaster Hefe Weizen"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Light and refreshing! This very bubbly Munich style weizen beer is highlighted by a spicy, banana finish.\r\n\r\nAvailable at the Brewery from May - October"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,28,1
-radeberger_exportbierbrauerei-pilsener,0,0,244982480896,"{""name"":""Pilsener"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""radeberger_exportbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,5,1
-terrapin_beer_company-big_hoppy_monster,0,0,245098872833,"{""name"":""Big Hoppy Monster"",""abv"":8.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This mammoth imperial red ale leads with a tantalizing hop aroma that is quickly complemented by an enormous malt backbone & finished with a multitude of hoppy goodness."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
-green_bay_brewing-hinterland_packerland_pilsner,0,0,244756250624,"{""name"":""Hinterland Packerland Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-la_jolla_brewing,0,0,244755464195,"{""name"":""La Jolla Brewing"",""city"":""La Jolla"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.8575,""lon"":-117.876}}",1,52,1
-iron_city_brewing_co-augustiner,0,0,244738097154,"{""name"":""Augustiner"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Augustiner is a premium amber lager with a smooth, full-bodied flavor. From the rich copper color to the subtle caramel taste and clean finish, it’s brewed to please the beer drinker who appreciates the best. This distinctive, well-balanced brew is quickly becoming Pittsburgh’s most talked-about beer. Upgrade to Augustiner!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-brewery_corsendonk-monk_brown_ale,0,0,244494958592,"{""name"":""Monk Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-edelweissbrauerei_farny-kristall_weizen,0,0,244611547136,"{""name"":""Kristall-Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-bulmer_cider,0,0,244498366465,"{""name"":""Bulmer Cider"",""city"":""Hereford"",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.056,""lon"":-2.7175}}",1,57,1
-spring_house_brewing_company-beyond_the_gates_double_ipa,0,0,245097496576,"{""name"":""Beyond The Gates Double IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is for those of you who have been enjoying Seven Gates Pale Ale, and are ready for that next step. Beyond the Gates Double IPA is a highly hopped brew featuring plenty of Cascade and Columbus hops. These varieties give Beyond the Gates a floral citrus aroma, and pack plenty of hopped up flavor into this full-bodied ale, which is coming in @ 7.5 ABV. Let us take you Beyond the Gates, and you'll never look back!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,1,1
-flensburger_brauerei-pilsener,0,0,244631076866,"{""name"":""Pilsener"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flensburger_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-jt_whitney_s_brewpub_and_eatery-frozen_tundra,0,0,244738621441,"{""name"":""Frozen Tundra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
-wild_goose_brewery_llc-wild_goose_pumpkin_patch,0,0,245750300674,"{""name"":""Wild Goose Pumpkin Patch"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_goose_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Fall Seasonal, Pumpkin Patch Ale, is the perfect beer for an autumn night. Pumpkin Patch pours a hazy orange with frothy, ivory colored head. The nose immediately conjures images of Grandma baking pumpkin pie with notes of nutmeg, cinnamon and ginger. Medium body and mild carbonation yield a spicy, pumpkin flavor - from the 300 lbs. of pumpkin we use to brew this unique beer."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,46,1
-the_alchemist-mortal_sin,0,0,245115453441,"{""name"":""Mortal Sin"",""abv"":6.66,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This I.P.A. is so rich and delicious that you'll need to confess after drinking one! Generously dry-hopped for your olefactory pleasure."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
-coopers_brewery-coopers_premium_lager,0,0,244488273920,"{""name"":""Coopers Premium Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coopers Premium Lager is quite different to the famous Coopers ales. This lager produces a refreshing flavour with a good balance of malt and hop characters and is brewed using no sugar. With its subtle fruity esters and light golden colour, combined with a judicious blend of Pride of Ringwood and Saaz hops. This produces a Lager with a crisp malty full flavour."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-climax_brewing_copmany-climax_helles,0,0,244488667137,"{""name"":""Climax Helles"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""The Hoffmann Helles (pronounced Hell-es), which is German for \""bright\"" is a pleasant and easy to drink summer beer with a bready/grainy taste."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,35,1
-flossmoor_station_brewery-el_diablo_tripel,0,0,244622426114,"{""name"":""El Diablo Tripel"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-mountain_sun_pub_brewery-chazz_cat_rye,0,0,244860649474,"{""name"":""Chazz Cat Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mountain_sun_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-leinenkugel_s_ballyard_brewery,0,0,244736983041,"{""name"":""Leinenkugel's Ballyard Brewery"",""city"":""Phoenix"",""state"":""Arizona"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.4484,""lon"":-112.074}}",1,7,1
-hook_norton_brewery-generation,0,0,244739801090,"{""name"":""Generation"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-gasthof_brauerei_zum_frohsinn-hell,0,0,244631863296,"{""name"":""Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-rock_bottom_restaurant_brewery_minneapolis-saison_goux,0,0,244981170179,"{""name"":""Saison Goux"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-red_kettle_brewing-pale,0,0,245000568833,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_kettle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-simmerberg_brusttt_und_taferne-dunkles_lager,0,0,244980645890,"{""name"":""Dunkles Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-magnolia_pub_and_brewery-blue_bell_bitter,0,0,244879851520,"{""name"":""Blue Bell Bitter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Diacetyl dominated cask bitter."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,56,1
-bull_bush_pub_brewery-cream,0,0,244495613952,"{""name"":""Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-flossmoor_station_brewery,0,0,244613775360,"{""name"":""Flossmoor Station Brewery"",""city"":""Flossmoor"",""state"":""Illinois"",""code"":""60422"",""country"":""United States"",""phone"":""1-708-957-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1035 Sterling Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5433,""lon"":-87.6789}}",1,17,1
-hoppy_brewing_company-hoppy_claus_holiday_ale,0,0,244750221312,"{""name"":""Hoppy Claus Holiday Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Holiday Ale is a “special” version of our flagship product - Hoppy Face™ Amber Ale; only bigger for you to enjoy during this holiday season!!! Characterized by its distinctive hop aroma and rich, ruby color, Hoppy Claus redefines the way you think about a holiday ale. Hoppy Claus uses only the finest two row malted barley, hops grown in the great Pacific Northwest, and some secret spices that we would love to tell you about; but are unable to do so. This combination results in a clean, crisp, and refreshingly unique hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,39,1
-pennichuck_brewing_company-feuerwehrmann_schwarzbier,0,0,244981825536,"{""name"":""Feuerwehrmann Schwarzbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,4,1
-rahr_sons_brewing_company-bourbon_barrel_aged_winter_warmer,0,0,244982808577,"{""name"":""Bourbon Barrel Aged Winter Warmer"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a special edition of Rahr's Winter Warmer. This fine English ale has been aged in freshly emptied Kentucky oak whisky barrels. The barrel aging has given this already big ale a beautiful whiskey nose along with notes of vanilla and oak. A perfect ale for sipping around a winter fire."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,6,1
-flying_bison_brewing-sky_pilot_scotch_ale,0,0,244629700608,"{""name"":""Sky Pilot Scotch Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With a coppery-amber color and a full malty body with flavors of nuts and toffee. The English hops lend enough “spice” to leave a very drinkable finish to this comfort food of a beer. Available on draft from November to May."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,54,1
-unibroue-blanche_de_chambly,0,0,245116370944,"{""name"":""Blanche de Chambly"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""(White of Chambly) was the first bottle\r\nrefermented ale produced by Unibroue. It is\r\nbrewed from a blend of pale barley malt,\r\nwheat malt and unmalted wheat, to which\r\nwe blend selected spices and hops.\r\n \r\nBlanche de Chambly is only partially filtered,\r\nretaining its natural cloud of yeast that is\r\ncharacteristic of the original white ales\r\nbrewed during the Middle Ages.\r\n\r\nWe recommend this remarkably refreshing"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,42,1
-greenshields_brewery_and_pub-stout,0,0,244740718593,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
-kuhnhenn_brewing-120_shilling_scotch_ale,0,0,244740456449,"{""name"":""120 Shilling Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kuhnhenn_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,15,1
-kentucky_hemp_beer_company,0,0,244739473409,"{""name"":""Kentucky Hemp Beer Company"",""city"":""Lexington"",""state"":""Kentucky"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.0317,""lon"":-84.4951}}",1,13,1
-rail_house_restaurant_and_brewpub-raspberry_pilsner,0,0,244997619712,"{""name"":""Raspberry Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-tui_brewery,0,0,245118402560,"{""name"":""Tui Brewery"",""city"":""Mangatainoka"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(06)-3767549"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""State Highway 2""]}",1,47,1
-dockside_brewing,0,0,244619345920,"{""name"":""Dockside Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-685-7070"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1253 Johnston Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2698,""lon"":-123.132}}",1,31,1
-heavenly_daze_brewery_and_grill-heavenly_hefeweizen,0,0,244749500416,"{""name"":""Heavenly Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
-logjam_microbrewery-swede_saw_red_ale,0,0,244860911616,"{""name"":""Swede Saw Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""logjam_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-great_lakes_brewing,0,0,244747468801,"{""name"":""Great Lakes Brewing"",""city"":""Cleveland"",""state"":""Ohio"",""code"":""44113"",""country"":""United States"",""phone"":""1-216-771-4404"",""website"":""http://www.greatlakesbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2516 Market Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4844,""lon"":-81.7042}}",1,33,1
-traffic_jam_and_snug,0,0,245117157376,"{""name"":""Traffic Jam and Snug"",""city"":""Detroit"",""state"":""Michigan"",""code"":""48201"",""country"":""United States"",""phone"":""313-831-9470"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4268 Second Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.351,""lon"":-83.0665}}",1,44,1
-brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_bruin_8,0,0,244481720322,"{""name"":""Achel Bruin 8°"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,19,1
-taylor_brewing-dark_satin,0,0,245116764161,"{""name"":""Dark Satin"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,43,1
-brouwerij_huyghe-duinen_dubbel,0,0,244481196032,"{""name"":""Duinen Dubbel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-left_hand_brewing_company-snow_bound_winter_ale,0,0,244745961473,"{""name"":""Snow Bound Winter Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-rahr_sons_brewing_company-buffalo_butt,0,0,244982480897,"{""name"":""Buffalo Butt"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rahr's Buffalo Butt is a smooth, medium-bodied amber lager. Notes of caramel with a sound malt character. Nice hop finish, it's as smooth as a baby buffalo's...!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
-the_alchemist-holy_moly,0,0,245098938368,"{""name"":""Holy Moly"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,3,1
-green_mountain_beverage-woodchuck_dark_and_dry_draft_cider,0,0,244756250625,"{""name"":""Woodchuck Dark and Dry Draft Cider"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,55,1
-lake_superior_brewing-sir_duluth_oatmeal_stout,0,0,244755529728,"{""name"":""Sir Duluth Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
-john_martin_sa-martin_s_pale_ale,0,0,244738162688,"{""name"":""Martin's Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_martin_sa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,10,1
-brouwerij_de_dolle_brouwers-arabier,0,0,244494958593,"{""name"":""Arabier"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""An arabier is a pure malt beer 8°vol/alc brewed with flower Nugget-hops from Poperinge. It has the special dry-hopping taste and aroma, so appreciated by beer lovers all over the world. It is one of the two main beers from De Dolle Brouwers throughout the year. Aging time is limited due to the fact that hop bitterness is declining with the time. Store arabier cool and dark and serve cool at 10°C. Cheers!"",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,49,1
-elk_grove_brewery_restaurant,0,0,244611547137,"{""name"":""Elk Grove Brewery & Restaurant"",""city"":""Elk Grove"",""state"":""California"",""code"":""95624"",""country"":""United States"",""phone"":""1-916-685-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9085 Elk Grove Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.4093,""lon"":-121.363}}",1,12,1
-c_b_potts_of_cheyenne,0,0,244498366466,"{""name"":""C.B. & Potts of Cheyenne"",""city"":""Cheyenne"",""state"":""Wyoming"",""code"":""82001"",""country"":""United States"",""phone"":""1-307-632-8636"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1650 Dell Range Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.1607,""lon"":-104.802}}",1,57,1
-steinfels_back_brau,0,0,245097562112,"{""name"":""Steinfels Back & Brau"",""city"":""Zrich"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.369,""lon"":8.538}}",1,1,1
-full_sail_brewing_1-ltd_02_lager,0,0,244631142400,"{""name"":""LTD 02 Lager"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
-keg_microbrewery_restaurant-wheat,0,0,244738621442,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
-wilmington_brewing,0,0,245750366208,"{""name"":""Wilmington Brewing"",""city"":""Wilmington"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":34.2257,""lon"":-77.9447}}",1,46,1
-the_bruery-saison_rue,0,0,245115518976,"{""name"":""Saison Rue"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Saison Rue is an unfiltered, bottle conditioned, Belgian/French-style farmhouse ale. This is a beer of subtlety and complexity, with malted rye, spicy, fruity yeast notes, biscuit-like malt backbone, and a slight citrus hop character. With age, this beer will dry out and will become more complex with rustic notes of leather and earth from the contribution of a wild yeast strain. Being a Saison, Saison Rue is ambiguous unto itself as it is a different beer when fresh and when aged. We hope you enjoy it in all of its incarnations."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,40,1
-coors_brewing_golden_brewery-honey_moon_summer_ale,0,0,244488273921,"{""name"":""Honey Moon Summer Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Gold Medal-winning Honey Moon Summer Ale is a classic summer ale made even better with real clover honey, fresh orange peel and both pale and white wheat malts. Proff that brewing the perfect summer ale is a true art."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
-coeur_d_alene_brewing_company-huckleberry_ale,0,0,244488732672,"{""name"":""Huckleberry Ale"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coeur_d_alene_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,35,1
-flying_dog_brewery-doggie_style_ale,0,0,244622491648,"{""name"":""Doggie Style Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-mudshark_brewing-skyline_stout,0,0,244860715008,"{""name"":""Skyline Stout"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Watch Your Pint Cascade From Brown to Black, As This Chocolaty Settles, Creamy, Dark, Not Too Bitter Finish""}",1,8,1
-limburg_beer_company-witbier,0,0,244859994112,"{""name"":""Witbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""limburg_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-hop_back_brewery-pickled_santa,0,0,244739866624,"{""name"":""Pickled Santa"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-george_gale_company,0,0,244631863297,"{""name"":""George Gale & Company"",""city"":""Portsmouth"",""state"":""Hampshire"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.7989,""lon"":-1.0912}}",1,59,1
-rock_bottom_restaurant_brewery_minneapolis,0,0,244981235712,"{""name"":""Rock Bottom Restaurant & Brewery - Minneapolis"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55402"",""country"":""United States"",""phone"":""1-612-332-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""800 LaSalle Plaza""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9765,""lon"":-93.2747}}",1,2,1
-redhook_ale_brewery-esb,0,0,245000568834,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-six_rivers_brewery-fat_bastard_barleywine_discontinued,0,0,244980711424,"{""name"":""Fat Bastard Barleywine (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""six_rivers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-marine_pub_brewhouse-premium_gold,0,0,244879851521,"{""name"":""Premium Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marine_pub_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
-bull_bush_pub_brewery-kolsch,0,0,244495613953,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-flyers_restraunt_and_brewery,0,0,244613840896,"{""name"":""Flyers Restraunt and Brewery"",""city"":""Oak Harbor"",""state"":""Washington"",""code"":""98277"",""country"":""United States"",""phone"":""360.675.5858"",""website"":""http://www.eatatflyers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""32295 State Route 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.2992,""lon"":-122.652}}",1,17,1
-hops_grillhouse_brewery_cherry_creek-hoptoberfest,0,0,244750221313,"{""name"":""Hoptoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,39,1
-portland_brewing-benchmark_old_ale,0,0,244981891072,"{""name"":""Benchmark Old Ale"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,4,1
-river_west_brewing-windy_city_pilsner,0,0,244982874112,"{""name"":""Windy City Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
-frontwaters_restaurant_and_brewing-port_clinton_porter,0,0,244629700609,"{""name"":""Port Clinton Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frontwaters_restaurant_and_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
-voodoo_brewing_co_llc-white_magick_of_the_sun,0,0,245749645312,"{""name"":""White Magick of the Sun"",""abv"":6.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This Wheat ale is made with a little Voodoo Twist. We use our house Belgian Ale yeast and add the average unmalted wheat, wheat, barley,raw oats, malted rye and just add more of each. Hopped evenly and spiced with coriander, bitter and sweet orange peel, juniper berries, 12 varieties of peppercorns,lemon grass and caraway. About 6.75% alc by vol. \r\n\r\nBottle Conditioned and Refermented. NOT A WIT BIER!!! Just stuff we like in beer that goes great with food. \r\n\r\nThis beer is to be the answer to those hot summer days. Blows away carbonated water!!!!!"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
-harmon_brewing_company-point_defiance_ipa,0,0,244740718594,"{""name"":""Point Defiance IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Four types of malted barley, including a specially roasted Belgium barley make up the grain bill. Centennial, Sterling, and Amarillo hops provide the big hoppy flavor. Double dry-hopped, once with raw Centennial hops and once with raw Amarillo hops present this beer's huge hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
-kulmbacher_brauerei_ag-eku_pils,0,0,244740456450,"{""name"":""EKU Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-labatt_ontario_breweries-labatt_ice,0,0,244739538944,"{""name"":""Labatt Ice"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Ice, introduced in 1993, was the world’s first Ice-Brewed™ beer and the most successful new brand introduction in Canadian brewing history. Labatt Ice is a fully fermented beer that is allowed to mature at cold temperatures. Labatt Ice uses selected North American hops to complement its smooth, full flavour."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-red_oak_brewery-battlefield_bock,0,0,244997619713,"{""name"":""Battlefield Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_oak_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Battlefield Bock is a smooth and creamy Bavarian Style Bock Lager. It is brewed with our proprietary blend of Bavarian Dark Roasted Malts giving it a distinct taste with hints of coffee and chocolate. We add Noble Czech Saaz Hops to balance the flavor of this rich full bodied lager. Battlefield Bock is slow cold aged for a minimum of 8 weeks."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,41,1
-twin_rivers_brewing-saison,0,0,245118402561,"{""name"":""Saison"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-dogfish_head_craft_brewery-shelter_pale_ale,0,0,244619411456,"{""name"":""Shelter Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our original brew and our most approachable beer. It's brewed with a premium barley and whole-leaf Glacial & Warrior hops. Our Shelter Pale Ale has a fine malt backbone and a slightly nutty flavor. A versatile, quaffable beer. The Shelter Pale Ale is available exclusively in the Mid-Atlantic region."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-herkimer_pub_brewery-high_point_dunkel,0,0,244749500417,"{""name"":""High Point Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""herkimer_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-mad_anthony_brewing-big_daddy_brown,0,0,244860977152,"{""name"":""Big Daddy Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
-green_bay_brewing-hinterland_mild_cask_ale,0,0,244747468802,"{""name"":""Hinterland Mild Cask Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,33,1
-two_brothers_brewing-the_bitter_end_pale_ale,0,0,245117157377,"{""name"":""The Bitter End Pale Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Very drinkable light golden ale. Extremely refreshing hop finish"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
-browar_warka,0,0,244481785856,"{""name"":""Browar Warka"",""city"":""Warka"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""+48(0-48) 666 11 11"",""website"":""http://www.warka.com.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Gośniewska 65""]}",1,19,1
-terrapin_beer_company-india_style_brown_ale,0,0,245116829696,"{""name"":""India Style Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Terrapin India Style Brown Ale is a head on collision between a hoppy, west coast IPA and a complex, malty brown ale. Brewed with 5 varieties of hops and 7 different malts, this hybrid style represents the best of both worlds."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
-brouwerij_rodenbach-rodenbach,0,0,244481196033,"{""name"":""Rodenbach"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_rodenbach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-maclay_and_co-wallace,0,0,244868513792,"{""name"":""Wallace"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-revolution_brewing_llc-iron_fist_pale_ale,0,0,244982480898,"{""name"":""Iron Fist Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber pale ale dry hopped with a blend of American hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
-the_blind_bat_brewery_llc-harborfields_hefeweizen,0,0,245098938369,"{""name"":""Harborfields HefeWeizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Sometimes it's good to keep it simple. \r\n\r\nHarborfields HefeWeizen is modeled after the German classic, but meant to be available fresh (like you would enjoy if you were in Germany). Shipping over long distances is not always a friend to beer. \r\n\r\nNamed for the Centerport-Greenlawn area of Long Island that is home to the Blind Bat Brewery, Harborfields Hefeweizen goes great with fish, chicken, or a summer salad. Some even like it with brunch! (Please enjoy your waffles responsibly.)"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,3,1
-grizzly_bay_brewing-weizen,0,0,244756316160,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-lakefront_brewery-holiday_spice_lager_beer,0,0,244755529729,"{""name"":""Holiday Spice Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-kaiserdom_privatbrauerei_bamberg,0,0,244738162689,"{""name"":""Kaiserdom Privatbrauerei Bamberg"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-60450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Breitckerstrae 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.9043,""lon"":10.8524}}",1,10,1
-brouwerij_huyghe-delirium_nocturnum,0,0,244494958594,"{""name"":""Delirium Nocturnum"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,49,1
-elysian_brewing_tangletown-warminster_special_bitter,0,0,244611612672,"{""name"":""Warminster Special Bitter"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewing_tangletown"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-capital_brewery-capital_bavarian_lager,0,0,244498432000,"{""name"":""Capital Bavarian Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Munich Helles style Lager""}",1,57,1
-stone_brewing_co-double_bastard_ale,0,0,245097562113,"{""name"":""Double Bastard Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
-gatz_brauhaus-alt,0,0,244631142401,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gatz_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
-kiuchi_shuzou_goushi_kaisya,0,0,244738686976,"{""name"":""Kiuchi Shuzou Goushi Kaisya"",""city"":""Ibaraki"",""state"":""Kanto"",""code"":"""",""country"":""Japan"",""phone"":""81-029-298-0105"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1257, Kounsosu""]}",1,11,1
-yaletown_brewing-yippee_ipa,0,0,245750366209,"{""name"":""Yippee IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yaletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
-thirsty_dog_brewing-nut_brown_ale,0,0,245115518977,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
-court_avenue_brewing-topping_pale_ale,0,0,244488273922,"{""name"":""Topping Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
-deschutes_brewery-bachelor_bitter,0,0,244621246464,"{""name"":""Bachelor Bitter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""\""The Traditional British Pint\"" lives on at Deschutes Brewery & Public House. One of the original three packaged beers, it is still available year-round, but only at our pub. Coppery in color and robust in flavor, Bachelor Bitter will leave your taste buds humming. Galena, Willamette and Kent Golding hops create fantastic hop bitterness, aroma and flavor.\r\n\r\nBachelor Bitter also kicked off the Bond Street Series that launched in April 2005. The Bond Street Series is a specialty line of beers available in 22-ounce bottles."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,35,1
-four_peaks_brewing-the_raj_india_pale_ale,0,0,244622491649,"{""name"":""The Raj India Pale Ale"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong India Pale Ale that is marked by intense hop flavor and high hop bitterness. This style of beer needed the high hop and alcohol to survive the trip around Africa. Medium to light body and very bitter. \r\n\r\nAlcohol content approximately 6.9% by volume (ALWAYS ON TAP!!)"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,37,1
-nebraska_brewing_company-red_sled_winter_ale,0,0,244860715009,"{""name"":""Red Sled Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-loaf_and_stein_brewing-nut_brown,0,0,244859994113,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
-iron_springs_pub_brewery,0,0,244739866625,"{""name"":""Iron Springs Pub & Brewery"",""city"":""Fairfax"",""state"":""California"",""code"":""94930"",""country"":""United States"",""phone"":""1-415-485-1005"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""765 Center Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.986,""lon"":-122.584}}",1,14,1
-gray_brewing-pre_prohibition_lager,0,0,244757757952,"{""name"":""Pre-Prohibition Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-rocky_river_brewing-artisan_saison,0,0,244981235713,"{""name"":""Artisan Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-river_horse_brewing_company-river_horse_lager,0,0,245000568835,"{""name"":""River Horse Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We mill the choicest two row barley malt in our 100 year old mill room for this all natural, unfiltered Lager. Lightly hopped, fermented slowly. River Horse Lager gets plenty of quality time with us before we pass it on to you."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-slab_city_brewing-high_noon_wheat_beer,0,0,244980711425,"{""name"":""High Noon Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,0,1
-mash_house_restaurant_and_brewery,0,0,244879917056,"{""name"":""Mash House Restaurant and Brewery"",""city"":""Fayetteville"",""state"":""North Carolina"",""code"":""28303"",""country"":""United States"",""phone"":""1-910-867-9223"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4150 Sycamore Dairy Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.0707,""lon"":-78.9545}}",1,56,1
-bullfrog_brewery-hands_off_maibock,0,0,244495613954,"{""name"":""Hands Off Maibock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A springtime favorite, this traditional German Maibock (my-bock) is golden in color with a rich maltiness and a long, spicy finish."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,50,1
-flying_dog_brewery-heller_hound_bock_beer,0,0,244613840897,"{""name"":""Heller Hound Bock Beer"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,17,1
-hp_bulmer-woodpecker,0,0,244750221314,"{""name"":""Woodpecker"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hp_bulmer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-privatbrauerei_frankenheim-alt,0,0,244981891073,"{""name"":""Alt"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_frankenheim"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
-rock_bottom_restaurant_brewery_minneapolis-itasca_extra_pale_ale,0,0,244982874113,"{""name"":""Itasca Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,6,1
-great_bear_brewing-pioneer_peak_porter,0,0,244755857408,"{""name"":""Pioneer Peak Porter"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_bear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
-wdi_bru_huus,0,0,245749645313,"{""name"":""Wdi-Bru-Huus"",""city"":""Wdenswil"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-01-783-93-92"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Florhofstrasse 13""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.2311,""lon"":8.6691}}",1,42,1
-heineken_international-premium_light_lager_beer,0,0,244740784128,"{""name"":""Premium Light Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-kulmbacher_brauerei_ag-premium_pils_edelherb,0,0,244740521984,"{""name"":""Premium Pils Edelherb"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-lagunitas_brewing_company-sirius,0,0,244739538945,"{""name"":""Sirius"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,13,1
-rogue_ales-tracktown_ipa,0,0,244997685248,"{""name"":""Tracktown IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Offering a hop-heads paradise, this unfiltered Northwest-Style India Pale Ale introduces a big floral hop character to the aroma, flavor and finish. Hops, Hops, Hops from front to back but nicely offset with a malty richness that prevents this ale from being overbearing. Tracktown is made from 100% Floor Malted Maris Otter, 100% Northwest Amarillo Hops, Free Range Coastal Water, and absolutely No Chemicals, Additives, or Preservatives."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,41,1
-uinta_brewing_compnay-king_s_peak_porter,0,0,245118402562,"{""name"":""King's Peak Porter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uinta_brewing_compnay"",""updated"":""2010-07-22 20:00:20"",""description"":""King's Peak Porter is deep mahogany in color and has a full-bodied malty flavor. Hints of chocolate malt are easily detectable.\r\n\r\nTopped with a tan creamy head, this beer has a definite hop character that nicely balances its mild bitterness. \r\n\r\nKing's Peak is the highest point in the state of Utah at 13,528 feet, located in northeastern Utah in the Uinta Mountains."",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
-dublin_brewing-1798_revolution,0,0,244619411457,"{""name"":""1798 Revolution"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dublin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,31,1
-hofbru_kaltenhausen_salzachtal,0,0,244749565952,"{""name"":""Hofbru Kaltenhausen Salzachtal"",""city"":""Hallein"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-62-45/795-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Salzachtal Bundesstrae Nord 37""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6942,""lon"":13.0784}}",1,38,1
-maisel_bru-eine_bamberger_weisse_hell,0,0,244860977153,"{""name"":""Eine Bamberger Weisse Hell"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maisel_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,9,1
-grumpy_troll_restaurant_and_brewery-how_now,0,0,244747534336,"{""name"":""How Now"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
-valley_brewing_company-fat_city_ale,0,0,245117222912,"{""name"":""Fat City Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Fat City Ale is the newest release from Valley Brewing Company. Fat City Ale is produced using only the finest 2-Row Barley and fresh Hops resulting in a crisp and refreshing flavor."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,44,1
-california_cider_company,0,0,244481785857,"{""name"":""California Cider Company"",""city"":""San Rafael"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.9735,""lon"":-122.531}}",1,19,1
-the_cambridge_house-abijah_rowe_ipa,0,0,245116895232,"{""name"":""Abijah Rowe IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional English India Pale Ale brewed with all English malt & hopped with a blend of English & American hops. High in strength, bitterness & aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-brouwerij_st_bernardus-watou_tripel,0,0,244481196034,"{""name"":""Watou Tripel"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""The flavour of this beer is pleasantly soft and is characterized by a delicate bitterness where the balance between malt and hop is based upon a fruity orange taste with a straight fresh after taste (7.5% alcohol content)"",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,18,1
-magnolia_pub_and_brewery-stout_of_circumstance,0,0,244868579328,"{""name"":""Stout of Circumstance"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,28,1
-richbrau_brewing_company-richbrau_oatmeal_stout,0,0,244982546432,"{""name"":""Richbrau Oatmeal Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""If you don’t do dark beers, do yourself a favor and cancel that policy for this Oatmeal Stout. Keywords: Sweet Lusciousness; Roasty chocolate. Served on a nitro tap."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,5,1
-titletown_brewing-johnny_blood_mcnally_irish_red,0,0,245099003904,"{""name"":""Johnny \""Blood\"" McNally Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
-hair_of_the_dog_brewing-ruth,0,0,244756316161,"{""name"":""Ruth"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-long_trail_brewing_co-double_bag_ale,0,0,244878016512,"{""name"":""Double Bag Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty, full-bodied double alt is also know as \""Stickebier\"" - German slang for \""secret brew\"". Double Bag was originally offered only in our brewery taproom as a special treat to our visitors."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,52,1
-karl_strauss_brewery_gardens_sorrento_mesa-star_of_india_pale_ale,0,0,244738162690,"{""name"":""Star of India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-brouwerij_kerkom-winterkoninkse,0,0,244495024128,"{""name"":""Winterkoninkse"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_kerkom"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-far_west_ireland_brewing-three_threads_porter,0,0,244611612673,"{""name"":""Three Threads Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""far_west_ireland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,12,1
-carlyle_brewing-scottish_ale,0,0,244498432001,"{""name"":""Scottish Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlyle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,57,1
-summit_brewing-india_pale_ale,0,0,245097562114,"{""name"":""India Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""First brewed with an extra dose of hops to help it survive the long journey from England to beer lovers in India, India Pale Ale is now brewed just for the pleasure of its distinctive hoppy flavor."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
-glacier_brewhouse,0,0,244631142402,"{""name"":""Glacier Brewhouse"",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99501"",""country"":""United States"",""phone"":""(907) 274-2739"",""website"":""http://www.glacierbrewhouse.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""737 W. 5th Ave., Suite 110""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":61.2179,""lon"":-149.896}}",1,58,1
-la_jolla_brewing-blitzen,0,0,244738686977,"{""name"":""Blitzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-yazoo_brewing-hefeweizen,0,0,245750366210,"{""name"":""Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An authentic example of a Bavarian Hefeweizen. “Hefe” means cloudy or yeasty and “weizen” means wheat. This beer is made with mostly wheat and uses a true Hefeweizen yeast that gives it a fruity, banana aroma with just a hint of cloves. The tart finish makes this the perfect summer beer.\r\n\r\nFood pairings: Almost anything goes well with Hefeweizen but it especially shines when paired with salads and omelets.\r\n\r\nOG: 12.0 Plato\r\nFG: 2.3 Plato\r\nIBUs: 13\r\nSRM: 3\r\n5.0% abv"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
-timmermans-timmermans_peche,0,0,245115518978,"{""name"":""Timmermans Pêche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,40,1
-court_avenue_brewing,0,0,244488339456,"{""name"":""Court Avenue Brewing"",""city"":""Des Moines"",""state"":""Iowa"",""code"":""50309"",""country"":""United States"",""phone"":""1-515-282-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""309 Court Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.5855,""lon"":-93.621}}",1,34,1
-dick_s_brewing-best_bitter,0,0,244621312000,"{""name"":""Best Bitter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-fratellos_restaurant_and_brewery-nut_brown_ale,0,0,244622557184,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
-new_glarus_brewing_company-copper_kettle_weiss,0,0,244860715010,"{""name"":""Copper Kettle Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,8,1
-long_trail_brewing_co-traditional_ipa,0,0,244860059648,"{""name"":""Traditional IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The first IPAs were unfiltered and featured extra hops and higher strength as a preservative for the long trip from England to the colony of India. Our Traditional IPA is naturally carbonated, dry-hopped & unfiltered like the old days."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
-jolly_pumpkin_artisan_ales-fuego_del_otono,0,0,244739866626,"{""name"":""Fuego del Otono"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""To catch a bit of soft radiance in each bottle, we wait for fall colors to begin their bright and fleeting glow before brewing this wonderful ale under their autumn fire. Gentle amber malt blend smooth caramel notes, gently lapping against a shore of distant forgotten spice. A beer to sip, contemplate and enjoy."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
-great_divide_brewing-hercules_double_ipa,0,0,244757757953,"{""name"":""Hercules Double IPA"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppier, maltier and with more alcohol than a standard IPA, Hercules Double IPA definitely is not for the faint of heart. Hercules Double IPA is, however, an elixir fit for the gods. A brash but creamy wonder, Hercules pours a deep orange-coppery color, forming substantial lace in the glass. Hercules Double IPA delivers a huge amount of piney, floral, and citrusy hop aroma and flavor from start to finish. A hefty backbone of nutty, toffee-like malt character balances Hercules’ aggressive, punchy hop profile."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-rogue_ales-dry_hopped_st_rogue_red_ale,0,0,244981235714,"{""name"":""Dry Hopped St. Rogue Red Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The Malt Advocate described Saint Rogue Red as \""An ale with great character and plenty of hops to satisfy. Full aromatic punch of caramel, citrus fruit and melon, with underlying fresh earth tones. Sweet caramel notes up front are quickly taken over by an array of fruit and hops bitterness that lingers into the night. A more adventurous ale than most.\""\r\n\r\nReddish copper in color, a roasty malt flavor with a hoppy sprucy finish. Saint Rogue Red is made with two-row Harrington, Klages and Munich malts, along with Hugh Baird 30-37, 13-17 Carastan, and Crystal 70-80 malts (44.4% speciality grains .39 lbs grain per bottle); Chinook and Centennial hops. Saint Rogue Red is available in a 22-ounce bottle, 12-ounce 6-pack (new for 2005), and on draft. Saint Rogue Red Dry Hopped-a draft only variation with raw Centennial hops added to the keg, giving the beer an increased hop finish and intense hop aroma."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
-river_west_brewing,0,0,245000634368,"{""name"":""River West Brewing"",""city"":""Chicago"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.85,""lon"":-87.6501}}",1,48,1
-st_austell_brewery-hsd_hicks_special_draught,0,0,245097365504,"{""name"":""HSD Hicks Special Draught"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_austell_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""St Austell’s most legendary ale, HSD is fullbodied strong and Cornish, brimming with a kaleidoscope of flavours. Brewed with plenty of malt and lashings of English Fuggles and Golding hops, HSD is truly a classic ale of considerable depth and complexity. The real ale alternative to a well rounded premium red wine and simply superb with steaks and other red meat dishes."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,0,1
-mcmenamins_mill_creek-india_pale_ale,0,0,244879917057,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
-capital_brewery-capital_weizen_doppelbock,0,0,244495679488,"{""name"":""Capital Weizen Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,50,1
-flying_fish_brewing_company-hopfish_ipa,0,0,244613906432,"{""name"":""HopFish IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At the request of you hopheads, we produced this I.P.A. with a deep golden color, plenty of hop bitterness balanced by malt sweetness. Because of the extensive dry hopping, there's a floral and citrus hop finish. It's then lightly filtered to maintain the appropriate body and flavor. The beer features a combination of American, English and German malts to balance the large amount of hops. The HopFish also uses three hop varieties at five different times and has been dry-hopped for two weeks with 22lbs of Nugget whole leaf hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
-idaho_brewing,0,0,244750286848,"{""name"":""Idaho Brewing"",""city"":""Idaho Falls"",""state"":""Idaho"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.4666,""lon"":-112.034}}",1,39,1
-pug_ryan_s_steakhouse_and_brewery-pallavicini_pilsner,0,0,244981956608,"{""name"":""Pallavicini Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pug_ryan_s_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-rogue_ales-hazelnut_brown_nectar,0,0,244982939648,"{""name"":""Hazelnut Brown Nectar"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""HazelNut Brown Nectar is a nutty twist to a traditional European Brown Ale. Dark brown in color with a hazelnut aroma, a rich nutty flavor and a smooth malty finish. Dedicated to the homebrewer in each of us--the homebrewer who inspired this creation is Chris Studach, a friend of Rogues resident wizard John Maier, who added a Northwest twist to the classic style by adding hazelnuts for the host homebrew at the 1993 American Homebrewers Association convention. Chris put the nut in nut brown!\r\n\r\nHazelnut Brown Nectar Ale is a blend of Great Western 2-row Pale, Munich, Hugh Baird Brown, Crystal 80 and Crystal 135, Carastan, and Beeston Pale Chocolate malts; hazelnut extract; Perle and Saaz hops. HazelNut Brown Nectar is available in a 22-ounce bottle, a special commemorative 3-litre bottle with ceramic swing-top, and on draft."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,6,1
-great_dane_pub_and_brewing_2-foxy_brown,0,0,244755922944,"{""name"":""Foxy Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
-weyerbacher_brewing_company-golf,0,0,245749710848,"{""name"":""Golf"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Brewer's Select Series, Golf is a fest-weisse hybrid or 'Festeweizen.' It will weigh in at 5.0% and is made with Munich, Wheat, and CaraVienna malts and Spalt hops."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,42,1
-high_falls_brewing-dundee_wheat_beer,0,0,244740784129,"{""name"":""Dundee Wheat Beer"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Senator Joseph McCarthy. The Hollow Earth Society. Members of the Spanish Inquisition. All convinced they were blessed with the gift of clarity. And proof that clarity might be overrated. \r\n\r\nSometimes, being unclear—and a little flexible—is a good thing. Like when you are looking for the perfect refreshment. Dundee Wheat Beer combines wheat and yeast into a refreshing hefeweizen-style brew. Unfiltered, so it is slightly cloudy and pleasantly unclear. \r\n\r\nSo the next time you’re convinced you’re right about what you’ve been drinking, give a little “unclarity” a try.\r\n\r\nAn American-style, unfiltered wheat beer. Pale straw in color with a light cloudiness from carefully selected wheat and yeast. Pleasant spicy malt aroma and a crisp hop finish."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,16,1
-labatt_ontario_breweries-canadian_ale,0,0,244740521985,"{""name"":""Canadian Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
-legacy_brewing_co,0,0,244739604480,"{""name"":""Legacy Brewing Co."",""city"":""Reading"",""state"":""Pennsylvania"",""code"":""19602"",""country"":""United States"",""phone"":""(610) 376-9996"",""website"":""http://www.legacybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Legacy Brewing Co. is committed to handcrafting unique, high quality beer by employing brewing techniques learned from European and American brewers. The complexity of flavors comes from a combination of high quality imported malts and our hopping methods which includes the use of whole flower hops. The Legacy team includes a creative collection of brewers, engineers, a microbiologist and our friends in the arts community; all with a passion for innovative products. Legacy...we brew pure pleasure!"",""address"":[""545 Canal Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.3256,""lon"":-75.9283}}",1,13,1
-s_a_damm-estrella_levante_clasica,0,0,244997685249,"{""name"":""Estrella Levante Clasica"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2011-07-14 08:52:30"",""description"":"""",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,41,1
-upstream_brewing_old_market-grand_cru,0,0,245118402563,"{""name"":""Grand Cru"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-dubuque_brewing_and_bottling-wild_boar_wild_wheat,0,0,244619476992,"{""name"":""Wild Boar Wild Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dubuque_brewing_and_bottling"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-hoffbrau_steaks_brewery_2,0,0,244749565953,"{""name"":""Hoffbrau Steaks Brewery #2"",""city"":""Dallas"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.803,""lon"":-96.7699}}",1,38,1
-midnight_sun_brewing_co-mayhem_belgian_style_double_ipa,0,0,244861042688,"{""name"":""Mayhem Belgian-style Double IPA"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Chaotic yet hypnotic, Mayhem is a deliberate Double IPA, brewed and conditioned with a special Belgian yeast that contributes complexity and spice. Abundant American hops offer grapefruit, pine, must and mint, which play off the fullness and sweetness of pale malts then provide a biting yet enticing finish.\r\n\r\nMayhem Double IPA accents the complex spice combinations found in Thai, Indian, Cajun, Morrocan, Mexican and Southwest American cuisines as well as BBQ marinades, dry rubs and sauces.\r\n\r\nMayhem creates MAYHEM."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,9,1
-hops_grillhouse_brewery_cherry_creek,0,0,244747534337,"{""name"":""Hops Grillhouse & Brewery - Cherry Creek"",""city"":""Denver"",""state"":""Colorado"",""code"":""80206"",""country"":""United States"",""phone"":""1-303-377-0909"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""149 Steele Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7187,""lon"":-104.95}}",1,33,1
-victory_brewing-brandywine_valley_lager,0,0,245117222913,"{""name"":""Brandywine Valley Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
-callahan_s_pub_and_brewery,0,0,244481785858,"{""name"":""Callahan's Pub and Brewery"",""city"":""San Diego"",""state"":""California"",""code"":""92126"",""country"":""United States"",""phone"":""1-858-578-7892"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8280-A Mira Mesa Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.9147,""lon"":-117.146}}",1,19,1
-valley_brewing_company-valley_berry_wheat,0,0,245116895233,"{""name"":""Valley Berry Wheat"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Valley Berry Wheat is a fruit beer produced using pure fruit extracts of Raspberry, Wildberry, Cherry and Blueberry. The beer has a wonderful fruity nose and a smooth clean finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,43,1
-brouwerij_van_steenberge-leute_bok_bier,0,0,244481261568,"{""name"":""Leute Bok Bier"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,18,1
-mcmullen_sons-ak_original_bitter,0,0,244868644864,"{""name"":""AK Original Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmullen_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-rogue_ales-mogul_ale,0,0,244982546433,"{""name"":""Mogul Ale"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Mogul is a complex blend of 5 malts and 7 hops. This years Mogul (12/05) will only get better with time...its a hedonistic mouthful with layers of rich malt and tremendous bitterness. A quote from John \""more hops\"" Maier, \""Keep Warm, Drink Mogul ~ Prost!\"" This batch of Mogul was brewed with Pale, Munich, Dark caramunich, Melanoidin, and Amber malts. \r\nMoguls hops include Newport, Amarillo, Chinook, Horizon, Cascade, Centennial and Crystal...and Mogul (12/05) is dry-hopped with Amarillo and Centennial at the rate of 1 pound per barrel! Oh Hoppy Day!""}",1,5,1
-titletown_brewing-new_century_beer,0,0,245099003905,"{""name"":""New Century Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-hale_s_ales_3-pale_ale,0,0,244756381696,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-lost_coast_brewery-great_white_beer,0,0,244878082048,"{""name"":""Great White Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-laconner_brewing-india_pale_ale,0,0,244738228224,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-brouwerij_sterkens-white_ale,0,0,244495024129,"{""name"":""White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-first_coast_brewing,0,0,244611612674,"{""name"":""First Coast Brewing"",""city"":""Wilmington"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":34.2257,""lon"":-77.9447}}",1,12,1
-carolina_brewery-ipa,0,0,244498432002,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
-the_alchemist-donovan_s_red,0,0,245097627648,"{""name"":""Donovan's Red"",""abv"":5.16,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after Donovan's, a 19th century Irish restaurant in downtown Waterbury. This medium-bodied, red-colored ale has a nice hop flavor and aroma."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
-golden_pacific_brewing-golden_gate_amber_ale,0,0,244631207936,"{""name"":""Golden Gate Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-lagunitas_brewing_company-the_hairy_eyeball,0,0,244738752512,"{""name"":""The Hairy Eyeball"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-titletown_brewing-dousman_street_wheat,0,0,245115584512,"{""name"":""Dousman Street Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,40,1
-cucapa_brewing_company,0,0,244488339457,"{""name"":""Cucapa Brewing Company"",""city"":""Mexicali"",""state"":""Baja"",""code"":"""",""country"":""Mexico"",""phone"":"""",""website"":""http://www.cucapa.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Craft beer, just across the border."",""address"":[],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":31.7291,""lon"":-116.578}}",1,34,1
-dinkelacker_schwaben_bru,0,0,244621312001,"{""name"":""Dinkelacker-Schwaben Bru"",""city"":""Stuttgart"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)711-/-6481-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tbinger Strae 46""]}",1,35,1
-gasthof_brauerei_zum_frohsinn-weizenbier,0,0,244622557185,"{""name"":""Weizenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,37,1
-new_glarus_brewing_company-hop_hearty_ipa,0,0,244860780544,"{""name"":""Hop Hearty IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
-manayunk_brewery_and_restaurant-manayunk_lager,0,0,244860125184,"{""name"":""Manayunk Lager"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""In strict accordance with the German purity law of 1516, we present to you this annually brewed festbier. Traditionally brewed in March and stored deep in the caves of Germany, this beer was brought to the masses to celebrate in October. It is a Vienna-style lager with a bit more malt and hops making a malty but balanced beverage. Copper-orange in color, it sports a toasty malt backbone that wonderfully compliments itself with many of our menu items."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
-klosterbrauerei_weltenburg-hefe_weizen_dunkel,0,0,244739866627,"{""name"":""Hefe-Weizen Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-green_flash_brewing-first_anniversary_ale,0,0,244757823488,"{""name"":""First Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-ruppaner_brauerei-spezial_export,0,0,244981235715,"{""name"":""Spezial-Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-rogue_ales-chamomellow,0,0,245000634369,"{""name"":""Chamomellow"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Chamomellow is an herbal golden ale infused with chamomile, which provides an enticing floral aroma. Chamomile is one of the oldest garden herbs used by ancient Egyptians and other cultures to battle illness, promote calm and relieve anxiety, hence the name Chamomellow. Dedicated to Caleb McLoughlin, a revolutionary brewer who created this elixir at Rogues Issaquah Brewhouse and won a Gold medal in the Herbs & Spice category at the 2003 Great American Beer Festival.\r\n\r\nChamemollow is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops, and infused with Chamomile. Available in a limited edition 22-ounce bottles (originally as Test Batch 1 - Gold Medal Series), and on draft at Rogues six Public Houses."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-stone_brewing_co-old_guardian_barley_wine_2007,0,0,245097431040,"{""name"":""Old Guardian Barley Wine 2007"",""abv"":11.26,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-mendocino_brewing_hopland-yuletide_porter,0,0,244879982592,"{""name"":""Yuletide Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
-capital_city_brewing_company-amber_waves,0,0,244495679489,"{""name"":""Amber Waves"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A medium bodied west coast style amber ale. This is aggressively hopped with Perle and Cascade hops, and is held together by its sweet malty center."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
-fosters_tien_gang,0,0,244613906433,"{""name"":""Fosters Tien Gang"",""city"":""Thnh Pho Ho Ch Minh"",""state"":"""",""code"":"""",""country"":""Viet Nam"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Thnh Pho Ho Ch Minh""]}",1,17,1
-jinro_coors_brewing,0,0,244750286849,"{""name"":""Jinro Coors Brewing"",""city"":""Seoul"",""state"":"""",""code"":"""",""country"":""Korea, Republic of"",""phone"":""82-(0)431-279-4702"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cheongwon Factory: 52, Joongsam-Ri, Hyundo-Myun""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.5665,""lon"":126.978}}",1,39,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-hefeweizen,0,0,244981956609,"{""name"":""HefeWeizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
-ruppaner_brauerei-schimmele_hefe_pils,0,0,244982939649,"{""name"":""Schimmele Hefe Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-hair_of_the_dog_brewing-rose,0,0,244755922945,"{""name"":""Rose"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-wharf_rat-oliver_irish_red,0,0,245749710849,"{""name"":""Oliver Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wharf_rat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,42,1
-htt_brauerei_bettenhuser,0,0,244740784130,"{""name"":""Htt-Brauerei Bettenhuser"",""city"":""Baunatal"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)561-/-492076"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Knallhtte""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.2615,""lon"":9.4494}}",1,16,1
-labatt_ontario_breweries-genuine_honey_lager,0,0,244740521986,"{""name"":""Genuine Honey Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Genuine Honey Lager was introduced in 2005 in response to consumer demand for honey lagers. Labatt Genuine Honey uses genuine, all-natural, 100% Canadian honey to give consumers a softer, smoother taste. This naturally-aged lager is brewed to the same uncompromising standards applied to every Labatt beer. Genuine Honey Lager is the real thing!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
-magic_hat-9,0,0,244862550016,"{""name"":""#9"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Not quite pale ale. A beer cloaked in secrecy. An ale whose mysterious unusual palate will swirl across your tongue and ask more questions than it answers.\r\n\r\nA sort of dry, crisp, fruity, refreshing, not-quite pale ale. #9 is really impossible to describe because there's never been anything else quite like it. Our secret ingredient introduces a most unusual aroma which is balanced with residual sweetness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-sandlot_brewery_at_coors_field-oktoberfest,0,0,244997685250,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sandlot_brewery_at_coors_field"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,41,1
-vyturio_alaus_darykla-baltas_alus,0,0,245750431744,"{""name"":""Baltas Alus"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vyturio_alaus_darykla"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
-duclaw-bad_moon_porter,0,0,244619476993,"{""name"":""Bad Moon Porter"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""A complex, robust porter, Bad Moon is medium to full bodied with a slightly sweet, malty presence combined with hints of chocolate and coffee. This is a full-bodied beer that gets its chocolate and coffee-like flavors and color from the use of generous amounts of roasted malts. It has a smooth finish and a balanced hop character."",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
-hoppin_frog_brewery-frosted_frog_christmas_ale,0,0,244749565954,"{""name"":""Frosted Frog Christmas Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The essence of Christmas is captured in this very bottle you are holding. Perfectly blended spices compliment Frosted Frog’s rich malt flavors, creating the ultimate Christmas experience. Celebrate the holidays as you savor this very special seasonal offering."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,38,1
-montana_brewing-billings_ipa,0,0,244861042689,"{""name"":""Billings IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
-ithaca_beer_company-apricot_wheat,0,0,244747534338,"{""name"":""Apricot Wheat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our easy drinking wheat beer is light in color and body ... perfect for those looking for a lighter taste. The combination of wheat and barley give our Apricot Wheat a different malt character than any of our other ales. The hint of apricot gives this beer a fruity finish, making it a fun beer to drink."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
-victory_brewing-throwback_lager,0,0,245750104064,"{""name"":""Throwback Lager"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Crisp, lighter in body, yet still full flavored brew. Before Prohibition, thirst quenching lagers were firm and substantial, and enjoyed in huge volumes. This recipe incorporates yeast from the C. Schmidt Brewery of Philadelphia and a small portion of brewer's corn to recreate an \""industrial\"" lager of the turn of the century. \r\n\r\nReleased April 6 to celebrate Prohibition's repeal 73 yrs. ago, Throwback Lager is a draft only release that should flow into June"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
-capital_brewery-blonde_doppelbock,0,0,244481851392,"{""name"":""Blonde Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,19,1
-wagner_valley_brewing-sled_dog_doppelbock,0,0,245749907456,"{""name"":""Sled Dog Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wagner_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,43,1
-caldera_brewing-pale_ale,0,0,244481261569,"{""name"":""Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Available in 12 oz. cans and kegs. A West-Coast-style pale ale balancing plenty of hops with a malty backbone."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-meckatzer_lwenbru,0,0,244868644865,"{""name"":""Meckatzer Lwenbru"",""city"":""Heimenkirch"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8381-/-504-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Meckatz 10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6308,""lon"":9.8889}}",1,28,1
-scottish_newcastle_breweries,0,0,244982546434,"{""name"":""Scottish & Newcastle Breweries"",""city"":""Newcastle-upon-Tyne"",""state"":""Northumberland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0191)-2325092"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Gallowgate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.8918,""lon"":-76.7975}}",1,5,1
-trinity_brewing_company,0,0,245099069440,"{""name"":""Trinity Brewing Company"",""city"":""Colorado Springs"",""state"":""Colorado"",""code"":""80907"",""country"":""United States"",""phone"":""719-634-0029"",""website"":""http://trinitybrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1446 Garden of the Gods""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8967,""lon"":-104.855}}",1,3,1
-hansa_bryggeri-pilsner,0,0,244756381697,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hansa_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-main_street_brewery,0,0,244878147584,"{""name"":""Main Street Brewery"",""city"":""Corona"",""state"":""California"",""code"":""92880"",""country"":""United States"",""phone"":""1-951-371-1471"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""300 North Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.8835,""lon"":-117.565}}",1,52,1
-latrobe_brewing-rolling_rock,0,0,244738228225,"{""name"":""Rolling Rock"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""latrobe_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,10,1
-capital_brewery-capital_special_pilsner,0,0,244495024130,"{""name"":""Capital Special Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,49,1
-flat_branch_pub_brewing-oil_change_oatmeal_stout,0,0,244611678208,"{""name"":""Oil Change Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_branch_pub_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Black as diesel oil, Oil Change is big in roasty chocolate flavors. A large amount of flaked oats gives this stout a velvety smoothness. Oil Change is nitrogen charged to give it a thick creamy head."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,12,1
-celis_brewery-dubbel_ale,0,0,244498497536,"{""name"":""Dubbel Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-the_bruery-partridge_in_a_pear_tree,0,0,245097627649,"{""name"":""Partridge In A Pear Tree"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our holiday beer is a Belgian-style Dark Strong Ale, brewed with our brewery-made dark candi sugar, Munich and Vienna malts. Dark brown in color, fruity and complex with a rich malt backbone. This is a simple yet immensely complex beer meant to be savored and shared with friends and family."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,1,1
-goose_island_beer_company_fulton_street-demolition,0,0,244631273472,"{""name"":""Demolition"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-lift_bridge_brewery-harvestor_fresh_hop_ale,0,0,244738752513,"{""name"":""Harvestör Fresh Hop Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Constant addition of fresh Cascade and Willamette hops from Brad’s Stillwater hop garden during boil and fermentation process. Aromatic and caramel malts compliment the hop character for an incredibly balanced beer that celebrates the hop harvest without killing your tongue."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
-twin_ports_brewing-burntwood_black_ale,0,0,245115584513,"{""name"":""Burntwood Black Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
-dirt_cheap_cigarettes_and_beer,0,0,244620787712,"{""name"":""Dirt Cheap Cigarettes and Beer"",""city"":""Fenton"",""state"":""Missouri"",""code"":""63026"",""country"":""United States"",""phone"":""1-636-343-9770"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""895 Bolger Court""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5405,""lon"":-90.4607}}",1,34,1
-double_mountain_brewery_taproom-double_mountain_kolsch,0,0,244621377536,"{""name"":""Double Mountain Kolsch"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""In Cologne, Germany, many a brewery produces a light-bodied ale with a delicate fruitiness and rounded maltiness, attributable to the unique yeast strain commonly used. Our Kölsch is unfiltered and more generously hopped than its German cousin.""}",1,35,1
-goose_island_beer_company_clybourn-porter,0,0,244622557186,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,37,1
-new_glarus_brewing_company-imperial_stout,0,0,244860780545,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
-marquette_harbor_brewery_and_restaurant-plank_road_pale_ale,0,0,244860125185,"{""name"":""Plank Road Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marquette_harbor_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-kulmbacher_brauerei_ag-kapuziner_gold,0,0,244739932160,"{""name"":""Kapuziner Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,14,1
-half_moon_bay_brewing-old_princeton_landing_ipa,0,0,244757823489,"{""name"":""Old Princeton Landing IPA"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-sacramento_brewing_company-abbey_ipa,0,0,244981301248,"{""name"":""Abbey IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian IPA, West Coast hops meet belgian yeast. Spicy, fruity and citrusy notes combine for an interesting fusion brew."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,2,1
-rogue_ales-yellow_snow_ipa,0,0,245000699904,"{""name"":""Yellow Snow IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Yellow Snow IPA was originally introduced for the 2000 Winter Olympics in Salt Lake City.\r\n\r\nYellow Snow is Rogue’s tribute to winter sports everywhere—downhill skiing, snowboarding, cross country, ice hockey, ice fishing, snowmobiling, and even curling. \r\n\r\nIt will be available November 1st in select states where mountains and snow can be found.\r\n\r\nPale golden in color with a hoppy fruity aroma. Big hop flavor up front complemented by medium body and hoppyness mid-pallet. Finishes with a characteristic lingering bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-stoudt_s_brewery-market_alley,0,0,245097431041,"{""name"":""Market Alley"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Made exclusively for the Lancaster Dispensing Company."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,0,1
-midnight_sun_brewing_co-big_slick_american_barleywine_ale,0,0,244879982593,"{""name"":""Big Slick American Barleywine Ale"",""abv"":11.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This kick ass American Barley Wine is all about hops —Nugget, Chinook, Simcoe and Centennial. And, yeah, LoTs of ‘em. OK…there’s a substantial malt base on which these juicy Pacific NW hops lie down and do their dirty work. Maybe that’s too much info…"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,56,1
-capital_city_brewing_company-st_adrian_s_alt,0,0,244495679490,"{""name"":""St. Adrian's Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,50,1
-freeminer_brewery,0,0,244613906434,"{""name"":""Freeminer Brewery"",""city"":""Cinderford"",""state"":""Gloucestershire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01594)-827989"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Whimsey Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.8325,""lon"":-2.5116}}",1,17,1
-jolly_pumpkin_artisan_ales-maracaibo_especial,0,0,244750286850,"{""name"":""Maracaibo Especial"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich brown ale inspired by the enigmatic monastic brews of Belgium, and the mysterious mist shrouded jungles of the tropics. Brewed with real cacao, and spiced with cinnamon and sweet orange peel for a sensual delight. A brew to be sipped, savored, and enjoyed!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-red_oak_brewery-red_oak_amber_lager,0,0,244981956610,"{""name"":""Red Oak Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_oak_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Oak Amber is a Munich Urtyp (Old Style) Lager. We begin the brewing process with custom kilned imported Munich Malt. Red Oak is then hopped with Spalt Noble Hops imported from Bavaria, the oldest hop growing region in the world. Before fermentation we add a yeast strain from Weihenstephen, the oldest brewery in the world, founded before 1040 AD. Weeks of aging gives Red Oak the smooth taste it is known for."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
-saint_louis_brewery_schlafy_tap_room-coffee_stout,0,0,244982939650,"{""name"":""Coffee Stout"",""abv"":5.7,""ibu"":30.0,""srm"":47.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2011-02-07 14:29:21"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,6,1
-harvey_son_lewes-a_lecoq_imperial_extra_double_stout_1999,0,0,244755922946,"{""name"":""A. LeCoq Imperial Extra Double Stout 1999"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
-widmer_brothers_brewing-drop_top_amber_ale,0,0,245749710850,"{""name"":""Drop Top Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""A rich, flavorful Amber that's smooth and easy to drink. Drop Top is fermented by an American Ale yeast to produce beer with a clean flavor and fruity aroma. The velvet texture is from using Honey malt and a touch of milk sugar. The Alchemy bittering hops provide soft bitterness. Simcoe, a newly developed hop variety, adds unique hop flavor and aroma. 2004 GABF Gold Medal Award Winner\""\r\n-Widmer Brothers Brewing Company"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
-humboldt_brewing-gold_nectar,0,0,244740849664,"{""name"":""Gold Nectar"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
-lafayette_brewing-bill_old_ale,0,0,244740521987,"{""name"":""Bill Old Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lafayette_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,15,1
-magnolia_pub_and_brewery-prescription_pale,0,0,244862615552,"{""name"":""Prescription Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-shipyard_brewing_portland-pugsley_s_signature_series_barley_wine_style_ale,0,0,244997750784,"{""name"":""Pugsley's Signature Series Barley Wine Style Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""Barley Wine Style Ale is a big beer made with six different malts (Pale Ale, Crystal, Caramunich, Wheat, Chocolate and Roasted Barley) and balanced with a very full hop charge of Summit, Challenger and Fuggles hops. It is a deep reddish brown color with a complex fruity nose, a very full body, and an interesting balance between grains and hops which ends with a pleasing dry taste. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,41,1
-watney_brewery,0,0,245750497280,"{""name"":""Watney Brewery"",""city"":""London"",""state"":""London"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.5002,""lon"":-0.1262}}",1,47,1
-empyrean_brewing_company-fallen_angel_sweet_stout,0,0,244619542528,"{""name"":""Fallen Angel Sweet Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
-hops_haven_brew_haus-pumpkin_ale,0,0,244749631488,"{""name"":""Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-montana_brewing-stillwater_rye,0,0,244861042690,"{""name"":""Stillwater Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-jever_brewery-jever_pilsener,0,0,244747599872,"{""name"":""Jever Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jever_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Norther German (Friesian) Pilsener that is cattegoristic of the style. It is a little more hoppy than Czech pilseners giving it a more herb (bitter?) flavor."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
-williams_brothers_brewing_company-grozet_gooseberry_and_wheat_ale,0,0,245750104065,"{""name"":""Grozet Gooseberry and Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,44,1
-carolina_brewery-amber,0,0,244481851393,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
-watch_city_brewing-hops_explosion_ipa,0,0,245749972992,"{""name"":""Hops Explosion IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""watch_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-caledonian_brewing,0,0,244481261570,"{""name"":""Caledonian Brewing"",""city"":""Edinburgh"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0131)-337-1286"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""42 Slateford Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.9358,""lon"":-3.2297}}",1,18,1
-mickey_s_brewing_co,0,0,244868644866,"{""name"":""Mickey's Brewing Co."",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.mickeys.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0389,""lon"":-87.9065}}",1,28,1
-shmaltz_enterprises,0,0,244982611968,"{""name"":""Shmaltz Enterprises"",""city"":""San Francisco"",""state"":""California"",""code"":""94110"",""country"":""United States"",""phone"":""1-650-343-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3435 Cesar Chavez #227""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.7481,""lon"":-122.419}}",1,5,1
-troegs_brewing-scratch_15_2008,0,0,245099069441,"{""name"":""Scratch #15 2008"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #15-2008 is our first collaborative beer in the Scratch series. We teamed up with St. Thomas Roasters of Linglestown to create a Double Espresso Oatmeal Stout.\r\n\r\nThe double in the name refers to the espresso (not the alcohol). Scratch #15’s espresso blend is a medium city-type roast featuring beans from three continents. St. Thomas Roasters roasted and ground the beans; we used them in our hopback. At the end of the boil the hot wort passed through the espresso beans to give a lush coffee espresso nose and hints of coffee flavor.\r\n\r\nChocolate, roasted and caramel malt flavors stand out, while the addition of oats gives Scratch #15 a full, round mouth feel. Galena and Ken Goldings hops are added to balance the overall flavor and not drive up the bitterness. The head retention diminishes quickly because of the oils from the espresso beans."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,3,1
-heartland_brewery_union_square,0,0,244756381698,"{""name"":""Heartland Brewery Union Square"",""city"":""New York"",""state"":""New York"",""code"":""10003"",""country"":""United States"",""phone"":""1-212-645-3400"",""website"":""http://www.heartlandbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.7323,""lon"":-73.9874}}",1,55,1
-mckenzie_brew_house-old_rogue_pale_ale,0,0,244878147585,"{""name"":""Old Rogue Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
-liberty_steakhouse_and_brewery-liberty_raspberry_wheat_ale,0,0,244738228226,"{""name"":""Liberty Raspberry Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This brew combines the mild, tartness of a wheat beer with the flavor of real raspberries. The raspberry flavor is not overpowering. It has a wonderful berry aroma, and is a favorite even among those who claim to \""not like beer\""."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,10,1
-capital_brewery-capital_u_s_pale_ale,0,0,244495024131,"{""name"":""Capital U.S. Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-flying_fish_brewing_company-belgian_abbey_dubbel,0,0,244611678209,"{""name"":""Belgian Abbey Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian-style Abbey Dubbel is an exceptionally complex beer with many interwoven flavors. This classic-style Abbey beer features an immense head with a fruity nose and a generous body. Malty in the middle, the beer features a clean, almondy dry finish and a slight alcohol warmth. More like a wine than a beer—it has a lot of the qualities of a fine Burgundy.\r\n\r\nBeer writer Michael Jackson has praised the Flying Fish Dubbel as \""a wonderful example of the style.\"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,12,1
-cervecera_cuauhtmoc_moctezuma,0,0,244498497537,"{""name"":""Cervecera Cuauhtmoc-Moctezuma"",""city"":""Monterrey"",""state"":""Nuevo Leon"",""code"":"""",""country"":""Mexico"",""phone"":""52-81-8328-5000"",""website"":""http://www.ccm.com.mx/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Av.Alfonso Reyes Norte No.2202""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":25.7091,""lon"":-100.314}}",1,57,1
-the_livery-american_brown_ale,0,0,245097627650,"{""name"":""American Brown Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Every winter 300 hardy Telemark skiers converge at Mt. Bohemia and the Porcupine Mountains ski areas for three days of back country touring, lift served high speed runs, chili cook offs, and dancing and beer drinking to Finnish Reggae, Bluegrass, or whatever else comes out of the woodwork. Steve brews this hoppy American Brown Ale in honor of his good friends and ski buddies from all over the Midwest and Canada who attend. Rich, malty, and dry-hopped to perfection. Available December through March."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
-goose_island_beer_company_fulton_street-pere_jacques,0,0,244631273473,"{""name"":""Pere Jacques"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-lightning_boy_brewery,0,0,244861566976,"{""name"":""Lightning Boy Brewery"",""city"":""Belgrade"",""state"":""Montana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.7786,""lon"":-111.179}}",1,11,1
-upper_mississippi_brewing-pale_pale_boss_ale,0,0,245115650048,"{""name"":""Pale Pale Boss Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
-dogfish_head_craft_brewery-world_wide_stout,0,0,244620787713,"{""name"":""World Wide Stout"",""abv"":18.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, rich, roasty and complex, World Wide Stout has more in common with a fine port than a can of cheap, mass-marketed beer. Brewed with a ridiculous amount of barley. Have one with (or as!) dessert tonight!""}",1,34,1
-duclaw-blackout,0,0,244621377537,"{""name"":""Blackout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""Succumb to this dark, medium bodied German-style dark lager’s smooth roasted flavors and light hoppy bitterness. Don’t worry, you’ll remember everything the next morning."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,35,1
-gottberg_brew_pub-english_brown_ale_discontinued,0,0,244622557187,"{""name"":""English Brown Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_brown_ale,0,0,244860846080,"{""name"":""Nøgne Ø Brown Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark brown English ale, in which classic English malts meet the spicy hoppiness of the new world. Recommended serving temperature 8°C/45°F. Goes very well with ‘pub grub.’"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
-middle_ages_brewing-grail_ale,0,0,244860190720,"{""name"":""Grail Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber ale with a ruby hue, fresh hop aroma, rich malt body and a complex palate."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-lagunitas_brewing_company-cappuccino_stout,0,0,244739932161,"{""name"":""Cappuccino Stout"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ale Brewed with Columbian Coffee. Brewed with Sebastopol's Own Hard Core Coffee."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,14,1
-ham_s_restaurant_and_brewhouse-buccaneer_brown_ale,0,0,244757823490,"{""name"":""Buccaneer Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ham_s_restaurant_and_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
-saint_louis_brewery_schlafy_tap_room-schlafly_kolsch,0,0,244981301249,"{""name"":""Schlafly Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-routh_street_brewery_and_grille-dusseldorf_style_altbier,0,0,245000699905,"{""name"":""Dusseldorf-Style Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,48,1
-thirsty_dog_brewing-siberian_night_imperial_stout,0,0,245097431042,"{""name"":""Siberian Night Imperial Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Stouts are by far the \""GRAND - DADDY\"" of all stouts. For those who demand flavor, this is the perfect libation."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,0,1
-minneapolis_town_hall_brewery-smoked_hefe,0,0,244880048128,"{""name"":""Smoked Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
-central_waters_brewing_company-brewhouse_coffee_stout,0,0,244495679491,"{""name"":""Brewhouse Coffee Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A coffee lover's delight! A wonderful stout infused with coffee that is specially roasted for us by Emy J's (www.emyjs.com) in Stevens Point, WI.""}",1,50,1
-gold_crown_brewing-premium_lager,0,0,244613971968,"{""name"":""Premium Lager"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gold_crown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
-jw_lees_and_co_brewers_ltd-harvest_ale_1997,0,0,244750286851,"{""name"":""Harvest Ale 1997"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,39,1
-red_star_brewery_grille-strawberry_honey_amber_ale,0,0,244982022144,"{""name"":""Strawberry Honey Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
-samuel_smith_old_brewery_tadcaster-taddy_porter,0,0,244983005184,"{""name"":""Taddy Porter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,6,1
-hoppin_frog_brewery-mean_manalishi_double_i_p_a,0,0,244755988480,"{""name"":""Mean Manalishi Double I.P.A."",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Explore the extremes of hops, and experience all of their bitterness, flavor and aroma with this Double I.P.A. An extreme, super-assertive and satisfying amount of American hop character is balanced with a toasty, caramelized, intense malt presence."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,54,1
-willoughby_brewing,0,0,245749776384,"{""name"":""Willoughby Brewing"",""city"":""Willoughby"",""state"":""Ohio"",""code"":""44094"",""country"":""United States"",""phone"":""1-440-975-0202"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4057 Erie Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6416,""lon"":-81.4066}}",1,42,1
-humboldt_brewing-nectar_ipa,0,0,244740849665,"{""name"":""Nectar IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
-lagunitas_brewing_company-censored_aka_the_kronic,0,0,244740587520,"{""name"":""Censored (aka The Kronic)"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
-mcmenamins_mill_creek-hammerhead_ale,0,0,244862615553,"{""name"":""Hammerhead Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-sierra_leone_brewery,0,0,244997750785,"{""name"":""Sierra Leone Brewery"",""city"":""Freetown"",""state"":""Sierra Leone"",""code"":"""",""country"":""Sierra Leone"",""phone"":""+232 (22) 26 31 18"",""website"":""http://www.slbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Sierra Leone Brewery Limited's (SLBL) core values - respect, enjoyment and a passion for quality - help to define our corporate culture and working methods. They are fundamental to the way we do business today, they support our drive towards economic, environmental and social sustainability"",""address"":[""PO Box 721""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":8.4841,""lon"":-13.2287}}",1,41,1
-wells_and_youngs_brewing_company_ltd-wells_banana_bread_beer,0,0,245750497281,"{""name"":""Wells Banana Bread Beer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wells_and_youngs_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A silky, crisp, and rich amber-colored ale with a fluffy head and strong banana note on the nose."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,47,1
-estes_park_brewery-estes_park_gold,0,0,244619542529,"{""name"":""Estes Park Gold"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our smooth golden ale. Our Gold has a medium body and low to medium hop bitterness \r\nand aroma."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,31,1
-hopworks_urban_brewery-velvet_esb,0,0,244749631489,"{""name"":""Velvet ESB"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This English Session Beer has a delicious floral hop aroma and flavor. A heaping helping of organic caramel malt and touch of organic chocolate malt give this beer its beautiful mahogany color while organic oats from Bob's Red Mill velvetize the texture. Smoother than an infomertial host at half the price!"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,38,1
-nebraska_brewing_company-india_pale_ale,0,0,244861108224,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-jt_whitney_s_brewpub_and_eatery-heartland_weiss,0,0,244747599873,"{""name"":""Heartland Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,33,1
-yegua_creek_brewing_dallas,0,0,245750104066,"{""name"":""Yegua Creek Brewing - Dallas"",""city"":""Dallas"",""state"":""Texas"",""code"":""75206"",""country"":""United States"",""phone"":""214-824-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2920 North Henderson Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.821,""lon"":-96.7848}}",1,44,1
-carver_brewing_co-lightner_creek_lager,0,0,244481916928,"{""name"":""Lightner Creek Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A light bodied golden ale, low in hop character with a spicy aroma from whole Czech Saaz hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-watson_brothers_brewhouse-y2kipa,0,0,245749972993,"{""name"":""Y2KIPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""watson_brothers_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-capital_city_brewing_company-capitol_kolsch,0,0,244481327104,"{""name"":""Capitol Kolsch"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This lager like ale is modeled after the official beer of Köln, Germany. Kolsch is delicate and refreshing with a slight fruitiness and supportive, yet unobtrusive hop bitterness""}",1,18,1
-middle_ages_brewing-druid_fluid,0,0,244868644867,"{""name"":""Druid Fluid"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An epic barleywine, made in the tradition of British Farmhouse Brewing. Lavished with a velvety blend of six different malts this is a warming beer with a lush mouthfeel. The complexities your discriminating palate will detect are ever changing as this barleywine matures. When young, an assertive hop character predominates and with age the beauty of the big malt balance unfolds."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,28,1
-slab_city_brewing-william_capen_bitter_ale,0,0,244982611969,"{""name"":""William Capen Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-tucher_bru-helles_hefe_weizen,0,0,245099069442,"{""name"":""Helles Hefe Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,3,1
-hite_brewery,0,0,244756447232,"{""name"":""Hite Brewery"",""city"":""Seoul"",""state"":"""",""code"":"""",""country"":""Korea, Republic of"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hite Brewery Company Limited is a South Korean brewery company headquartered in Yeongdeungpo-gu, Seoul. Its main products are beer, rice wine, and mineral water. The company was established as Chosun Breweries in 1933. In 2001 the company had three factories, and in 2002 its share of the domestic beer market was some 55%, up from 30% in 1992."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.5665,""lon"":126.978}}",1,55,1
-mcmenamins_mill_creek-wheat_beer,0,0,244878213120,"{""name"":""Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
-liefmans_breweries-all_saints_belgian_golden_ale,0,0,244738293760,"{""name"":""All Saints Belgian Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-capital_brewery-winter_skal,0,0,244495089664,"{""name"":""Winter Skål"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,49,1
-flying_fish_brewing_company-grand_cru_winter_reserve,0,0,244611678210,"{""name"":""Grand Cru Winter Reserve"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian-style strong golden ale showcases a variety of the ingredients and brewing methods that help differentiate Flying Fish beers. The Grand Cru is fermented at a higher temperature than our other beers adding an undercurrent of fruitiness (although there is no fruit in the beer). Very lightly filtered, the Grand Cru exhibits complex mouthfeel, strong malt flavors, a spicy hop presence and a soothing alcohol warmth, followed by a clean, dry finish. It is excellent with food as well as served by itself."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,12,1
-clipper_city_brewing_co-holy_sheet,0,0,244498497538,"{""name"":""Holy Sheet"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the centuries-old tradition of Belgian Abbey monks comes our \""Über Abbey\"" Ale. Aromatic and full bodied, pouring deep burgundy in color, it's bold, it's Heavy Seas. Grab a line...Holy Sheet!...or you'll be swept overboard. Seasonally available in February while supplies last."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,57,1
-the_livery-mcgilligans_ipa,0,0,245097627651,"{""name"":""McGilligans IPA"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ales, or IPA’s, were brewed for British soldiers stationed in India. These ales needed to higher in alcohol and have more hops than normal to survive the long journey, and ours is no exception. Brewed with Belgian and German malts and dry hopped with loads of Cascades, our version honors our friend who had his own grueling journey involving a boat and cold water!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
-gore_range_brewery-fly_fisher_red,0,0,244631273474,"{""name"":""Fly Fisher Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gore_range_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-listermann_brewing_company-wild_mild_ale,0,0,244861566977,"{""name"":""Wild Mild Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""listermann_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A bottle-conditioned English style ale."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,11,1
-weyerbacher_brewing_company-double_simcoe_ipa,0,0,245749514240,"{""name"":""Double Simcoe IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Double Simcoe IPA, 9.0% abv, is our incredible reward for Hopheads seeking over the top flavor in a Double IPA, without the harshness. Brewed with Simcoe hops, developed and trademarked by Select Botanicals Group, LLC, in the year 2000. This hybrid hops was created to allow maximum aromatic oils, along with low cohumulone(harshness) levels, so that brewers can really load up a lot of 'em in a beer and not have any harshness. The piney, citrusy notes are all here, and in a very clean (non-harsh) way, as well as having an aroma with impact. Introduced by Weyerbacher in 2005 originally as a seasonal, this brew has garnered numbers so high on Beer Advocate, and been in such high demand by consumers, we decided to add it to our year-round line-up in March 2007. Check it out, and you'll soon see why everyone's talking about it."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,40,1
-east_end_brewing_company-big_hop_harvest_ale,0,0,244620787714,"{""name"":""Big Hop Harvest Ale"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
-east_end_brewing_company-toaster_imperial_stout,0,0,244621443072,"{""name"":""Toaster Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is an Imperial version of our Black Strap Stout, this time brewed with MORE blackstrap molasses and MORE brown sugar, plus a whole lot more malt and hops too. Part of our FESTIVAL OF DARKNESS, this one clocks in at over 10%ABV, and is the thickest beer we've ever brewed here."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,35,1
-gray_brewing,0,0,244748845056,"{""name"":""Gray Brewing"",""city"":""Janesville"",""state"":""Wisconsin"",""code"":""53545"",""country"":""United States"",""phone"":""1-608-752-3552"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2424 West Court Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6793,""lon"":-89.0498}}",1,37,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_imperial_brown_ale,0,0,244860846081,"{""name"":""Nøgne Ø Imperial Brown Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""There is a long story to this malty ale. It was first brewed in the spring 2006 in Nørrebro Bryghus in Copenhagen, Denmark, as a joint brew between Nøgne Ø and Nørrebro. Nørrebro calls their version “Double Knot Brown”. It is the perfect thing to drink with almost any cheese."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
-midnight_sun_brewing_co-free_loader_double_red_ipa,0,0,244860190721,"{""name"":""Free Loader Double Red IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Free Loader Double Red IPA was \""double-brewed\"". [How's that for a catchy term that those BiG brewers can't TouCH. I love it, LoVe it, LOVE it.] The first batch of red IPA was mashed, sparged, and transferred to the kettle. The second batch of red IPA was mashed, sparged and transferred to the kettle using the sweet wort from batch one as its mash \""water\"". Hmmm...using \""beer\"" to make beer. Hence the name FREE LOADER. This Double Red IPA is just that--big, red, hoppy."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
-lagunitas_brewing_company-lucky_13_mondo_large_red_ale,0,0,244739997696,"{""name"":""Lucky 13 Mondo Large Red Ale"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our 13th Anniversary Beer in was a Staff Favorite, So We Make it Each Year. BIG on the Amarillo Hops and Rich Dark Malts for a Round and Huge, Smoky Flavor."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
-hansa_bryggeri,0,0,244757823491,"{""name"":""Hansa Bryggeri"",""city"":""Bergen"",""state"":"""",""code"":"""",""country"":""Norway"",""phone"":""47-55-99-77-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kokstaddalen 3""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":60.2945,""lon"":5.2592}}",1,59,1
-salt_lake_brewing_squatters,0,0,244981301250,"{""name"":""Salt Lake Brewing - Squatters"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84101"",""country"":""United States"",""phone"":""1-801-328-2329"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""147 West Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.7626,""lon"":-111.895}}",1,2,1
-roy_pitz_brewing_company-daddy_fat_sacs_imperial_ipa,0,0,245000699906,"{""name"":""Daddy Fat Sacs Imperial IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The one and only IPA that doesn't leave your pallet with a bitter after taste. This beer took years of practice to get down and when we finally got it right, we knew it. The beer is made with three malts in considerable additions that leave it with a more malty and sweet taste. There are five different hop additions that were carefully planed out to impart just enough bitterness to give it the body and depth that it needed without leaving you with the astringent and bitter aftertaste. We then added a plethora of English flavor and aroma hops that round out the floral and citrus esters. With the beer being so well balanced between bitter and sweet, we than added \""big sacks\"" of bittering hops to the conditioning vessel to impart all the wonderful citrus and floral notes deep into the beer while leaving the bittering aspects of the hop behind. The result was a beer that makes you want to nose dive right in complimented by the well balanced taste of this wonderful brew."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,48,1
-tyranena_brewing-fargo_brothers_hefeweizen,0,0,245097496576,"{""name"":""Fargo Brothers Hefeweizen"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Fargo brothers arrived in Lake Mills in 1845, armed with a strong collective will and a pioneering spirit. The Fargo family became leaders in commerce, industry, agriculture, civics and religion. Through the years, these hard working men and their families shaped the character and very essence of our beautiful hometown. Their legacy endures in the buildings and businesses they built and the civility they brought to this city. In this same pioneering spirit, we brew our Fargo Brothers Hefeweizen to honor this \""first family\"" of Lake Mills.\r\n\r\nFargo Brothers Hefeweizen is brewed in the tradition of a Bavarian-style weißbier with a clove-like flavor and aroma with banana undertones and no bitterness. The unfiltered yeast makes this beer cloudy."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,0,1
-minneapolis_town_hall_brewery-tripel_vision,0,0,244880048129,"{""name"":""Tripel Vision"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-central_waters_brewing_company-mud_puppy_porter,0,0,244495745024,"{""name"":""Mud Puppy Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust, yet surprisingly refreshing porter, Mud Puppy is a favorite of dark beer lovers. Characterized by a thick, rocky head and luscious chocolate-like nose, the malty profile is balanced by liberal hopping for its style."",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
-granite_city_food_brewery_saint_cloud-duke_of_wellington_ipa,0,0,244741046272,"{""name"":""Duke of Wellington IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_white_ale,0,0,244750286852,"{""name"":""Hitachino Nest White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-rivertowne_pour_house,0,0,244982022145,"{""name"":""Rivertowne Pour House"",""city"":""Monroeville"",""state"":""Pennsylvania"",""code"":""15146"",""country"":""United States"",""phone"":""412-372-8199"",""website"":""http://www.myrivertowne.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""312 Center Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4465,""lon"":-79.7642}}",1,4,1
-san_marcos_brewery_grill-premium_golden_ale,0,0,244983005185,"{""name"":""Premium Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-jurupa_valley_brewing,0,0,244755988481,"{""name"":""Jurupa Valley Brewing"",""city"":""Riverside"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.9533,""lon"":-117.396}}",1,54,1
-wye_valley_brewery-butty_bach,0,0,245749776385,"{""name"":""Butty Bach"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wye_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
-iron_hill_brewery_wilmingon-anvil_ale,0,0,244740915200,"{""name"":""Anvil Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""English style best bitter. It is a traditional English pub ale that is easy drinking, often referred to as a \""session beer\"". It is medium-bodied and copper colored with a noticeable malt flavor up front that finishes with a hop bitterness and floral hop flavor."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,16,1
-lake_superior_brewing-kayak_kolsch,0,0,244740587521,"{""name"":""Kayak Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-mercury_brewing_company-ipswich_ipa,0,0,244862681088,"{""name"":""Ipswich IPA"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our IPA is an unfiltered cross between an English and American IPA, with a strong, dry bitterness balanced with a slight malty sweetness. A mixture of first-rate U.S. and Belgian malts, combined with English roasted barley and highly hopped with Cascade and Warrior hops make our IPA a brewery favorite."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,13,1
-sierra_nevada_brewing_co-bigfoot_1996,0,0,244997816320,"{""name"":""Bigfoot 1996"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-weyerbacher_brewing_company-weyerbacher_fireside_ale,0,0,245750562816,"{""name"":""Weyerbacher Fireside Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-f_x_matt_brewing-saranac_marzenbier,0,0,244619542530,"{""name"":""Saranac Marzenbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Bigger..Richer...Smoother, are all ways to describe a Marzenbier. Look for a toasted malt character balanced with slight hop bitterness. Marzenbiers are traditionally aged for months and unveiled to great celebration.""}",1,31,1
-htt_brauerei_bettenhuser-luxus_pils,0,0,244749631490,"{""name"":""Luxus Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""htt_brauerei_bettenhuser"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-new_holland_brewing_company-black_tulip,0,0,244861108225,"{""name"":""Black Tulip"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden in color with a slightly sweet body. Its ester-laden character reveals an enigmatic dance between Belgian ale yeast and candy sugar complimented by a pleasing dry finish. Black Tulip is a versatile beer for food. Enjoyable pairings include mild bleu cheeses, berries and other light desserts."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,9,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2005_calvados,0,0,244747599874,"{""name"":""Harvest Ale 2005 (Calvados)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-carver_brewing_co,0,0,244481916929,"{""name"":""Carver Brewing Co."",""city"":""Durango"",""state"":""Colorado"",""code"":""81301"",""country"":""United States"",""phone"":""(970) 259 - 2545"",""website"":""http://www.carverbrewing.com/_/home.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Carver Brothers Bakery first opened on June 1, 1983, in Winter Park, Colorado. It started with Jim, Bill, Sara and Eleanor Carver. In 1986 Jim, Bill and Barb Wynne opened Carvers Bakery / Café in Durango and the Winter Park Bakery was sold. In 1988 Carvers opened the brewery making it the first brewery in the four corners region since prohibition. Although still known affectionately by the locals as Carvers, Carvers then became Carver Brewing Company. Since then Carvers has seen many exciting changes: opening it's outdoor Beer Garden in 1994 and undergoing dramatic remodels in the restaurant and on the patio in '98 and '02. In April of '07 it was deemed necessary to expand the brewery. The brewery is now housed in the area previously occupied by the bakery. After 20 years of serving Colorado's mountain folk, Carvers continues to provide the very best in food and beer."",""address"":[""1022 Main Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2748,""lon"":-107.88}}",1,19,1
-weinkeller_brewery_berwyn-esb,0,0,245750038528,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
-cedar_brewing-black_cobra_stout,0,0,244481327105,"{""name"":""Black Cobra Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,18,1
-middle_ages_brewing,0,0,244868710400,"{""name"":""Middle Ages Brewing"",""city"":""Syracuse"",""state"":""New York"",""code"":""13204"",""country"":""United States"",""phone"":""1-888-289-4250"",""website"":""http://www.middleagesbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Step back in time to when men were men, women were brewsters, and hand-crafted fine ale filled every flagon. Your quest for great taste leads you out of the past and into Middle Ages Brewing Company where we are sworn to uphold the tradition of brewing beer in small batches. Taste the difference hand-crafting makes."",""address"":[""120 Wilkinson Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0508,""lon"":-76.1617}}",1,28,1
-sonoran_brewing_company-victorian_ipa,0,0,245099659264,"{""name"":""Victorian IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sonoran_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our IPA has lots of malt and hop character. This style originated during Queen Victoria’s reign as a strong, flavorful ale, which was able to survive the ocean voyage from England to India during the British occupation."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
-tworows_restaurant_brewery_dallas-bulldog_brown,0,0,245099134976,"{""name"":""Bulldog Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
-hofbruhaus_traunstein-altbairisch_dunkel,0,0,244756447233,"{""name"":""Altbairisch Dunkel"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbruhaus_traunstein"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-meantime_brewing_company_limited-meantime_coffee,0,0,244878213121,"{""name"":""Meantime Coffee"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meantime_brewing_company_limited"",""updated"":""2010-07-22 20:00:20"",""description"":""Whilst we wouldn’t recommend having this at breakfast with your bacon and eggs, our Coffee Beer is made with real coffee and has a caffeine hit to match. The natural flavours of the beans selected and hand roasted by our friends at the Union Coffee Roasters go well with the roast barley in the beer to give a silky-smooth drink with distinct chocolate and vanilla notes. \r\n\r\nOur first formulation of this beer was the first UK brewed beer to carry the Fairtrade logo, and, although we have reformulated it to create an even better blend of malt and roast coffee flavours, we can no longer get enough coffee in each bottle to qualify for Fairtrade status. However we are still using the same Faitrade Araba Bourbon beans from Rwanda’s Abuhuzamugambi Bakawa Co-operative.\r\n\r\nAt the Meantime Brewing Co we love flavour, so it wasn’t exactly difficult for us to see how the scents and aromas of coffee and barley would create a perfect match like just like mint and lamb, toffee and banana, peaches and cream, peanut butter and jam. Serve lightly chilled with as many chocolate truffles as your conscience allows.\r\n\r\nEach serving is equal to one cup of coffee"",""style"":""Porter"",""category"":""Irish Ale""}",1,52,1
-listermann_brewing_company-186_000_mps_malt_liquor,0,0,244861173760,"{""name"":""186,000 MPS Malt Liquor"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""listermann_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-carolina_brewery,0,0,244495089665,"{""name"":""Carolina Brewery"",""city"":""Chapel Hill"",""state"":""North Carolina"",""code"":""27516"",""country"":""United States"",""phone"":""1-919-942-1800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""460 West Franklin Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.9103,""lon"":-79.0632}}",1,49,1
-fox_river_brewing_1-fox_light,0,0,244611678211,"{""name"":""Fox Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-cumberland_brewery,0,0,244498563072,"{""name"":""Cumberland Brewery"",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40205"",""country"":""United States"",""phone"":""(502) 458-8727"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Giving new meaning to the term microbrewery, Cumberland Brews may be one of the smallest eateries in town, with a half-dozen four-top tables and a short bar with nine stools making tight quarters of what used to be the White Mountain Creamery. (Techically, it's not a microbrewery but a brewpub - a restaurant that makes its own beer on the premises - but I'm not one to quibble in the face of a good pun.) It's usually packed, too, earning its crowds the old-fashioned way by providing very good food, friendly service, and the sine qua non for a brewpub: extremely high-quality hand-crafted artisan beers. Hand-crafted offerings are produced by Head Brewer Cameron Finnis."",""address"":[""1576 Bardstown Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2309,""lon"":-85.7055}}",1,57,1
-three_floyds_brewing-drunk_monk_hefeweizen,0,0,245097627652,"{""name"":""Drunk Monk Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
-gottberg_brew_pub-belgian_ale_discontinued,0,0,244631339008,"{""name"":""Belgian Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-long_valley_pub_brewery-black_river_brown,0,0,244861632512,"{""name"":""Black River Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
-wychwood_brewery,0,0,245749514241,"{""name"":""Wychwood Brewery"",""city"":""Witney"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01993)-890800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Eagle Maltings""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.7523,""lon"":-1.2558}}",1,40,1
-egan_brewing-white_fathers_witbier,0,0,244620853248,"{""name"":""White Fathers Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-elk_grove_brewery_restaurant-otis_alt,0,0,244621443073,"{""name"":""Otis Alt"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_grove_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,35,1
-green_mill_brewing_saint_paul-india_pale_ale,0,0,244748910592,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-olde_main_brewing,0,0,244860846082,"{""name"":""Olde Main Brewing"",""city"":""Ames"",""state"":""Iowa"",""code"":""50010"",""country"":""United States"",""phone"":""1-515-232-0553"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""316 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.0248,""lon"":-93.6147}}",1,8,1
-midnight_sun_brewing_co-mars_belgian_imperial_red_ipa,0,0,244860256256,"{""name"":""Mars - Belgian Imperial Red IPA"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after the Roman god of war, Mars radiates red color and brilliant beauty yet enrages the taste buds with wrathful force. This Imperial IPA seizes its intense bitterness from an immense amount of hops. Belgian yeast retaliates, adding complexity and character."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
-legends_brewhouse_eatery_of_green_bay,0,0,244739997697,"{""name"":""Legends Brewhouse & Eatery of Green Bay"",""city"":""Green Bay"",""state"":""Wisconsin"",""code"":""54313"",""country"":""United States"",""phone"":""1-920-662-1111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2840 Shawano Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5534,""lon"":-88.0977}}",1,14,1
-high_falls_brewing-highfalls_indiaman_trader_india_pale_export_ale,0,0,244757823492,"{""name"":""HighFalls Indiaman Trader India Pale Export Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-santa_fe_brewing_company-chicken_killer_barley_wine,0,0,244981301251,"{""name"":""Chicken Killer Barley Wine"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Chicken Killer Barley Wine is the revolutionary beer that will someday define America's unique Barley Wine style. It is brewed with twice the ingredients of the Santa Fe Brewing Company's other beers, and only half the usual amount of liquid is extracted from these ingredients. This makes one substantial beer. At over ten percent alcohol, Chicken Killer is actually as substantial as wine, but this is not to say that it is difficult to drink. On the contrary; be careful with this one. The flavors of the beer are at first as overwhelming as the intense Santa Fe sun. But in the same way our sun gives us the unrivaled brilliant colors of Santa Fe, the potency of Chicken Killer gives us the remarkable spectrum of flavors that can be found in no other beer, in no other city. If you did not have the opportunity to try last year's vintage, come try this year's!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,2,1
-ruppaner_brauerei-hefe_weizen_dunkel,0,0,245000765440,"{""name"":""Hefe Weizen Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-uinta_brewing_compnay,0,0,245097496577,"{""name"":""Uinta Brewing Compnay"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84104"",""country"":""United States"",""phone"":""1-801-467-0909"",""website"":""http://www.uintabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1722 South Fremont Drive (2375 West)""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7326,""lon"":-111.954}}",1,0,1
-moon_river_brewing_company-tarletons_bitters,0,0,244880113664,"{""name"":""Tarletons Bitters"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,56,1
-chicago_brewing-stout,0,0,244495745025,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chicago_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,50,1
-green_mountain_beverage-cider_jack,0,0,244741111808,"{""name"":""Cider Jack"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,17,1
-klosterbru_bamberg,0,0,244750352384,"{""name"":""Klosterbru Bamberg"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-57722"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Obere Mhlbrcke 1-3""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8891,""lon"":10.887}}",1,39,1
-roost_brewery-porter,0,0,244982022146,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,4,1
-schussenrieder_erlebnisbrauerei-schwarzbier,0,0,244983005186,"{""name"":""Schwarzbier"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,6,1
-kleinbrouwerij_de_glazen_toren,0,0,244755988482,"{""name"":""Kleinbrouwerij de Glazen Toren"",""city"":""Erpe-Mere"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)53-83-68-17"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Glazentorenweg 11""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9193,""lon"":3.9666}}",1,54,1
-wynkoop_brewing-patty_s_chile_beer,0,0,245749776386,"{""name"":""Patty's Chile Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A light German-style beer made with Anaheim chiles and smoked Ancho peppers. A 2006 Great American Beer Festival Bronze Medal Winner in the Fruit and Vegetable Beer category anda Wynkoop specialty."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,42,1
-jj_bitting_brewing-cappa_cappa_crusher,0,0,244740915201,"{""name"":""Cappa Cappa Crusher"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-lancaster_brewing_co-doppel_bock,0,0,244740587522,"{""name"":""Doppel Bock"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A mighty lager-style brew, dark in color. Our Doppelbock brings a big malty sweetness together with the classic lager smoothness, topped off with a slightly evident alcohol flavor. A toasty brew to battle even the coldest winter nights.\r\n\r\nAvailable at the Brewery and in bottles & cases from March - May."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
-midnight_sun_brewing_co-specialty_beer_black_double_ipa,0,0,244862681089,"{""name"":""Specialty Beer: Black Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""To commemorate the 30th anniversary of Specialty Imports' specialty wine and beer import business, Midnight Sun Brewing Company brewed a very special beer--a black double IPA--to honor this Alaska company's long-term success. \r\n\r\nThis black double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \""Specialty Beer\"" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale.\r\n\r\nAvailability: \r\nAK - 22-oz bottles (limited release begins 01/16/2009)\r\n\r\n** An oak-aged version will be released in Fall 2009.""}",1,13,1
-southern_star_brewing_company-pine_belt_pale_ale,0,0,245115650048,"{""name"":""Pine Belt Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_star_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep copper colored ale with a substantial malt backbone accented with British crystal malts with aggressive hop bitterness and substantial American hop flavor and aroma. The yeast profile is neutral."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-wild_river_brewing_and_pizza_cave_junction-blackberry,0,0,245750562817,"{""name"":""Blackberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,47,1
-firehouse_grill_brewery-hefeweizen,0,0,244619542531,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-joboy_s_brew_pub,0,0,244749697024,"{""name"":""JoBoy's Brew Pub"",""city"":""Manheim"",""state"":""Pennsylvania"",""code"":""17545"",""country"":""United States"",""phone"":"""",""website"":""http://www.joboysbrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""87 Doe Run Rd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1707,""lon"":-76.3838}}",1,38,1
-otto_s_pub_and_brewery-arthur_s_nugget_pale_ale,0,0,244861108226,"{""name"":""Arthur's Nugget Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A cask-conditioned American Pale Ale. This is a bright dry ale brewed only with American Nugget hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-klosterbru_bamberg-bamberger_gold,0,0,244747665408,"{""name"":""Bamberger Gold"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-central_city_brewing_company-springboard_lager,0,0,244481916930,"{""name"":""Springboard Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-wolf_pack_brewing,0,0,245750038529,"{""name"":""Wolf Pack Brewing"",""city"":""West Yellowstone"",""state"":""Montana"",""code"":""59758"",""country"":""United States"",""phone"":""1-406-646-7727"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""111 South Canyon Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.6584,""lon"":-111.1}}",1,43,1
-climax_brewing_copmany-climax_extra_special_bitter_ale,0,0,244481392640,"{""name"":""Climax Extra Special Bitter Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Our E.S.B. is a balanced beer with notes of honey, toffee and caramel, backed by a warm spicy hop bitterness."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,18,1
-midnight_sun_brewing_co-conspiracy,0,0,244868710401,"{""name"":""Conspiracy"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Conspiracy Belgian-style Black Beer is the result of a collaboration between Midnight Sun brewers Gabe Fletcher and Ben Johnson and Pelican Pub (Pacific City, OR) brewer Ben Love. These brewers conspired during barley wine fest week to brew up a deviously delicious dark Belgian-style beer. \r\n\r\nConspiracy is opaque black with a creamy beige head. Black malt shrouds it in mystery; the Belgian yeast imparts intriguing flavor; the alcohol adds danger. If you're up for this mission, watch your back.\r\n\r\nConspiracy will be released in Anchorage and Portland in April 2007."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,28,1
-southend_brewery_and_smokehouse_charleston-bombay_pale_ale,0,0,245099724800,"{""name"":""Bombay Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
-tyranena_brewing-chief_blackhawk_porter,0,0,245099200512,"{""name"":""Chief Blackhawk Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1767 a great Sauk leader was born. His name meant \""the black sparrow hawk.\"" He came to be known as Black Hawk. Strong beliefs, independent thinking and an unwavering commitment to his family and his people earned him a reputation as a man of integrity and courage. In 1832, along with 1,200 of his people, Black Hawk was driven from his ancestral home during a war that bears his name. We celebrate this Sauk leader and his courage with our BlackHawk Porter, the kind of beer that make you say, Ma-ka-tai-she-kia-kiak!\r\n\r\nChief BlackHawk Porter is a robust black and sharply bittersweet ale. This style was traditionally the session beer consumed by the porters in London."",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
-hop_back_brewery-summer_lightning,0,0,244756447234,"{""name"":""Summer Lightning"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-metropolitan_brewing-flywheel_bright_lager,0,0,244878278656,"{""name"":""Flywheel Bright Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""metropolitan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The kinetic beauty of spicy hops grabs you by the nose and lets you know: this is German-inspired beer. A mild, bready malt sweetness greets you at the lips, smoothing the crisp hop flavors. Flywheel is meant for bombastic celebrations of singing voices and clamoring mugs. But then, that first contented moment of happy hour is uniquely celebratory as well.\r\n\r\nFlywheel Bright Lager goes great with hot dogs, guitar jams, stir fry, bowling, taco salad, house warmings, baked potatoes, Saturday morning cartoons, tequila, gouda cheese, karaoke, bagel & schmear, Euchre, fresh berries, asparagus, 16-inch softball, sushi, darts, Pad Thai, family reunions, pb&j, flan, romantic weekend getaways, garlic bread, pay raises, nachos, baby showers, fondue, and Frisbee golf."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
-listermann_brewing_company,0,0,244861239296,"{""name"":""Listermann Brewing Company"",""city"":""Cincinnati"",""state"":""Ohio"",""code"":""45212"",""country"":""United States"",""phone"":""(513) 731-1130"",""website"":""http://www.listermann.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1621 Dana Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.1456,""lon"":-84.4741}}",1,10,1
-coast_brewing,0,0,244495155200,"{""name"":""Coast Brewing"",""city"":""Biloxi"",""state"":""Mississippi"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.396,""lon"":-88.8853}}",1,49,1
-fox_river_brewing_1-fox_tail_amber_ale,0,0,244611743744,"{""name"":""Fox Tail Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-daas-daas_organic_blond,0,0,244498563073,"{""name"":""Daas Organic Blond"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daas"",""updated"":""2010-07-22 20:00:20"",""description"":""Daas Blond is the authentic Belgian strong golden beer, its honey spice aroma and perfect balance of bitter sweet flavours are followed by a classic dry hop finish. A perfect aperitif beer.\r\n\r\nDaas Beer is the only Belgian beer brewed in Belgium to carry both the UK Soil Assoc organic certification and the Belgian Certsys certification whist still upholding its Belgian tradition of brewing excellence using the finest organic ingredients."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,57,1
-tied_house_cafe_brewery_san_jose,0,0,245097693184,"{""name"":""Tied House Cafe & Brewery - San Jose"",""city"":""San Jose"",""state"":""California"",""code"":""95110"",""country"":""United States"",""phone"":""1-408-295-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""65 North San Pedro""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.3362,""lon"":-121.894}}",1,1,1
-gottberg_brew_pub-octoberfest_discontinued,0,0,244631339009,"{""name"":""Octoberfest (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,58,1
-long_valley_pub_brewery-lazy_jake_porter,0,0,244861632513,"{""name"":""Lazy Jake Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
-zea_rotisserie_and_brewery,0,0,245749579776,"{""name"":""Zea Rotisserie and Brewery"",""city"":""New Orleans"",""state"":""Louisiana"",""code"":""70130"",""country"":""United States"",""phone"":"""",""website"":""http://www.zearestaurants.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1525 St. Charles Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":29.9386,""lon"":-90.076}}",1,40,1
-ellicott_mills_brewing,0,0,244620918784,"{""name"":""Ellicott Mills Brewing"",""city"":""Ellicott City"",""state"":""Maryland"",""code"":""21043"",""country"":""United States"",""phone"":""1-410-313-8141"",""website"":""http://www.ellicottmillsbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Here at the Mills we have a very simple, yet demanding approach to producing Alpenhof beer. We use the very best ingredients available. We are efficient and precise in production method, yet we allow the product to age to its full maturity. Balance is the key to our beer. Alpenhof beer is not created to challenge the senses. It is not created to be a complex beer. Well balanced for Alpenhof means smooth and easy-drinking. The way a beer should taste. To achieve this well balanced taste, only the finest ingredients are used. We import our malt, hops, and yeast from Germany. (For true German style Lager beer, authentic ingredients are essential!) We might spend more for our ingredients, but it is well worth it. This is an expense you can actually taste!"",""address"":[""8308 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2684,""lon"":-76.7994}}",1,34,1
-f_x_matt_brewing-saranac_india_pale_ale,0,0,244621443074,"{""name"":""Saranac India Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover's delight. In the India Pale Ale tradition this brew is very hoppy in both aroma and flavor from the generous amounts of cascade hops used in brewing. Look for a medium to full body and golden straw color."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
-grumpy_troll_restaurant_and_brewery-liberty_pale_ale,0,0,244748976128,"{""name"":""Liberty Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-penn_brewery-penn_oktoberfest,0,0,244983726080,"{""name"":""Penn Oktoberfest"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, deep golden-colored lager fest bier that is exceptionally smooth and mellow. Uses two-row malted barley and a combination of roasted malts. Highly rated by the National Tasting Institute."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,8,1
-moab_brewery,0,0,244860256257,"{""name"":""Moab Brewery"",""city"":""Moab"",""state"":""Utah"",""code"":""84532"",""country"":""United States"",""phone"":""1-435-259-6333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""686 South Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5657,""lon"":-109.55}}",1,7,1
-mad_river_brewing-jamaica_brand_sunset_ipa,0,0,244862943232,"{""name"":""Jamaica Brand Sunset IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
-inveralmond_brewery,0,0,244757889024,"{""name"":""Inveralmond Brewery"",""city"":""Perth"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01738)-449448"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Inveralmond Way""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":56.4174,""lon"":-3.4779}}",1,59,1
-schooner_brewery-pegasus_pilsner,0,0,244981366784,"{""name"":""Pegasus Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-russian_river_brewing-aud_blonde,0,0,245000765441,"{""name"":""Aud Blonde"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Aud Blonde has a refined characteristic, which can be contributed to us blending pilsner malt with a unique hop called crystal. The distinctive characteristic of the crystal hop lends a citrus, almost eucalyptus quality in the aroma and mouth feel of the brew, while leaving the beer with a long dry finish."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,48,1
-vivungs_bryggeri-dragol,0,0,245744074752,"{""name"":""Dragöl"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vivungs_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
-nodding_head_brewpub-bill_payer_ale_bpa,0,0,244880113665,"{""name"":""Bill Payer Ale / BPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
-clner_hofbrau_frh,0,0,244495745026,"{""name"":""Clner Hofbrau Frh"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)221-/-2613-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Hof 12-14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9401,""lon"":6.957}}",1,50,1
-greene_king,0,0,244741111809,"{""name"":""Greene King"",""city"":""Bury St. Edmunds"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01284)-763222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Westgate Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.241,""lon"":0.7157}}",1,17,1
-lakefront_brewery-fuel_cafe,0,0,244750352385,"{""name"":""Fuel Cafe"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-russian_river_brewing-lap_dance_pale_ale,0,0,244982087680,"{""name"":""Lap Dance Pale Ale"",""abv"":5.55,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
-shipwrecked_brew_pub-door_county_cherry_wheat,0,0,244983005187,"{""name"":""Door County Cherry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,6,1
-knig_ludwig_schlobrauerei_kaltenberg,0,0,244756054016,"{""name"":""Knig Ludwig Schlobrauerei Kaltenberg"",""city"":""Frstenfeldbruck"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8141-/-2430"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Augsburgerstrae 41""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.1826,""lon"":11.2522}}",1,54,1
-wynkoop_brewing-wixa_weiss,0,0,245749841920,"{""name"":""Wixa Weiss"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Anunfiltered wheat beer, weiss beer is a bavarian tradition. Our version is immensely refreshing and authentic, delivering the classic weiss aromas of clove and banana. A two-time Great American Beer Festival Medal winner in the German Style Wheat Ale category."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
-kleinbrouwerij_de_glazen_toren-jan_de_lichte,0,0,244740915202,"{""name"":""Jan de Lichte"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kleinbrouwerij_de_glazen_toren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-lancaster_brewing_co-lancaster_winter_warmer,0,0,244740587523,"{""name"":""Lancaster Winter Warmer"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our classic Olde Ale redefines the term \""full-bodied\"" with its deliverance of complex and firm malt flavor. A fine blend of British and American hops provides an even bitterness as this beer finishes with a warming alcohol flavor."",""style"":""Old Ale"",""category"":""British Ale""}",1,15,1
-new_belgium_brewing-mothership_wit,0,0,244862681090,"{""name"":""Mothership Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first venture into organically-produced beer, Mothership Wit Organic Wheat Beer elevates the zesty Wit or White beers of Belgium. Our far-flung Beer Rangers affectionately refer to our Fort Collins brewery as the Mothership, a name that conjures images of earth shot from space and the interconnectivity of it all. Mothership Wit is brewed with wheat and barley malt, as well as coriander and orange peel spicing resulting in a balance of citrus and sour flavors held in suspension by a bright burst of carbonation.""}",1,13,1
-southern_tier_brewing_co-2xipa,0,0,245115715584,"{""name"":""2xIPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,41,1
-wyder_s_cider-dry_pear_hard_cider,0,0,245750562818,"{""name"":""Dry Pear Hard Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wyder_s_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
-fitger_s_brewhouse_brewery_and_grill-starfire_pale_ale,0,0,244619608064,"{""name"":""Starfire Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-jolly_pumpkin_artisan_ales-la_roja,0,0,244749697025,"{""name"":""La Roja"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisan amber ale brewed in the Flanders tradition. Deep amber with earthy caramel, spice, and sour fruit notes developed through natural barrel aging. Unfiltered, unpasteurized and blended from barrels ranging in age from two to ten months."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
-pinnacle_peak_patio_steakhouse_microbrewery-gunslinger_imperial_stout,0,0,244984250368,"{""name"":""Gunslinger Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinnacle_peak_patio_steakhouse_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
-la_jolla_brewing-sealane_steam,0,0,244747665409,"{""name"":""Sealane Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-cervecera_cuauhtmoc_moctezuma-noche_buena_special_holiday_amber_beer,0,0,244481982464,"{""name"":""Noche Buena Special Holiday Amber Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-wolf_tongue_brewery-mister_hoppy_ipa,0,0,245750038530,"{""name"":""Mister Hoppy IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wolf_tongue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
-clipper_city_brewing_co-gold_ale,0,0,244481392641,"{""name"":""Gold Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-miller_brewing-olde_english_800,0,0,244868710402,"{""name"":""Olde English 800"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-sprecher_brewing,0,0,245099790336,"{""name"":""Sprecher Brewing"",""city"":""Glendale"",""state"":""Wisconsin"",""code"":""53209"",""country"":""United States"",""phone"":""1-414-964-2739"",""website"":""http://www.sprecherbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 West Glendale Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1,""lon"":-87.9198}}",1,5,1
-tyranena_brewing-headless_man_amber_alt,0,0,245099200513,"{""name"":""Headless Man Amber Alt"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The ancient peoples that inhabited Wisconsin are known for building numerous celestial stone monuments and earthen effigy mounds to serve as symbols of their culture and their beliefs. Unfortunately, most of these structures have fallen victim to the farmer's plow over the past 150 years. Not far from the brewery, lying preserved on the floor of Rock Lake, are two effigy mounds - a Headless Man and a Turtle. Legend tells us, as the Turtle can survive on both land and in water, its spirit helped guide the Headless Man into the afterlife. May the Turtle's spirit guide you to happiness with a Headless Man Amber Alt.\r\n\r\nThe Headless Man is brewed in the \""old way\"" of a Düsseldorf-style Altbier. A unique cold lagering process gives this amber ale its smooth taste."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,3,1
-hoppin_frog_brewery-barrel_aged_b_o_r_i_s_imperial_stout,0,0,244756447235,"{""name"":""Barrel-Aged B.O.R.I.S. Imperial Stout"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Made from our B.O.R.I.S. Imperial Stout, that was rated one of the World’s 50 Best Beers, and won the Gold Medal at the GABF in 2008. BARREL-AGED B.O.R.I.S. has picked up rich characters of vanilla, dark fruit, oak, and spice. It’s unbelievably complex and savory"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,55,1
-michigan_brewing-nut_brown_ale,0,0,244878278657,"{""name"":""Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A mild, roasted nut and caramel flavored ale with a deep brown color. It is a medium-bodied beer with a mild to medium hop bitterness and aroma."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
-little_creatures_brewery-little_creatures_pilsner,0,0,244861239297,"{""name"":""Little Creatures Pilsner"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_creatures_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Czech Saaz hops are added early in the boil with a late hopping using a hybrid variety we keep to ourselves, giving light flavour and a soft bitterness. Lightly kilned pilsner malt gives the beer both it’s light, slightly golden colour, and leaves a crisp clean taste on the palate."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,10,1
-coopers_brewery-extra_strong_vintage_ale,0,0,244495155201,"{""name"":""Extra Strong Vintage Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If fine wine were beer it would no doubt be Coopers Extra Strong Vintage Ale. This strong ale imparts rich full flavours that are suitable for maturation. Brewed with choice malts and an extended top fermentation, Coopers Extra Strong Vintage Ale will improve with age, becoming more interesting and complex in flavour for up to 18 months. The results are well worth the wait!""}",1,49,1
-g_heileman_brewing-old_style,0,0,244611743745,"{""name"":""Old Style"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""g_heileman_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-eel_river_brewing-certified_organic_india_pale_ale,0,0,244630552576,"{""name"":""Certified Organic India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
-tongerlo-tongerlo_christmas,0,0,245097758720,"{""name"":""Tongerlo Christmas"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""TONGERLO CHRISTMAS 6,5°\r\nCopper-coloured beer of pure spring barley, with a touch of vanilla in the aroma, a fruity and complex flavour and a smooth aftertaste."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,1,1
-great_dane_pub_and_brewing_1-black_wolf_ale,0,0,244757233664,"{""name"":""Black Wolf Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-malt_shovel_brewery-james_squire_porter,0,0,244861632514,"{""name"":""James Squire Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""malt_shovel_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
-erie_brewing_company-derailed_black_cherry_ale,0,0,244620918785,"{""name"":""Derailed Black Cherry Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewery folklore tells a story about a train engineer with a passion for the taste of Railbender Ale. With every stop he made in Erie came an equal number of stops at our brewery. One extended visit to our fermenter left the engineer in a rather befuddled state of mind. On his fateful trip out of Erie that evening, his train mysteriously derailed. The engineer swears that a huge black cherry tree had fallen across the tracks as the culprit. No such tree was ever found, but the front of the locomotive was spattered with hundreds of red sports. In tribute to this folklore our expert brewers introduce Derailed Black Cherry Ale – brewed with fresh sweet black cherries and the finest malted barley to create a truly cherrylicious ale. Please enjoy responsibly, as we would never want you to get derailed!"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
-f_x_matt_brewing-saranac_mocha_stout,0,0,244621443075,"{""name"":""Saranac Mocha Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Combines the rich roasted flavor of our traditional stout with a deep, robust mocha. Look for a full-bodied taste with a crescendo of complex flavor notes."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-ham_s_restaurant_and_brewhouse,0,0,244748976129,"{""name"":""Ham's Restaurant and Brewhouse"",""city"":""Greenville"",""state"":""North Carolina"",""code"":""27834"",""country"":""United States"",""phone"":""1-252-830-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 Evans Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6083,""lon"":-77.3732}}",1,37,1
-pike_pub_and_brewery-india_pale_ale,0,0,244983791616,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
-moose_s_tooth_pub_and_pizzeria-bear_tooth_ale,0,0,244860256258,"{""name"":""Bear Tooth Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep-red, full-bodied, malty ale heavily hopped with Centennial hops to produce a citrusy, spruce-like flavor and aroma. A final dose of Centennail hops in the conditioning tank lends an India Pale Ale-like aroma to the finished beer."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
-mad_river_brewing,0,0,244862943233,"{""name"":""Mad River Brewing"",""city"":""Blue Lake"",""state"":""California"",""code"":""95525"",""country"":""United States"",""phone"":""1-707-668-4151"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""195 Taylor Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.879,""lon"":-123.993}}",1,14,1
-iron_springs_pub_brewery-honey_bunny_blonde_ale,0,0,244757889025,"{""name"":""Honey Bunny Blonde Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-sharktooth_brewing-porter,0,0,244981366785,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,2,1
-saint_arnold_brewing-fancy_lawnmower_beer,0,0,245000765442,"{""name"":""Fancy Lawnmower Beer"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true German-style Kölsch. Originally brewed in Cologne, this beer is light yet has a sweet malty body that is balanced by a complex, citrus hop character. Multiple additions of German Hallertauer hops are used to achieve this delicate flavor. We use a special Kölsch yeast, an ale yeast that ferments at lager temperatures, to yield the slightly fruity, clean flavor of this beer. Fancy Lawnmower Beer is a world class brew yet light enough to be enjoyed by Texans after strenuous activities, like mowing the lawn.\r\n\r\nSaint Arnold Fancy Lawnmower Beer is best consumed at 35-45° Fahrenheit.""}",1,48,1
-voodoo_brewing_co_llc-black_magick,0,0,245744140288,"{""name"":""Black Magick"",""abv"":15.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is an Imperial Stout that is Brewed to great strength and complexity. We then gently age that beer in Elaigh Craig 13 1/2 year old Bourbon Barrels for 1 yr. and then primed and bottled to bottle condition for continued aging and celler life. Black Magick should be able to be aged up to about 5 years, to heighten the complexity and smooth nature of this beer. This beer should be opened to breath, pour into snifter and enjoy at 55-60 F. \r\n\r\nThis is a truly Barrel aged ale and is not to have a large carbonation. We bottle condition it to achieve cask like characteristics."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,0,1
-o_hara_s_brewpub_and_restaurant,0,0,244880179200,"{""name"":""O'Hara's Brewpub and Restaurant"",""city"":""Saint Cloud"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5539,""lon"":-94.1703}}",1,56,1
-cooper_s_cave_ale_company-bumppo_s_brown_ale,0,0,244495810560,"{""name"":""Bumppo's Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Bumppo's Brown Ale is a dark Dark Mild Ale. It is lightly hopped with a medium body, darkened and flavored with chocolate malt."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
-grupo_modelo,0,0,244741111810,"{""name"":""Grupo Modelo"",""city"":""Mexico City"",""state"":"""",""code"":"""",""country"":""Mexico"",""phone"":"""",""website"":""http://www.gmodelo.com.mx/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":19.427,""lon"":-99.1276}}",1,17,1
-lancaster_brewing_co-hop_hog_ipa,0,0,244750352386,"{""name"":""Hop Hog IPA"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our hoppiest beer to date. This formidable India Pale Ale has a hop aroma that demands attention. The bold, citrus hop flavor is balanced by a dry malt character that makes this refreshing ale a true classic."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
-sand_creek_brewing_company-imperial_stout,0,0,244982087681,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
-sierra_nevada_brewing_co-bigfoot_2005,0,0,244983070720,"{""name"":""Bigfoot 2005"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-lakefront_brewery-big_easy_beer,0,0,244756054017,"{""name"":""Big Easy Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,54,1
-yamhill_brewing,0,0,245749841921,"{""name"":""Yamhill Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5235,""lon"":-122.676}}",1,42,1
-klosterbrauerei_neuzelle-golden_abbot_lager,0,0,244740980736,"{""name"":""Golden Abbot Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-mad_crab_restaurant_and_brewery,0,0,244863533056,"{""name"":""Mad Crab Restaurant and Brewery"",""city"":""Strongsville"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.3145,""lon"":-81.8357}}",1,15,1
-new_glarus_brewing_company-native_ale,0,0,244862746624,"{""name"":""Native Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,13,1
-southern_tier_brewing_co-422_pale_wheat_ale,0,0,245115715585,"{""name"":""422 Pale Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Pour 422 Pale Wheat Ale into a pint glass, give it a long whiff and you’ll realize that this isn’t your average pale golden wheat. Preserved in its unfiltered state, 422 is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of orange and sweet malts waft to the fore as a touch of bitterness contributes to a smooth finish. 422 is brewed as a tribute to preserving our precious planet and it’s environment. It is responsibly packaged with over 80% recycled consumer products and is completely recyclable. Enjoy 422 all year as to take one stride closer to a eco-friendly life."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
-abdullah,0,0,89908535623680,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,47,1
-flagstaff_brewing-bubbaganoush_pale_ale,0,0,244619608065,"{""name"":""Bubbaganoush Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-jt_whitney_s_brewpub_and_eatery-ipa,0,0,244749762560,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-pyramid_ales_brewery-snow_cap,0,0,244984250369,"{""name"":""Snow Cap"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, full-bodied winter warmer crafted in the British tradition of holiday beers. This deep mahogany colored brew balances complex fruit flavors with a refreshingly smooth texture, making Snow Cap a highly drinkable and desirable cold weather companion."",""style"":""Old Ale"",""category"":""British Ale""}",1,9,1
-labatt_keith_s_brewery_oland_breweries,0,0,244747665410,"{""name"":""Labatt / Keith's Brewery / Oland Breweries"",""city"":""Halifax"",""state"":""Nova Scotia"",""code"":""0"",""country"":""Canada"",""phone"":""1-902-453-1867"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3055 Agricola Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.6598,""lon"":-63.5997}}",1,33,1
-cervecera_nacional-cabro_extra,0,0,244481982465,"{""name"":""Cabro Extra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_nacional"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-columbus_brewing_company,0,0,244481392642,"{""name"":""Columbus Brewing Company"",""city"":""Columbus"",""state"":""OH"",""code"":""43215"",""country"":""United States"",""phone"":""614-464-2739"",""website"":""www.columbusbrewingco.com"",""type"":""brewery"",""updated"":""2011-03-08 12:19:07"",""description"":""Located just south of downtown Columbus, Ohio, adjacent to German Village in the historic Brewery District, Columbus Brewing Company Restaurant features award-winning food and beer in an upscale-casual setting. "",""address"":[""525 Short St.""]}",1,18,1
-minhas_craft_brewery,0,0,244868775936,"{""name"":""Minhas Craft Brewery"",""city"":""Monroe"",""state"":""Wisconsin"",""code"":""53566"",""country"":""United States"",""phone"":""1-608-325-3191"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1208 14th Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6001,""lon"":-89.6422}}",1,28,1
-spring_house_brewing_company-atomic_raygun_imperial_red,0,0,245099790337,"{""name"":""Atomic Raygun Imperial Red"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We welcome the latest release Atomic Raygun Imperial Red! Brewed with Pilsner, Chocolate and Caramel malts but well balanced with Columbus and Centennial Hops and coming in at 90 IBU's. The Octane level on this one is coming in at 8.3!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
-union_barrel_works-wobbly_bob_dopplebock,0,0,245099266048,"{""name"":""Wobbly Bob Dopplebock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Dunkle style lager with an original gravity above 19 degrees Plato. Rich and malty, this is a strong bock with a mellow finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,3,1
-hue_brewery,0,0,244756512768,"{""name"":""Hue Brewery"",""city"":""Hue"",""state"":"""",""code"":"""",""country"":""Viet Nam"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-33.2175,""lon"":151.426}}",1,55,1
-mohrenbrauerei_august_huber-gambrinus,0,0,244878344192,"{""name"":""Gambrinus"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mohrenbrauerei_august_huber"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-lost_coast_brewery-pale_ale,0,0,244861304832,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-cooperstown_brewing_company-benchwarmer_porter,0,0,244495155202,"{""name"":""Benchwarmer Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Benchwarmer\"" is a very smooth Porter brewed in accordance with the original \""high gravity\"" porters of early London. More than 4% chocolate malt, which is the most similar to the brown malts of the early 1700’s, gives \""Benchwarmer\"" its dry coffee-like finish. It is fermented with the Ringwood yeast which is an excellent yeast for the brewing of porters. The widely accepted theory of how porter got its name is that it was a very popular beer among the porters who hauled produce and goods around the marketplace of early industrialized London."",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
-gaslight_brewery-steam_beer,0,0,244611809280,"{""name"":""Steam Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-einbecker_brauhaus_ag-schwarzbier_dunkel,0,0,244630552577,"{""name"":""Schwarzbier / Dunkel"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""einbecker_brauhaus_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,57,1
-troegs_brewing-dreamweaver,0,0,245097824256,"{""name"":""Dreamweaver"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Long toasty days, cool breezy nights and a splash of magic provide the inspiration for the Troegs brothers’ dreamiest Single Batch creation—Dreamweaver Wheat. Combining four wheat types with Munich and Pils malts, noble Saaz hops, and a yeast strain that imparts a spicy, peppery, clove taste with a slight hint of bananas, Dreamweaver Wheat is an unfiltered blast of spicy, mouthwatering joy."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,1,1
-green_mill_brewing_saint_paul-knockadoon_irish_ale,0,0,244757299200,"{""name"":""Knockadoon Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-mccashin_s_brewery_malthouse-malt_mac_winter_ale,0,0,244861698048,"{""name"":""Malt Mac Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mccashin_s_brewery_malthouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-esser_s_cross_plains_brewery,0,0,244620918786,"{""name"":""Esser's Cross Plains Brewery"",""city"":""Cross Plains"",""state"":""Wisconsin"",""code"":""53528"",""country"":""United States"",""phone"":""1-608-798-3911"",""website"":""http://www.essersbest.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2109 Hickory Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1147,""lon"":-89.6531}}",1,34,1
-f_x_matt_brewing-saranac_octoberfest,0,0,244621508608,"{""name"":""Saranac Octoberfest"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Octoberfest is a med-bodied, copper colored lager. It's rich, malty taste is subtly balanced by Saaz and Tettnang hops. The beer is aged slowly in the tradition of the Octoberfest beers of Munich."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,35,1
-hirschbru_privatbrauerei_hss-neuschwansteiner_bavarian_lager,0,0,244749041664,"{""name"":""Neuschwansteiner Bavarian Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hirschbru_privatbrauerei_hss"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-pivovar_pardubice_a_s,0,0,244983857152,"{""name"":""Pivovar Pardubice a.s."",""city"":""Pardubice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-466-511-321-4"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Palackho 250""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0355,""lon"":15.762}}",1,8,1
-morland_and_co-tanners_jack,0,0,244860321792,"{""name"":""Tanners Jack"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""morland_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-manhattan_beach_brewing,0,0,244863008768,"{""name"":""Manhattan Beach Brewing"",""city"":""Manhattan Beach"",""state"":""California"",""code"":""90266"",""country"":""United States"",""phone"":""1-310-378-2744"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""124 Manhattan Beach Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.8844,""lon"":-118.411}}",1,14,1
-iron_springs_pub_brewery-shining_star_pale_ale,0,0,244757889026,"{""name"":""Shining Star Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-smoky_mountain_brewing-black_bear_ale,0,0,245097955328,"{""name"":""Black Bear Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smoky_mountain_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
-salado_creek_brewing_company-amarossa,0,0,245000830976,"{""name"":""Amarossa"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salado_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-warwick_valley_wine_co,0,0,245744140289,"{""name"":""Warwick Valley Wine Co."",""city"":""Warwick"",""state"":""NY"",""code"":""10990"",""country"":""United States"",""phone"":""(845) 258-4858"",""website"":""http://www.wvwinery.com"",""type"":""brewery"",""updated"":""2010-12-20 16:17:52"",""description"":"""",""address"":[""114 Little York Rd""]}",1,0,1
-odell_brewing-bobby,0,0,244880179201,"{""name"":""Bobby"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-cooper_s_cave_ale_company-cooper_s_cave_pale_ale,0,0,244495810561,"{""name"":""Cooper's Cave Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Cooper's Cave Pale Ale is an English Pale Ale throughout.It is a full bodied light colored ale with evenly pronounced hop bitterness. The grain bill consists of two English Pale Malts and an English Crystal Malt. The brewer's favorite...need we say more."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,50,1
-haarlems_biergenootschap_jopen-adriaan,0,0,244741177344,"{""name"":""Adriaan"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""haarlems_biergenootschap_jopen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-liberty_steakhouse_and_brewery,0,0,244750352387,"{""name"":""Liberty Steakhouse and Brewery"",""city"":""Myrtle Beach"",""state"":""South Carolina"",""code"":""29577"",""country"":""United States"",""phone"":""843.626.4677"",""website"":""http://www.libertysteakhouseandbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Liberty means many things to many different people. It's a celebration of the great American farmer and the rich bounty he puts on our plates. It's a celebration of America's rich ethnic cooking styles. It's a celebration of the resurgence of the handcrafted-brewing style of the pre-prohibition small American brewery. Liberty Steakhouse & Brewery is based on America's rich ethnic cooking styles, complimented by finely hand-crafted beers, tantalizing starters and perfectly seared steaks. We've got something brewing you're sure to like. Liberty is also a celebration of life, family and the pursuit of happiness. So bring us your hungry, your thirsty and fun-loving, we'll send you home refreshed and fulfilled."",""address"":[""1321 Celebrity Circle""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.7187,""lon"":-78.8831}}",1,39,1
-santa_fe_brewing_company-santa_fe_stout,0,0,244982087682,"{""name"":""Santa Fe Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A hearty sip of the Santa Fe Stout delights one’s taste buds first with a generous Irish serving of roast malt that rolls off the tongue with a creamy bitterness reminiscent of the finest coffee. Supported by the complex, yet light body only possible with a good Irish yeast strain, this coffee-like creaminess eventually yields to the warmth of a subtle variety of hops, and their mild, full flavor. A favorite with regular customers, this rare brew can occasionally be found on draft at restaurants in Santa Fe, but is more likely on tap at the Brewery's tasting room. Despite its intimidating dark color, this brew has an uncanny ability to convert those who claim not to like beer. The balance of flavors and complexity of aroma are recognized and appreciated by all who taste this fine brew.""}",1,4,1
-sly_fox_brewhouse_and_eatery_royersford-anniversary_ipa_ahtanum,0,0,245100249088,"{""name"":""Anniversary IPA Ahtanum"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,6,1
-leinenkugel_s_ballyard_brewery-splitfinger_stout,0,0,244756054018,"{""name"":""Splitfinger Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""leinenkugel_s_ballyard_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
-yellowstone_valley_brewing,0,0,245749907456,"{""name"":""Yellowstone Valley Brewing"",""city"":""Billings"",""state"":""Montana"",""code"":""59101"",""country"":""United States"",""phone"":""406-245-0918"",""website"":""http://www.yellowstonevalleybrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2123 1st Avenue North""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.7861,""lon"":-108.498}}",1,42,1
-knigsbacher_brauerei,0,0,244740980737,"{""name"":""Knigsbacher Brauerei"",""city"":""Koblenz"",""state"":""Rheinland-Pfalz"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)261-/-1397-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""An der Knigsbach 8""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.3216,""lon"":7.5862}}",1,16,1
-main_street_brewery-mesa_cerveza_schnorzenboomer,0,0,244863533057,"{""name"":""Mesa Cerveza Schnorzenboomer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
-new_glarus_brewing_company-smoked_rye_bock,0,0,244862746625,"{""name"":""Smoked Rye Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-speakeasy_ales_and_lagers-old_godfather,0,0,245115781120,"{""name"":""Old Godfather"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
-flyers_restraunt_and_brewery-heat_seeker_hefe,0,0,244619673600,"{""name"":""Heat Seeker Hefe"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Bavarian style Hefeweizen, a cloudy brew with slight hints of bannana and clove. Light and refreshing."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,31,1
-jt_whitney_s_brewpub_and_eatery-triple_treat,0,0,244749762561,"{""name"":""Triple Treat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-raccoon_lodge_and_brewpub_cascade_brewing-celtic_copper_ale,0,0,244984315904,"{""name"":""Celtic Copper Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Celtic Copper is a mahogany hued ale with rich malt flavor and subtle hop balance; an excellent choice for those who prefer amber ales."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
-lagunitas_brewing_company-hop_stoopid,0,0,244747665411,"{""name"":""Hop Stoopid"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,33,1
-cold_spring_brewing-aspen_meadow_black_and_tan,0,0,244482048000,"{""name"":""Aspen Meadow Black and Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cold_spring_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-coronado_brewing_company-four_brothers_pale_ale,0,0,244481458176,"{""name"":""Four Brothers Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-molson_breweries_of_canada-rickard_s_red_ale,0,0,244868841472,"{""name"":""Rickard's Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,28,1
-steamworks-coal_porter,0,0,245099790338,"{""name"":""Coal Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""As you look out over Vancouver's Coal Harbour, relax with this creamy delight. Don't let the colour fool you - this porter is rich but not overpowering with a head that lingers all the way down the glass. Just about anything goes with our Coal Porter, and you don't have to belong to \""High Society\"" to enjoy a glass with oysters."",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
-unionsbru_haidhausen,0,0,245099266049,"{""name"":""Unionsbru Haidhausen"",""city"":""Mnchen"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-477677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Einsteinstrae 42""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.1355,""lon"":11.6009}}",1,3,1
-karl_strauss_brewery_gardens_sorrento_mesa,0,0,244756512769,"{""name"":""Karl Strauss Brewery Gardens - Sorrento Mesa"",""city"":""San Diego"",""state"":""California"",""code"":""92121"",""country"":""United States"",""phone"":""1-858-587-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9675 Scranton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.8969,""lon"":-117.201}}",1,55,1
-moosejaw_pizza_dells_brewing_company-new_hops_ale,0,0,244878344193,"{""name"":""New Hops Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
-maisel_bru-pils,0,0,244861370368,"{""name"":""Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maisel_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-courthouse_pub-courthouse_copper,0,0,244495220736,"{""name"":""Courthouse Copper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
-goose_island_beer_company_clybourn-xxx_porter,0,0,244611809281,"{""name"":""XXX Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-el_toro_brewing_company-el_toro_negro_oatmeal_stout,0,0,244630618112,"{""name"":""El Toro Negro Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""el_toro_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,57,1
-union_barrel_works-union_barrel_works_mai_bock,0,0,245097824257,"{""name"":""Union Barrel Works Mai-Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A pale bock with fresh maltiness in the aroma and palate. Deep golden color with a generous amount of pure honey to smooth the high alcohol finish. Perle and Cluster hops for bittering and Sazz and Hallertau for finishing. Original gravity above 19 Plato."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,1,1
-hapa_s_brew_haus_and_restaurant-red_eye_amber,0,0,244757364736,"{""name"":""Red Eye Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-middle_ages_brewing-kilt_tilter,0,0,244861698049,"{""name"":""Kilt Tilter"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Scottish \""90/-\"" ale. Brewed only once a year, this ale is rich and full with a dryness that is beautifully balanced with a classic malt sweetness."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,11,1
-felinfoel_brewery_co_ltd,0,0,244620984320,"{""name"":""Felinfoel Brewery Co Ltd"",""city"":""Llanelli"",""state"":""Wales"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-01554-773357"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Farmers Row""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.6987,""lon"":-4.1456}}",1,34,1
-fauerbach_brewing_company,0,0,244621508609,"{""name"":""Fauerbach Brewing Company"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53705"",""country"":""United States"",""phone"":"""",""website"":""http://www.fauerbachbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1714 Camus Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0844,""lon"":-89.4761}}",1,35,1
-jack_s_brewing-india_pale_ale,0,0,244749041665,"{""name"":""India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-porterhouse_restaurant_and_brewpub-indian_red_ale,0,0,244983857153,"{""name"":""Indian Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-moylans_brewing_company,0,0,244860321793,"{""name"":""moylans Brewing company"",""city"":""Novato"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.moylans.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.1074,""lon"":-122.57}}",1,7,1
-mccoy_s_public_house_and_brewkitchen,0,0,244863008769,"{""name"":""McCoy's Public House and Brewkitchen"",""city"":""Kansas City"",""state"":""Missouri"",""code"":""64111"",""country"":""United States"",""phone"":""1-816-960-0866"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4057 Pennsylvania Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.0534,""lon"":-94.5919}}",1,14,1
-ithaca_beer_company-flower_power_india_pale_ale,0,0,244757889027,"{""name"":""Flower Power India Pale Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Enjoy the clover honey hue and tropical nose. Simultaneously Punchy and soothing with a big body and a finish that boasts pineapple and grapefruit. Flower power is hopped and dry-hopped five different times throughout the brewing and fermentation process."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-smuttynose_brewing_co-smuttynose_pumpkin_ale,0,0,245098020864,"{""name"":""Smuttynose Pumpkin Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Smuttynose Pumpkin Ale is our homage to the craft and heritage of America’s brewers. Recipes calling for the use of pumpkins in beer date back to early colonial times, when brewers sought to extend their supply of costly imported malt with locally grown ingredients, such as squash and “pompions.”\r\n\r\nIn that spirit, we brew our ale with the addition of pumpkin to the mash, along with traditional spices to create a delicious American original."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,2,1
-samuel_smith_old_brewery_tadcaster-organic_ale,0,0,245000830977,"{""name"":""Organic Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""A delicately flavored golden ale in which subtle fruity esters from the Samuel Smith yeast strain interact with a background of maltiness and fresh hops."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,48,1
-weyerbacher_brewing_company-winter_ale,0,0,245744205824,"{""name"":""Winter Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At Weyerbacher we've created a Winter Ale that is a must for any malty beer lover. Winner of a Silver Medal in the 1998 World Beer Championships, Weyerbacher Winter Ale is brewed with deep-roasted chocolate malt. The taste predominates with a warm, roasty flavor, balanced out with a slightly dry finish. It's smooth but not cloying, with a warming belt of alcohol (5.6% ABV).\r\n\r\nAlthough winter ales predate history, they are believed to have their origin in the pagan celebrations of winter solstice. Later, when monasteries produced the local brew, winter ales were made each year to commemorate the birth of Christ. Back then, winter ales were brewed full-bodied as a source of nutrition for the upcoming winter months. Today, winter ales are typified by their seasonality, their rich, malty flavors and by their deep, dark coloration.\r\n\r\nGenerally available November-March, Weyerbacher Winter Ale is the perfect libation for a winter meal, with good friends, or beside a warm fire fending off a cold winter night."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,0,1
-odell_brewing-odell_red_ale,0,0,244880244736,"{""name"":""Odell Red Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Rocky Mountain Goat is no ordinary goat. Just like Odell Red is no ordinary red. \r\n\r\nWe took the American-style red to a whole new level by adding a variety of aggressive American hops—giving this ale a distinctive fresh hop aroma and flavor. \r\n\r\nWe think you'll agree this red has some serious kick."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
-coopers_brewery,0,0,244495876096,"{""name"":""Coopers Brewery"",""city"":""Regency Park"",""state"":""South Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(08)-8440-1800"",""website"":""http://www.coopers.com.au/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coopers Brewery produce a range of Ales,Stouts and Lagers. Our ale range is brewed by a method of top fermentation, originating in the Middle Ages. Coopers uses only natural ingredients including malt, hops, sugar, water and a special yeast strain that's over 90 years old. Coopers do not use preservatives or chemicals in their ale range. Coopers also produce Stout and Lager beers. The Lager beers are bottom fermented in cooler conditions, matured for a short period and pasteurised."",""address"":[""461 South Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-34.8727,""lon"":138.573}}",1,50,1
-hale_s_ales_3-mongoose_ipa,0,0,244741177345,"{""name"":""Mongoose IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
-main_street_beer_company_1-stubborn_mule_barleywine,0,0,244872511488,"{""name"":""Stubborn Mule Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_beer_company_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-selin_s_grove_brewing_co-captain_selin_s_cream,0,0,244982087683,"{""name"":""Captain Selin's Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""selin_s_grove_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,4,1
-southampton_publick_house-double_ice_bock,0,0,245100314624,"{""name"":""Double Ice Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,6,1
-long_trail_brewing_co-harvest,0,0,244878737408,"{""name"":""Harvest"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A light & malty experience modeled after one of our favorite old style English brews."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
-la_jolla_brew_house-pilsner,0,0,244740980738,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-maisel_bru,0,0,244863598592,"{""name"":""Maisel Bru"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-91827-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Moosstrae 46""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8928,""lon"":10.9131}}",1,15,1
-new_holland_brewing_company-dragon_s_milk,0,0,244862746626,"{""name"":""Dragon's Milk"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A barrel-aged, strong-ale with a soft and rich caramel-malt character intermingled with deep vanilla tones dancing in an oak bath. Unmistakably distinctive and hauntingly remarkable, Dragon’s Milk’s warming complexity pairs well with smoked meats and cheeses, red meat, or a nice cigar.""}",1,13,1
-sprecher_brewing-anniversary_ale,0,0,245115781121,"{""name"":""Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
-frederic_robinson_ltd,0,0,244619673601,"{""name"":""Frederic Robinson Ltd."",""city"":""Stockport"",""state"":""Cheshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0161)-480-6571"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unicorn Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.499,""lon"":-72.9007}}",1,31,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2005_sherry,0,0,244749762562,"{""name"":""Harvest Ale 2005 (Sherry)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-railway_brewing-ironhorse_not_brown,0,0,244984381440,"{""name"":""Ironhorse Not Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""railway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
-lancaster_brewing_co-lancaster_milk_stout,0,0,244747730944,"{""name"":""Lancaster Milk Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We are proud to offer one of the few surviving examples of this traditional English style sweet stout. A bold dark ale, bursting with roasted barley dryness and mellowed by hints of chocolate and coffee."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,33,1
-daleside_brewery-monkey_wrench_dark_ale,0,0,244482048001,"{""name"":""Monkey Wrench Dark Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
-cricket_hill-cricket_s_nocturne,0,0,244481458177,"{""name"":""Cricket's Nocturne"",""abv"":4.5,""ibu"":19.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-12-06 13:10:41"",""description"":""Cricket's Nocturne: a dark lager that combines a mild crispness with subtle toasty, chocolate notes to make it the perfect thirst quencher on days when there's a chill in the air. It;s a great accompaniment to hearty winter meals, or dessert by the fireside."",""style"":""American-Style Dark Lager"",""category"":""North American Lager""}",1,18,1
-moon_river_brewing_company-swamp_fox_ipa,0,0,244868841473,"{""name"":""Swamp Fox IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Like its namesake, this ale is known for the sneak attack. Hop-heads will enjoy its assertive bitterness and huge floral, dry hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,28,1
-steamworks_brewing_durango-steam_engine_steam,0,0,245099855872,"{""name"":""Steam Engine Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks_brewing_durango"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-upstream_brewing_old_market,0,0,245099266050,"{""name"":""Upstream Brewing Old Market"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68102"",""country"":""United States"",""phone"":""1-402-344-0200"",""website"":""http://www.upstreambrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Derived from the Native American meaning of Omaha, upstream or against the current, the Upstream Brewing Company is just that�a restaurant different from the rest. Since opening in 1996, the Upstream has been all about fresh�from the handcrafted beers to the locally grown produce to the lively atmosphere. Not to mention the friendly, knowledgeable staff. So stop in today, and find out why we've been named one of Omaha's Best several years running."",""address"":[""514 South Eleventh Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2553,""lon"":-95.9306}}",1,3,1
-kona_brewing-stout,0,0,244756512770,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
-moylan_s_brewery_restaurant-moylander_double_ipa,0,0,244878344194,"{""name"":""Moylander Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""“If One is Good, Then Two is Better!” Our Moylander Double IPA is fat and resiny, with aggresive and excessive hops swinging on on an enormous malt backbone like naughty monkeys on a vine. Double malt, double hops - do the math, it’s academic. This brew has twice the things you’re looking for, and it’s big enough to share with the one you love. And isn’t that what it's all about?"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,52,1
-marquette_harbor_brewery_and_restaurant,0,0,244861370369,"{""name"":""Marquette Harbor Brewery and Restaurant"",""city"":""Marquette"",""state"":""Michigan"",""code"":""49855"",""country"":""United States"",""phone"":""1-906-228-3533"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""119 South Front Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.5431,""lon"":-87.3929}}",1,10,1
-crescent_city_brewhouse-red_stallion,0,0,244495286272,"{""name"":""Red Stallion"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
-goose_island_beer_company_fulton_street-baderbrau_pilsener,0,0,244611874816,"{""name"":""Baderbräu Pilsener"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-fifty_fifty_brewing_co-roundabout_oatmeal_stout,0,0,244630618113,"{""name"":""Roundabout Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Everyone has their price. For some, it's measured in dollars per hour, for others it's powder days. For those that have the gift of passion for the dark side, it's measured in pints of Oatmeal Stout. Another one of FiftyFifty's seasonals, the Roundabout Oatmeal Stout is brown to black in color and nearly opaque. It has a velvet like mouthfeel, moderate hints of dark dried fruit, espresso beans and Dark Chocolate... and just a hint of hop bitterness. The addition of Flaked Oats gives this brew its wonderful creamy texture. Roundabout Oatmeal Stout is one of a series of Stouts that FiftyFifty Brewing Co. will produce during the course of the year. Enjoy!"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,57,1
-united_breweries_limited-flying_horse_royal_lager_beer,0,0,245097889792,"{""name"":""Flying Horse Royal Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""united_breweries_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
-harmon_brewing_company-brown_s_point_esb,0,0,244757364737,"{""name"":""Brown's Point ESB"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This E.S.B. is definately the house favorite. Exclusively hopped with Fuggles, this full bodied amber ale finishes smooth and clean. 5.6% ABV"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,58,1
-midnight_sun_brewing_co-berserker_imperial_stout,0,0,244861763584,"{""name"":""Berserker Imperial Stout"",""abv"":12.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Vicious and viscous, this menacing brew pours opaque black with a creamy maduro-colored head. Its aroma offers seductive whiskey, chewy red wine, dark fruit and lavish tobacco. Berserker Imperial Stout invades your taste buds with in-your-face flavor. Weighing in at almost 13% alcohol by volume, Berserker is completely out-of-control. Give it a good fight.\r\n\r\nThis version of Berserker Imperial Stout was aged in both red wine and whiskey barrels. The entire batch was brought back together before being packaged in kegs and 22-oz bottles."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
-firehouse_brewery_restaurant-pilsner,0,0,244620984321,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-fitzpatrick_s_brewing-mcbride_porter,0,0,244621574144,"{""name"":""McBride Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
-joboy_s_brew_pub-manheim_stout,0,0,244749041666,"{""name"":""Manheim Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""An intense and rich, dark, roasty ale with substantial alcohol warming. Requires several months of aging."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,37,1
-prairie_rock_brewing_elgin-honey_brown_ale,0,0,244983922688,"{""name"":""Honey Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
-new_holland_brewing_company,0,0,244860321794,"{""name"":""New Holland Brewing Company"",""city"":""Holland"",""state"":""Michigan"",""code"":""49423"",""country"":""United States"",""phone"":""1-616-355-6422"",""website"":""http://newhollandbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established in 1996, NHBC has grown from a scrappy two-man start-up to a thriving regional microbrewery, recognized for its creativity and artistry. We are very proud of our accomplishments thus far, and believe in earning our place in the brewing industry and in our customer's hearts and minds everyday. All of our beer is brewed in Holland, Michigan at one of our two locations. We brew, cellar and package the main brands for distribution at our production facility on the north-side of Holland, at 690 Commerce Court. In response to our considerable growth, we opened the new brewery in October of 2006, replacing the original headquarters. We also brew beer and distill spirits in our pub. The pub is a great place for us to explore new ideas, meet our customers in a comfortable setting and provide a place of community for all who visit. The beers made here are typically special brews that rarely see their way outside of the friendly confines of our pub. In 2007, we brewed and shipped just over 7,400 barrels of beer. (A barrel = 31 gallons.) We work hard to bring you an authentic, interesting and gratifying experience."",""address"":[""66 East Eighth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.79,""lon"":-86.1041}}",1,7,1
-mercury_brewing_company-ipswich_oatmeal_stout,0,0,244863008770,"{""name"":""Ipswich Oatmeal Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep, rich, and malty with hints of chocolate and coffee. It's what espresso would be if it had the gumption to be beer. We use three different hop additions, specially selected crystal malts, roasted barley, and oatmeal to give it a soft and silky mouth feel. Makes a great dessert. Or meal."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,14,1
-jt_whitney_s_brewpub_and_eatery-rauch_ale,0,0,244757889028,"{""name"":""Rauch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-smuttynose_brewing_co-smuttynose_winter_ale,0,0,245098086400,"{""name"":""Smuttynose Winter Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Smuttynose Winter Ale is a full-bodied, amber beer brewed with a special Trappist ale yeast. Stylistically reminiscent of a Belgian Abbey Double, it features fruity aromas and flavor, balanced by soft Crystal hops. Warming, mellow & pleasantly complex, Smuttynose Winter Ale is your perfect cold weather companion."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,2,1
-samuel_smith_old_brewery_tadcaster,0,0,245000896512,"{""name"":""Samuel Smith Old Brewery (Tadcaster)"",""city"":""Tadcaster"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01937)-839201"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""High Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":53.8834,""lon"":-1.2625}}",1,48,1
-on_tap_bistro_brewery-belgian_double,0,0,244880244737,"{""name"":""Belgian Double"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-crane_river_brewpub_and_cafe,0,0,244495876097,"{""name"":""Crane River Brewpub and Cafe"",""city"":""Lincoln"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.8069,""lon"":-96.6817}}",1,50,1
-hasserder_brauerei,0,0,244741242880,"{""name"":""Hasserder Brauerei"",""city"":""Wernigerode"",""state"":""Sachsen-Anhalt"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)3943-/-9360"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Auerhahnring 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.8439,""lon"":10.7533}}",1,17,1
-michigan_brewing-celis_raspberry,0,0,244872511489,"{""name"":""Celis Raspberry"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An authentic Belgian fruit flavored and spiced ale with a pronounced raspberry flavor and aroma, accented by orange peel and coriander. Clear and bright golden color with a raspberry tint."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,39,1
-sierra_madre_brewing_co,0,0,244982153216,"{""name"":""Sierra Madre Brewing Co."",""city"":""Monterrey"",""state"":""Nuevo Leon"",""code"":""64630"",""country"":""Mexico"",""phone"":""+52 (81) 8348-4896"",""website"":""http://www.smbc.com.mx/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An interesting microbrewery -- brewpub -- that started brewing in 1998."",""address"":[""Av. Insurgentes 3915""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":25.6811,""lon"":-100.363}}",1,4,1
-southern_tier_brewing_co-choklat,0,0,245100380160,"{""name"":""Choklat"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The Popol Vuh, the sacred book of the Maya, unfolds a complex web of mystery around a beverage known as xocoatl (ch-co-atle). At Southern Tier, we’re not surprised that hieroglyphs of the ancient Maya depict chocolate being poured for rulers and gods. Even through the many voyages of Columbus, the mystical bean remained nothing more than a strange currency of the native peoples.\r\n\r\nMoving through centuries, the circular journey of cacao has been realized in our brewing house, encompassing the complexity of the darkest, bitter-sweet candy together with the original frothy cold beverage of the ancient Maya to bring to you our Blackwater Series Choklat Stout. We have combined the finest ingredients to tempt your senses & renew the power & interrelation of history in every bottle.\r\n11.0% abv • 195º L • Imperial Chocolate Stout • 22 oz / 1/6 keg\r\n2-row barley / caramel 60 malt / barley flakes / chocolate malt / bittersweet Belgian chocolate / kettle hops: chinook & willamette"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,6,1
-maui_brewing_co-bikini_blonde_lager,0,0,244878868480,"{""name"":""Bikini Blonde Lager"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maui_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer, made from 100% malted barley. This blonde lager is what sailors really swam to shore for; it's light, with very little bitterness and a slight malt finish.""}",1,54,1
-marin_brewing,0,0,244863860736,"{""name"":""Marin Brewing"",""city"":""Larkspur Landing"",""state"":""California"",""code"":""94939"",""country"":""United States"",""phone"":""1-415-461-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1809 Larkspur Landing Circle""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.9479,""lon"":-122.511}}",1,16,1
-mccoy_s_public_house_and_brewkitchen-deluxe_cream_stout,0,0,244863598593,"{""name"":""Deluxe Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mccoy_s_public_house_and_brewkitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
-niagara_falls_brewing-premium_light,0,0,244862812160,"{""name"":""Premium Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-sprecher_brewing-sprecher_irish_stout,0,0,245115781122,"{""name"":""Sprecher Irish Stout"",""abv"":5.73,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This tribute to St. Patrick's Day is smooth and creamy, with distinctive flavors and aromas reminiscent of bitter-sweet chocolate and dark coffee. Just one precious batch of this robust, ebony colored stout is brewed each year."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
-gasthaus_gosebrauerei_bayerischer_bahnhof-gose,0,0,244619673602,"{""name"":""Gose"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_gosebrauerei_bayerischer_bahnhof"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-jw_lees_and_co_brewers_ltd-moonraker,0,0,244749762563,"{""name"":""Moonraker"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-randy_s_fun_hunters_brewery_restaurant_and_banquet_center,0,0,244984381441,"{""name"":""Randy's Fun Hunters Brewery Restaurant and Banquet Center"",""city"":""Whitewater"",""state"":""Wisconsin"",""code"":""53190"",""country"":""United States"",""phone"":""1-262-473-8000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""841 East Milwaukee Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.832,""lon"":-88.714}}",1,9,1
-logjam_microbrewery-lager,0,0,244870414336,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""logjam_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
-de_proef_brouwerij-reinaert_flemish_wild_ale,0,0,244614430720,"{""name"":""Reinaert Flemish Wild Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-de_halve_maan,0,0,244613971968,"{""name"":""De Halve Maan"",""city"":""Brugge"",""state"":""West-Vlaanderen"",""code"":""BE-8000"",""country"":""Belgium"",""phone"":""+32-50-33.26.97"",""website"":""http://www.halvemaan.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Walplein 26""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.2026,""lon"":3.2242}}",1,18,1
-moonlight_brewing,0,0,244868907008,"{""name"":""Moonlight Brewing"",""city"":""Fulton"",""state"":""California"",""code"":""95439"",""country"":""United States"",""phone"":""1-707-528-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 316""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.498,""lon"":-122.78}}",1,28,1
-tailgate_beer-tailgate_hefeweizen,0,0,245099855873,"{""name"":""Tailgate Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""TailGate Beer does the German style wheat beer right. Hints of citrus, complemented by sprinkles of spice that makes a German, full flavored brew that is really hard to say right. Proud of the names ‘weizen’ (wheat) base ingredient, TGB draws most of its flavor from the famed grass plant. This Hef is one truly crisp, and refreshing unfiltered ale that garnishes well with a lemon or an orange! Be sure to impress your friends with your fine tuned palate and sophisticated verbiage next time you belly up to order your TailGate Beer “HEH-feh-vite-zehn”"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
-voodoo_brewing_co_llc,0,0,245744467968,"{""name"":""Voodoo Brewing Co.,LLC"",""city"":""Meadville"",""state"":""Pennsylvania"",""code"":""16335"",""country"":""United States"",""phone"":""1-(412)-468-0295"",""website"":""http://www.voodoobrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""215 1/5 Arch St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6372,""lon"":-80.1549}}",1,3,1
-la_jolla_brew_house-pale_ale,0,0,244756512771,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-new_belgium_brewing-blue_paddle_pilsener,0,0,244878344195,"{""name"":""Blue Paddle Pilsener"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Climb on in and grab a paddle. Our first foray into lagered beers, Blue Paddle Pilsener-Lager, is a Czech style pilsener with a refreshing crispness from noble hops and a rich, malty finish. ‘Blue Paddle’ refers to the implement our warehouse manager’s Grandma once used to lovingly paddle his a** when she caught him stealing sips of her beer. With more body than a traditional Belgian pils, Blue Paddle is reflective of Europe’s finest pilseners."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,52,1
-milwaukee_ale_house-sheepshead_stout,0,0,244861370370,"{""name"":""Sheepshead Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
-de_proef_brouwerij-van_den_vern_grand_cru,0,0,244627406848,"{""name"":""Van den Vern Grand Cru"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-gordash_brewing_company,0,0,244611940352,"{""name"":""Gordash Brewing Company"",""city"":""Fort Lauderdale"",""state"":""Florida"",""code"":""33312"",""country"":""United States"",""phone"":""(954) 261-0668"",""website"":""http://holymackerelbeers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3804 S.W 30th Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":26.0745,""lon"":-80.1806}}",1,12,1
-flagstaff_brewing-agassiz_amber,0,0,244630683648,"{""name"":""Agassiz Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
-victory_brewing-golden_monkey_tripel,0,0,245097955328,"{""name"":""Golden Monkey Tripel"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Strong and sensual, this golden, Belgian-style ale glows with goodness. The richness of German malts and Belgian yeast are tempered by a sparkling approach and overall light body. Considerable depth of character with abundant herbal, fruity notes make this one to savor."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,1,1
-harvest_moon_brewery_cafe-altruistic_american_ale,0,0,244757364738,"{""name"":""Altruistic American Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvest_moon_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-midnight_sun_brewing_co-brewtality_espresso_black_bier,0,0,244861829120,"{""name"":""Brewtality Espresso Black Bier"",""abv"":9.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Assistant Brewer Jeremiah works primarily at Midnight Sun Brewing Company with regular hours at the AK Rock Gym and the occasional shift or two Kaladi Brothers Coffee. To keep up with his weekly work schedule, he enjoys locally roasted coffee in the morning--OK, sometimes in the afternoon as well--and locally brewed beer in the evening-- OK, sometimes in the morning as well. This beer brings two of his worlds together as an incredible antidote for hibernation.""}",1,11,1
-flossmoor_station_brewery-bavarian_helles,0,0,244621049856,"{""name"":""Bavarian Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-flying_dog_brewery-road_dog_ale,0,0,244621574145,"{""name"":""Road Dog Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Blessed by Hunter S. Thompson... Road Dog Porter was our first beer to be illustrated by Ralph Steadman. This is a dark, rich and malty beer, with hints of chocolate and licorice resulting from the use of four prized malts."",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
-jt_whitney_s_brewpub_and_eatery-goldenshine,0,0,244749107200,"{""name"":""Goldenshine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-pyramid_ales_brewery-pyramid_amber_weizen,0,0,244983922689,"{""name"":""Pyramid Amber Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Amber Weizen is left unfiltered for extra flavor and aroma. \r\n\r\nRich amber in color, Pyramid Amber Weizen features three different kinds of caramel barley malts and nugget hops resulting in an exceptionally smooth and well-balanced beer that follows in the tradition of our flagship style, Pyramid Hefe Weizen."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,8,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_amber_ale,0,0,244860321795,"{""name"":""Nøgne Ø Amber Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A rather malty brew, which we think goes very well with cheeses - even well matured blue cheeses. You can also try our Amber paired with a grilled dish. Recommended serving temperature 10°C/50°F."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-middle_ages_brewing-highlander_80,0,0,244863074304,"{""name"":""Highlander 80/-"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Scottish-style brown ale with an attractive dark cherry color; a soft, lightly chewy body and a hint of licorice in its malt character. Rich and dark yet not too strong. 1996 Best Show at the Chicago Real Ale Festival."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,14,1
-kelmer_s_brewhouse-klassic,0,0,244757954560,"{""name"":""Klassic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-sockeye,0,0,245098151936,"{""name"":""Sockeye"",""city"":""Boise"",""state"":""Idaho"",""code"":""83704"",""country"":""United States"",""phone"":""(208) 658-1533"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3019 N Cole Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.6326,""lon"":-116.275}}",1,2,1
-san_marcos_brewery_grill-cinnabarr,0,0,245000896513,"{""name"":""Cinnabarr"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-onopa_brewing,0,0,244880310272,"{""name"":""Onopa Brewing"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0389,""lon"":-87.9065}}",1,56,1
-de_dochter_van_de_korenaar-noblesse,0,0,244627800064,"{""name"":""Noblesse"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_dochter_van_de_korenaar"",""updated"":""2010-07-22 20:00:20"",""description"":""pure malt blond ale with a touch of wheat malt.\r\ngreat hop-aroma due to hop-filtering the hot wort.\r\nbottle-conditioned."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,50,1
-hofbruhaus_traunstein-export_hell,0,0,244741242881,"{""name"":""Export-Hell"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbruhaus_traunstein"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-michigan_brewing-hamtramck,0,0,244872577024,"{""name"":""Hamtramck"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-apricot,0,0,245099331584,"{""name"":""Apricot"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,4,1
-spaten_franziskaner_brau-pils,0,0,245100380161,"{""name"":""Pils"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-maumee_bay_brewing,0,0,244878868481,"{""name"":""Maumee Bay Brewing"",""city"":""Toledo"",""state"":""Ohio"",""code"":""43602"",""country"":""United States"",""phone"":""1-419-243-1302"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""27 Broadway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.6432,""lon"":-83.5384}}",1,54,1
-maumee_bay_brewing-belgian_trippel,0,0,244863860737,"{""name"":""Belgian Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maumee_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-mercury_brewing_company-ipswich_nut_brown,0,0,244863664128,"{""name"":""Ipswich Nut Brown"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, hoppy brown ale, full-bodied with caramel and chocolate malt flavors."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
-north_country_brewery-rock_n_wheat,0,0,244862812161,"{""name"":""Rock-n-Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This unfiltered, true German wheat beer has hints of clove and banana which the yeast produces during fermentation."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,13,1
-stoudt_s_brewery-fat_dog_stout,0,0,245115781123,"{""name"":""Fat Dog Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,41,1
-grand_lake_brewing-plaid_bastard,0,0,244746682368,"{""name"":""Plaid Bastard"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_lake_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,31,1
-kaiser_bru-original_lager,0,0,244749828096,"{""name"":""Original Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiser_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-real_ale_brewing_company-phoenixx_double_esb,0,0,244984446976,"{""name"":""Phoenixx Double ESB"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our winter seasonal is inspired by the great ales of the UK but brewed with a distinctively American attitude. English crystal malt gives Phoenixx its subtle toffee and caramel notes, but this ale is about hops. The blend of English hops, highlighted by its namesake, Phoenix, yields a complex hop character that dominates this special brew."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,9,1
-marin_brewing-eldridge_grade_white_knuckle_ale,0,0,244870414337,"{""name"":""Eldridge Grade White Knuckle Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-delafield_brewhaus-oktoberfest,0,0,244614496256,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,19,1
-de_proef_brouwerij-andelot_mystique,0,0,244614037504,"{""name"":""Andelot Mystique"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-moosejaw_pizza_dells_brewing_company-dunkel_lager,0,0,244868907009,"{""name"":""Dunkel Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-the_blind_bat_brewery_llc-wheatley_hills_weizenbock,0,0,245099921408,"{""name"":""Wheatley Hills Weizenbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty and yeasty, with some sweetness along with hints of cloves and banana. (thanks to the yeast!) \r\n\r\nLow hop bitterness, highly carbonated. Unfiltered, and so a bit cloudy with that magical yeast. \r\n\r\nPairs well with Thai, Szechuan, Mexican, and Caribbean -- und Deutsche Nahrung! (German Food!)"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
-water_street_brewery-porter,0,0,245744533504,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
-lagunitas_brewing_company-lucky_13_anniversary_release,0,0,244756578304,"{""name"":""Lucky 13 Anniversary Release"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,55,1
-nicolet_brewing,0,0,244878409728,"{""name"":""Nicolet Brewing"",""city"":""Florence"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.9222,""lon"":-88.2518}}",1,52,1
-minneapolis_town_hall_brewery-thunderstorm,0,0,244861435904,"{""name"":""Thunderstorm"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our popular summer seasonal brewed with honey, orange, and lemonrass."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,10,1
-de_struise_brouwers-pannepot,0,0,244627472384,"{""name"":""Pannepot"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_struise_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-gottberg_brew_pub-doppelbock_discontinued,0,0,244611940353,"{""name"":""Doppelbock (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
-flying_dog_brewery,0,0,244630683649,"{""name"":""Flying Dog Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80205"",""country"":""United States"",""phone"":""303-292-5027"",""website"":""http://www.flyingdogales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2401 Blake St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7582,""lon"":-104.99}}",1,57,1
-vyturio_alaus_darykla,0,0,245744205824,"{""name"":""vyturio Alaus Darykla"",""city"":""Klaipda"",""state"":"""",""code"":""0"",""country"":""Lithuania"",""phone"":""370-46-484-000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kuli vart 7""]}",1,1,1
-heartland_brewery_union_square-not_tonight_honey_porter,0,0,244757430272,"{""name"":""Not Tonight Honey Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
-midnight_sun_brewing_co-cafe_amsterdam_s_10th_anniversary_gruit,0,0,244861829121,"{""name"":""Cafe Amsterdam's 10th Anniversary Gruit"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""SPECIAL COMMEMORATIVE BEER\r\n\r\nFormer brewer Ken Pajak teamed up with MSBC to create a very special beer to celebrate the 10 years that he and wife Shauna have owned Café Amsterdam. Since taking over this mid-town establishment, the Pajaks added a “beer & wine license” and subsequently transformed the European-style café into a beer-centric place to grab breakfast, lunch, dinner and all beers during, around and between these fabulous meals. \r\n\r\nThe cafe's beer menu is extensive and all-encompassing. The staff is knowledgeable and enthusiastic. And the beer pour is always right— temperature, glass, presentation. \r\n\r\n“No hops were harmed in the brewing of this beer.” \r\n\r\nGruit is an old style—one that incorporates spices, herbs and fruit but no hops. The latter detail makes this style very rare in modern times. Café Amsterdam’s Gruit is dark, strong and interesting. This combination of pale and dark malts, sage, thyme, cinnamon, black peppercorn and fresh orange peel composes distinctive, substantial flavors that meld together wonderfully. And at 12% ABV, this cellar-friendly ale is ready to lay you down! Thoroughly enjoy this old-world beer now but stash some away for later dwelvings. \r\n\r\nAvailability: \r\nAK - 22-oz bottles (limited release begins 05/29/2009)"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,11,1
-flying_dog_brewery-in_heat_wheat,0,0,244621049857,"{""name"":""In-Heat Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In-Heat Wheat Hefeweizen\r\nShe taunts and teases... In-Heat Wheat is our German-style Hefeweizen. She is a full flavor beer, perfect for the more adventurous craft beer drinker. The addition of malted white wheat gives this brew its smooth, full mouthfeel. A proprietary yeast creates intriguing flavors of bananas and cloves."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
-flying_fish_brewing_company-extra_pale_ale,0,0,244621574146,"{""name"":""Extra Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An original American pale ale, our XPA highlights the subtle, sophisticated flavors and aromas of our Midwestern two-row malt and imported aromatic and Munich malts. Washington-grown Mt. Hood and Magnum hops create an extremely balanced beer with a beautiful straw color."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2000,0,0,244749107201,"{""name"":""Harvest Ale 2000"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,37,1
-railway_brewing,0,0,244983988224,"{""name"":""Railway Brewing"",""city"":""Anchorage"",""state"":""Alaska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":61.2181,""lon"":-149.9}}",1,8,1
-odell_brewing-cutthroat_porter,0,0,244860387328,"{""name"":""Cutthroat Porter"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Not quite a stout but definitely no lightweight, Cutthroat Porter is smooth and robust. Inspired by the classic London porters, we use dark roasted malts to create a deep, rich color and flavor that hint at chocolate and coffee. We named it Cutthroat Porter as our tribute to the Colorado state fish - with its own rich heritage and unmistakable dark coloring. And while we're big fans of small batches, here's to the currently threatened Cutthroat population reaching mass quantities."",""style"":""Porter"",""category"":""Irish Ale""}",1,7,1
-midnight_sun_brewing_co-cohoho_imperial_ipa,0,0,244863074305,"{""name"":""CoHoHo Imperial IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""When the loveable \""hopheads\"" at Humpy's Great Alaskan Alehouse requested a winter version of alehouse favorite Sockeye Red IPA, our brewers instinctively spawned CoHoHo Imperial IPA.\r\n\r\nCoHoHo begins with generous measures of pale two-row and specialty malts along with spirit-boosters like maple syrup, brown sugar and honey. Hefty doses of Cascade, Centennial and Simcoe hops beautifully balance that outrageous malt bill and heighten the festive character of this exuberant beer."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,14,1
-klosterbrauerei_neuzelle-porter,0,0,244757954561,"{""name"":""Porter"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
-southern_tier_brewing_co-old_man_winter_ale,0,0,245098151937,"{""name"":""Old Man Winter Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,2,1
-santa_fe_brewing_company-state_pen_porter,0,0,245000896514,"{""name"":""State Pen Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A trademark beer of the Santa Fe Brewing Company’s master brewer, Ty Levis, the State Pen Porter has every reason to be one of his favorites. It is flavorful, swimming with notes of nuts and chocolate; it is drinkable, so drinkable that it is almost as if pint after pint were drinking itself."",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-otto_s_pub_and_brewery-zeno_black_lager,0,0,244880310273,"{""name"":""Zeno Black Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,56,1
-de_proef_brouwerij-saison_imperiale,0,0,244627865600,"{""name"":""Saison Imperiale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-humboldt_brewing-storm_cellar_porter,0,0,244741242882,"{""name"":""Storm Cellar Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
-mickey_finn_s_brewery-old_roundout_pale_ale,0,0,244872577025,"{""name"":""Old Roundout Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
-stone_brewing_co-13th_anniversary_ale,0,0,245099397120,"{""name"":""13th Anniversary Ale"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Stone 13th Anniversary Ale pours brilliant deep red with a light tan foam. Up front, the aroma is all piney, resinous and citrus hops. Upon tasting, the hops are still on the front, and they are balanced with the malty, toffee like flavors contributed from the blend of crystal and amber malts used in the brewhouse. The finish is deliciously bitter, with a touch of warmth provided by the 9.5% alcohol. Bitterness comes in at 90+ IBU."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,4,1
-stoudt_s_brewery-stoudt_s_double_india_pale_ale,0,0,245100445696,"{""name"":""Stoudt's Double India Pale Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Strong, full-bodied ale with an intense hop character and deep golden color"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,6,1
-miller_brewing-icehouse,0,0,244878868482,"{""name"":""Icehouse"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""America's first domestic ice beer, Icehouse is traditionally brewed, fermented and, just before aging, its temperature is lowered to below freezing. This process imparts the beer's smoothness and an alcohol content that's slightly higher (5.5% by volume) than other regular premium beer brands. Icehouse was introduced in 1993 and has reinforced its position as the ultimate beer for wind-up and pre-game occasions. Blending humor and high-energy excitement, Icehouse marketing encourages its target consumers to take occasions to the next level with a great-tasting beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,54,1
-mendocino_brewing_hopland-eye_of_the_hawk,0,0,244863926272,"{""name"":""Eye of the Hawk"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
-middle_ages_brewing-wizard_s_winter_ale,0,0,244863664129,"{""name"":""Wizard's Winter Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A hearty british style strong ale with a deep chestnut color. A warming elixir that's magically delicious."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,15,1
-olde_peninsula_brewpub_and_restaurant-1_2_3_ale,0,0,244862812162,"{""name"":""1,2,3 Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,13,1
-taylor_s_crossing_brewing-baden_powell_cream_ale,0,0,245115846656,"{""name"":""Baden Powell Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
-grand_teton_brewing_1-moose_juice_stout,0,0,244746747904,"{""name"":""Moose Juice Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_teton_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
-kentucky_hemp_beer_company-beer,0,0,244749893632,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kentucky_hemp_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-redfish_new_orleans_brewhouse,0,0,244984446977,"{""name"":""RedFish New Orleans Brewhouse"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80302"",""country"":""United States"",""phone"":""1-303-440-5858"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2027 13th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0187,""lon"":-105.279}}",1,9,1
-maui_brewing_co,0,0,244870479872,"{""name"":""Maui Brewing Co."",""city"":""Lahaina, Maui"",""state"":""Hawaii"",""code"":""96761"",""country"":""United States"",""phone"":""808.669.3474"",""website"":""http://mauibrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Maui Brewing Co., with a brewpub in Kahana and production brewery in Lahaina, has built a reputation for creating handcrafted beers brewed using the finest natural ingredients. We have become one of the area's most popular dining locations and are the island's only microbrewery. Our menu offers a broad selection of fine foods to satisfy any palate."",""address"":[""4405 Honoapiilani Highway #217""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":20.9721,""lon"":-156.677}}",1,33,1
-dick_s_brewing-double_diamond_winter,0,0,244614496257,"{""name"":""Double Diamond Winter"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-denver_chophouse_and_brewery-honey_wheat,0,0,244614103040,"{""name"":""Honey Wheat"",""abv"":4.46,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-new_belgium_brewing,0,0,244868907010,"{""name"":""New Belgium Brewing"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":""80524"",""country"":""United States"",""phone"":""1-888-622-4044"",""website"":""http://www.newbelgium.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We'll set the scene: 1989. Belgium. Boy on bike. (OK, make that a young man of 32). As our aspiring young homebrewer rides his mountain bike with fat tires through European villages famous for beer, New Belgium Brewing Company was but a glimmer in his eye. Or basement. For Jeff Lebesch would return to Fort Collins with a handful of ingredients and an imagination full of recipes. And then there was beer. Jeff's first two basement-brewed creations? A brown dubbel with earthy undertones named Abbey and a remarkably well-balanced amber he named Fat Tire. To say the rest was history would be to overlook his wife's involvement. Kim Jordan was New Belgium's first bottler, sales rep, distributor, marketer and financial planner. And now, she's our CEO."",""address"":[""500 Linden Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5929,""lon"":-105.07}}",1,28,1
-the_cambridge_house-alt,0,0,245099921409,"{""name"":""Alt"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Alt, German for \""old,\"" is a traditional medium-bodied ale in which we use an array of the finest German malts & a generous smount of noble hops to produce a crisp, clean and refreshing \""bier.\"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,5,1
-weyerbacher_brewing_company-bravo,0,0,245744533505,"{""name"":""Bravo"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As for Bravo, according to Head Brewer, Chris Wilson, the base of the beer comes from pale, wheat, and crystal malts and features some roasted barley while Pilgrim and Hallertauer make up the light hop profile."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,3,1
-lanchester_brewing-storm_super_premium_malt_liquor,0,0,244756578305,"{""name"":""Storm Super Premium Malt Liquor"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lanchester_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-oak_creek_brewery,0,0,244878409729,"{""name"":""Oak Creek Brewery"",""city"":""Sedona"",""state"":""Arizona"",""code"":""86336"",""country"":""United States"",""phone"":""928-204-1300"",""website"":""http://oakcreekbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2050 Yavapai Dr""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.8661,""lon"":-111.796}}",1,52,1
-minnesota_brewing,0,0,244861435905,"{""name"":""Minnesota Brewing"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.9442,""lon"":-93.0861}}",1,10,1
-deep_creek_brewing-big_bear_stout,0,0,244627537920,"{""name"":""Big Bear Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deep_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-govnor_s_public_house-2_brothers,0,0,244611940354,"{""name"":""2 Brothers"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
-founders_hill_brewing-maibock,0,0,244630749184,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,57,1
-wdi_bru_huus-blond,0,0,245744271360,"{""name"":""Blond"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-heavenly_daze_brewery_and_grill,0,0,244757430273,"{""name"":""Heavenly Daze Brewery and Grill"",""city"":""Denver"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7392,""lon"":-104.985}}",1,58,1
-midnight_sun_brewing_co-mercury_belgian_style_small_beer,0,0,244861894656,"{""name"":""Mercury - Belgian Style Small Beer"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Messenger of the gods, Mercury symbolizes commerce, travel, thievery, wit and wealth. MERCURY cleverly stole its essence from mistress lover VENUS. Second runnings of the voluptuous quadrupel created this small yet fascinating beer. Indian coriander acknowledges the traveler; a distinct Belgian yeast contributes wit & charm."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,11,1
-four_peaks_brewing-black_betty_schwartzbier,0,0,244621049858,"{""name"":""Black Betty Schwartzbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This almost black lager originates from Germany and is most closely associated with Porter. The difference being the long maturation period (or lagering time) required to produce a true Schwartzbier. The flavor is reminiscent of treacle, coffee and toasted malt. It is not and should not be perceived as burnt or ashy like some stouts. Black Betty has 5% alc/vol and a smooth character that marks most lager beers.\r\n\r\nThe name, of course, comes from the Huddy Ledbetter song from the 1940’s which was made popular by the band Ram Jam and later by the Black Crows and U2, among others."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,34,1
-fort_collins_brewery,0,0,244621639680,"{""name"":""Fort Collins Brewery"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":""80524"",""country"":""United States"",""phone"":""1-970-472-1499"",""website"":""http://www.fortcollinsbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1900-B East Lincoln Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5832,""lon"":-105.042}}",1,35,1
-la_jolla_brew_house-amber,0,0,244749107202,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,37,1
-rch_brewery-old_slug_porter,0,0,244983988225,"{""name"":""Old Slug Porter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rch_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
-ohio_brewing-stout,0,0,244860387329,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-milwaukee_ale_house-belgian_wit,0,0,244863139840,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-kulmbacher_brauerei_ag-eku_28,0,0,244757954562,"{""name"":""EKU 28"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,59,1
-stewart_s_brewing,0,0,245098151938,"{""name"":""Stewart's Brewing"",""city"":""Bear"",""state"":""Delaware"",""code"":""19701"",""country"":""United States"",""phone"":""1-302-836-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""219 Governor's Square""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.6318,""lon"":-75.6628}}",1,2,1
-seabright_brewery-red_nose,0,0,245000962048,"{""name"":""Red Nose"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-oyster_bar_bistro_and_brewery-oyster_stout,0,0,244880310274,"{""name"":""Oyster Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
-delafield_brewhaus-old_27_barleywine,0,0,244627865601,"{""name"":""Old #27 Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-jacob_leinenkugel_brewing_company-1888_bock,0,0,244741308416,"{""name"":""1888 Bock"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1888, After enduring one of the coldest winters on record, the employees of Jacob Leinenkugel's spring brewery crafted their first seasonal beer to celebrate the coming of spring. They blended dark and pale roasted malted barley with select hops and allowed for longer aging to create a robust beer with an exceptionally creamy head. Unchanged since 1888, You'll find our bock's sturdy bod and deep color perfect to draw you out of one season and the into next."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,17,1
-mission_springs_brewing-cream_ale,0,0,244872642560,"{""name"":""Cream Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-stone_brewing_co-2004_symposium_ale,0,0,245099462656,"{""name"":""2004 Symposium Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-sullivan_s_black_forest_brew_haus_grill,0,0,245100445697,"{""name"":""Sullivan's Black Forest Brew Haus & Grill"",""city"":""Frankenmuth"",""state"":""Michigan"",""code"":""48734"",""country"":""United States"",""phone"":""1-800-890-6877"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""281 Heinlein Strasse""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.3152,""lon"":-83.7314}}",1,6,1
-millrose_brewing-prairie_inn_pilsner,0,0,244878934016,"{""name"":""Prairie Inn Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-mercury_brewing_company-ipswich_winter,0,0,244863926273,"{""name"":""Ipswich Winter"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A British style Old Ale perfect for easing the cold winter months, our Winter Ale offers a malt selection with hints of fig and chocolate, creating the perfect cozy balance of hops and malt."",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
-midnight_sun_brewing_co-3767_belgian_style_ipa_with_brett,0,0,244863664130,"{""name"":""3767 Belgian-style IPA with Brett"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The extensive distance between two breweries on the West Coast – 3767 miles – is bridged by this collaboration beer. Brewers Gabe Fletcher of Midnight Sun Brewing Company [Anchorage, AK] and Colby Chandler of Ballast Point Brewing Company [San Diego, CA] designed and brewed an exciting representation of their passions: hops, Belgian yeast, oak aging and Brettanomyces. \r\n\r\nJust prior to the Great Alaska Beer & Barley Wine Fest in JAN 2009, Gabe and Colby brewed a West Coast-worthy IPA at Midnight Sun Brewing Company. This hop-centric beer became the jumping-off point for other intense flavors. During its course to completion, 3767 was affected by three different yeast strains--including Brettanomyces, aged for several months in French oak Cabernet Sauvignon barrels, and then bottle- and keg-conditioned. \r\nThe plan is for 3767 to hit Anchorage, Seattle, Portland, San Francisco and San Diego in NOV 2009 for a West Coast Toast. Here’s to the collaborative spirit readily found in our brewing industry. Clink!"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,15,1
-oskar_blues_grill_and_brew-gubna_imperial_ipa,0,0,244862877696,"{""name"":""Gubna Imperial IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Emphasizing that complexity of character can arise from simple elements, this ale is made with three malts and one hop. Its light amber color and slightly spicy malt character are derived from the use of German Dark Munich Malt and Rye Malt respectively. North American 2-row barley combines with the other grains to lay the foundation for the hop onslaught to come. Summit hops are used exclusively in the boil for bitterness, flavor and aroma but it doesn’t end there. Post-fermentation dry hopping allows the 9.5% ABV monstrosity to gently coax the citrus rind and grapefruit aroma to join the 100 IBUs already present. This beer should greet you with a pungent citrus blast, provide a spicy yet round middle and finish with a brisk, clean bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,13,1
-the_livery-hoppy_chick,0,0,245115846657,"{""name"":""Hoppy Chick"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for mug club member and local jewelry maker, Angie Caldwell. English Maris Otter pale malt, English Crystal malt, and a blend of English and North American hops create this amber, hoppy IPA with just the right balance."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,41,1
-great_dane_pub_and_brewing_1-old_glory_american_pale_ale,0,0,244746747905,"{""name"":""Old Glory American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-kulmbacher_brauerei_ag-kapuziner_weissbier,0,0,244749893633,"{""name"":""Kapuziner Weißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
-revolution_brewing_llc-bottom_up_wit,0,0,244984446978,"{""name"":""Bottom Up Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Light, refreshing belgian-style wheat beer spiced with coriander and orange peel"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,9,1
-middle_ages_brewing-middle_ages_apricot_ale,0,0,244870479873,"{""name"":""Middle Ages Apricot Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing and delightful ale with the subtle flavor and aroma of apricots. A wonderful change from the ordinary. This is not a sweet fruit beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,33,1
-dixon_s_downtown_grill-solitaire_stout,0,0,244614561792,"{""name"":""Solitaire Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
-egan_brewing-cheap_koln,0,0,244614103041,"{""name"":""Cheap Köln"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-new_holland_brewing_company-existential,0,0,244868972544,"{""name"":""Existential"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Consider it an extremely hoppy barleywine, or a really big IPA. Either way, ten hop additions contribute to its lush and intriguing body. Aggressive dry-hopping brings a strong citrus character to the aroma. The flavor and smell of orange-blossoms pervade throughout the experience."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,28,1
-the_livery-bluejackets_best,0,0,245099921410,"{""name"":""Bluejackets Best"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a single malt-English pale, and single hop-English Fuggles, India Pale Ale with a rich golden color and spicy finish. Named for brewery supporters John and Cindy Bundick, with reference to John's service on a submarine."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,5,1
-wharf_rat-oliver_pagan_porter,0,0,245744664576,"{""name"":""Oliver Pagan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wharf_rat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
-legends_brewhouse_eatery_of_green_bay-wheat,0,0,244756643840,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legends_brewhouse_eatery_of_green_bay"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-oldenberg_brewery-premium_verum,0,0,244878409730,"{""name"":""Premium Verum"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oldenberg_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-mission_springs_brewing-india_pale_ale,0,0,244861435906,"{""name"":""India Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-dinkelacker_schwaben_bru-das_schwarze_dark,0,0,244627603456,"{""name"":""Das Schwarze / Dark"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dinkelacker_schwaben_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-govnor_s_public_house-pale_ale,0,0,244738752512,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
-fox_river_brewing_1-winnebago_wheat,0,0,244630749185,"{""name"":""Winnebago Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,57,1
-weinkeller_brewery_berwyn-berliner_weisse,0,0,245744271361,"{""name"":""Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-hoffbrau_steaks_brewery_1-shawnee_amber_ale,0,0,244757430274,"{""name"":""Shawnee Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-midnight_sun_brewing_co-obliteration_iii,0,0,244861894657,"{""name"":""Obliteration III"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\r\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration III is yet another dynamic Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration III finishes with poignant bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,11,1
-fratellos_restaurant_and_brewery,0,0,244621115392,"{""name"":""Fratellos Restaurant and Brewery"",""city"":""Appleton"",""state"":""Wisconsin"",""code"":""54915"",""country"":""United States"",""phone"":""1-920-991-0000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4301 West Wisconsin""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2678,""lon"":-88.4731}}",1,34,1
-gilde_brauerei-ratskeller,0,0,244621639681,"{""name"":""Ratskeller"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gilde_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-lake_superior_brewing-old_man_winter_warmer_2001,0,0,244749107203,"{""name"":""Old Man Winter Warmer 2001"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-rivertowne_pour_house-old_wylie_s_ipa,0,0,244983988226,"{""name"":""Old Wylie's IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""In honor of our friend and mascot, Wylie the fish, we are hooking you up with an aggressively hopped India Pale, the staple for any fishing trip! This beer is a hop lover’s dream!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
-old_hat_brewery-caramel_rye,0,0,244860387330,"{""name"":""Caramel Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
-milwaukee_ale_house-duggie_meyer_wee_heavy,0,0,244863139841,"{""name"":""Duggie Meyer Wee Heavy"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,14,1
-kulmbacher_brauerei_ag-monchshof_kellerbrau,0,0,244757954563,"{""name"":""Mönchshof Kellerbräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-stone_brewing_co-imperial_stout_2001,0,0,245098151939,"{""name"":""Imperial Stout 2001"",""abv"":9.47,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,2,1
-sierra_nevada_brewing_co-southern_hemisphere_harvest_fresh_hop_ale,0,0,245000962049,"{""name"":""Southern Hemisphere Harvest Fresh Hop Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our newest addition to our Harvest family is Southern Hemisphere Harvest. This is the first time we know of that an American brewer has put out a beer with fresh-picked hops from the southern hemisphere. The inaugural ale will debut in late April and will feature fresh Pacific Hallertau, New Zealand Motueka and New Zealand Southern Cross hops, all from New Zealand. \r\n\r\nLike our Celebration Ale, the fresh hops in this beer are dried right after being picked then shipped immediately to Chico for brewing so that they retain their peak aromatics and flavors. To ensure the freshest hops possible, we went to the added expense of flying these hops from New Zealand to Chico so we could brew with them the week after they were picked."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-pivovar_nchod,0,0,245004173312,"{""name"":""Pivovar Nchod"",""city"":""Nchod"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-491-407-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dobroovsk 130""]}",1,56,1
-erie_brewing_company-drake_s_crude,0,0,244627931136,"{""name"":""Drake's Crude"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1859 Col. Edwin L. Drake successfully drilled the first oil well in Northwest Pennsylvania. Because of the project known as \""Drake's Folly,\"" Pennsylvania was actually responsible for almost half of the world's oil production until the 1901 oil boom in Texas. Erie Brewing Co. reflects on our regions oil history and oil rush by producing a crude oil Black, silky smooth, malt bonanza oatmeal stout."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,50,1
-labatt_ontario_breweries-labatt_50,0,0,244741308417,"{""name"":""Labatt 50"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""John and Hugh Labatt, grandsons of founder John K. Labatt, launched Labatt 50 in 1950 to commemorate 50 years of partnership. The first light-tasting ale introduced in Canada, Labatt 50 was Canada’s best-selling beer until 1979 when, with the increasing popularity of lagers, it was surpassed by Labatt Blue. Labatt 50 is fermented using a special ale yeast, in use at Labatt since 1933. Specially-selected North American hops and a good balance of dryness, complemented by a fruity taste, provide Labatt 50 with all the distinguishing features of a true ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-moon_river_brewing_company-savannah_fest,0,0,244872642561,"{""name"":""Savannah Fest"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This German-style Festival bier has a rich orange hue. Its medium body is complemented by a Munich malt toastiness and premium German hops which are a blend of Hallertau, Spalt, Hersbruck and Saaz, yielding a spicy, \""noble hop\"" aroma."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,39,1
-stone_brewing_co-vertical_epic_04_04_04,0,0,245099462657,"{""name"":""Vertical Epic 04.04.04"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
-the_bruery,0,0,245100511232,"{""name"":""The Bruery"",""city"":""Placentia"",""state"":""California"",""code"":""92870"",""country"":""United States"",""phone"":""714-996-6258"",""website"":""http://www.thebruery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We are A small craft brewery located in Orange County, California. Our simple but often confusing name is a fusion of 'brewery' with our family name, Rue. Our calling is to create beers with character and depth using the simplest and purest of means. We do not filter or pasteurize our beers. All of our bottled beers gain carbonation through 100% bottle conditioning, allowing carbonation to naturally occur through a secondary bottle fermentation. We strive to use unconventional ingredients, and we will proudly state what we put in our beers. We enjoy serving you, your friends and your family."",""address"":[""715 Dunn Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.8614,""lon"":-117.88}}",1,6,1
-milwaukee_ale_house-dark_belgian_wit,0,0,244878934017,"{""name"":""Dark Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-midnight_sun_brewing_co,0,0,244863991808,"{""name"":""Midnight Sun Brewing Co."",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99507"",""country"":""United States"",""phone"":""1-907-344-1179"",""website"":""http://www.midnightsunbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Since firing up its brew kettle in 1995, Midnight Sun Brewing Company has become a serious yet creative force on the American brewing front. From concept to glass, Midnight Sun relies on an art marries science approach, mixing tradition with innovation, to design and craft bold, distinctive beers for Alaska...and beyond. We at Midnight Sun find inspiration in the untamed spirit and rugged beauty of the Last Frontier and develop unique beers with equally appealing names and labels. But the company's true focus remains in its dedication to producing consistently high-quality beers that provide satisfying refreshment in all seasons... for Alaskans and visitors alike. From our Pacific Northwest locale, we offer our wonderful beers on draft throughout Alaska and in 22-ounce bottles throughout Alaska and Oregon. We invite you to visit our hardworking, little brewery in South Anchorage every chance you get!"",""address"":[""8111 Dimond Hook Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":61.1473,""lon"":-149.844}}",1,16,1
-midnight_sun_brewing_co-anchor_witbier_with_brettanomyces,0,0,244863729664,"{""name"":""Anchor Witbier with Brettanomyces"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian witbier begins with equal parts malted wheat and pale barley to create its traditional cloudy white appearance. The addition of Brettanomyces gives ANCHOR its trademark \""green apple\"" or \""horse blanket\"" aroma and lends tartness to the flavor and finish. At over 6% ABV, this ANCHOR's got a bit of more kick than most wits."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,15,1
-panther_brewing_company-ziggy_socky_premium_lager_beer,0,0,244985757696,"{""name"":""Ziggy Socky Premium Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""panther_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-the_livery-paris_roubaix_pale_ale,0,0,245115912192,"{""name"":""Paris-Roubaix Pale Ale"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after one of the longest running bicycle races in France and aptly nicknamed \""The Hell Of The North\"", the Paris-Roubaix has been held every April since 1915. This Pale Ale is brewed with Belgian and German malts and bittered with 3 different American hops for a pleasing balance."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-half_moon_bay_brewing-harbor_light_ale,0,0,244746747906,"{""name"":""Harbor Light Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-lakefront_brewery-broke_spoke_pilsner,0,0,244749959168,"{""name"":""Broke Spoke Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-rock_bottom_restaurant_brewery_minneapolis-heifer_weizen,0,0,244984512512,"{""name"":""Heifer-Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,9,1
-midnight_sun_brewing_co-obliteration_iv,0,0,244870545408,"{""name"":""Obliteration IV"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\r\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration IV is a tremendous Double Wheat beer. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. An even malt-to-wheat ratio provides a sturdy yet satisfying base for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. An American wheat beer yeast allows Obliteration IV to finish with unadulterated hop bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,33,1
-double_mountain_brewery_taproom-hop_lava,0,0,244614561793,"{""name"":""Hop Lava"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""This big, glowing, powerful IPA is packed with assertive Northwest hops that are floral, citrusy and resinous. A healthy dose of Munich malt helps to provide backbone and balance against the hoppy attack. The result? Explosive!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-f_x_matt_brewing-saranac_belgian_ale,0,0,244614103042,"{""name"":""Saranac Belgian Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Belgian Ale is Deliciously Fruity. It is brewed with a generous amount of Belgian Aromatic Malt, Hand selected hops, and a traditional Belgian ale yeast. Brewed in the \""Trappist Style\""."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,18,1
-niagara_falls_brewing-saaz_pilsner,0,0,244868972545,"{""name"":""Saaz Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-the_livery-verchuosity,0,0,245099986944,"{""name"":""Verchuosity"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewmaster Steve took his Belgian Amber Ale and re-fermented it in a merlot cask with 100# of sweet Michigan cherries from Husteds Farm Market. He than moved the resulting beer into another cask with 30# of tart cherries. 5 fermentations due to wild yeast and 9 months later, we have our version of a Belgian Kriek. Named after our good friend and musician, April Verch."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,5,1
-yakima_brewing_and_malting_grant_s_ales-spiced_ale,0,0,245744664577,"{""name"":""Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
-magic_hat-roxy_rolles,0,0,244879196160,"{""name"":""Roxy Rolles"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A wintry amber ode to the open road. Our wintry amber ramble of sweet carmelized malt and spicy hops is for those who make their own roads. Dry hopped with simcoe hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
-pacific_rim_brewing-blacktop_porter,0,0,245002272768,"{""name"":""Blacktop Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,52,1
-molson_breweries_of_canada-ice,0,0,244861435907,"{""name"":""Ice"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-dragonmead_microbrewery,0,0,244627603457,"{""name"":""Dragonmead Microbrewery"",""city"":""Warren"",""state"":""Michigan"",""code"":""48089"",""country"":""United States"",""phone"":""1-586-776-9428"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14600 East Eleven Mile Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.493,""lon"":-82.9753}}",1,49,1
-great_dane_pub_and_brewing_1-drop_anchor_steam,0,0,244738818048,"{""name"":""Drop Anchor Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-goose_island_beer_company_clybourn-oktoberfest,0,0,244630749186,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,57,1
-wernesgruner_brauerei,0,0,245744271362,"{""name"":""Wernesgrüner Brauerei"",""city"":""Steinberg/Sachsen"",""state"":""Sachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)37462-/-61-0"",""website"":""http://www.wernesgruener.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""founded 1436"",""address"":[""Bergstrae 4""]}",1,1,1
-hoffbrau_steaks_brewery_2-oktoberfest,0,0,244757495808,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,58,1
-midnight_sun_brewing_co-the_viking_belgian_style_dark_strong_ale,0,0,244861894658,"{""name"":""The Viking Belgian-style Dark Strong Ale"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""SPECIAL COMMEMORATIVE BEER\r\n\r\nTo commemorate the life of a huge-hearted and long-time friend from the homebrewing community, Midnight Sun Brewing Company brewed a very special beer in honor of David Yanoshek, who was fondly known as “Yano”. \r\n\r\nThis big strong beer celebrates the abundant life of an incredible man with an enormous yet ever engaging laugh. Yano pursued life with a Viking spirit, endless love and boundless energy for family, friends, scouts…and beer. \r\n\r\nA big strong beer for a big strong guy, The Viking Belgian-style Dark Strong Ale boasts a beautiful balance of character and complexity. Dark roasted malts, Belgian yeast, star anise and sweet-ripened raisins come together in an amazing ale that can be enjoyed now and cellared for later celebrations. \r\n\r\nAs you lock horns with this commemorative ale, toast to Yano. With his incredibly stoic spirit and his irrepressible laugh, Yano was the gentle giant who will forever touch our lives. Pröst! \r\n\r\nAll proceeds from sales of this beer will be donated to the Yanoshek family.\r\n\r\nAvailability: \r\nAK - 22-oz bottles (limited release begins 09/12/2008)"",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,11,1
-free_state_brewing-ad_astra_ale,0,0,244621115393,"{""name"":""Ad Astra Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""free_state_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
-gray_brewing-black_and_tan,0,0,244748124160,"{""name"":""Black and Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
-lancaster_brewing_co-spring_bock,0,0,244749172736,"{""name"":""Spring Bock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional German style lager. Characterized by a deep copper color and rich malt flavor. Balanced with German hops.\r\n\r\nAvailable at the Brewery and in bottles & cases from March - May."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-route_66_brewery,0,0,244984053760,"{""name"":""Route 66 Brewery"",""city"":""Saint Louis"",""state"":""Missouri"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.647,""lon"":-90.225}}",1,8,1
-otto_s_pub_and_brewery-arthur_s_mild_ale,0,0,244860387331,"{""name"":""Arthur's Mild Ale"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A British-style mild ale. Milds are a common ale type in England where session ales are lower in alcohol but not low on flavor. Ours has a strong malt backbone and is very quaffable."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,7,1
-montana_brewing,0,0,244863139842,"{""name"":""Montana Brewing"",""city"":""Billings"",""state"":""Montana"",""code"":""59101"",""country"":""United States"",""phone"":""1-406-252-9200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Montana Brewing Company...small brewery...BIG BEER!"",""address"":[""113 North Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7822,""lon"":-108.506}}",1,14,1
-lake_louie_brewing,0,0,244757954564,"{""name"":""Lake Louie Brewing"",""city"":""Arena"",""state"":""Wisconsin"",""code"":""53503"",""country"":""United States"",""phone"":""1-608-753-2675"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7556 Pine Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.1706,""lon"":-89.9324}}",1,59,1
-stout_brothers_public_house-stronghold_pilsner,0,0,245098217472,"{""name"":""Stronghold Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-six_rivers_brewery,0,0,245001027584,"{""name"":""Six Rivers Brewery"",""city"":""McKinleyville"",""state"":""California"",""code"":""95519"",""country"":""United States"",""phone"":""1-707-839-7580"",""website"":""http://www.sixriversbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1300 Central Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.9491,""lon"":-124.102}}",1,48,1
-pleasanton_main_street_brewery-atta_boy_ipa,0,0,245004238848,"{""name"":""Atta Boy IPA"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
-fifty_fifty_brewing_co-foggy_goggle_belgian_white,0,0,244627931137,"{""name"":""Foggy Goggle Belgian White"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""FiftyFifty's \""Wit\"" beer, Foggy Goggle is a Belgian Style Wheat Beer, cousin of the German Hefeweizen. An unfiltered beer, Foggy Goggle is brewed true to style, using a yeast strain that originated in Belgium, with just a hint of orange peel, lemon peel, and chamomile. The appearance is an opaque yellow with a wonderfully fluffy head. The predominant aroma is citrus with a hint of coriander, and a unique spicy note. With citrus playing a big part of the flavor, Foggy Goggle is a very refreshing choice."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,50,1
-lagunitas_brewing_company-imperial_stout,0,0,244741373952,"{""name"":""Imperial Stout"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
-moosejaw_pizza_dells_brewing_company-north_of_the_border_porter,0,0,244872642562,"{""name"":""North of the Border Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
-stoney_creek_brewing_company-double_chocolate_porter,0,0,245099528192,"{""name"":""Double Chocolate Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoney_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,4,1
-the_narragansett_brewing_company-narragansett_lager,0,0,245100511233,"{""name"":""Narragansett Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_narragansett_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Made on Honor, sold on Merit. Flavorful lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
-minocqua_brewing_company-firestarter_smoked_lager,0,0,244878999552,"{""name"":""Firestarter Smoked Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-north_coast_brewing_company-acme_california_pale_ale,0,0,244863991809,"{""name"":""Acme California Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This easy-drinking Pale Ale revives the name of one of the early icons of California brewing. Clean-tasting and pleasantly malty, Acme Pale is brewed with Yakima Valley hops, American two-row malt and British specialty malts for depth."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
-milagro_brewery_and_grill,0,0,244863729665,"{""name"":""Milagro Brewery and Grill"",""city"":""Bernalillo"",""state"":""New Mexico"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.3,""lon"":-106.551}}",1,15,1
-pelican_pub_brewery-doryman_s_dark_ale,0,0,244985823232,"{""name"":""Doryman's Dark Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pelican_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American Brown Ale has a dark brown color, with a balanced aroma of roasted malts and Northwest-grown hops. The sweetness of the ale and crystal malts blend beautifully with the assertive flavors of Cascade and Mt. Hood hops. A brew to be savored.\r\n\r\nThis beer originated as a prize-winning homebrew many years ago. When Darron, the Head Brewer, began designing the beers for the Pelican Pub and Brewery, he adapted his old 5 gallon homebrew recipe to his new 15 bbl (465 gallon) brewery. It was well worth the effort, for not only has the Doryman's Dark Ale been a perennial favorite here at the Pelican Pub, but it has garnered prestigious professional awards."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,13,1
-the_round_barn_winery_brewery-round_barn_winter_wheat,0,0,245115912193,"{""name"":""Round Barn Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Winter Wheat is a rich, brown beer with hints of caramel and citrus creating a warming yet refreshing winter beer. Enjoy with Cajun or spicy cuisine. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.""}",1,41,1
-harpoon_brewery_boston-harpoon_ale,0,0,244746813440,"{""name"":""Harpoon Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""From Harpoon's site:\r\n\r\n\""When first seeing Harpoon Ale in a glass, you will notice its golden caramel color. You will also see that it is not excessively carbonated. High carbonation would mask this beer’s subtle flavor. The first aroma will be fruity. This is produced by the yeast and is a signature characteristic of Harpoon’s proprietary yeast strain. The second perceptible aroma is from the malt, with a delicate caramel note. Upon tasting Harpoon Ale, you will find that the malty, fruity character is nicely balanced by the mild hop bitterness. It has a smooth, medium body. The finish of this beer is crisp but not dry.\r\n\r\n\r\nThe overall character of this beer is fruity, balanced, and mild.\"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-left_hand_brewing_company-left_hand_milk_stout,0,0,244749959169,"{""name"":""Left Hand Milk Stout"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Sweet Stout"",""category"":""British Ale""}",1,38,1
-sa_brain_co_ltd,0,0,244984512513,"{""name"":""SA Brain & Co. Ltd."",""city"":""Cardiff"",""state"":""Wales"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(02920)-402060"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Crawshay Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.4736,""lon"":-3.179}}",1,9,1
-midnight_sun_brewing_co-specialty_beer_oak_aged_black_double_ipa,0,0,244870545409,"{""name"":""Specialty Beer: Oak-Aged Black Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This Specialty Beer Black Double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \""Specialty Beer\"" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale. Then this ale was aged in oak barrels for several month""}",1,33,1
-dreher_srgyrak_zrt,0,0,244614627328,"{""name"":""Dreher Srgyrak Zrt."",""city"":""Budapest"",""state"":"""",""code"":"""",""country"":""Hungary"",""phone"":""36-1-432-9700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Jszbernyi t 7-11""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.4921,""lon"":19.1422}}",1,19,1
-firehouse_brewing-firehouse_red,0,0,244614168576,"{""name"":""Firehouse Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-north_coast_brewing_company-old_stock_ale_2001,0,0,244868972546,"{""name"":""Old Stock Ale 2001"",""abv"":11.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,28,1
-the_livery-yorkshire_brown,0,0,245099986945,"{""name"":""Yorkshire Brown"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the style of Northern England, this brown ale is dark and rich, with just a hint of chocolate malt and East Kent Golding hops in the finish.""}",1,5,1
-yards_brewing-yards_india_pale_ale,0,0,245744730112,"{""name"":""Yards India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""IPAs were originally brewed to survive the epic sea voyages from England to India. Ours is no different. Hailing from a firm malt background and loaded through and through with hops, this beer will surely survive the journey from your fridge to your couch."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
-mammoth_brewing,0,0,244879261696,"{""name"":""Mammoth Brewing"",""city"":""Mammoth Lakes"",""state"":""California"",""code"":""93546"",""country"":""United States"",""phone"":""1-760-934-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""24 Lake Mary Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.6484,""lon"":-118.983}}",1,55,1
-philadelphia_brewing_co-rowhouse_red,0,0,245002338304,"{""name"":""Rowhouse Red"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From our city of neighborhoods we offer you this \""Biére de Mars,\"" or ruby farmhouse ale. In true Philadelphia fashion, we meld American and European ingredients into a complex ale with flavors of toasted malt and rye. Rowhouse Red is the perfect accompaniment for some quality time in the backyard garden (or on the front stoop) of your urban farmhouse."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,52,1
-new_belgium_brewing-la_folie_falling_rock,0,0,244861501440,"{""name"":""La Folie Falling Rock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-emerson_brewing-old_95,0,0,244627603458,"{""name"":""Old 95"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emerson_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,49,1
-great_dane_pub_and_brewing_1-pro_tel_memorial_malt_liquor,0,0,244738818049,"{""name"":""Pro-Tel Memorial Malt Liquor"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-gottberg_brew_pub-eighty_shilling_scottish_ale_80,0,0,244630814720,"{""name"":""Eighty-Shilling Scottish Ale (80/-)"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-wild_river_brewing_and_pizza_cave_junction,0,0,245744336896,"{""name"":""Wild River Brewing and Pizza - Cave Junction"",""city"":""Cave Junction"",""state"":""Oregon"",""code"":""97523"",""country"":""United States"",""phone"":""1-541-592-3556"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""249 North Redwood Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1707,""lon"":-123.645}}",1,1,1
-holsten_brauerei-duckstein_alt,0,0,244757495809,"{""name"":""Duckstein Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""holsten_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
-morland_and_co,0,0,244861960192,"{""name"":""Morland and Co."",""city"":""Abingdon"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.6701,""lon"":-1.285}}",1,11,1
-gasthaus_brauerei_max_moritz-spezial,0,0,244621115394,"{""name"":""Spezial"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_brauerei_max_moritz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-great_dane_pub_and_brewing_2-crop_circle_wheat,0,0,244748124161,"{""name"":""Crop Circle Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,35,1
-lighthouse_brewing-beacon_india_pale_ale,0,0,244749172737,"{""name"":""Beacon India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lighthouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-routh_street_brewery_and_grille-brown,0,0,244984053761,"{""name"":""Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
-pabst_brewing_company-colt_45,0,0,244860452864,"{""name"":""Colt 45"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""For over 4 decades, Colt 45 Premium Malt Liquor has been the \""class of all malt liquor brands\"". With its smooth and distinct flavor and historic affiliation with Billy Dee Williams, it has become an urban American icon. If you're looking for a thick 40, or an ice cold shorty, Colt 45 is the malt liquor that works EVERYTIME!""}",1,7,1
-moonlight_brewing-twist_of_fate_bitter,0,0,244863205376,"{""name"":""Twist of Fate Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-left_hand_brewing_company-goosinator_smoked_doppelbock_2007,0,0,244758020096,"{""name"":""Goosinator Smoked Doppelbock 2007"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-stuttgarter_hofbru-malteser_weissbier,0,0,245098217473,"{""name"":""Malteser Weissbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stuttgarter_hofbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
-south_county_brewing_co-south_county_american_ale,0,0,245118468096,"{""name"":""South County American Ale"",""abv"":6.33,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_county_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This American style amber ale will be our opening release and house beer for SCBC. AmericAle is smooth and diverse all in one shot. With a medium malt body and fresh hop aroma we hope you enjoy drinking it as much as we do making it."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
-porterhouse_restaurant_and_brewpub-special_ale,0,0,245004304384,"{""name"":""Special Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
-flossmoor_station_brewery-chessie_cherry,0,0,244627931138,"{""name"":""Chessie Cherry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
-lancaster_brewing_co-lancaster_oktoberfest,0,0,244741373953,"{""name"":""Lancaster Oktoberfest"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This smooth brew ushers in Autumn with an invitingly tawny color complemented by an assertive maltiness. A noble crispness from German and Czech hops completes this very traditional lager-style beer, Available from August to November.\r\n\r\nAvailable at the Brewery and in bottles & cases from September - December."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,17,1
-new_albanian_brewing,0,0,244872708096,"{""name"":""New Albanian Brewing"",""city"":""New Albany"",""state"":""Indiana"",""code"":""47150"",""country"":""United States"",""phone"":""1-812-949-2804"",""website"":""http://www.newalbanian.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Brewery was officially brewing in October 2002 and was incorporated in 1994 as the New Albanian Brewing Company in a room that branches off of Sportstime Pizza. The brewery established by Roger Baylor his wife Amy (O'Connell) Baylor and her sister Kate O'Connel. This is the first commercial brewery in New Albany since 1935. The first brewmaster was Michael Borchers which brought with him experience and used machines from the now defunct Silver Creek Brewing Corporation that was located in Sellersburg, Indiana. Jared Williamson and Jesse Williams are the current brewers working the brewery. In 2005, 14,000 gallons of beer was produced by the brewery, and with the new additions, the planned output for 2007 is double the 2005 amount."",""address"":[""3312 Plaza Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.3281,""lon"":-85.8171}}",1,39,1
-taylor_brewing-prime_i_p_a,0,0,245099528193,"{""name"":""Prime I.P.A."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
-trailhead_brewing_company-red_amber_ale,0,0,245100511234,"{""name"":""Red Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
-minocqua_brewing_company-wild_rice_lager,0,0,244878999553,"{""name"":""Wild Rice Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This unique, award-winning lager combines the smoothness of traditional barley with the warm, nutty flavor of wild rice. Truly an original brew!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-oaken_barrel_brewing-meridian_street_premium_lager,0,0,244863991810,"{""name"":""Meridian Street Premium Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-nebraska_brewing_company-belgian_wit,0,0,244863729666,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-penn_brewery-penn_gold,0,0,244985823233,"{""name"":""Penn Gold"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nationally acclaimed as the best Munich-style beer made in America. Penn Gold is a light-colored, medium bodied lager beer with a delicate hop aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-thirstybear_brewing,0,0,245115912194,"{""name"":""ThirstyBear Brewing"",""city"":""San Francisco"",""state"":""California"",""code"":""94105"",""country"":""United States"",""phone"":""1-415-974-0905"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""661 Howard Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7855,""lon"":-122.4}}",1,41,1
-hawks_brewing-imperial_gold_malt_liquor,0,0,244746813441,"{""name"":""Imperial Gold Malt Liquor"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-legacy_brewing_co-brown_aged_girl,0,0,244749959170,"{""name"":""Brown Aged Girl"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Altbier is brewed in the classic German-style brown ale tradition. The “alt” translates to \""old\"" in German and is one of the original ale types brewed in Germany. Brown Aled Girl is dark brown in color, medium in carbonation with a great balance between malt and hops."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,38,1
-samuel_smith_old_brewery_tadcaster-oatmeal_stout,0,0,244984578048,"{""name"":""Oatmeal Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
-namaqua_brewing,0,0,244870545410,"{""name"":""Namaqua Brewing"",""city"":""Loveland"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.3978,""lon"":-105.075}}",1,33,1
-east_end_brewing_company-big_hop_ipa,0,0,244614627329,"{""name"":""Big Hop IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-fort_collins_brewery-z_lager,0,0,244614168577,"{""name"":""Z Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fort_collins_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A unique flavored lager that goes well with any food. A slight aromatic smoke flavor-but not over-powering. A very popular beer with its own following wondering where's YOUR Z?"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-north_coast_brewing_company-wintertime_ale_1992,0,0,244869038080,"{""name"":""Wintertime Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,28,1
-top_of_the_hill_restaurant_and_brewery,0,0,245100052480,"{""name"":""Top of the Hill Restaurant and Brewery"",""city"":""Chapel Hill"",""state"":""North Carolina"",""code"":""27514"",""country"":""United States"",""phone"":""1-919-929-8676"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""101 East Franklin Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.9132,""lon"":-79.0558}}",1,5,1
-marin_brewing-i_p_a,0,0,244879327232,"{""name"":""I.P.A."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-pivovar_klter_hradit,0,0,245002403840,"{""name"":""Pivovar Klter Hradit"",""city"":""Klter Hradit nad Jizerou"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-329-774-421"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""CZ-294 15 Klter Hradit nad Jizerou""]}",1,52,1
-new_glarus_brewing_company-snowshoe_ale,0,0,244861501441,"{""name"":""Snowshoe Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
-fauerbach_brewing_company-fauerbach_amber_lager,0,0,244627668992,"{""name"":""Fauerbach Amber Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fauerbach_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-greene_king-st_edmund_english_ale,0,0,244738883584,"{""name"":""St. Edmund English Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-govnor_s_public_house-celtic_cream_ale,0,0,244630814721,"{""name"":""Celtic Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
-youngs_company_brewery-ramrod_special_bitter_ale,0,0,245744336897,"{""name"":""Ramrod Special Bitter Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
-jaipur_restaurant_and_brewpub-porter,0,0,244757495810,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jaipur_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
-mountain_sun_pub_brewery,0,0,244861960193,"{""name"":""Mountain Sun Pub & Brewery"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80302"",""country"":""United States"",""phone"":""1-303-546-0886"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1535 Pearl Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.019,""lon"":-105.275}}",1,11,1
-gasthaus_gosebrauerei_bayerischer_bahnhof,0,0,244621180928,"{""name"":""Gasthaus & Gosebrauerei Bayerischer Bahnhof"",""city"":""Leipzig"",""state"":""Sachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)341-/-1245760"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bayerischer Platz 1""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.3397,""lon"":12.3714}}",1,34,1
-gulpener_bierbrouwerij,0,0,244748189696,"{""name"":""Gulpener Bierbrouwerij"",""city"":""Gulpen"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-043-4507575"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rijksweg 16""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8109,""lon"":5.9213}}",1,35,1
-live_oak_brewing-big_bark_amber_lager,0,0,244871659520,"{""name"":""Big Bark Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Smooth\"" is the first word from your mouth after a taste of Big Bark Amber. This Vienna-style lager has a reddish-amber color with a smooth, malty flavor and low hop bitterness. It is made from Czech and German malts and German hops. \""All Bark, No Bite.\"" Everyone likes this beer."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-rowland_s_calumet_brewery-calumet_dark,0,0,244984053762,"{""name"":""Calumet Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
-pacific_rim_brewing-fauntleroy_stout,0,0,244983136256,"{""name"":""Fauntleroy Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-mythos_breweries_s_a-mythos_hellenic_lager,0,0,244863205377,"{""name"":""Mythos Hellenic Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mythos_breweries_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-logjam_microbrewery,0,0,244881096704,"{""name"":""Logjam Microbrewery"",""city"":""Unity"",""state"":""Wisconsin"",""code"":""54488"",""country"":""United States"",""phone"":""715-223-4336"",""website"":""http://www.logjambeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally started in Tomahawk, WI. LogJam Microbrewery is under new ownership and located in Unity, WI at Monster World campground."",""address"":[""B-4864 Cty Rd F""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8516,""lon"":-90.3165}}",1,59,1
-sullivan_s_black_forest_brew_haus_grill-marzen,0,0,245098283008,"{""name"":""Marzen"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""The name says it all, you want German this is it."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-sports_city_cafe_brewery-pale_ale,0,0,245118533632,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-richbrau_brewing_company-richbrau_barleywine,0,0,245004304385,"{""name"":""Richbrau Barleywine"",""abv"":12.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty, rich, complex with a notable hops balance. Aged for 90 days. For optimal taste allow the beer to warm on your table or from the heat of your hand around the glass. ½ pints only. 12.3 abv! Offered downstairs at the Taphouse or Pub Bar/ Dining Room only."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,56,1
-flying_bison_brewing-blackbird_oatmeal_stout,0,0,244627996672,"{""name"":""Blackbird Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, dark and malty ale with plenty of roasted barley flavor. Blackbird has a silky smooth oatmeal finish. It is one of our NEW flagship's and is now available year round."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,50,1
-liberty_steakhouse_and_brewery-liberty_nut_brown_ale,0,0,244741373954,"{""name"":""Liberty Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Styled after an English classic, this beer is brewed with American flair. Hearty brown in color and full-bodied, this beer has a distinct chocolate-malt finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
-nor_wester_brewery_and_public_house-blacksmith_porter,0,0,244872708097,"{""name"":""Blacksmith Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
-the_alchemist-holy_cow_ipa,0,0,245099528194,"{""name"":""Holy Cow IPA"",""abv"":5.16,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""For hops lovers - this bitter ale is pale colored and made with a blend of 6 different malts and 5 different hops. This ale is dry-hopped for extra flavor and aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
-triple_rock_brewery-amber,0,0,245100576768,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triple_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
-new_glarus_brewing_company-coffee_stout,0,0,244878999554,"{""name"":""Coffee Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
-onion_pub_brewery,0,0,244864057344,"{""name"":""Onion Pub & Brewery"",""city"":""Lake Barrington"",""state"":""Illinois"",""code"":""60010"",""country"":""United States"",""phone"":""1-847-381-7308"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""22221 Pepper Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1865,""lon"":-88.1835}}",1,16,1
-north_country_brewery-stone_house_stout,0,0,244863795200,"{""name"":""Stone House Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust, hearty stout is as sturdy as its namesake. Roasted barley is the trademark of stout, a bittersweet separation from its cousin Porter. The deep character of roasted barley is further enhanced by the addition of oatmeal for an incredible silky finish."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,15,1
-pivovar_velk_popovice,0,0,244985823234,"{""name"":""Pivovar Velk Popovice"",""city"":""Velk Popovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-204/623-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ringhofferova 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.9225,""lon"":14.6361}}",1,13,1
-thunderhead_brewery-porter,0,0,245115912195,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
-heartland_brewery_union_square-harvest_wheat_beer,0,0,244746878976,"{""name"":""Harvest Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-legacy_brewing_co-hoptimus_prime,0,0,244750024704,"{""name"":""Hoptimus Prime"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,38,1
-sharktooth_brewing-hula_girl_pale_ale,0,0,244984578049,"{""name"":""Hula Girl Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-new_road_brewhouse,0,0,244870545411,"{""name"":""New Road Brewhouse"",""city"":""Collegeville"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.1857,""lon"":-75.4516}}",1,33,1
-emmett_s_tavern_and_brewery,0,0,244614692864,"{""name"":""Emmett's Tavern and Brewery"",""city"":""West Dundee"",""state"":""Illinois"",""code"":""60118"",""country"":""United States"",""phone"":""1-847-428-4500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""128 West Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.0981,""lon"":-88.2783}}",1,19,1
-founders_brewing-cerise,0,0,244614234112,"{""name"":""Cerise"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,18,1
-o_grady_s_brewery_and_pub_1-stockyard_stout,0,0,244869038081,"{""name"":""Stockyard Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,28,1
-triumph_brewing_of_princeton,0,0,245100052481,"{""name"":""Triumph Brewing of Princeton"",""city"":""Princeton"",""state"":""New Jersey"",""code"":""8542"",""country"":""United States"",""phone"":""1-609-924-7855"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""138 Nassau Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3507,""lon"":-74.6583}}",1,5,1
-mickey_finn_s_brewery-abana_amber_ale,0,0,244879327233,"{""name"":""Abana Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
-pyramid_alehouse_brewery_and_restaurant_seattle-dpa,0,0,245002403841,"{""name"":""DPA"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
-on_tap_bistro_brewery,0,0,244861501442,"{""name"":""On Tap Bistro & Brewery"",""city"":""San Diego"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7153,""lon"":-117.157}}",1,10,1
-fish_brewing_company_fish_tail_brewpub-detonator_doppelbock,0,0,244627668993,"{""name"":""Detonator Doppelbock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,49,1
-grizzly_bay_brewing-stout,0,0,244738883585,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-grand_lake_brewing,0,0,244756905984,"{""name"":""Grand Lake Brewing"",""city"":""Grand Lake"",""state"":""Colorado"",""code"":""80447"",""country"":""United States"",""phone"":""1-970-627-1711"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""915 Grand Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2518,""lon"":-105.82}}",1,57,1
-youngs_company_brewery,0,0,245744336898,"{""name"":""Youngs & Company Brewery"",""city"":""London"",""state"":"""",""code"":""SW18 1NH"",""country"":""England"",""phone"":""020 8875 7000"",""website"":""http://www.youngs.co.uk"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""26 Osiers Road"",""Wandsworth""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4611,""lon"":-0.1966}}",1,1,1
-john_harvard_s_brew_house_framingham,0,0,244757561344,"{""name"":""John Harvard's Brew House - Framingham"",""city"":""Framingham"",""state"":""Massachusetts"",""code"":""1701"",""country"":""United States"",""phone"":""1-508-875-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Worcester Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3037,""lon"":-71.3966}}",1,58,1
-new_glarus_brewing_company,0,0,244861960194,"{""name"":""New Glarus Brewing Company"",""city"":""New Glarus"",""state"":""Wisconsin"",""code"":""53574"",""country"":""United States"",""phone"":""608-527-5850"",""website"":""http://www.newglarusbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The brewery is run by an enthusiastic couple, Daniel & Deb Carey, who have successfully combined business management and brewing professionalism. Our philosophy is based on individuality, cooperation and the employment of 100% natural ingredients to produce world -class, handcrafted beers for our friends in Wisconsin. Cheers!* *From the New Glarus Brewing web site"",""address"":[""2400 State Highway 69""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.8171,""lon"":-89.6306}}",1,11,1
-glen_ellyn_sports_brew-nut_brown,0,0,244621180929,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
-half_pints_brewing_company-little_scrapper_ipa,0,0,244748189697,"{""name"":""Little Scrapper IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_pints_brewing_company"",""updated"":""2010-12-13 19:33:36"",""description"":""To admit that the brewer at Half Pints is a bit of a hophead is an understatement. This India Pale Ale is unabashedly hoppy, not only from the Amarillo hops we add to the brew kettle, but also from the northwest U.S. variety called Cascade that we add directly to the final tank. A firm toasted malt presence forms the background for all of these hops, and we're confident our Little Scrapper IPA could take other so-called IPA's to the mat if called upon to do so. Try it with a curry or a basket of beer battered fish & chips. Serve in a glass at 8 degrees celcius. Unpasturized."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
-manayunk_brewery_and_restaurant-krooks_mill,0,0,244871725056,"{""name"":""Krooks Mill"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""A well-balanced, hoppy American style pale ale with a generous usage of Caramel and Crystal malts. This beer is amber in color and is finished\r\nwith fresh Cascade, Columbus and Mt. Hood hops from the Pacific Northwest for a wonderful floral aroma. World Beer Cup Bronze Medal winner and a Perennial favorite here at the Brewery. Also available in bottles to go."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-russell_brewing-pale_ale,0,0,244984119296,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
-palmetto_brewing-pale_ale,0,0,244983201792,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""palmetto_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-mythos_breweries_s_a,0,0,244863205378,"{""name"":""Mythos Breweries S.A."",""city"":"""",""state"":""Sindos"",""code"":""570 22"",""country"":""Greece"",""phone"":"""",""website"":""http://www.mythosbrewery.gr/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Industrial Area, Thessaloniki""]}",1,14,1
-lowenbrau_brauerei-triumphator,0,0,244881096705,"{""name"":""Triumphator"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,59,1
-sullivan_s_black_forest_brew_haus_grill-strong_arm_ale,0,0,245098283009,"{""name"":""Strong Arm Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Just like our Porter but multiplied by 10.""}",1,2,1
-sprecher_brewing-sprecher_maibock,0,0,245118599168,"{""name"":""Sprecher Maibock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pale malt flavors are balanced with a rich hop character and a light fruit bouquet in this seasonal spring lager. Traditional dry-hopping and extended aging give this blonde bock a distinctive flowery aroma and a potent kick."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,48,1
-rock_art_brewery,0,0,245004369920,"{""name"":""Rock Art Brewery"",""city"":""Morrisville"",""state"":""Vermont"",""code"":""5661"",""country"":""United States"",""phone"":""(802) 888-9400"",""website"":""http://www.rockartbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Rock Art Brewery was born in the mountains of Vermont, inspired by the spirit of Kokopelli and guided by the beers of the world."",""address"":[""254 Wilkins Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5693,""lon"":-72.6034}}",1,56,1
-flying_bison_brewing-blizzard_bock,0,0,244627996673,"{""name"":""Blizzard Bock"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Although it’s named after our most famous weather event, this beer has nothing in common with the harsh bite of winter. In fact it’s smooth slightly chocolaty flavor helps you forget Jack Frost altogether. German pale and Munich malts form the base flavors with hints of chocolate and caramel. Very soft, floral German hops ease the finish into dryness. Available on draft and in bottles from November to March."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
-live_oak_brewing-live_oak_hefeweizen,0,0,244864057344,"{""name"":""Live Oak Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Modeled after the classic wheat beers of Bavaria, our HefeWeizen has a cloudy, straw-colored appearance with a thick, creamy head. It is fermented with an authentic Weizenbier yeast strain which imparts delicate notes of clove, vanilla and banana which harmonize perfectly with its mild refreshing tartness. Together these flavors create the perfect thirst quencher to beat the Texas heat. Available April - August"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,17,1
-north_country_brewery-paleo_ipa,0,0,244872708098,"{""name"":""Paleo IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The discovery of the true I.P.A. (India Pale Ale) made right here in Slippery Rock. The British added hops to oak barrels to help preserve the beer for its long voyage to British-controlled India. Brewed in this same English tradition, we dry-hopped our ale, giving the beer a very aromatic quality as it travels to your mug."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
-thunderhead_brewery-cream_ale,0,0,245099528195,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
-troegs_brewing-scratch_12_2008,0,0,245100576769,"{""name"":""Scratch #12 2008"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In our never-ending pursuit of answering the burning question of what’s new, we present Scratch #12-2008, an IPA.\r\n \r\nThe IPA is a fickle beast; too much malt and you veer into a high-octane hopbomb, while too little hops can question a beer’s virility. In these chaotic days of shrinking hop harvests, balance is key to a proper IPA. Scratch #12-2008 delivers an intense pine nose married with a subtle wildflower aroma. The Thames Valley yeast adds an earthy nod to traditional English IPAs, while the American hops provide a bold contrasting bitterness.\r\n \r\nBreath deep, relax, enjoy."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,6,1
-nodding_head_brewpub-robust_porter,0,0,244879065088,"{""name"":""Robust Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-sun_fest,0,0,244987002880,"{""name"":""Sun Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-oakham_ales,0,0,244863795201,"{""name"":""Oakham Ales"",""city"":""Peterborough"",""state"":""Cambridge"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01733)-358300"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""80 Westgate""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.5758,""lon"":-0.248}}",1,15,1
-prairie_rock_brewing_elgin,0,0,244985888768,"{""name"":""Prairie Rock Brewing - Elgin"",""city"":""Elgin"",""state"":""Illinois"",""code"":""60120"",""country"":""United States"",""phone"":""1-847-622-8888"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""127 South Grove Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.0347,""lon"":-88.2819}}",1,13,1
-titletown_brewing-bridge_out_stout,0,0,245115977728,"{""name"":""Bridge Out Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
-james_page_brewing-burly_brown_ale,0,0,244746878977,"{""name"":""Burly Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""james_page_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
-margaritaville_brewing_company-landshark_lager,0,0,244871921664,"{""name"":""Landshark Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""margaritaville_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,38,1
-south_shore_brewery-nut_brown_ale,0,0,245101690880,"{""name"":""Nut Brown Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
-north_coast_brewing_company-brother_thelonious,0,0,244870610944,"{""name"":""Brother Thelonious"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-endehouse_brewery_and_restaurant,0,0,244614692865,"{""name"":""EndeHouse Brewery and Restaurant"",""city"":""Reedsburg"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.5325,""lon"":-90.0026}}",1,19,1
-four_peaks_brewing-american_style_brown_ale,0,0,244614234113,"{""name"":""American-Style Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Leroy's BIG Brother. Sweet floral hop aroma balances out the big malty roasted body with the slightest bitter spiced-chocolate finish. A very untraditional hopping technique gives this beer a unique character significantly more robust than our traditional Leroy Brown Ale. The beer weighs in at 5.0% alc./vol. Cheers!!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,18,1
-o_hara_s_brewpub_and_restaurant-pantown_pale_ale,0,0,244869038082,"{""name"":""Pantown Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_hara_s_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-troegs_brewing-scratch_6_2007,0,0,245100118016,"{""name"":""Scratch #6 2007"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Old world brewing techniques combine with Noble hops for Scratch #6-2007.\r\nThis Export Lager features a single stage decoction—a first for Tröegs Brewery. After combining barley and water we transfer a portion of the mash to the brew kettle for a quick boil. The heated mash is then returned to the mash kettle and the brewing process continues. This process deepens the malt character and adds a subtle toffee backbone to this delicious lager.\r\n\r\nWe’ve added Magnum hops for bittering and Czech Saaz hops for aroma to create a classic European Noble hop flavor. \r\n\r\nScratch #6-2007 is unfiltered, so there will be a slight haze to the beer."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-middle_ages_brewing-beast_bitter,0,0,244879392768,"{""name"":""Beast Bitter"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This special bitter displays the subtle coppery hue of \""Old Gold\"". It's depth of lingering hop flavor awakens the palate."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,55,1
-randy_s_fun_hunters_brewery_restaurant_and_banquet_center-oatmeal_stout,0,0,245002403842,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
-pacific_coast_brewing,0,0,244984643584,"{""name"":""Pacific Coast Brewing"",""city"":""Oakland"",""state"":""California"",""code"":""94607"",""country"":""United States"",""phone"":""1-510-836-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""906 Washington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.8016,""lon"":-122.274}}",1,10,1
-flagstaff_brewing,0,0,244627668994,"{""name"":""Flagstaff Brewing"",""city"":""Flagstaff"",""state"":""Arizona"",""code"":""86001"",""country"":""United States"",""phone"":""1-520-773-1442"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 East Route 66""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.1973,""lon"":-111.648}}",1,49,1
-hale_s_ales_3,0,0,244738949120,"{""name"":""Hale's Ales #3"",""city"":""Seattle"",""state"":""Washington"",""code"":""98107"",""country"":""United States"",""phone"":""1-206-706-1544"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4301 Leary Way NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6592,""lon"":-122.366}}",1,12,1
-great_dane_pub_and_brewing_1-wooden_ships_esb,0,0,244756971520,"{""name"":""Wooden Ships ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-john_harvard_s_brewhouse_wilmington-light_lager,0,0,244757561345,"{""name"":""Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-nogne_o_det_kompromisslose_bryggeri_a_s-havre_stout,0,0,244862025728,"{""name"":""Havre Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""We usually do not make compromises, but this is probably the exception. Norwegians are dead scared of dark beers. This is an attempt to show that there are gentle dark ales. As such Havre Stout is smooth and drinkable."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,11,1
-golden_gate_park_brewery,0,0,244621180930,"{""name"":""Golden Gate Park Brewery"",""city"":""San Francisco"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.7749,""lon"":-122.419}}",1,34,1
-harmon_brewing_company-pinnacle_peak_pale_ale,0,0,244748255232,"{""name"":""Pinnacle Peak Pale Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a light bodied mildly hoppy ale brewed with a 2-row malted barley, Crystal, and a special Vienna malted barley. Golding and Cascade hops are used to provide the balanced palate for this fine session beer. 4.2% ABV"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-manayunk_brewery_and_restaurant,0,0,244871725057,"{""name"":""Manayunk Brewery and Restaurant"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19127"",""country"":""United States"",""phone"":""1-215-482-8220"",""website"":""http://www.manayunkbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4120 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0236,""lon"":-75.2202}}",1,37,1
-san_miguel_corporation,0,0,244984119297,"{""name"":""San Miguel Corporation"",""city"":""Manila"",""state"":"""",""code"":"""",""country"":""Philippines"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 271""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":14.5833,""lon"":120.967}}",1,8,1
-pike_pub_and_brewery-oatmeal_stout,0,0,244983201793,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-nebraska_brewing_company-irish_red,0,0,244863270912,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-martini_brauerei-weissbier_hell,0,0,244881162240,"{""name"":""Weissbier Hell"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,59,1
-sullivan_s_black_forest_brew_haus_grill-woody_s_light,0,0,245098348544,"{""name"":""Woody's Light"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Our take on the classic light golden ale, with crisp refreshing flavors."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
-stieglbrauerei_zu_salzburg_gmbh-columbus_bock,0,0,245118664704,"{""name"":""Columbus Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,48,1
-rock_bottom_restaurant_brewery_san_jose,0,0,245004369921,"{""name"":""Rock Bottom Restaurant & Brewery - San Jose"",""city"":""Campbell"",""state"":""California"",""code"":""95008"",""country"":""United States"",""phone"":""1-408-377-0707"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1875 South Bascom Avenue #700""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2886,""lon"":-121.933}}",1,56,1
-foothills_brewing_company-sexual_chocolate,0,0,244627996674,"{""name"":""Sexual Chocolate"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""foothills_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,50,1
-magic_hat-odd_notion_winter_08,0,0,244864057345,"{""name"":""Odd Notion Winter 08"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-northwoods_brewpub_grill-half_moon_gold,0,0,244872773632,"{""name"":""Half Moon Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-traffic_jam_and_snug-gold_rush_ale,0,0,245099593728,"{""name"":""Gold Rush Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traffic_jam_and_snug"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
-tropical_beverage_international_co_ltd,0,0,245100642304,"{""name"":""Tropical Beverage (International) Co., Ltd"",""city"":""Bangkok"",""state"":"""",""code"":"""",""country"":""Thailand"",""phone"":"""",""website"":""http://www.tropbevco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""35 Soi Prommit, Sukumvit 39""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":13.7234,""lon"":100.476}}",1,6,1
-nor_wester_brewery_and_public_house-honey_weizen,0,0,244879065089,"{""name"":""Honey Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-pyramid_ales_brewery-curve_ball,0,0,244987002881,"{""name"":""Curve Ball"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by the traditional Kölsch style beers of Cologne, Germany, Curve Ball boasts a clean, crisp slightly herbal taste and a lighter body. With its sporty packaging and refreshing taste, Curve Ball is the perfect accompaniment to summer grilling and ballpark outings. Try swingin' at it on a hot summer day!""}",1,16,1
-old_hat_brewery-hefeweizen,0,0,244863795202,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
-rogue_ales-double_dead_guy_ale,0,0,244985888769,"{""name"":""Double Dead Guy Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,13,1
-tivoli_brewing-bitter_amber,0,0,245115977729,"{""name"":""Bitter Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tivoli_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
-jasper_ridge_brewery-jasper_lyte,0,0,244746944512,"{""name"":""Jasper Lyte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-marshall_brewing_company-atlas_ipa,0,0,244871987200,"{""name"":""Atlas IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marshall_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-sports_city_cafe_brewery,0,0,245101756416,"{""name"":""Sports City Cafe & Brewery"",""city"":""La Jolla"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.8575,""lon"":-117.876}}",1,9,1
-on_tap_bistro_brewery-steamroller_stout,0,0,244870610945,"{""name"":""Steamroller Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,33,1
-f_x_matt_brewing-saranac_hefeweizen,0,0,244614692866,"{""name"":""Saranac Hefeweizen"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional style German Wheat beer (pronounced) Hah-fuh-vite-zen) remains unfiltered to preserve it's natural smooth flavor and aroma. Don't be alarmed by its cloudy appearance or noticeable sediment. The slight banana and clove aroma comes from the authentic German Hefeweizen yeast. It has a light refreshing finish."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,19,1
-golden_prairie_brewing,0,0,244614234114,"{""name"":""Golden Prairie Brewing"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60647"",""country"":""United States"",""phone"":""1-773-862-0106"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2536 North Elston Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.9273,""lon"":-87.6807}}",1,18,1
-pabst_brewing_company-pabst_blue_ribbon_light,0,0,244869103616,"{""name"":""Pabst Blue Ribbon Light"",""abv"":4.19,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \""Select,\"" but people started asking for that \""Blue Ribbon\"" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \""Blue Ribbon\"" to the bottle in 1895.\r\n\r\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \""Export\"" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\r\n\r\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,28,1
-tunner_s_guild_brewing_systems-piedmont_porter,0,0,245100183552,"{""name"":""Piedmont Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
-miller_brewing-mickey_s_ice,0,0,244879392769,"{""name"":""Mickey's Ice"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,55,1
-red_kettle_brewing-amber,0,0,245002469376,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_kettle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,52,1
-paper_city_brewing_company-holyoke_dam_ale,0,0,244984709120,"{""name"":""Holyoke Dam Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paper_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-flying_dog_brewery-double_dog_double_pale_ale,0,0,244627668995,"{""name"":""Double Dog Double Pale Ale"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Back by popular demand, our original \""Wild Dog Release\"" is back, and this time it's for good. Double Dog Double Pale Ale is a generously hopped ale with a deep red color and pours with a nice frothy head. The abundance of hops will conjure some provocative aromas with hints of raisins and citrus."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,49,1
-hannen_brauerei,0,0,244738949121,"{""name"":""Hannen Brauerei"",""city"":""Mnchengladbach"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.1913,""lon"":6.4421}}",1,12,1
-grizzly_bay_brewing,0,0,244756971521,"{""name"":""Grizzly Bay Brewing"",""city"":""Suisun City"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.2382,""lon"":-122.04}}",1,57,1
-lagunitas_brewing_company-maximus,0,0,244757626880,"{""name"":""Maximus"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
-north_coast_brewing_company-acme_california_brown_ale,0,0,244862025729,"{""name"":""Acme California Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
-gottberg_brew_pub-dsb_dusters_special_bitter,0,0,244621246464,"{""name"":""DSB / Dusters Special Bitter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-hoppers_seafood_grill,0,0,244748255233,"{""name"":""Hoppers Seafood & Grill"",""city"":""Midvale"",""state"":""Utah"",""code"":""84047"",""country"":""United States"",""phone"":""1-801-566-0424"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""890 East Fort Union Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6215,""lon"":-111.866}}",1,35,1
-martini_brauerei-meister_pilsener,0,0,244871790592,"{""name"":""Meister Pilsener"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-schlossbru-naturtrubes,0,0,244984119298,"{""name"":""Naturtrubes"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-pokka_beer_works-beer_works_ale_golden,0,0,244983267328,"{""name"":""Beer Works Ale Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pokka_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-new_century_brewing_company,0,0,244863270913,"{""name"":""New Century Brewing Company"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2117"",""country"":""United States"",""phone"":""1-781-963-4007"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 1498""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.3587,""lon"":-71.0574}}",1,14,1
-maui_brewing_co-big_swell_ipa,0,0,244881227776,"{""name"":""Big Swell IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maui_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ale was developed in Burton, England, as a \""Super-Premium\"" hoppy pale ale around 1800. The extra strength in alcohol and hops helped preserve the beer on its long export journeys to India and beyond. The style developed a following worldwide. Its flavor begins with a smooth, malty creaminess followed with a big burst of dry-hop flavor from English Kent Golding Hops. It then finishes with a lingering yet pleasant bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-taylor_brewing-very_pale_ale,0,0,245098348545,"{""name"":""Very Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
-summit_brewing-winter_ale,0,0,245118664705,"{""name"":""Winter Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,48,1
-roffey_brewery-lake_effect_stout,0,0,245004369922,"{""name"":""Lake Effect Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roffey_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
-gatz_brauhaus-pils,0,0,244628062208,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gatz_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-marble_brewery-marble_india_pale_ale,0,0,244864122880,"{""name"":""Marble India Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marble_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Congratulations! By drinking Marble Brewery India Pale Ale, you show exceptionally good taste. Our obsession with quality and attention to detail ensures that every bottle will meet your high expectations. The Columbus, Amarillo and Centennial hops lend a fragrant citrus aroma and snappy hop character. We think you will agree that this is one rock solid beer."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
-odell_brewing-easy_street_wheat,0,0,244872773633,"{""name"":""Easy Street Wheat"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Light and refreshing, Easy Street Wheat is an unfiltered American-style wheat beer. Leaving in the yeast gives the beer a nice, smooth finish and a slightly citrusy flavor. Easy Street Wheat gets its name by brewers \""taking it easy\"" and not filtering the beer. However, for ultimate enjoyment, we encourage you to work just a little harder in pouring it: just pour 2/3 of the beer into a glass, swirl what's left to stir up the yeast, then pour the rest and enjoy."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,39,1
-unibroue-raftman,0,0,245099593729,"{""name"":""Raftman"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Launched in March 1995, Raftman is a beer with a coral sheen that is slightly robust. It contains 5.5 percent alcohol and combines the character of whisky malt with the smooth flavours of choice yeast. It has a subtle and exceptional bouquet that creates a persistent smooth feel. Raftman complements fish, smoked meat and spicy dishes. .\r\n\r\nIt is brewed to commemorate the legendary courage of the forest workers These hard working men knew when to settle their differences and share their joie de vivre with a beer and a whisky."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
-twisted_pine_brewing_company-pearl_street_porter,0,0,245100707840,"{""name"":""Pearl Street Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twisted_pine_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Baltic Porter made to celebrate Boulder's 150th anniversary. Available for the entirety of 2009."",""style"":""Porter"",""category"":""Irish Ale""}",1,6,1
-north_coast_brewing_company-old_stock_ale_2004,0,0,244879065090,"{""name"":""Old Stock Ale 2004"",""abv"":11.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,54,1
-red_lodge_ales-glacier_ale,0,0,244987002882,"{""name"":""Glacier Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_lodge_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
-orlio_organic-orlio_seasonal_black_lager,0,0,244863860736,"{""name"":""Orlio Seasonal Black Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlio_organic"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich medium-bodied black lager whose sweet deep malt flavor is balanced by a moderate hop bite and roasted malt tartness that creates notes of bitter chocolate and a slight lingering sweetness."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,15,1
-rogue_ales-imperial_red,0,0,244985888770,"{""name"":""Imperial Red"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Red is the newest addition to Rogues award winning Imperial Family of XS products. The Imperial Red recipe originates from Rogues Eugene City Brewery and is being produced in Newport for distribution (note, initially during 2007 in kegs only to JLS accounts. A 750-ml ceramic swing-top bottle and 13.2 gallon kegs will be available in 2008.) Imperial Red has already garnered international acclaim and awards, including a Bronze Medal at the 2006 Great American Beer Festiva and recently it was named Grand Champion at the US Beer Tasting Championships! \r\n\r\nDeep copper chestnut color with toffee, brown sugar, nuts, and spice amomas. A rich supple entry leads to an off-dry medium body of tangy raisins and citrus marmalade, bittersweet chocolate, and mild spice flavors. It finishes with a long nutty, fruity fade. \r\n\r\nImperial Red is brewed with Crystal, Chocolate, Munich and two-row Pale Malts; Palisade and Aroma Crystal hops, Pacman Yeast, and Free Range Coastal Waters."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,13,1
-tongerlo-tongerlo_tripple,0,0,245115977730,"{""name"":""Tongerlo Tripple"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""Blond beer with a fruity and hoppy aroma and a balanced flavour with a slightly bitter aftertaste."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,41,1
-jolly_pumpkin_artisan_ales,0,0,244746944513,"{""name"":""Jolly Pumpkin Artisan Ales"",""city"":""Dexter"",""state"":""Michigan"",""code"":""48130"",""country"":""United States"",""phone"":""1-734-426-4962"",""website"":""http://www.jollypumpkin.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Welcome to a land of open fermentation, oak barrel aging, and bottle conditioning. At Jolly Pumpkin Artisan Ales we are dedicated to more than the traditions of old world craftsmanship. Everything we do is designed to create ales of outstanding art and flavor. Focusing on traditional rustic country style beers brought to life through labor and love, we strive to create beers to lighten the spirit, and soothe the soul. Sharing our joy to the betterment of mankind is the most that we could hope for."",""address"":[""3115 Broad Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3375,""lon"":-83.8895}}",1,31,1
-mcmenamins_mill_creek-golden,0,0,244872052736,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-steamworks_brewing_durango,0,0,245101821952,"{""name"":""Steamworks Brewing - Durango"",""city"":""Durango"",""state"":""Colorado"",""code"":""81301"",""country"":""United States"",""phone"":""1-970-259-9200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""801 East Second Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2724,""lon"":-107.88}}",1,9,1
-otto_s_pub_and_brewery-mt_nittany_pale_ale,0,0,244870676480,"{""name"":""Mt. Nittany Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American pale ale brewed with Centennial hops and hopbacked with Cascade, it's a real refresher that has a spicy, citrus aroma and a slightly nutty malt flavor. ABV 5.0%"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-faultline_brewing_2-kolsch,0,0,244614692867,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-goose_island_beer_company_clybourn-american_pale_ale,0,0,244614299648,"{""name"":""American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-pacific_rim_brewing-alki_ale,0,0,244992049152,"{""name"":""Alki Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-utah_brewers_cooperative-wasatch_1st_amendment_lager,0,0,245100183553,"{""name"":""Wasatch 1st Amendment Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""utah_brewers_cooperative"",""updated"":""2010-07-22 20:00:20"",""description"":""A turn of the century pure malt, crisp lager. 1st Amendment Lager is made with European style hops and Munich malts. This beer has a wonderful, clean, crisp flavor certain to please all."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
-molson_breweries_of_canada-rickard_s_pale_ale,0,0,244879458304,"{""name"":""Rickard's Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
-red_star_brewery_grille,0,0,245002469377,"{""name"":""Red Star Brewery & Grille"",""city"":""Greensburg"",""state"":""Pennsylvania"",""code"":""15601"",""country"":""United States"",""phone"":""724.850.7245"",""website"":""http://www.redstarbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Red Star Brewery & Grille opened for business October 19th, 1998. We had only five beers on tap, the Golden Light, American Pale, English Brown, Irish Dry Stout, and a Seasonal brew."",""address"":[""101 Ehalt St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3044,""lon"":-79.5471}}",1,52,1
-penn_brewery-penn_marzen,0,0,244984774656,"{""name"":""Penn Marzen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A spring fest beer that is amber in color, Penn Märzen has full flavor and body. Highly rated by the National Beverage Tasting Institure.""}",1,10,1
-founders_brewing-founders_breakfast_stout,0,0,244627734528,"{""name"":""Founders Breakfast Stout"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""You've got to love coffee to truly appreciate this phenomenal brew. Brewed with an abundance of flaked oats, bitter and sweetened imported chocolates, Sumatra and Kona coffee. Breakfast Stout has an intense fresh roasted coffee nose toped with a cinnamon colored frothy head that seems to never fade and makes you wish breakfast could last forever."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,49,1
-harvey_son_lewes-a_lecoq_imperial_extra_double_stout_2000,0,0,244738949122,"{""name"":""A. LeCoq Imperial Extra Double Stout 2000"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-grupo_modelo-pacifico_clara,0,0,244757037056,"{""name"":""Pacífico Clara"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
-left_hand_brewing_company-pole_star_pilsner,0,0,244757626881,"{""name"":""Pole Star Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-oyster_bar_bistro_and_brewery-stock_ale_2,0,0,244862025730,"{""name"":""Stock Ale #2"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,11,1
-great_dane_pub_and_brewing_2-verruckte_stadt_pilsner,0,0,244747796480,"{""name"":""Verrückte Stadt Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-joboy_s_brew_pub-joboy_s_cream_ale,0,0,244748320768,"{""name"":""JoBoy's Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A crisp, clean, easy drinking, refreshing American ale with a light body."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,35,1
-minneapolis_town_hall_brewery-wpa_wheat_pale_ale,0,0,244871790593,"{""name"":""WPA (Wheat Pale Ale)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-seabright_brewery-leroy_barleywine,0,0,244984184832,"{""name"":""Leroy Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-port_brewing_company-red_square,0,0,244983267329,"{""name"":""Red Square"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-north_coast_brewing_company-pranqster_belgian_ale,0,0,244863270914,"{""name"":""PranQster Belgian Ale"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pranqster\r\nBelgian Style Golden Ale\r\n\r\nBelgian Ales represent the height of the brewers' art. Sophisticated brewing techniques, yeast blends and unique flavoring elements have elevated the beers of Belgium to the status enjoyed by wine in other countries.\r\n\r\nPranQster follows in this tradition using a mixed culture of antique yeast strains that produce a floral nose, a full fruity flavor and a clean finish.\r\n\r\nAvailable in 12oz 4 packs and 750 ml traditionally corked and wired bottles.\r\n\r\nVital Statistics\r\nStyle: Belgian Style\r\n Golden Ale\r\nColor: Soft Gold\r\nABV: 7.6%\r\nBitterness: 20 IBU's\r\n\r\n-http://www.northcoastbrewing.com/beer-Pranqster.htm""}",1,14,1
-mendocino_brewing_hopland-peregrine_pale_ale,0,0,244881227777,"{""name"":""Peregrine Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-thirstybear_brewing-valencia_wheat,0,0,245098348546,"{""name"":""Valencia Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-tabernash_brewing-oktoberfest,0,0,245118730240,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
-rogue_ales-brutal_bitter,0,0,245004435456,"{""name"":""Brutal Bitter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An imperial bitter style using exotic traditional floor malts, citrus hoppy flavor, stupendous hop aroma. Hedonistic!\""Mellow Beer Emboldened by Hops,\"" Elaine Louies article in the New York TimesDining Out Section, (March 24, 1999) announced the release of latest Rogue elixir to be bottled. The article states that \""The newest beer of Rogue Ales sounds more aggressive than it is. Brutal Bitter is actually full-bodied, deeply flavored, intensely hoppy brew. There is nothing brutal about the rich, deep, mellow taste. Its crackling but not sharp... This beer may raise eyebrows, but it wont pucker lips. The aftertaste is clean.\""\r\n\r\nRogue brewer John Maier describes his Brutal Bitter as a cross between a Very Extra Special Bitter and an Indian Pale Ale. Brutal Bitter was first brewed in 1996 for the 20th Anniversary of the Horse Brass Pub in Portland. Customer demand prompted Rogue to continue brewing Brutal for the Horse Brass as well as using it as Rogues premier pour at the 1998 Oregon Brewers Festival. At the 1999 SpringFest in Portland, Oregon, Brutal Bitter was unscientifically voted the Peoples Choice--it received twice as many votes as the runner-up.\r\n\r\nBrutal combines Oregon hops with English Malts. The Oregon grown Crystal hop is a triploid variety developed from the German Hallertau aroma hop variety with contributions from Cascade, Brewers Gold, and Early Green. Crystal is the only hop used in brewing Brutal and it provides a massive amount of aroma without dry-hopping. The English malts used are floor malted Pipkin (a mellow cross of Maris Otter and Warboys, from an English company called Beeston), Cara Vienna and Cara Wheat. Brutal Bitter is packaged in Rogues classic 22 ounce silk-screened bottle, 12-ounce 6-pack (new for 2005), and is available on draft."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,56,1
-golden_pacific_brewing-golden_bear_lager,0,0,244628062209,"{""name"":""Golden Bear Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-midnight_sun_brewing_co-arctic_devil_barley_wine,0,0,244864122881,"{""name"":""Arctic Devil Barley Wine"",""abv"":13.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Arctic Devil Barley Wine, aptly named after the ferocious wolverine of the north, is an English-style (meaning malt-inclined) barley wine. Though the recipe and process for Arctic Devil have evolved over the years, it is typically brewed in January then aged in oak barrels for several months before the entire batch is blended, bottled and released on the Friday after Thanksgiving. \r\n\r\nIn its youth, Arctic Devil gnarls and snarls its way across the palate. Containing this beast of a beer for long periods in oak barrels--some having previously aged port, wine or whiskey--tames the unleashed malt and fierce hop flavors, melding and mellowing this powerful liquid into an incredible elixir worthy of a brewer's table. \r\n\r\nEach annual batch of Arctic Devil Barley Wine represents the brewers' resolve to create an intriguing and sought-after barley wine by precisely brewing to well-designed specifications, carefully selecting the type and combination of barrels to use for aging, and meticulously checking the beer as it ages. Distinct nuance and complexity are contributed by the wood's previous tenants, resulting in unique flavor profiles in each batch that continue to change over time. We invite you to savor Arctic Devil Barley Wine upon its release then cellar some for future enjoyment. \r\n\r\nMidnight Sun's elusive Arctic Devil Barley Wine is Alaska's most awarded barley wine.""}",1,17,1
-old_hat_brewery-depot_pils,0,0,244872839168,"{""name"":""Depot Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-united_breweries_limited-kingfisher_premium,0,0,245099659264,"{""name"":""Kingfisher Premium"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""united_breweries_limited"",""updated"":""2011-01-09 14:50:37"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
-unionsbru_haidhausen-helles_naturtrub,0,0,245100707841,"{""name"":""Helles Naturtrub"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unionsbru_haidhausen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-oggi_s_pizza_and_brewing_vista-paradise_pale_ale,0,0,244879130624,"{""name"":""Paradise Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
-redhook_ale_brewery,0,0,244987002883,"{""name"":""Redhook Ale Brewery"",""city"":""Seattle"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.redhook.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6062,""lon"":-122.332}}",1,16,1
-pivovar_hradec_krlov,0,0,244986544128,"{""name"":""Pivovar Hradec Krlov"",""city"":""Hradec Krlov"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.2094,""lon"":15.8326}}",1,15,1
-rothaus_brauerei-leicht,0,0,244985954304,"{""name"":""Leicht"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-troegs_brewing-scratch_22_2009,0,0,245116043264,"{""name"":""Scratch #22 2009"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,41,1
-jt_whitney_s_brewpub_and_eatery-alt,0,0,244746944514,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
-microbrouwerij_achilles-serafijn_christmas_angel,0,0,244872052737,"{""name"":""Serafijn Christmas Angel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""microbrouwerij_achilles"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-stevens_point_brewery-amber_lager,0,0,245101821953,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
-paulaner-hacker_pschorr_hubertus_bock,0,0,244994015232,"{""name"":""Hacker-Pschorr Hubertus Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
-felinfoel_brewery_co_ltd-thames_welsh_ale,0,0,244614758400,"{""name"":""Thames Welsh Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""felinfoel_brewery_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-goose_island_beer_company_clybourn-black_toad_dark_ale,0,0,244614365184,"{""name"":""Black Toad Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""We begin with a custom mixture of dark and roasted barley malts, then we add the choicest hops. The resulting ale has a dark chestnut color and a deep nutty flavor. Brewed specially for Trader Joe's."",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
-pivzavod_baltika-baltika_8,0,0,244992049153,"{""name"":""Baltika #8"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
-vancouver_island_brewing,0,0,245100183554,"{""name"":""Vancouver Island Brewing"",""city"":""Victoria"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-250-361-0007"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2330 Government Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.4344,""lon"":-123.367}}",1,5,1
-molson_breweries_of_canada,0,0,244879458305,"{""name"":""Molson Breweries of Canada"",""city"":""Toronto"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-416-975-1786"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""175 Bloor Street East""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.6706,""lon"":-79.3824}}",1,55,1
-rocky_river_brewing-bombardier_brown,0,0,245002534912,"{""name"":""Bombardier Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
-piece,0,0,244984774657,"{""name"":""Piece"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60622"",""country"":""United States"",""phone"":""1-773-772-4422"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1927 West North Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9104,""lon"":-87.6761}}",1,10,1
-freeminer_brewery-deep_shaft_stout,0,0,244627734529,"{""name"":""Deep Shaft Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""freeminer_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-hawks_brewing-super_natural_ipa,0,0,244739014656,"{""name"":""Super Natural IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
-hc_berger_brewing,0,0,244757037057,"{""name"":""HC Berger Brewing"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.5853,""lon"":-105.084}}",1,57,1
-liberty_steakhouse_and_brewery-liberty_white_ale,0,0,244757626882,"{""name"":""Liberty White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Wheat-based beer brewed with coriander and orange peel to produce a mild citrus flavor."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,58,1
-pacific_coast_brewing-cask_esb,0,0,244985102336,"{""name"":""Cask ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-harpoon_brewery_boston-ufo_raspberry_hefeweizen,0,0,244747796481,"{""name"":""UFO Raspberry Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""We have added natural raspberry flavor to our UFO Hefeweizen to create this beer. Consistent with the hefeweizen style, this beer is unfiltered and cloudy with a solid foamy head. UFO Raspberry has a distinctive, hazy rose color. The scent of fresh raspberries hits the nose immediately, along with a subtle bready aroma from the wheat and yeast. The body is light and the unfiltered yeast provides a soft mouthfeel. The taste of the fruit compliments the beer nicely, neither overwhelms the other. There is a faint sweetness on the palate, which finishes cleanly in a semi-dry, tart finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
-john_harvard_s_brewhouse_wilmington-half_again_bock,0,0,244748320769,"{""name"":""Half Again Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,35,1
-mohrenbrauerei_august_huber-naturtrubes_kellerbier,0,0,244871790594,"{""name"":""Naturtrübes Kellerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mohrenbrauerei_august_huber"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,37,1
-sierra_nevada_brewing_co-chico_estate_harvest_ale,0,0,244984184833,"{""name"":""Chico Estate Harvest Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We wanted to see if we could grow hops at our brewery in Chico, California so we planted our own hop field selecting our prized Cascade and Centennial varieties along with some specialty hop varieties to experiment with. To our surprise, we not only could grow hops, we were also able to harvest them in late summer due to Chico’s ideal climate. \r\n\r\nChico Estate Harvest Ale is one of the very few estate harvest ales produced anywhere in the world today. All the hops in the beer are grown naturally on the premises of our brewery in Chico. We pick the hops ourselves and then take them directly to the brew kettle, without being dried, just after picking so they retain nearly all of their natural oils and resins. It is made with Cascade, Centennial and Chinook hops. Until now, this beer has only been available in draft. Starting this year, we will be bottling it on a very limited basis, with plans to expand its availability as we expand our Chico hop field in the coming years."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
-prairie_rock_brewing_elgin-triple_nickel_irish_stout,0,0,244983332864,"{""name"":""Triple Nickel Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-ohio_brewing-buckeye_brown,0,0,244863336448,"{""name"":""Buckeye Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,14,1
-mercury_brewing_company,0,0,244881227778,"{""name"":""Mercury Brewing Company"",""city"":""Ipswich"",""state"":""Massachusetts"",""code"":""1938"",""country"":""United States"",""phone"":""978-356-3329"",""website"":""http://www.mercurybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Located in historic Ipswich, Massachusetts, Mercury Brewing Company emerged in 1999 when Rob Martin, then Director of Operations for Ipswich Brewing Company, purchased the brewery and renamed the company Mercury Brewing and Distribution Company. While continuing production of Ipswich Ale, Martin expanded the company with Stone Cat Ales and Lagers, Mercury Premium Sodas, and numerous contract brewing agreements. In 2007 our beer production topped 14,000 BBLs (434,000 GAL), a 44% increase from 2006. Soda production came to 1180 BBLs (36,580 GAL), an increase of 22% from the previous year. We could not have done this without our hardworking staff and loyal customers and look forward to an even better 2008."",""address"":[""23 Hayward St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6728,""lon"":-70.844}}",1,59,1
-titletown_brewing-colonel_kolsch,0,0,245098414080,"{""name"":""Colonel Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-terminal_gravity_brewing,0,0,245118730241,"{""name"":""Terminal Gravity Brewing"",""city"":""Enterprise"",""state"":""Oregon"",""code"":""97828"",""country"":""United States"",""phone"":""1-541-426-0158"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""803 SE School Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4192,""lon"":-117.272}}",1,48,1
-routh_street_brewery_and_grille-pilsner,0,0,245004435457,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
-harmon_brewing_company,0,0,244754415616,"{""name"":""Harmon Brewing Company"",""city"":""Tacoma"",""state"":""Washington"",""code"":""98402"",""country"":""United States"",""phone"":""1-253-383-2739"",""website"":""http://harmon.harmonbrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1938 Pacific Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.2436,""lon"":-122.437}}",1,50,1
-midnight_sun_brewing_co-mammoth_extra_stout,0,0,244864188416,"{""name"":""Mammoth Extra Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and full-bodied, Mammoth Extra Stout boasts a well-rounded melange of rich flavors, including chocolate, caramel, coffee, nut and date. Huge portions of pale and specialty malts give this mammoth brew a complex yet exceptionally smooth palate. Hops provide balance without overpowering the chewy malt profile."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
-otter_creek_brewing_wolaver_s_organic_ales-vermont_lager,0,0,244872839169,"{""name"":""Vermont Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic European style lager. We take the time to brew this beer as a true lager should be brewed. And it's well worth the wait! You can enjoy the drinkability of this light-gold, refreshing beer with friends at the pub or at home after a long day."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-wagner_valley_brewing,0,0,245744730112,"{""name"":""Wagner Valley Brewing"",""city"":""Lodi"",""state"":""New York"",""code"":""14860"",""country"":""United States"",""phone"":""1-607-582-6450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9322 State Route 414""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.5739,""lon"":-76.8582}}",1,4,1
-weeping_radish_restaurant_and_brewery_manteo-weizen,0,0,245744861184,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weeping_radish_restaurant_and_brewery_manteo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,6,1
-old_city_brewing,0,0,244879130625,"{""name"":""Old City Brewing"",""city"":""Austin"",""state"":""Texas"",""code"":""78701"",""country"":""United States"",""phone"":""1-512-448-4844"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""603 West 13th Street #1A-345""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2767,""lon"":-97.7463}}",1,54,1
-revolution_brewing_llc,0,0,244987068416,"{""name"":""Revolution Brewing LLC"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60647"",""country"":""United States"",""phone"":""773-227-BREW"",""website"":""http://revbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Revolution Brewing LLC is opening a brewpub in Logan Square which will include a full-service restaurant. We will also be selling our beers in kegs to select Chicago drinking establishments as brewing capacity allows."",""address"":[""2323 N Milwaukee Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9234,""lon"":-87.6982}}",1,16,1
-plzesk_prazdroj,0,0,244986609664,"{""name"":""Plzesk Prazdroj"",""city"":""Plze"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-019/706-1111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""U Prazdroje 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.7466,""lon"":13.3861}}",1,15,1
-rowland_s_calumet_brewery-calumet_pils,0,0,244985954305,"{""name"":""Calumet Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-union_barrel_works-union_barrel_works_kolsch,0,0,245116043265,"{""name"":""Union Barrel Works Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A pale golden German ale with subdued, clean-tasting malt flavor and aroma. This is a beer from the \""old\"" brewing tradition before lagers become popular. Fermented at a lower temperature than normal ales, and followed by several weeks of cold lagering.""}",1,41,1
-jw_lees_and_co_brewers_ltd-harvest_ale_1999,0,0,244746944515,"{""name"":""Harvest Ale 1999"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,31,1
-middle_ages_brewing-tripel_crown,0,0,244872052738,"{""name"":""Tripel Crown"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Cellar aged, subtly complex and deceptively strong. Using two of the old world's brewing traditions, we have combined British ingredients and methods with Belgian ale qualities."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,38,1
-sweet_water_tavern_and_brewery-black_stallion_oatmeal_stout,0,0,245101887488,"{""name"":""Black Stallion Oatmeal Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweet_water_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, smooth...long dry-roast finish...ebony"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,9,1
-penn_brewery-st_nikolaus_bock_bier,0,0,244994080768,"{""name"":""St. Nikolaus Bock Bier"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A very rich, dark bock beer. dark ruby in color with subtle tones of chocolate and burnt malt. It will warm you on a cold winter night and brighten your days. The perfect holiday gift for the beer drinker."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
-firestone_walker_brewing_company,0,0,244614758401,"{""name"":""Firestone Walker Brewing Company"",""city"":""Paso Robles"",""state"":""California"",""code"":""93446"",""country"":""United States"",""phone"":""(805) 238-2556"",""website"":""http://www.firestonewalker.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1400 Ramada Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.5953,""lon"":-120.694}}",1,19,1
-gordon_biersch_brewing-premium_light_lager,0,0,244614365185,"{""name"":""Premium Light Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-rail_house_restaurant_and_brewpub-honey_weiss_discontinued,0,0,244992114688,"{""name"":""Honey Weiss (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
-victory_brewing-hop_devil_india_pale_ale,0,0,245100249088,"{""name"":""Hop Devil India Pale Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Menacingly delicious, with the powerful, aromatic punch of whole flower American hops backed up by rich, German malts. HopDevil Ale offers a roller coaster ride of flavor, coasting to a smooth finish that satisfies fully."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
-montana_brewing-espresso_porter,0,0,244879458306,"{""name"":""Espresso Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-roost_brewery-pale_ale,0,0,245002534913,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
-pivovar_klter_hradit-tmave_10_dark_beer,0,0,244984774658,"{""name"":""Tmavé 10% / Dark Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_klter_hradit"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-govnor_s_public_house-black_forest,0,0,244627734530,"{""name"":""Black Forest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,49,1
-hc_berger_brewing-chocolate_stout,0,0,244739014657,"{""name"":""Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-hereford_hops_restaurant_and_brewpub_1-cleary_red,0,0,244757037058,"{""name"":""Cleary Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
-licher_privatbrauerei-export_premium,0,0,244757692416,"{""name"":""Export Premium"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""licher_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-pike_pub_and_brewery-pale_ale,0,0,244985102337,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
-harpoon_brewery_boston,0,0,244747796482,"{""name"":""Harpoon Brewery - Boston"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2210"",""country"":""United States"",""phone"":""1-888-HARPOON"",""website"":""http://www.harpoonbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""306 Northern Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3465,""lon"":-71.0338}}",1,34,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2005_whisky,0,0,244748320770,"{""name"":""Harvest Ale 2005 (Whisky)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-moosehead_breweries_ltd,0,0,244871790595,"{""name"":""Moosehead Breweries Ltd."",""city"":""Saint John"",""state"":""New Brunswick"",""code"":"""",""country"":""Canada"",""phone"":""(506) 635-7000"",""website"":""http://www.moosehead.ca/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""89 Main Street, PO Box 3100, Station B""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.2578,""lon"":-66.0984}}",1,37,1
-slab_city_brewing,0,0,244984184834,"{""name"":""Slab City Brewing"",""city"":""Bonduel"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.7403,""lon"":-88.4448}}",1,8,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-thomas_kemper_hefeweizen,0,0,244983332865,"{""name"":""Thomas Kemper HefeWeizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
-old_hat_brewery-tripel,0,0,244863336449,"{""name"":""Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-mickey_finn_s_brewery-wheat_ale,0,0,244881227779,"{""name"":""Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-titletown_brewing-march_marzen,0,0,245098414081,"{""name"":""March Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,2,1
-the_nook_brewhouse,0,0,245118730242,"{""name"":""The Nook Brewhouse"",""city"":"""",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-02-10 01:47:16"",""description"":"""",""address"":[]}",1,48,1
-russian_river_brewing-blind_pig_ipa,0,0,245004435458,"{""name"":""Blind Pig IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Blind Pig IPA was originally brewed by Vinnie at Blind Pig Brewing Co. in Temecula CA. Inspired by the original Blind Pig IPA, this beer is loaded with hop character but only has 6.0% ABV."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
-harpoon_brewery_windsor-harpoon_ipa,0,0,244754481152,"{""name"":""Harpoon IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_windsor"",""updated"":""2010-07-22 20:00:20"",""description"":""From their site:\r\n\r\n\""Harpoon IPA is an interpretation of the classic English style using hops and malt grown in the United States.\""\r\n\r\n...\r\n\r\n\""The high hopping of Harpoon IPA is not only noticeable in the nose but especially in the finish. The lingering bitter finish of this beer is not harsh or astringent, but crisp and pronounced. This is created, in part, by dry hopping – a technique that involves adding fresh hops to the conditioning beer to provide a fresh hop aroma.\r\n\r\nThis beer is floral, medium body with an aggressive, clean hop finish.\""\r\n\r\n----\r\n\r\nThis has been my year-round favorite since moving to Boston in 2004. It is the nectar of the gods. Seriously, it's a nicely balanced, hoppy IPA that isn't overpowering. Also, it can be consumed in huge quantities with no hangover."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,50,1
-midnight_sun_brewing_co-midnight_sun_kolsch,0,0,244864188417,"{""name"":""Midnight Sun Kolsch"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the talented brewers of Midnight Sun comes an incredible, beautifully bright and sunny golden ale. Every sip entices the taste buds with a bold balance of pils malt and noble hops. Midnight Sun Kolsch is a traditional German-style beer that unites the liveliness of an ale with the crispness of a lager for real refreshment any time of year. \r\n\r\nCreating a beer that truly serves both newcomers to craft beer as well as avid beer aficionados is no easy task. Midnight Sun Kolsch brewers struck gold with this beer...and now you can too. \r\n\r\nAvailability:\r\nAK - draft (year-round)""}",1,17,1
-pennsylvania_brewing-weizen,0,0,244996898816,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennsylvania_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,39,1
-water_street_brewery-old_world_oktoberfest,0,0,245744730113,"{""name"":""Old World Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,4,1
-yards_brewing-poor_richard_s_tavern_spruce_ale,0,0,245744926720,"{""name"":""Poor Richard's Tavern Spruce Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed to celebrate Ben's 300th birthday.\r\n\r\nWhether Ben Franklin ever said, \""Beer is living proof that God loves us and wants us to be happy\"" is up for debate. Some say he said it, others say he didn't. No one knows for sure. \r\n\r\nHistorical facts or fictions aside, Yards Brewing Company has recreated Poor Richard's Tavern Spruce Ale™ to celebrate Franklin's affinity for fine ales. Poor Richard's Tavern Spruce Ale is based on Franklin's original recipe, which called for spruce essence and molasses, as barley and hops were not readily available at the time.\r\n\r\nEnjoy a taste of history courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,6,1
-orlio_organic-orlio_seasonal_india_pale_ale,0,0,244879196160,"{""name"":""Orlio Seasonal India Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlio_organic"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong but smooth medium-bodied copper ale with a furity nose, big dry hop flavor, and assertive hop bite that rest upon a subtle but supportive background of complex malt flavors."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,54,1
-ridgeway_brewing-bitter,0,0,244987068417,"{""name"":""Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-privater_brauereigasthof_greifenklau-weizen,0,0,244986609665,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privater_brauereigasthof_greifenklau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
-sabmiller_india-haywards_5000,0,0,244986019840,"{""name"":""Haywards 5000"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Country of origin: India \r\nBeer type: Lager \r\nAlcohol content by volume: < 7.5% by volume \r\nCarbohydrates: - \r\nTaste: full bodied malty flavour \r\nMalts: Indian malts, 6 row barley \r\nHops: German hop extract (CO2) & Indian hop palate \r\nColour: Golden yellow \r\nAvailability: India - all seasons, South East Asia, Middle East and Europ \r\nFermentation process: Bottom-fermented \r\nServing temperature: 7 - 9 °C \r\nPackaging: 650 ml and 330 ml Indian standard glass amber bottle ; 500 ml Non returnable bottles ; 500 ml cans and 330 ml cans ( in select markets) \r\n \r\nhttp://www.sabmiller.in/brands_haywards_5000.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-victory_brewing-old_horizontal,0,0,245116043266,"{""name"":""Old Horizontal"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A luxurious, warming barleywine rich with aromatic hops and dark, candied fruit character that hides its epic strength masterfully."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,41,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_celebration_ale_2006,0,0,244746944516,"{""name"":""Hitachino Nest Celebration Ale 2006"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-midnight_sun_brewing_co-earth_belgian_style_chocolate_milk_stout,0,0,244872118272,"{""name"":""Earth - Belgian Style Chocolate Milk Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Mother Earth is the rich fertile “living” planet. Our EARTH combines pale and dark malts for essential body. Cocoa nibs—decadent chocolate in its most elemental form—add distinction. Lush lactose creates incredible creaminess. But Earth gains amazing ground with extensive aging on Bergenfield extra dark cocoa."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,38,1
-t_r_theakston-old_peculier,0,0,245101887489,"{""name"":""Old Peculier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_r_theakston"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-pennichuck_brewing_company-shouboushi_ginger_pilsner,0,0,244994080769,"{""name"":""Shouboushi Ginger Pilsner"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
-fish_brewing_company_fish_tail_brewpub-organic_amber_ale,0,0,244614823936,"{""name"":""Organic Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""Medium-bodied with an appealing amber hue, this is the First Ale of the Republic. Its organic pale, Munich, and crystal malts create a gentle sweet character that is difficult to resist. From organic Hallertauer hops come a zesty flavor and aroma that beautifully balance Organic Amber's malt profile. The result: Truly delicious ale that salutes organic farmers and all the goodness they bring to our tables."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
-green_bay_brewing-framboise,0,0,244741439488,"{""name"":""Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
-ridgeway_brewing,0,0,244992180224,"{""name"":""Ridgeway Brewing"",""city"":""South Stoke"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01491)-873474"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6 Chapel Close""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.5462,""lon"":-1.1355}}",1,28,1
-water_street_brewery-english_brown_ale,0,0,245744795648,"{""name"":""English Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,5,1
-moon_river_brewing_company-road_trip_hard_cider,0,0,244879458307,"{""name"":""Road Trip Hard Cider"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This hard cider is fresh-pressed with delicious, sweet-tart \""Pink Lady\"" apples from the Mercier Orchards in the North Georgia mountains."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,55,1
-roost_brewery,0,0,245002534914,"{""name"":""Roost Brewery"",""city"":""Campbell"",""state"":""California"",""code"":""95008"",""country"":""United States"",""phone"":""1-408-866-2699"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 East Campbell Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2869,""lon"":-121.946}}",1,52,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-best_brown,0,0,244984840192,"{""name"":""Best Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
-great_basin_brewing_company,0,0,244753891328,"{""name"":""Great Basin Brewing Company"",""city"":""Sparks"",""state"":""Nevada"",""code"":""89431"",""country"":""United States"",""phone"":""(775) 355-7711"",""website"":""http://greatbasinbrewingco.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Great Basin Brewing Co. makes fresh hand-crafted beer right before your eyes using the finest American & European grains, hops & yeast. The rugged beauty and free spirit of this region have inspired the creation of the brewery and the beers that you enjoy. We invite you to celebrate our heritage with us."",""address"":[""846 Victorian Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.5349,""lon"":-119.754}}",1,49,1
-hook_norton_brewery,0,0,244739014658,"{""name"":""Hook Norton Brewery"",""city"":""Hook Norton"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01608)-730384"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brewery Lane""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.9966,""lon"":-1.4922}}",1,12,1
-hereford_hops_steakhouse_and_brewpub_3-whitetail_ale,0,0,244757037059,"{""name"":""Whitetail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-lift_bridge_brewery-lift_bridge_pale_ale,0,0,244757692417,"{""name"":""Lift Bridge Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Well balanced amber pale ale accentuated by multiple additions of floral Cascade hops and our unique introduction of grapefruit zest to compliment the citrus notes of the hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-pivovar_hradec_krlov-lion_lev_export_lager,0,0,244985167872,"{""name"":""Lion Lev Export Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_hradec_krlov"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-high_falls_brewing-dundee_stout,0,0,244747796483,"{""name"":""Dundee Stout"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
-karl_strauss_brewery_gardens_sorrento_mesa-padre_porter,0,0,244748320771,"{""name"":""Padre Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-nelson_brewing,0,0,244871856128,"{""name"":""Nelson Brewing"",""city"":""Nelson"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-250-352-3582"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""512 Latimer Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.4884,""lon"":-117.29}}",1,37,1
-socorro_springs_brewing-pick_axe_ipa,0,0,245101101056,"{""name"":""Pick Axe IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""socorro_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
-rahr_sons_brewing_company-stormcould_ipa,0,0,244983398400,"{""name"":""Stormcould IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""During a fierce storm on his voyage across the ocean, William Rahr could be heard yelling from the tall masted ship: \""Roll on old sea! And when you are done, when the storm clouds have destroyed themselves, we will still be standing and drinking!\"" Today, we have created the ultimate ale for a voyage such as this: A German-Style IPA - a traditional India Pale Ale with German Influence."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
-on_tap_bistro_brewery-hop_maniac_ipa,0,0,244863336450,"{""name"":""Hop Maniac IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
-midnight_sun_brewing_co-imperial_chocolate_pumpkin_porter,0,0,244881293312,"{""name"":""Imperial Chocolate Pumpkin Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Intriguing doses of sweet spices, dark cocoa and pumpkin transform an exceptional porter into a\r\nmesmerizing potion. Pour this tantalizing brew into a snifter and seek solace in the depths of its fascinating flavors. Cinnamon, nutmeg and cloves seem familiar but this brew is cloaked in deep, dark secrets that will forever haunt you.\r\n\r\nThis beer is like nothing you have ever experienced. It is a majestic mélange of rich, impressive flavors that meld wonderfully with the\r\nwarmth of alcohol. Will it appease or awaken your spirit?"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,59,1
-tommyknocker_brewery_and_pub-red_eye_lager,0,0,245098414082,"{""name"":""Red Eye Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-the_st_louis_brewrey-pale_ale,0,0,245118795776,"{""name"":""Pale Ale"",""abv"":4.4,""ibu"":25.0,""srm"":13.5,""upc"":0,""type"":""beer"",""brewery_id"":""the_st_louis_brewrey"",""updated"":""2011-02-10 07:51:20"",""description"":""APPEARANCE: Amber red, bright\nPROCESS: Classic English\nHOPS: East Kent Goldings (UK), Northdown (UK), Pilgrim (UK)\nMALTS: 2-Row and Caramel Malted Barley\nYEAST: London Ale\nOG: 11.2\nSRM: 13.5"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-sam_choy_s_breakfast_lunch_crab_big_aloha_brewery-ehu_ale,0,0,245004500992,"{""name"":""Ehu Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sam_choy_s_breakfast_lunch_crab_big_aloha_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,56,1
-hawks_brewing-super_natural_esb,0,0,244754546688,"{""name"":""Super Natural ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-millrose_brewing-country_ale,0,0,244864188418,"{""name"":""Country Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-pete_s_brewing,0,0,244996964352,"{""name"":""Pete's Brewing"",""city"":""San Antonio"",""state"":""Texas"",""code"":""78232"",""country"":""United States"",""phone"":""1-210-490-9128"",""website"":""http://www.peteswicked.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14800 San Pedro Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":29.5761,""lon"":-98.4772}}",1,39,1
-zea_rotisserie_and_brewery-clearview_light,0,0,245744926721,"{""name"":""Clearview Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
-pabst_brewing_company-old_milwaukee,0,0,244879196161,"{""name"":""Old Milwaukee"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Milwaukee. A trusted, high quality beer that continually receives the highest awards and accolades from Beer experts across America. Old Milwaukee has a long history of celebrating \""Blue Collar\"" sensibility. Simply said, good beer at a fair price. Old Milwaukee has always represented America's core values: Honesty, integrity, hard work and love for your family.\r\n\r\nSpeaking of family, the Old Milwaukee Family has a beer that is right for you. Old Milwaukee when you want a full bodied, full flavor American Lager. OM Light when you are in the mood for a lighter tasting beer with fewer calories. And don't forget OMNA, our flavorful non-alcoholic beer for those moments when you want the taste of America' best tasting beer without the alcohol content."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-river_west_brewing-berliner_weisse,0,0,244987068418,"{""name"":""Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-raccoon_lodge_and_brewpub_cascade_brewing-ring_tail_pale_ale,0,0,244986609666,"{""name"":""Ring Tail Pale Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ring Tail Pale is light in body and straw-gold in color, with a crisp hop finish. This beer is a great choice for domestic lager drinkers."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
-saint_louis_brewery_schlafy_tap_room-schlafly_winter_esb,0,0,244986019841,"{""name"":""Schlafly Winter ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-water_street_brewery-irish_red_ale,0,0,245749579776,"{""name"":""Irish Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
-kostritzer_schwarzbierbrauerei,0,0,244747010048,"{""name"":""Köstritzer Schwarzbierbrauerei"",""city"":""Bad Köstritz"",""state"":""Thüringen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)36605-/-83-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Heinrich-Schtz-Strae 16""]}",1,31,1
-miller_brewing-miller_genuine_draft,0,0,244872183808,"{""name"":""Miller Genuine Draft"",""abv"":4.66,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Miller Genuine Draft debuted in 1985 with fresh, smooth flavor that's a result of being cold-filtered four times. As we capitalize on the growing trend towards \""mainstream sophistication,\"" MGD is positioned as the only beer refined to ideal smoothness for those who pursue their passion with integrity and conviction. For our target consumer, MGD is a brand that celebrates their experiences ... past, present, and future. Because, ultimately, in beer as in life, \""Experience is Golden.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,38,1
-taylor_s_crossing_brewing-two_lions_pale_ale,0,0,245101887490,"{""name"":""Two Lions Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-pennsylvania_brewing,0,0,244994146304,"{""name"":""Pennsylvania Brewing"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15212"",""country"":""United States"",""phone"":""1-412-237-9402"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""800 Vinial Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4569,""lon"":-79.9915}}",1,33,1
-furstlich_furstenbergische_brauerei,0,0,244614823937,"{""name"":""Fürstlich Fürstenbergische Brauerei"",""city"":""Donaueschingen"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)771-/-86-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Postplatz 1-4""]}",1,19,1
-hasserder_brauerei-premium_pils,0,0,244741439489,"{""name"":""Premium Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hasserder_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-rock_bottom_restaurant_brewery_south_denver-walnut_buffalo_gold_premium_ale,0,0,244992180225,"{""name"":""Walnut Buffalo Gold Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_south_denver"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-western_reserve_brewing-cloud_nine_witbier,0,0,245744795649,"{""name"":""Cloud Nine Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""western_reserve_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
-moon_river_brewing_company-the_captains_porter,0,0,244879523840,"{""name"":""The Captains Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our porter is a full bodied, semi-sweet dark ale, with distinct notes of caramel and chocolate. A touch of English grown Fuggles gives balance to the complex malty sweetness. Brewed in the loving memory of our Brew master's grandfather, the Captain."",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
-sa_brain_co_ltd-traditional_welsh_ale,0,0,245002600448,"{""name"":""Traditional Welsh Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sa_brain_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-porter,0,0,244984840193,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,10,1
-great_divide_brewing-hibernation_ale,0,0,244753956864,"{""name"":""Hibernation Ale"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Great Divide’s award-winning Hibernation Ale is Colorado’s original strong ale – it has been our winter seasonal each year since 1995. Since that time, Hibernation has become the most sought-after winter beer in Colorado. Hibernation’s massive flavors are so intense that it requires over three months of aging each year. Each summer, while our brewers are still spending their weekends in flip-flops and shorts, they prepare for July’s Hibernation brewing schedule.\r\n\r\nWe cellar Hibernation until late October, when it reaches the peak of perfection. This lengthy aging process gives Hibernation its revered malty richness, complex hop profile and hearty warming character, which is perfect right out of the bottle or cellared for longer periods of time. Hibernation is a lively treat that really beats the winter chill. This scrumptious, collectible, and imminently cellarable ale is only available for six weeks each year, from November 1 to December 15. Hibernation Ale is the perfect gift or accompaniment to your winter festivities."",""style"":""Old Ale"",""category"":""British Ale""}",1,49,1
-hoppin_frog_brewery-bodacious_black_and_tan,0,0,244739080192,"{""name"":""Bodacious Black and Tan"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""I.P.A. and Stout converge for a really great flavor combination! The assertive, hoppy character of our Hoppin’ To Heaven I.P.A. is perfectly complimented by the intense, deep roasted taste of our B.O.R.I.S. Oatmeal-Imperial Stout.""}",1,12,1
-highland_brewing_company-kashmir_ipa,0,0,244757037060,"{""name"":""Kashmir IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A brilliant, dry pale ale with an aggressive hop character balanced with a smooth finish. A bold beer best consumed with a stiff upper lip.\r\n\r\nIBU: 60\r\nAlcohol Content: 5.6% by volume\r\nHops: Stryian Goldings, Mt. Hood, Fuggles, Magnum, Willamette\r\n\r\n*Contains Wheat\r\n\r\nCalories per 12 oz 190.85\r\nCarbs per 12 oz 16.82"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
-limburg_beer_company,0,0,244880703488,"{""name"":""Limburg Beer Company"",""city"":""Hawkes Bay"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(06)-878-5542"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""500 Williams Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-39.6275,""lon"":176.854}}",1,58,1
-pivovar_podkov,0,0,244985233408,"{""name"":""Pivovar Podkov"",""city"":""Praha"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-326-356-222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dkansk 201/10""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.0878,""lon"":14.4205}}",1,11,1
-highland_brewing_company-black_mocha_stout,0,0,244747862016,"{""name"":""Black Mocha Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Highland's most robust beer, having a very malty body with a large, roasted chocolate flavor. It is black in color with a very clean finish and a moderate hop flavor.\r\n\r\nIBU: 25\r\nAlcohol content: 5.3% by volume\r\nHops: Chinook and Mt. Hood\r\n\r\n*Contains Wheat\r\n\r\nCalories per 12 oz. 216.81\r\nCarbs per 12 oz. 24.99"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
-kirin_brewery_company_ltd-kirin_ichiban,0,0,244748386304,"{""name"":""Kirin Ichiban"",""abv"":4.95,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kirin_brewery_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""From Brewery's site:\r\n\r\nWith his gold label and Special Premium Reserve appellation, Ichiban outclasses and outperforms.\r\n\r\nIn 1990, Ichiban's debut made a splash in the world of super premium beers. The luxurious single wort (or first press) process yields a unique, complex flavor. With his gold label and \""Special Premium Reserve\"" appellation, Ichiban outclasses and outperforms. But don't be fooled by a snooty attitude -- this is a great beer that goes with anything.\r\n\r\nWhat makes Ichiban great\r\nProminent wort. Finest barley malt, premium hops, smooth finish, no bitter aftertaste.""}",1,35,1
-nicolet_brewing-classic_pilsener,0,0,244871856129,"{""name"":""Classic Pilsener"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-southern_tier_brewing_co-imperial_cherry_saison,0,0,245101166592,"{""name"":""Imperial Cherry Saison"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,8,1
-rogue_ales-dad_s_little_helper,0,0,244983463936,"{""name"":""Dad's Little Helper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This aint your Dads malt liquor\"" - Brewmaster John Maier \r\nAfter the death of his wife, Henry Jackson Smart was left to raise 6 young children alone. His courage, love, selflessness and dedication inspired his daughter, Sonora Smart Dodd, to organize the First Fathers Day on June 19th, 1910. In 1924 President Calvin Coolidge proclaimed the third Sunday in June as Fathers Day. President Nixon, in 1972, established it as a permanent day of national observance. \r\nDads is brewed with Harrington and Klages malts, Flaked Corn, Crystal Hops, Free Range Coastal Water, and Czech Pils Yeast. Available in the spring of 2005 in the classic 22-ounce Rogue micropiece.""}",1,7,1
-original_basil_t_s,0,0,244863336451,"{""name"":""Original Basil T's"",""city"":""Red Bank"",""state"":""New Jersey"",""code"":""7701"",""country"":""United States"",""phone"":""1-732-842-5990"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""183 Riverside Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3532,""lon"":-74.0747}}",1,14,1
-moonlight_brewing-bombay_by_boat_ipa,0,0,244881293313,"{""name"":""Bombay by Boat IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-troegs_brewing-bavarian_lager,0,0,245098479616,"{""name"":""Bavarian Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Bavarian Lager is an authentic German style lager, brewed with Munich malts, Hallertau Hops and fermented at cool temperatures followed by a full month of aging, or \""lagering\"", to impart a range of complex maltiness and subtle aromas only found in traditional German lagers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-thirstybear_brewing-kozlov_stout,0,0,245118795777,"{""name"":""Kozlov Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-san_diego_brewing,0,0,245004500993,"{""name"":""San Diego Brewing"",""city"":""San Diego"",""state"":""California"",""code"":""92120"",""country"":""United States"",""phone"":""1-619-284-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10450-L Friars Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7922,""lon"":-117.099}}",1,56,1
-hc_berger_brewing-red_raspberry,0,0,244754546689,"{""name"":""Red Raspberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
-minneapolis_town_hall_brewery,0,0,244864253952,"{""name"":""Minneapolis Town Hall Brewery"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55454"",""country"":""United States"",""phone"":""1-612-339-8696"",""website"":""http://www.townhallbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1430 Washington Avenue South""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9732,""lon"":-93.2479}}",1,17,1
-prairie_rock_brewing_elgin-old_glory_american_pale,0,0,244996964353,"{""name"":""Old Glory American Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
-paulaner-hefe_weissbier,0,0,245003059200,"{""name"":""Hefe-Weißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,54,1
-rock_bottom_restaurant_brewery_milwaukee-stillwater_stout,0,0,244987068419,"{""name"":""Stillwater Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
-rail_house_restaurant_and_brewpub,0,0,244986675200,"{""name"":""Rail House Restaurant and Brewpub"",""city"":""Marinette"",""state"":""Wisconsin"",""code"":""54143"",""country"":""United States"",""phone"":""1-715-732-4646"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2029 Old Peshtigo Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.0851,""lon"":-87.6544}}",1,15,1
-sierra_nevada_brewing_co-bigfoot_1991,0,0,244986019842,"{""name"":""Bigfoot 1991"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-water_street_lake_country-pale_ale,0,0,245749579777,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
-magic_hat-howl,0,0,244869693440,"{""name"":""Howl"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Born of dark and cold and snow in the marrow of the northeast's longest night, HOWL comes in on wailing winds with winter-weary eyes burning holes in sunless shadows. In its darkened depths out inner voids are warmed."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-miller_brewing,0,0,244872183809,"{""name"":""Miller Brewing"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53208"",""country"":""United States"",""phone"":""(414) 931-2000"",""website"":""http://www.millerbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Making the highest quality beer has been a passion of the Miller Brewing Company since its founder, Frederick J. Miller, began his brewing business in 1855. Since then, Miller Brewing has grown from a small local brewer to the second largest brewery in the U.S., with seven major breweries located across America."",""address"":[""3939 W. Highland Blvd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0445,""lon"":-87.9626}}",1,38,1
-terrapin_beer_company,0,0,245101953024,"{""name"":""Terrapin Beer Company"",""city"":""Athens"",""state"":""Georgia"",""code"":""30606"",""country"":""United States"",""phone"":""1-888-557-2337"",""website"":""http://www.terrapinbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""196 Alps Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.9459,""lon"":-83.4105}}",1,9,1
-pint_s_pub_brewery_and_freehouse-dark_star_esb,0,0,244994146305,"{""name"":""Dark Star ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pint_s_pub_brewery_and_freehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-george_gale_company-prize_old_ale,0,0,244614823938,"{""name"":""Prize Old Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,19,1
-hawks_brewing,0,0,244741439490,"{""name"":""Hawks Brewing"",""city"":""Roseburg"",""state"":""Oregon"",""code"":""97470"",""country"":""United States"",""phone"":""1-541-679-5778"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.2165,""lon"":-123.342}}",1,18,1
-rocky_river_brewing-oompa_loompa_chocolate_stout,0,0,244992180226,"{""name"":""Oompa Loompa Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-yazoo_brewing-onward_stout,0,0,245744795650,"{""name"":""Onward Stout"",""abv"":3.8,""ibu"":35.0,""srm"":45.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2011-04-17 12:33:50"",""description"":""The tan lace clings to the glass as you raise the pint to your lips. Close your eyes and smile as the rich espresso notes fade to a dry, roasted finish. Exceptionally smooth and satisfying. Made with English Pale malt, roasted barley, black patent malt, and flaked barley. Hopped with East Kent Goldings and Target hops, and fermented with our English ale yeast."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,5,1
-moorhouse_s_brewery_burnley,0,0,244879523841,"{""name"":""Moorhouse's Brewery (Burnley)"",""city"":""Burnley"",""state"":""Lancashire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01282)-422864"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4 Moorhouse Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":53.7864,""lon"":-2.2694}}",1,55,1
-santa_fe_brewing_company-freestyle_pilsner,0,0,245002600449,"{""name"":""Freestyle Pilsner"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As its name suggests, this Pilsner does not like to be categorized. Inquiring whether it is a German, Czech, Bavarian, American, or any other style pilsner will result in an impatient sigh and the explanation that the whole philosophy behind this pilsner is that it does not fall into any categories. True, it is brewed with traditional ingredients (soft water, pilsner malt, saaz hops, and German yeast), but it is the way that these ingredients interact, and the characteristics of the yeast, that cause this particular pilsner to defiantly stand alone. The assertively hopped Freestyle pils exudes the flavor and the aroma of the classic Saaz hop (a tribute to “the original” pilsner), while maintaining enough body to balance but not overpower this hop’s pleasant, spicy tone. An unhurried lagering process so frequently overlooked by American craft brewers is strictly adhered to in the production of Freestyle, which makes this beer by far the most light, clean, and quenching beer in the Santa Fe Brewing Company’s line up."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,52,1
-pyramid_ales_brewery-sun_fest,0,0,244984840194,"{""name"":""Sun Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-great_lakes_brewing-dortmunder_gold,0,0,244754022400,"{""name"":""Dortmunder Gold"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth lager that strikes a delicate balance between sweet malt and dry hop flavors.""}",1,49,1
-hopworks_urban_brewery-hopworks_ipa,0,0,244739080193,"{""name"":""Hopworks IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our namesake IPA is a Northwest classic. Generous additions of Amarillo, Centennial, and Ahtanum hops find their way into the kettle, hop-back, and dry-hop. This judicious use of the \""brewers spice\"" creates rich and resinous flavors of citrus fruit and pine. The finest organic Canadian pilsner malt and organic German Munich and Caramunich malts then bring balance to your new favorite beer."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
-hudepohl_schoenling_brewing,0,0,244757102592,"{""name"":""Hudepohl-Schoenling Brewing"",""city"":""Cincinnati"",""state"":""Ohio"",""code"":""45242"",""country"":""United States"",""phone"":""1-513-984-6910"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10921 Reed Hartman Highway, Suite 329""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.2651,""lon"":-84.3799}}",1,57,1
-lwenbru_munich-premium_dark,0,0,244880703489,"{""name"":""Premium Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lwenbru_munich"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-pyramid_ales_brewery-pyramid_broken_rake,0,0,244985233409,"{""name"":""Pyramid Broken Rake"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mahogany in color, this full-bodied ale features a floral aroma and malty finish for a taste that's the perfect accompaniment to a crisp autumn afternoon."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,11,1
-issaquah_brewhouse-two_frog_dubbel,0,0,244747862017,"{""name"":""Two Frog Dubbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-kiuchi_shuzou_goushi_kaisya-hitachino_nest_espresso_stout,0,0,244748386305,"{""name"":""Hitachino Nest Espresso Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-oak_creek_brewery-forty_niner_gold_lager,0,0,244871856130,"{""name"":""Forty-Niner Gold Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-southern_tier_brewing_co-krampus_imperial_helles_lager,0,0,245101232128,"{""name"":""Krampus Imperial Helles Lager"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""St. Nicholas, aka Santa Claus, is a magical figure, the bringer of gifts and an icon of holiday spirit. Forgotten by most is his evil side kick and enforcer of ‘the list’. European tradition says while St. Nick is busy delivering presents to good little boys and girls, Krampus hands out punishments to the bad. A fanged, goat-horned bully, the Christmas Devil uses sticks and chains to beat the naughty children. Dark malts and aromatic hops create the diabolical spirit of this brew. It is finished with lager yeast and aged cold for no less than 30 days. This Imperial Helles Lager will warm even the darkest hearts. \r\n\r\nThis season, replace the cookies with a bottle of Krampus. If he happens to pay a visit, toast to him with this devilish brew. Merry Kramp-mas to all, and to all a good pint!\r\n9.0% abv. • 20º plato • Imperial Helles Lager • 22 oz / 1/6 keg""}",1,8,1
-roots_organic_brewing-woody_organic_ipa,0,0,244983463937,"{""name"":""Woody Organic IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roots_organic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
-orkney_brewery-dragonhead_stout,0,0,244863401984,"{""name"":""Dragonhead Stout"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dragonhead is a legendary stout: dark, intense and fully-flavoured, it is our tribute to the Vikings and their cultural legacy in Orkney.\r\n\r\nOn the nose, this black stout has a smooth roasted malt aroma giving bitter chocolate, dark roasted coffee and Smokey notes balanced by hints of spicy Goldings hop.\r\n\r\nOn the palate, the dark roasted malts combine to give a rich, rounded palate with chocolate, toast and nut flavours, with a satisfying spicy hop finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,14,1
-moosehead_breweries,0,0,244881293314,"{""name"":""Moosehead Breweries"",""city"":""Saint John"",""state"":""New Brunswick"",""code"":""0"",""country"":""Canada"",""phone"":""1-506-635-7000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""89 Main Street West""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.2567,""lon"":-66.096}}",1,59,1
-two_brothers_brewing-brown_ale,0,0,245098479617,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
-thomas_hooker_brewing-american_pale_ale,0,0,245118795778,"{""name"":""American Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_hooker_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Thomas Hooker American Pale Ale is an extremely vivid, medium-bodied brew. Hooker Pale Ale stresses the crisp bitterness, lingering resin flavor, and aroma of American hops which are characteristic of the most distinctive West Coast Ales. The caramel sweetness of the malt balances the chock-full-of-hops flavor to yield a complex but quite refreshing brew."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
-san_marcos_brewery_grill-amber_ale,0,0,245004566528,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
-heavenly_daze_brewery_and_grill-porcupine_porter,0,0,244754612224,"{""name"":""Porcupine Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
-moon_river_brewing_company-georgi_belgique,0,0,244864253953,"{""name"":""Georgi-Belgique"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,17,1
-privater_brauereigasthof_greifenklau-lagerbier,0,0,244997029888,"{""name"":""Lagerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privater_brauereigasthof_greifenklau"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-pivzavod_baltika,0,0,245003124736,"{""name"":""Pivzavod Baltika /"",""city"":""Sankt-Peterburg"",""state"":""Sankt-Peterburg"",""code"":"""",""country"":""Russia"",""phone"":""7-812-329-91-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Promzona Parnas-4, 6 Proyezd, 9 Kvartal""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":59.939,""lon"":30.3158}}",1,54,1
-route_66_brewery-mile_marker_amber_lager,0,0,244987133952,"{""name"":""Mile Marker Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-river_west_brewing-doubledecker_doppelbock,0,0,244986675201,"{""name"":""Doubledecker Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
-st_georgenbru_modschiedler_kg,0,0,245103984640,"{""name"":""St. GeorgenBru Modschiedler KG"",""city"":""Buttenheim"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9545-/-446-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Marktstrae 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.802,""lon"":11.0324}}",1,13,1
-youngs_company_brewery-special_london_ale,0,0,245749645312,"{""name"":""Special London Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,41,1
-mambo_beer,0,0,244869758976,"{""name"":""Mambo Beer"",""city"":""Mequon"",""state"":""Wisconsin"",""code"":""53092"",""country"":""United States"",""phone"":""1-888-548-3754"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10920 North Port Washington Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.2167,""lon"":-87.924}}",1,31,1
-millrose_brewing-dark_star,0,0,244872183810,"{""name"":""Dark Star"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
-the_livery,0,0,245101953025,"{""name"":""The Livery"",""city"":""Benton Harbor"",""state"":""Michigan"",""code"":""49022"",""country"":""United States"",""phone"":""(269) 925-8760"",""website"":""http://liverybrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""All of our Hand Forged Microbrews here at the Livery are painstakingly created by brewmaster Steve Berthel and his assistant, Wally Rouse, on a 10bbl. system of his own design. Closed fermenters allow for the use of many different yeast strains to assure that all our beer styles have their own unique flavor profile. Many of our high gravity beers are aged in a selection of oak barrels for up to a year. We feature 3 real ales every day, poured to perfection from our antique beer engines. Every 4th. Sunday of the month is Freakin' Firkin Sunday where we have live Irish Music, home made Ruebens, and 2 Firkins of real ale. We do not bottle our beer at this time, but we do offer our beer to retailers in 1/4 bbls. or 1/2 bbls. Please feel free to contact Steve at steve@liverybrew.com for more info. on distribution in your area. Cheers!"",""address"":[""190 5th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.1185,""lon"":-86.4537}}",1,9,1
-pizzeria_uno_chicago_grill_brewery,0,0,244994146306,"{""name"":""Pizzeria Uno Chicago Grill & Brewery"",""city"":""Metuchen"",""state"":""New Jersey"",""code"":""8840"",""country"":""United States"",""phone"":""1-732-548-7979"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""61 US Highway 1 South""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":37.2283,""lon"":-77.3903}}",1,33,1
-gottberg_brew_pub-double_gueuze_discontinued,0,0,244614889472,"{""name"":""Double Gueuze (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,19,1
-heavenly_daze_brewery_and_grill-rainbow_trout_stout,0,0,244741505024,"{""name"":""Rainbow Trout Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,18,1
-rocky_river_brewing,0,0,244992180227,"{""name"":""Rocky River Brewing"",""city"":""Rocky River"",""state"":""Ohio"",""code"":""44116"",""country"":""United States"",""phone"":""1-440-895-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""21290 Center Ridge Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.4623,""lon"":-81.856}}",1,28,1
-yuengling_son_brewing-yuengling_bock_beer,0,0,245744861184,"{""name"":""Yuengling Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In celebration of our 180th Anniversary year, the marketplace will see one of the first seasonal offerings from the Yuengling Brewery in many years. Yuengling has produced a Bock Beer in its long and storied past, and we have now reinvented that product for limited release in 2009. The new brew is dark brown in color and offers exceptional flavor that lives up to the quality Yuengling drinkers have grown to expect.\r\n\r\nYuengling Bock Beer will be offered in ½ barrels only, beginning in late February and lasting for approximately 8-10 weeks. Let’s all raise a pint of Yuengling Bock and celebrate the 180th Anniversary year!"",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,5,1
-north_coast_brewing_company-acme_california_ipa,0,0,244879523842,"{""name"":""Acme California IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Acme IPA is profoundly hoppy, finished with over a pound of fresh whole hops per barrel. The result of this generous hopping is a beer that is deliciously dry, and eminently drinkable in spite of its apparent strength."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
-schloss_eggenberg-samichlaus_bier_2003,0,0,245002665984,"{""name"":""Samichlaus Bier 2003"",""abv"":14.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,52,1
-river_horse_brewing_company-river_horse_special_ale,0,0,244984905728,"{""name"":""River Horse Special Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It's been with us from the start and hasn't changed since that first brew way back in 1996. Ample quantities of caramel malt give this English ale a soft copper hue and the colorful addition of carapils malt adds a slight sweetness you might mistake for honey."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,10,1
-greene_king-abbot_ale,0,0,244754022401,"{""name"":""Abbot Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-idaho_brewing-dr_hops_amber_ale,0,0,244739080194,"{""name"":""Dr. Hops Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""idaho_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-independence_brew_pub-oatmeal_stout,0,0,244757102593,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,57,1
-maclay_and_co-eighty_shilling_export_ale,0,0,244880834560,"{""name"":""Eighty Shilling Export Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-rock_bottom_restaurant_brewery_san_jose-brown_bear_brown_ale,0,0,244985298944,"{""name"":""Brown Bear Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
-jacob_leinenkugel_brewing_company-leinenkugel_s_summer_shandy,0,0,244747927552,"{""name"":""Leinenkugel's Summer Shandy"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Get a taste of the freshest flavor under the sun - Leinenkugel’s Summer Shandy. A shandy is a lemonade flavored beer, a European favorite during the warmer months. And the light, crisp flavor makes it a great summer refresher. Each batch is carefully brewed using the finest wheat, malted barley and just a hint of real Wisconsin honey. Then, our brewmasters mix in fresh lemonade and citrus flavors to create an adventurous taste that’s perfect for those lazy days of summer."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
-labatt_ontario_breweries-labatt_blue_light,0,0,244748451840,"{""name"":""Labatt Blue Light"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Blue Light was introduced in 1983 as a lower alcohol, lower calorie version of Canada’s most popular brand. Blue Light uses specially selected North American aromatic hops and the same strain of lager yeast as the one used to produce Labatt Blue. The result is a crisp, clean and delicately balanced beer, with a slight sweetness and citrus-like hop character."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
-oldenberg_brewery,0,0,244871921664,"{""name"":""Oldenberg Brewery"",""city"":""Fort Mitchell"",""state"":""Kentucky"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.0472,""lon"":-84.5599}}",1,37,1
-spilker_ales-cortland_autumn_discontinued,0,0,245101297664,"{""name"":""Cortland Autumn (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-routh_street_brewery_and_grille,0,0,244983529472,"{""name"":""Routh Street Brewery and Grille"",""city"":""Dallas"",""state"":""Texas"",""code"":""75201"",""country"":""United States"",""phone"":""1-214-922-8835"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.789,""lon"":-96.7989}}",1,7,1
-otto_s_pub_and_brewery-double_d_ipa,0,0,244863401985,"{""name"":""Double D IPA"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hopheads rejoice! This strong IPA takes the style to a new level. It's a big Imperial IPA packed with Nugget, Palisade, and Amarillo hops. ABV 8.2%"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,14,1
-moosejaw_pizza_dells_brewing_company,0,0,244881293315,"{""name"":""Moosejaw Pizza & Dells Brewing Company"",""city"":""Wisconsin Dells"",""state"":""Wisconsin"",""code"":""53965"",""country"":""United States"",""phone"":""1-608-254-1122"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""110 Wisconsin Dells Parkway South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.5907,""lon"":-89.7939}}",1,59,1
-two_brothers_brewing-ebelweiss,0,0,245098479618,"{""name"":""Ebelweiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
-triumph_brewing_of_princeton-helles_lager,0,0,245118795779,"{""name"":""Helles Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-san_marcos_brewery_grill-winter_wheat,0,0,245004566529,"{""name"":""Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-high_falls_brewing-dundee_pale_ale,0,0,244754612225,"{""name"":""Dundee Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Behold the hop. A flower, but too unsightly to be used for decoration. The ugly duckling of the flower family. \r\n\r\nOh, but the secret it holds. Soak it in some water with the right companions and it surrenders its bouquet to use a corny flower metaphor. That unique hop flavor is the difference between a fine pale ale and more ordinary beers. \r\n\r\nDundee Pale Ale understands the secret of the hop flower—the power to turn an ordinary beer into something extraordinary. \r\n\r\nAnd the power to make you indescribably hoppy. \r\n\r\nA wonderfully balanced true pale ale. Cascade, Tomahawk, and Amarillo hops create a citrusy aroma with a smooth, crisp finish. A subdued malt character nicely complements the hop complexity and produces an orangey amber hue."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-new_glarus_brewing_company-spotted_cow,0,0,244864253954,"{""name"":""Spotted Cow"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Cask conditioned ale has been the popular choice among brews since long before prohibition. We continue this pioneer spirit with our Wisconsin farmhouse ale. Brewed with flaked barley and the finest Wisconsin malts. We even give a nod to our farmers with a little hint of corn. \r\n\r\nNaturally cloudy we allow the yeast to remain in the bottle to enhance fullness of flavors, which cannot be duplicated otherwise. \r\n\r\nExpect this ale to be fun, fruity and satisfying. You know you're in Wisconsin when you see the Spotted Cow."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,17,1
-rowland_s_calumet_brewery-calumet_amber,0,0,244997029889,"{""name"":""Calumet Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
-pizzeria_uno_chicago_grill_brewery-oatmeal_stout,0,0,245003190272,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
-route_66_brewery-streamline_oatmeal_stout,0,0,244987133953,"{""name"":""Streamline Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
-rock_art_brewery-the_vermonster,0,0,244986740736,"{""name"":""The Vermonster"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We brewed THE VERMONSTER with 110 pounds of malt per barrel and jacked up the pour into a wide mouth thin glass goblet. For an amazing pairing get some Smoked Gouda from Taylor Farm Cheese and a friend!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,15,1
-steel_brewing,0,0,245104050176,"{""name"":""Steel Brewing"",""city"":""Longview"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.5007,""lon"":-94.7405}}",1,13,1
-margaritaville_brewing_company,0,0,244869758977,"{""name"":""Margaritaville Brewing Company"",""city"":""Jacksonville"",""state"":""Florida"",""code"":""32209"",""country"":""United States"",""phone"":""(877) 742-7501"",""website"":""http://www.landsharklager.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.3617,""lon"":-81.6966}}",1,31,1
-milwaukee_ale_house,0,0,244872249344,"{""name"":""Milwaukee Ale House"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53202"",""country"":""United States"",""phone"":""1-414-226-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""233 North Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0334,""lon"":-87.9093}}",1,38,1
-three_floyds_brewing-arctic_panzer_wolf,0,0,245102018560,"{""name"":""Arctic Panzer Wolf"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry and stupendously hopped medium bodied Imperial IPA brewed with Canadian two-row malt, dextrose sugar and lots of American hops. Arctic Panzer Wolf has superior aromas of marmalade, white wine, pine and apricot all mixed with an intense American hop bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,9,1
-platte_valley_brewing,0,0,244994146307,"{""name"":""Platte Valley Brewing"",""city"":""Kearney"",""state"":""Nebraska"",""code"":""68847"",""country"":""United States"",""phone"":""1-308-237-0751"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14 East Railroad""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.6954,""lon"":-99.0812}}",1,33,1
-granville_island_brewing_company,0,0,244741636096,"{""name"":""Granville Island Brewing Company"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-687-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1441 Cartwright Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.396,""lon"":-119.521}}",1,19,1
-heavyweight_brewing-old_salty,0,0,244741505025,"{""name"":""Old Salty"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavyweight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-rubicon_brewing-blond_barleywine,0,0,244992245760,"{""name"":""Blond Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rubicon_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-odell_brewing-5_barrel_pale_ale,0,0,244879589376,"{""name"":""5 Barrel Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The distinctive hop character of our 5 Barrel Pale Ale is due to the extraction of essential oils from select hops. We treat 5 Barrel Pale Ale to an infusion of fresh whole hop flowers in the Hop Back and the Fermentor, as well as four hop additions during the kettle boil. We like how this gives the beer a fresh, lively flavor and aroma."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,55,1
-seabright_brewery-oktoberfest,0,0,245002665985,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,52,1
-roffey_brewery,0,0,244984905729,"{""name"":""Roffey Brewery"",""city"":""Holland"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.7875,""lon"":-86.1089}}",1,10,1
-haarlems_biergenootschap_jopen,0,0,244754022402,"{""name"":""Haarlems Biergenootschap Jopen"",""city"":""Haarlem"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-23-533-41-14"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""R Pereboomweg 13 achter""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.3795,""lon"":4.6377}}",1,49,1
-iron_hill_brewery_wilmingon-russian_imperial_stout,0,0,244739145728,"{""name"":""Russian Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-irish_brewing_company,0,0,244757102594,"{""name"":""Irish Brewing Company"",""city"":""Newbridge"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Newbridge Industrial Estate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.4863,""lon"":-6.168}}",1,57,1
-mad_crab_restaurant_and_brewery-winter_ale,0,0,244880834561,"{""name"":""Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-routh_street_brewery_and_grille-bavarian_wheat,0,0,244985298945,"{""name"":""Bavarian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,11,1
-jacob_leinenkugel_brewing_company-northwoods_lager,0,0,244747927553,"{""name"":""Northwoods Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-labatt_ontario_breweries-labatt_wildcat,0,0,244748451841,"{""name"":""Labatt Wildcat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Wildcat is a popular priced, quality lager introduced in 1993. Conventional brewing processes are used to produce a quality mainstream lager using corn adjunct to deliver a light, dry flavour."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
-pacific_beach_brewhouse-rudolf_red_barleywine,0,0,244871921665,"{""name"":""Rudolf Red Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-steamworks-frambozen,0,0,245101297665,"{""name"":""Frambozen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""A ruby-red raspberry beer with a luscious, pink head\r\n\r\nOur Frambozen is inspired by the centuries old Belgian tradition of brewing beer with raspberries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Fraser Valley raspberries. The result is a ruby-red fruit beer with a intense raspberry flavour, a nice tart finish and a luscious pink head."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,8,1
-ruppaner_brauerei-hecker_dunkel,0,0,244983529473,"{""name"":""Hecker Dunkel"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-oy_sinebrychoff_ab,0,0,244863467520,"{""name"":""Oy Sinebrychoff AB"",""city"":""Kerava"",""state"":"""",""code"":"""",""country"":""Finland"",""phone"":""358-(09)-294-991"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Sinebrychoffinaukio 1""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":60.381,""lon"":25.1102}}",1,14,1
-mudshark_brewing,0,0,244881293316,"{""name"":""Mudshark Brewing"",""city"":""Lake Havasu City"",""state"":""Arizona"",""code"":""86403"",""country"":""United States"",""phone"":""1-928-453-2981"",""website"":""http://www.mudsharkbrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""210 Swanson Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.4686,""lon"":-114.341}}",1,59,1
-tyskie_browary_ksiazece-tyskie_gronie,0,0,245098545152,"{""name"":""Tyskie Gronie"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyskie_browary_ksiazece"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
-troegs_brewing-scratch_8_2008,0,0,245118861312,"{""name"":""Scratch #8 2008"",""abv"":10.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Revisiting Scratch #3, we take the same Tripel recipe, add beet and cane sugars to the kettle, and run the wort through our hopback brimming with juniper berries, coriander and yarrow flowers.\r\n\r\nInspired by the herbaceous nose of gin, the berries and flowers give a slight pine/citrus aroma with floral undertones. Scratch #8 has a dry, yeasty finish and noticeable alcohol warming when consumed."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,48,1
-schofferhofer,0,0,245004566530,"{""name"":""Schöfferhofer"",""city"":""Frankfurt/Main"",""state"":""Hessen"",""code"":""60598"",""country"":""Germany"",""phone"":"""",""website"":""http://www.schoefferhofer.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Darmstädter Landstrasse 185""]}",1,56,1
-hubcap_brewery_and_kitchen-pale_ale,0,0,244754612226,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hubcap_brewery_and_kitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-new_holland_brewing_company-mad_hatter_ipa,0,0,244864319488,"{""name"":""Mad Hatter IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dry-hopping provides a distinctive and floral hop aroma, while the lively and hoppy body is subtly balanced with delicious malt notes. Hatter’s hop character makes it a great fit for spicy dishes, bitter greens and beef."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
-roy_pitz_brewing_company-lovitz_lager_watermelon_lager,0,0,244997095424,"{""name"":""Lovitz Lager \""Watermelon Lager\"""",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This summertime lager is both smooth and refreshing as soon as it hits the lips. We take so much pride in it because there is truly nothing else like it on the market. We brew this American Style Lager beer with three types of malt: pilsner, pale and carafoam which enhance the head retention of this beer. We then gingerly scatter some very light floral hops at the beginning to give it some esters and sweetness that compliment the watermelon. The true magic of this beer does not occur in the brewing process but in the conditioning vessel. This is where we add the best farm fresh local watermelon and than push the beer into it, allowing it to sit and saturate for a few weeks. By the time it is complete, we are left with a unbelievably smooth tasting beer with a beautiful aroma and subtle taste of watermelon that imparts its way into this already crisp lager. Truly our customers' favorite, this one will have you reaching for another glass soon after you put the first one down."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
-port_brewing_company-sharkbite_red,0,0,245003190273,"{""name"":""Sharkbite Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Amber Ale"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,54,1
-sabmiller_india-royal_challenge,0,0,244987199488,"{""name"":""Royal Challenge"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Royal Challenge Premium Lager is the second largest selling mild beer in India. Royal Challenge is brewed with the choicest 6 malt barley. Its long brew duration provides it with a distinct, smooth taste and rich flavour. It has all the hall marks of a great beer - Color that is golden honey, taste that is smooth and crisp, lace that sticks to the wall of the glass. Royal Challenge Premium Lager is the beer for the discerning who have the confidence to make their choices based on their superior taste and knowledge rather than follow the crowd.\r\n\r\n\r\nhttp://www.sabmiller.in/brands_royal-challenge.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-rock_bottom_restaurant_brewery_denver-lucky_u_esb,0,0,244986740737,"{""name"":""Lucky U ESB"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-stone_city_brewing,0,0,245104050177,"{""name"":""Stone City Brewing"",""city"":""Solon"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8072,""lon"":-91.4941}}",1,13,1
-marine_pub_brewhouse-pale_ale,0,0,244869824512,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marine_pub_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-montana_brewing-sharptail_pale_ale,0,0,244872249345,"{""name"":""Sharptail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
-trade_winds_brewing-sunset_ale,0,0,245102018561,"{""name"":""Sunset Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-port_washington_brewing-amber_ale,0,0,244994211840,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
-great_dane_pub_and_brewing_1-old_scratch_barleywine_2002,0,0,244741701632,"{""name"":""Old Scratch Barleywine 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-hubcap_brewery_and_kitchen,0,0,244741505026,"{""name"":""Hubcap Brewery and Kitchen"",""city"":""Vail"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.6403,""lon"":-106.374}}",1,18,1
-saint_arnold_brewing-saint_arnold_spring_bock,0,0,244992245761,"{""name"":""Saint Arnold Spring Bock"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An authentic, German-style Bock, celebrating the coming of spring. This strong, deeply flavored lager has been aged to create a smooth, malty taste with a hint of sweetness. A light addition of German hops balances the malt flavor. \r\n\r\nSaint Arnold Spring Bock is best consumed at 40° Fahrenheit."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
-oggi_s_pizza_and_brewing_vista-sunset_amber_ale,0,0,244879589377,"{""name"":""Sunset Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
-sierra_nevada_brewing_co-esb_early_spring_beer,0,0,245002665986,"{""name"":""ESB - Early Spring Beer"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nOur ESB combines the best of English tradition with West Coast style. A blend of malts featuring British-grown Maris Otter is balanced with the earthy spiciness of hand-selected English and US hops. The ale is left unfiltered, which enhances mouthfeel and hop aroma creating a slightly reddish-copper hue"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
-route_66_brewery-rambling_raspberry_ale,0,0,244984905730,"{""name"":""Rambling Raspberry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,10,1
-hausbrauerei_zum_schlssel,0,0,244754087936,"{""name"":""Hausbrauerei Zum Schlssel"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-8289550"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bolkerstrae 41-47""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2261,""lon"":6.7745}}",1,49,1
-island_brewing_company-jubilee_ale,0,0,244739145729,"{""name"":""Jubilee Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,12,1
-iron_springs_pub_brewery-ipa,0,0,244757168128,"{""name"":""IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
-montana_brewing-fat_belly_amber,0,0,244880834562,"{""name"":""Fat Belly Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-russian_river_brewing-ovl_stout,0,0,244985298946,"{""name"":""OVL Stout"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This nitrogenated dry stout is low in alcohol but big in flavor. Its smooth roasted coffee like aromas and flavor are clean and drinkable.""}",1,11,1
-jacob_leinenkugel_brewing_company-oktoberfest,0,0,244747993088,"{""name"":""Oktoberfest"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-lagunitas_brewing_company-brown_shugga,0,0,244748451842,"{""name"":""Brown Shugga"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-pivovar_nchod-primator_blonde_bock_beer,0,0,244995915776,"{""name"":""Primátor Blonde Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_nchod"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,37,1
-stevens_point_brewery-augsburger_golden,0,0,245101363200,"{""name"":""Augsburger Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-saint_louis_brewery_schlafy_tap_room-baracktoberfest,0,0,244983595008,"{""name"":""Baracktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
-pabst_brewing_company-lone_star_light,0,0,244863467521,"{""name"":""Lone Star Light"",""abv"":3.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Lone Star Light mimics its full-bodied counterpart with an award winning premium light taste. This beer retains the complimentary ratio of barley, cereal grains, and hops of its parent brand.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,14,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_imperial_stout,0,0,244881293317,"{""name"":""Nøgne Ø Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""We think the russian tsar would have liked his stout this way. A dark, rich ale in which a generous sweetness with roasted malt bitterness. Serving temp.10°C/50°F. Great with vanilla ice cream or dark chocolate."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,59,1
-upstream_brewing_old_market-o_gold_light_beer,0,0,245098610688,"{""name"":""O! Gold Light Beer"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer has all of the great attributes of a light American lager with the unmatched freshness and taste only a local brew pub like Upstream can offer. If you like great tasting beer, O! Gold is the beer for you."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,2,1
-tsingtao-red_dragon_xtreme,0,0,245118861313,"{""name"":""Red Dragon Xtreme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tsingtao"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
-sherlock_s_home-star_of_india_india_pale_ale,0,0,245004566531,"{""name"":""Star of India India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
-iron_hill_brewery_wilmingon-pig_iron_porter,0,0,244754677760,"{""name"":""Pig Iron Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""Historically, porter had its heyday in 18th century London, where it was the beer of the working class. It doesn't take much to work up a thirst for this flavorful beer. The distinct roasted and chocolate notes are well balanced by a slight bitterness."",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
-new_holland_brewing_company-the_poet,0,0,244864319489,"{""name"":""The Poet"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Poet has a rich, smooth malt character enveloped in tones of roast and chocolate. A soft mouth-feel brings luxurious flavors and soothing aroma. It pairs wonderfully with earthy flavors such as mushrooms and beef, while remaining the perfect accent to any chocolate."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,17,1
-santa_fe_brewing_company-fiesta_ipa,0,0,244997095425,"{""name"":""Fiesta IPA"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic beer for those beer lovers who love their hops, Fiesta IPA will take the Pepsi Challenge (or IPA challenge, as we say in New Mexico) against any other pretenders to the throne. Was it divine providence that made this beer the king of the IPA world? Was it a tireless pursuit of glory? No, this IPA has a top-secret recipe to thank for its success, and this meticulously formulated combination of several different hops combined with a very specific brewing process give Fiesta IPA a spicy, citric, and floral infusion of hop character, which is masterfully counterbalanced with the full-bodied maltiness characteristic of the Santa Fe Brewing Company’s distinctive beers."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
-port_washington_brewing-post_washington_octoberfest,0,0,245003190274,"{""name"":""Post Washington Octoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,54,1
-saint_louis_brewery_schlafy_tap_room-schlafly_altbier,0,0,244987199489,"{""name"":""Schlafly Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,16,1
-sabmiller_india-haywords_5000,0,0,244986740738,"{""name"":""Haywords 5000"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Launched in the year 1983, Haywards 5000 is synonymous with strong beer in India. Haywards 5000 is brewed with the choicest of malts and hops lending itself to a unique flavour profile to suit the Indian taste and preference. Haywards 5000 is the hallmark of original and authentic strong beer which other beer brands aspire for. With such credentials, it is not surprising to see men get together over Haywards 5000. It is the language of friendship amongst men who are proud of their masculinity and look forward to a great time with their friends and peers .\r\n\r\nhttp://www.sabmiller.in/brands_haywards_5000.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
-the_cambridge_house-three_steve_stout,0,0,245104115712,"{""name"":""Three Steve Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Stout is brewed with English malt, hops and oats to produce a smooth coffee-like richness with a pleasant bittersweet finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
-michigan_brewing-peninsula_porter,0,0,244869824513,"{""name"":""Peninsula Porter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Full-flavored and robust ale with heavy notes of roasted malt. There are hints of coffee and chocolate flavors, complimented by medium hop bitterness and a hint of smokiness."",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
-nikenjayamochi_kadoya_honten_co-ise_kadoya_stout,0,0,244872249346,"{""name"":""Ise Kadoya Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nikenjayamochi_kadoya_honten_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A very yeasty beer with an earthy aroma. Rich flavors deepen the stout character."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-traffic_jam_and_snug-coal_porter,0,0,245102018562,"{""name"":""Coal Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traffic_jam_and_snug"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
-privatbrauerei_frankenheim,0,0,244994211841,"{""name"":""Privatbrauerei Frankenheim"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-16902-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wielandstrae 14-16""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2292,""lon"":6.7925}}",1,33,1
-great_divide_brewing-great_divide_belgica,0,0,244741701633,"{""name"":""Great Divide Belgica"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Roman name for the Low Countries–is a marriage of the best in American and Belgian brewing traditions. Belgian pilsner malt, a generous amount of American and European hops and a unique Belgian yeast strain combine to give Belgica big notes of citrus and spice, creating a lively concoction perfect for spring in the Rockies–or the Ardennes."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,19,1
-humboldt_brewing-honey_and_ginger_ale,0,0,244741505027,"{""name"":""Honey and Ginger Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-saint_louis_brewery_schlafy_tap_room-schlafly_wheat_ale,0,0,244992245762,"{""name"":""Schlafly Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
-orlio_organic,0,0,244879589378,"{""name"":""Orlio Organic"",""city"":""South Burlington"",""state"":""Vermont"",""code"":""5403"",""country"":""United States"",""phone"":""(802) 864-9820"",""website"":""http://www.orlio.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5 Bartlett Bay Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4284,""lon"":-73.2131}}",1,55,1
-siletz_roadhouse_brewery-oatmeal_cream_stout,0,0,245002665987,"{""name"":""Oatmeal Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
-russian_river_brewing-russian_river_ipa,0,0,244984971264,"{""name"":""Russian River IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An abundance of hops and malt are added to our IPA to create and preserve its distinctive flavors. Not only do we use generous portions of hops in the kettle, but we also dry hop this ale for one week after fermentation. The dry hopping process adds to this beer's floral and citrus aroma. This is truly a tasty adult beverage!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
-hawks_brewing-super_natural_oatmeal_stout,0,0,244754087937,"{""name"":""Super Natural Oatmeal Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-krogh_s_restaurant_and_brewpub-three_sisters_golden_wheat,0,0,244739145730,"{""name"":""Three Sisters Golden Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-ithaca_beer_company-lebleu,0,0,244757168129,"{""name"":""LeBleu"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with New York State Blueberries and Brettanomyces, Le Bleu is a blend of barrels filled in 2007, 2008, and 2009. It's finished in the bottle with Champagne yeast. \r\n\r\nEnjoy the dusty rose appearance, mouthwatering aroma of ripe berries, piquant flavor and quick finish.""}",1,57,1
-moosehead_breweries-canadian_lager_beer,0,0,244880900096,"{""name"":""Canadian Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosehead_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-sabmiller_india-indus_pride,0,0,244985364480,"{""name"":""Indus Pride"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""BEER TYPE Indus Pride is a 100% malt beer \r\nPRODUCT PROPOSITION Made of 100% malt lending it a unique rich flavor \r\nALCOHOL CONTENT BY VOLUME 4.8% by volume \r\nTASTE Rich in flavors with a clean head and foam \r\nCOLOUR Sunrise Yellow \r\nSERVING TEMPERATURE 7 degree Celsius \r\nPACKAGING 650 ml glass bottles : 12 bottles per case\r\n330 ml pack : 24 bottles per case \r\n\r\nhttp://www.sabmiller.in/induspride.html""}",1,11,1
-jw_lees_and_co_brewers_ltd-harvest_ale_2001,0,0,244747993089,"{""name"":""Harvest Ale 2001"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,34,1
-lightning_boy_brewery-thunder_pup_pale,0,0,244870938624,"{""name"":""Thunder Pup Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lightning_boy_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-plzesk_prazdroj_pivovar_radegast,0,0,244995981312,"{""name"":""Plzesk Prazdroj Pivovar Radegast"",""city"":""Noovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-558-602-175"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""CZ-739 51 Noovice""]}",1,37,1
-stone_brewing_co-smoked_porter,0,0,245101363201,"{""name"":""Smoked Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Stone Smoked Porter is dark, rich and complicated. A porter is substantially darker than a pale ale, but not as black or opaque as a stout. Our Smoked porter has a captivatingly deep mahogany color, complimented by silky dark tan head. Rich, full bodied and robust. Smooth, with chocolate and coffee-like flavors balanced by the subtle \""smoky\"" character of just the right amount of peat-smoked specialty malt."",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
-saku_lletehas-porter,0,0,244983595009,"{""name"":""Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saku_lletehas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-pabst_brewing_company-primo,0,0,244863467522,"{""name"":""Primo"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich golden liquid with a unique flavor and aroma that comes from a touch of raw Hawaiian cane sugar. Primo is a premium lager that represents the best of both worlds; the rich taste of a craft-brewed beer with the drinkability of a lighter lager. -http://www.thatsprimo.com/Recipe.aspx"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
-north_coast_brewing_company-wintertime_ale,0,0,244881358848,"{""name"":""Wintertime Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
-warsteiner_brauerei,0,0,245744402432,"{""name"":""Warsteiner Brauerei"",""city"":""Warstein"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2902-/-880"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Domring 4-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.4416,""lon"":8.3519}}",1,2,1
-united_breweries_limited,0,0,245118861314,"{""name"":""United Breweries Limited"",""city"":""Bangalore"",""state"":"""",""code"":"""",""country"":""India"",""phone"":""91-80-22441"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1/1 Vittal Mallya Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":12.9689,""lon"":77.5946}}",1,48,1
-shipwrecked_brew_pub-raspberry,0,0,245004632064,"{""name"":""Raspberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,56,1
-joshua_huddy_s_brew_pub_and_grill,0,0,244754677761,"{""name"":""Joshua Huddy's Brew Pub and Grill"",""city"":""Toms River"",""state"":""New Jersey"",""code"":""8753"",""country"":""United States"",""phone"":""1-732-240-3640"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.9529,""lon"":-74.201}}",1,50,1
-old_city_brewing-pecan_street_lager,0,0,244864319490,"{""name"":""Pecan Street Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
-sierra_nevada_brewing_co-bigfoot_1994,0,0,244997095426,"{""name"":""Bigfoot 1994"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-honey_weizen,0,0,245003255808,"{""name"":""Honey Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-sam_choy_s_breakfast_lunch_crab_big_aloha_brewery,0,0,244987199490,"{""name"":""Sam Choy's Breakfast, Lunch, Crab & Big Aloha Brewery"",""city"":""Honolulu"",""state"":""Hawaii"",""code"":""96817"",""country"":""United States"",""phone"":""1-808-545-7979"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""580 North Nimitz Highway""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":21.3069,""lon"":-157.858}}",1,16,1
-sapporo_breweries_chuo-imported_black_stout_draft,0,0,244986806272,"{""name"":""Imported Black Stout Draft"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sapporo_breweries_chuo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,15,1
-thunderhead_brewery_2-imperial_porter,0,0,245104115713,"{""name"":""Imperial Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
-millrose_brewing-panther_ale,0,0,244869824514,"{""name"":""Panther Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_100,0,0,244872314880,"{""name"":""Nøgne Ø #100"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""Our 100th batch, brewed for the enjoyment of the brewers, but popular demand forced us to release it commercially. This malty, yet light bodied ale has a massive hop bitterness. Most enjoyable in a comfortable chair in front of a roaring fire."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,38,1
-tunner_s_guild_brewing_systems-barbary_coast_brand_gold_rush_style_beer,0,0,245102084096,"{""name"":""Barbary Coast Brand Gold Rush Style Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-qingdao_brewery,0,0,244994211842,"{""name"":""Qingdao Brewery"",""city"":""Qingdao"",""state"":""Shandong"",""code"":"""",""country"":""China"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hongkong Road, Central""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.0663,""lon"":120.383}}",1,33,1
-great_divide_brewing-yeti_imperial_stout,0,0,244741767168,"{""name"":""Yeti Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally, Imperial Stouts, the biggest and boldest of all stouts, were brewed with massive amounts of roasted malts and hops, resulting in a velvety smooth but robust beer characterized by high alcohol content and extremely high hop bitterness. Meeting the challenge of this aggressive, challenging beer style, Great Divide’s Yeti Imperial Stout is an onslaught of the senses. An almost viscous, inky-black brew, Yeti opens with a massive, roasty, chocolate, coffee malt flavor that eventually gives way to rich toffee and burnt caramel notes. Packed with an enormous quantity of American hops, Yeti’s hop profile reveals a slightly citrusy, piney, and wonderfully dry hoppy finish."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,19,1
-karlovacka_pivovara,0,0,244741570560,"{""name"":""Karlovacka Pivovara"",""city"":""Karlovac"",""state"":"""",""code"":""0"",""country"":""Croatia"",""phone"":""385-47-451-300"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dubovac 22""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":45.4956,""lon"":15.5331}}",1,18,1
-schofferhofer-schofferhofer_hefeweizen_alkoholfrei,0,0,244992245763,"{""name"":""Schöfferhofer Hefeweizen alkoholfrei"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schofferhofer"",""updated"":""2010-07-22 20:00:20"",""description"":""alcohol-free Hefeweizen with the tipical taste, isotonic,"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,28,1
-otto_s_pub_and_brewery-black_mo_stout,0,0,244879654912,"{""name"":""Black Mo Stout"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry Irish-style stout served via nitrogen. Black Mo is a very smooth and creamy beer with a pleasant roasted malt character."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
-snipes_mountain_microbrewery_restaurant-extra_special_bitter,0,0,245120172032,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snipes_mountain_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-s_a_damm,0,0,244984971265,"{""name"":""S.A. Damm"",""city"":""Barcelona"",""state"":"""",""code"":"""",""country"":""Spain"",""phone"":"""",""website"":""http://www.estrelladamm.es/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.3879,""lon"":2.1699}}",1,10,1
-heineken_ireland,0,0,244754087938,"{""name"":""Heineken Ireland"",""city"":""Cork"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353-21-450-3371"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lady's Well Brewery""]}",1,49,1
-kuhnhenn_brewing-creme_brulee_java_stout,0,0,244739211264,"{""name"":""Creme Brulee Java Stout"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kuhnhenn_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Black ale beer, made with real coffee. This java stout goes through a unique process, involving caramelizing brown sugar to give it an intense caramel & vanilla aroma."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-jj_bitting_brewing,0,0,244757168130,"{""name"":""JJ Bitting Brewing"",""city"":""Woodbridge"",""state"":""New Jersey"",""code"":""7095"",""country"":""United States"",""phone"":""1-732-634-2929"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5549,""lon"":-74.2771}}",1,57,1
-murphy_s_wagon_wheel-wheat,0,0,244880900097,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-saint_louis_brewery_schlafy_tap_room-schlafly_ipa,0,0,244985430016,"{""name"":""Schlafly IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,11,1
-keihan_uji_kotsu,0,0,244747993090,"{""name"":""Keihan Uji Kotsu"",""city"":""Uji"",""state"":""Kinki"",""code"":"""",""country"":""Japan"",""phone"":""81-0774-22-2359"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[]}",1,34,1
-mad_anthony_brewing-lager,0,0,244871004160,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
-privatbrauerei_erdinger_weissbru-weissbier_mit_feiner_hefe,0,0,244996046848,"{""name"":""Weißbier Mit Feiner Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,37,1
-stone_brewing_co-vertical_epic_05_05_05,0,0,245101428736,"{""name"":""Vertical Epic 05.05.05"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-samuel_smith_old_brewery_tadcaster-winter_welcome_2007_2008,0,0,244983595010,"{""name"":""Winter Welcome 2007-2008"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-pacific_rim_brewing-admiral_esb,0,0,244986085376,"{""name"":""Admiral ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-o_grady_s_brewery_and_pub_1-magnificent_mild,0,0,244881358849,"{""name"":""Magnificent Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,59,1
-water_street_lake_country-honey_lager_light,0,0,245744467968,"{""name"":""Honey Lager Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
-valley_brewing_company-black_cat_stout,0,0,245118926848,"{""name"":""Black Cat Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Black Cat Stout is brewed using a blend of Chocolate, Carafa, Crystal and Munich malts. A small amount of wheat and oatmeal are added to give the beer body and mouth feel. Small amounts of roasted malts are added to give the beer a dry \r\ncoffee finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
-shmaltz_brewing_company-bittersweet_lenny_r_i_p_a,0,0,245004632065,"{""name"":""Bittersweet Lenny R.I.P.A."",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shmaltz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ladies and Gentlemen, Shmaltz Brewing Co. is proud to introduce Bittersweet Lenny's R.I.P.A. Brewed with an obscene amount of malts and hops. Shocking flavors - far beyond contemporary community standards. We cooked up the straight dope for the growing minions of our nation's Radical Beer junkies. Judges may not be able to define \""Radical Beer,\"" but you'll damn well know it when you taste it. Bruce died, officially declared a pauper by the State of California, personally broken and financially bankrupt simply for challenging America's moral hypocrisies with words. The memorial playbill read: \""Yes, we killed him. Because he picked on the wrong god.\"" -Directed by, the Courts, the Cops, the Church... and his own self-destructive super ego. Like Noah lying naked and loaded in his tent after the apocalyptic deluge: a witness, a patron saint, a father of what was to come. Sick, Dirty, Prophetic Lenny: a scapegoat, a martyr, a supreme inspiration."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,56,1
-jt_whitney_s_brewpub_and_eatery-pinckney_street_pale_ale,0,0,244754743296,"{""name"":""Pinckney Street Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-old_hat_brewery-kolsch,0,0,244864385024,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-simmerberg_brusttt_und_taferne-braustatt_gold,0,0,244997160960,"{""name"":""Bräustatt Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-stout,0,0,245003255809,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
-san_marcos_brewery_grill-old_english_ale,0,0,244987265024,"{""name"":""Old English Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
-schlobrauerei_reckendorf,0,0,244986806273,"{""name"":""Schlobrauerei Reckendorf"",""city"":""Reckendorf"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9544-/-9421-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mhlweg 18""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0224,""lon"":10.83}}",1,15,1
-titletown_brewing-old_fort_howard_pale_ale,0,0,245104181248,"{""name"":""Old Fort Howard Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-mudshark_brewing-scorpion_amber_ale,0,0,244869890048,"{""name"":""Scorpion Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Full Body Ale Balanced With Assertive Oregon Hops, Deep Amber In Color"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
-north_country_brewery-mccafferty_s_ale,0,0,244872314881,"{""name"":""McCafferty's Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a true Celtic Red ale that’s as faithful as its namesake. With a smooth balance between malt and hops, it’s sure to become a pubhouse favorite"",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,38,1
-twin_rivers_brewing-bock,0,0,245102084097,"{""name"":""Bock"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,9,1
-raccoon_lodge_and_brewpub_cascade_brewing-cascade_kreik_ale,0,0,244994277376,"{""name"":""Cascade Kreik Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Flanders Style Red Ale refermented with a sweet blend of fresh whole Northwest cherries. This beer spent more than six months of lactic fermentation and aging in small French oak wine barrels before being hand-bottled.""}",1,33,1
-green_mountain_beverage-woodchuck_granny_smith_varietal_draft_cider,0,0,244741767169,"{""name"":""Woodchuck Granny Smith Varietal Draft Cider"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":""It is made using 100% Granny Smith apples. This cider has a mouth-watering flavor that is tangy and tart, with just a touch of sweetness."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,19,1
-kross_brewing,0,0,244741570561,"{""name"":""Kross Brewing"",""city"":""Morrisville"",""state"":""Vermont"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.5617,""lon"":-72.5984}}",1,18,1
-schooner_s_grille_brewery-ipa,0,0,244992311296,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_s_grille_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,28,1
-otto_s_pub_and_brewery-pilsener_lager,0,0,244879720448,"{""name"":""Pilsener Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A well hopped medium bodied lager brewed in the Czech style of pilseners. \r\nThis beer displays the distinct flavor and aroma of saaz hops."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,55,1
-tabernash_brewing-kristall_weiss,0,0,245120172033,"{""name"":""Kristall Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,52,1
-salado_creek_brewing_company,0,0,244984971266,"{""name"":""Salado Creek Brewing Company"",""city"":""San Antonio"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.4241,""lon"":-98.4936}}",1,10,1
-hops_haven_brew_haus-port_washington_amber_ale,0,0,244754087939,"{""name"":""Port Washington Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,49,1
-lakefront_brewery-snake_chaser,0,0,244739211265,"{""name"":""Snake Chaser"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-kenya_breweries,0,0,244757168131,"{""name"":""Kenya Breweries"",""city"":""Nairobi"",""state"":"""",""code"":"""",""country"":""Kenya"",""phone"":""254-864000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 30161""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-1.2833,""lon"":36.8167}}",1,57,1
-new_glarus_brewing_company-edel_pils,0,0,244880965632,"{""name"":""Edel-Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our little village brewery in New Glarus, Wisconsin is proud to offer to you Edel-Pils. This \""Noble-Pilsner\"" is the creation of our brewmaster. He brought special yeast from Bavaria, combined it with Wisconsin barley and the finest Bavarian and American hops. Then employing traditional brewing methods, this Pilsner is finished with a long cold rest in our cellars. \r\n\r\nExpect this bier to be creamy and full-bodied with a smooth finish. It will complement any fine meal or friendly gathering. We took our time in brewing so that you might take your time enjoying."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-skol_breweries-royal_challenge_indian_premium_lager,0,0,244985430017,"{""name"":""Royal Challenge Indian Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skol_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
-kona_brewing-longboard_lager,0,0,244747993091,"{""name"":""Longboard Lager"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-main_street_station_casino_brewery_and_hotel-black_chip_porter,0,0,244871004161,"{""name"":""Black Chip Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_station_casino_brewery_and_hotel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
-pumphouse_pizza_and_brewing,0,0,244996046849,"{""name"":""Pumphouse Pizza and Brewing"",""city"":""Lake Delton"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.6011,""lon"":-89.7937}}",1,37,1
-stoudt_s_brewery-old_abominable_barley_wine,0,0,245101428737,"{""name"":""Old Abominable Barley Wine"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-sand_creek_brewing_company-pioneer_black_river_red,0,0,244983660544,"{""name"":""Pioneer Black River Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-piece-4_reverends_imperial_stout,0,0,244986150912,"{""name"":""4 Reverends Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""piece"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,14,1
-old_hat_brewery-schwarzbier,0,0,244881358850,"{""name"":""Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,59,1
-valley_brewing_company-cobra_hood_ipa,0,0,245118926849,"{""name"":""Cobra-Hood IPA"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our India Pale Ale is brewed in a California IPA style. The beer is generously hopped for bitterness with Magnum hops and finished with fresh Amarillo, Ahtanum and Cascade hops."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,48,1
-sixpoint_craft_ales-sweet_action,0,0,245004632066,"{""name"":""Sweet Action"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-12-20 15:50:16"",""description"":""Our most basic interpretation of what makes beer great -- sweetness from the barley malt and active spice from the hops. It is hazy golden in color, with a sweet honey aroma, and a dry, crisp flavor"",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,56,1
-kalamazoo_brewing,0,0,244754743297,"{""name"":""Kalamazoo Brewing"",""city"":""Kalamazoo"",""state"":""Michigan"",""code"":""49007"",""country"":""United States"",""phone"":""1-269-382-2338"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""355 East Kalamazoo Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2949,""lon"":-85.5788}}",1,50,1
-onopa_brewing-american_pale_ale,0,0,244864385025,"{""name"":""American Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-snowshoe_brewing_sonora-esb_extra_special_blizzard,0,0,245114798080,"{""name"":""ESB (Extra Special Blizzard)"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snowshoe_brewing_sonora"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
-rahr_sons_brewing_company-pecker_wrecker,0,0,245003255810,"{""name"":""Pecker Wrecker"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-san_miguel_corporation-san_miguel_1516,0,0,244987265025,"{""name"":""San Miguel 1516"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_miguel_corporation"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-scuttlebutt_brewing-gale_force_ipa,0,0,244986806274,"{""name"":""Gale Force IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-trade_winds_brewing-kuaipa,0,0,245104181249,"{""name"":""Kuaipa"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,13,1
-mussel_inn,0,0,244869890049,"{""name"":""Mussel Inn"",""city"":""Takaka"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(03)-525-9241"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Onekaka""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-40.7658,""lon"":172.705}}",1,31,1
-northwoods_brewpub_grill-poplar_porter,0,0,244872314882,"{""name"":""Poplar Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
-twin_rivers_brewing-india_pale_ale,0,0,245102084098,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-ramapo_valley_brewery-honey_blonde_lager,0,0,244994277377,"{""name"":""Honey Blonde Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-heineken_hungaria-soproni,0,0,244741767170,"{""name"":""Soproni"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_hungaria"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,19,1
-labatt_ontario_breweries-labatt_extra_dry,0,0,244741570562,"{""name"":""Labatt Extra Dry"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Extra Dry was the first national launch of a dry beer in Canada. Labatt Extra Dry is mashed longer than regular beers to leave less carbohydrate in the finished product, giving a lighter flavour with little aftertaste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-sea_dog_brewing_company-sea_dog_raspberry_wheat_ale,0,0,244992311297,"{""name"":""Sea Dog Raspberry Wheat Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sea_dog_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sea Dog Raspberry Wheat Ale is a dry, crisp refreshing ale with the added essence of raspberries."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
-pabst_brewing_company-lone_star,0,0,244879720449,"{""name"":""Lone Star"",""abv"":4.65,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The National Beer of Texas\r\n\""Lone Star beer uses the finest hops from the Pacific Northwest with hearty grains from the Central and Northern Plains. The GABF recognized Lone Star as a high quality American Cream Lager by awarding it with a silver medal. Malted barley and corn extract combine to provide Lone Star with nature's finest ingredients for brewing. Lone Star's ingredients give this beer its full natural flavor. The choicest hops lend complexity and aroma to this beer, and its proprietary mashing regimen creates the perfect balance of alcohol, body, and character.\""\r\nRegional to Texas. It is brewed under license by Miller Brewing Co., Fort Worth, TX."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-the_round_barn_winery_brewery,0,0,245120237568,"{""name"":""The Round Barn Winery & Brewery"",""city"":""Baroda"",""state"":""Michigan"",""code"":""49101"",""country"":""United States"",""phone"":""(800)-716-9463"",""website"":""http://www.roundbarnwinery.com/brewery.php"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""With more than 30 years of fermentation experience and an award-winning reputation in the industry, our line of hand-crafted brews embody the satisfying bold taste you've come to expect from The Round Barn."",""address"":[""10983 Hills Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9211,""lon"":-86.4583}}",1,52,1
-santa_fe_brewing_company-santa_fe_nut_brown,0,0,244984971267,"{""name"":""Santa Fe Nut Brown"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Brown Ale style originated in the pubs of England, where beer drinkers desired a beer that was both flavorful and complex, but at the same time mild enough to be a session beer. The Santa Fe Brewing Company's interpretation of this style uses a combination of high mash temperature, hard water, and low-alpha acid hops to produce a product that is both true to the style and distinctly Santa Fe. Brewing jargon aside, Santa Fe Nut Brown Ale is an easy-drinking beer, mild, smooth, and always a favorite. Try a keg at your next party!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
-hopworks_urban_brewery-deluxe_organic_ale,0,0,244754153472,"{""name"":""Deluxe Organic Ale"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Strong like bull but sweet like your momma. This unique beer is a trifecta of bold flavors. Hops, malt and alcohol bully the taste buds on the organic playground while the monitor blows the whistle!\"""",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,49,1
-lion_brewery_inc-lionshead_light,0,0,244862091264,"{""name"":""Lionshead Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,12,1
-klosterbrauerei_neuzelle,0,0,244757168132,"{""name"":""Klosterbrauerei Neuzelle"",""city"":""Neuzelle"",""state"":""Brandenburg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)33652-/-810-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brauhausplatz 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.091,""lon"":14.6509}}",1,57,1
-new_glarus_brewing_company-uff_da_bock,0,0,244880965633,"{""name"":""Uff-Da Bock"",""abv"":6.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
-sly_fox_brewhouse_and_eatery_royersford-anniversary_ipa_glacier,0,0,245103001600,"{""name"":""Anniversary IPA Glacier"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,11,1
-lake_superior_brewing-old_man_winter_warmer_2000,0,0,244748058624,"{""name"":""Old Man Winter Warmer 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-marzoni_s_brick_oven_brewing_co-avalanche_ipa,0,0,244871004162,"{""name"":""Avalanche IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Aggressively Bitter, Full-Bodied Ale with a Wonderful Floral Hop Aroma"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
-redhook_ale_brewery-black_hook_porter,0,0,244996112384,"{""name"":""Black Hook Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,37,1
-stout_brothers_public_house-the_yank_cream_ale,0,0,245101494272,"{""name"":""The Yank Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
-short_s_brewing_company,0,0,244983660545,"{""name"":""Short's Brewing Company"",""city"":""Bellaire"",""state"":""Michigan"",""code"":""49615"",""country"":""United States"",""phone"":""231-533-6622"",""website"":""http://www.shortsbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At SBC we want to share our passion for beer, good beer, and help you to enjoy the fruits of our labor. "",""address"":[""121 N. Bridge Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9763,""lon"":-85.2104}}",1,7,1
-pizzeria_uno_chicago_grill_brewery-station_house_red_ale,0,0,244986150913,"{""name"":""Station House Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
-olde_main_brewing-long_face_amber,0,0,244881424384,"{""name"":""Long Face Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,59,1
-weyerbacher_brewing_company-black_hole,0,0,245750628352,"{""name"":""Black Hole"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Coming in at an ABV of 7.0%, Our Black Hole satisfies the transition from dark ale to stout. We think of this as slightly \""Porter-ish\"" with a strong malt body and a very light hop finish. This is brewed year round and is available in Pennsylvania in the regular Variety Pack. This will help the ale drinker among us maintain their own balance!"",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-southern_star_brewing_company,0,0,245121286144,"{""name"":""Southern Star Brewing Company"",""city"":""Conroe"",""state"":""Texas"",""code"":""77303"",""country"":""United States"",""phone"":""(936).441-2739"",""website"":""http://www.southernstarbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1207 N. FM 3083 E.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":30.3489,""lon"":-95.4427}}",1,56,1
-kralovsky_pivovar_krusovice,0,0,244754808832,"{""name"":""Královský pivovar Krušovice"",""city"":""Krušovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""313 569 229"",""website"":""http://www.krusovice.cz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""270 53""]}",1,50,1
-park_city_brewing,0,0,244987461632,"{""name"":""Park City Brewing"",""city"":""Heber City"",""state"":""Utah"",""code"":""84032"",""country"":""United States"",""phone"":""1-435-654-5467"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""375 West 910 South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.496,""lon"":-111.42}}",1,17,1
-southern_tier_brewing_co-uber_sun_imperial_summer_wheat_ale,0,0,245114863616,"{""name"":""Über Sun Imperial Summer Wheat Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""It is through the movement of the universe that life presents itself in transformation. It is in this spirit that we make ÜberSun, a tribute to the dynamic energy of summer. The alignment of wheat and barley through this hop-infused brew embodies the solar system itself... This may be a difficult task, but one our brewers revel in! They brew a galaxy of taste into every batch. ÜberSun is the ultimate experience that will challenge you with each sip. ÜberSun Imperial Summer Wheat Beer takes off where our Hop Sun finishes. Like it’s little brother, ÜberSun is clean and full of flavor, but don’t pull an Icarus– this is one big beer! Pour a glass or drink straight from the bottle, it’s meant to be consumed wisely with friends between summer solstice and autumnal equniox."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,39,1
-rahr_sons_brewing_company,0,0,245003255811,"{""name"":""Rahr & Sons Brewing Company"",""city"":""Fortworth"",""state"":""Texas"",""code"":""76104"",""country"":""United States"",""phone"":""(817) 810-9266"",""website"":""http://www.rahrbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 Galveston Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7366,""lon"":-97.3274}}",1,54,1
-sanford_s_grub_and_pub,0,0,244987330560,"{""name"":""Sanford's Grub and Pub"",""city"":""Sheridan"",""state"":""Wyoming"",""code"":""82801"",""country"":""United States"",""phone"":""1-307-674-1722"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5 East Alger Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.8007,""lon"":-106.956}}",1,16,1
-sea_dog_brewing_company-sea_dog_apricot_wheat,0,0,244986871808,"{""name"":""Sea Dog Apricot Wheat"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sea_dog_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sea Dog Apricot Wheat Beer is a crisp and quenching wheat ale with a subtle essence of fresh apricots."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,15,1
-trinity_brewing_company-sunna_wit,0,0,245104181250,"{""name"":""Sunna Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trinity_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,13,1
-nicolet_brewing-prostrator_doppelbock,0,0,244869890050,"{""name"":""Prostrator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,31,1
-o_fallon_brewery-griesendiech_pilsner,0,0,244872380416,"{""name"":""Griesendiech Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_fallon_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-twin_rivers_brewing-pilsner,0,0,245102149632,"{""name"":""Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
-rogue_ales-mocha_porter_new_porter,0,0,244994342912,"{""name"":""Mocha Porter / New Porter"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Dedicated to the chocolate lover in each of us. Mocha Porter was once known as New Porter, in honor of the town of Newport, Oregon and home of Rogue Ales. The January/February 1995 issue of Mens Health magazine features a bottle of Rogue New Porter (todays Mocha Porter) in the Fifth Annual Collection of Good Advise, Health News, Dire Warnings, Notable Folks and Unsolicited Opinion. New Porter is described as the Best New Beer for 1994! The caption reads: \""Oh, Hoppy Day: For a beer- drinking experience order up a bottle of this microbrew from Oregon.\""\r\n\r\nRuddy brown in color, a bittersweet balance of malt and hops with a light cream finish. Mocha Porter is made from Northwest Harrington and Klages; 135-165, 95-115, and 70-80 Crystal; Beeston Chocolate, Black, Munich and Carastan malts. Perle and Centennial hops. Mocha Porter is available in a 12-ounce 6-pack, the classic 22-ounce bottle, and on draft."",""style"":""Porter"",""category"":""Irish Ale""}",1,33,1
-heller_bru_trum-aecht_schlenkerla_rauchbier_weizen,0,0,244741767171,"{""name"":""Aecht Schlenkerla Rauchbier Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-lakefront_brewery-oktoberfest,0,0,244741636096,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,18,1
-skagit_river_brewing-free_bike_amber,0,0,244992311298,"{""name"":""Free Bike Amber"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
-philadelphia_brewing_co-walt_wit,0,0,245003583488,"{""name"":""Walt Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The American poet WaltWhitman once portrayed a sunset over Philadelphia as, \""...a broad tumble of clouds, with much golden haze and profusion of beaming shaft and dazzle.\"" Pour yourself a bottle of Walt Wit Belgian White-Style Ale and see what he was talking about. A pinch of spice and a whisper of citrus lend complexity to this fragrant, satisfying ale."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,55,1
-thunderhead_brewery-saison,0,0,245120237569,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-ska_brewing_company-steel_toe_stout,0,0,244985036800,"{""name"":""Steel Toe Stout"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional English Cream Stout is brewed with actual milk sugar to create a creamy and sweet brew. Jet black in color, the latte frothy head will make you mooo for more."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,10,1
-independence_brewing_co,0,0,244754153473,"{""name"":""Independence Brewing Co"",""city"":""Austin"",""state"":""Texas"",""code"":""78744"",""country"":""United States"",""phone"":"""",""website"":""http://www.independencebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3913 Todd Lane #607""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2131,""lon"":-97.7358}}",1,49,1
-live_oak_brewing-live_oak_pale_ale,0,0,244862156800,"{""name"":""Live Oak Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A delicious example of the \""neo-classical\"" American beer style. It has a beautiful copper color and is topped with a thick rich head. With a hint of ale fruitiness in the nose, Pale Ale starts out malty, finishes dry and has plenty of Cascade hops in between. It is sure to satisfy the most discerning ale aficionados."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
-kona_brewing-fire_rock_pale_ale,0,0,244757233664,"{""name"":""Fire Rock Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
-new_river_brewing,0,0,244880965634,"{""name"":""New River Brewing"",""city"":""Atlanta"",""state"":""Georgia"",""code"":""30341"",""country"":""United States"",""phone"":""1-770-841-2953"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2015 Afond Court""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.9089,""lon"":-84.3056}}",1,58,1
-southend_brewery_and_smokehouse_charleston,0,0,245103067136,"{""name"":""Southend Brewery and Smokehouse - Charleston"",""city"":""Charleston"",""state"":""South Carolina"",""code"":""29401"",""country"":""United States"",""phone"":""1-843-853-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""161 East Bay Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7785,""lon"":-79.9273}}",1,11,1
-lancaster_brewing_co-lancaster_strawberry_wheat,0,0,244748058625,"{""name"":""Lancaster Strawberry Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Just in time for summer, this American wheat lager style beer with the subtle suggestion of real, fresh strawberries, is the perfect pint of true refreshment. Light and crisp, our Strawberry Wheat is a \""must try\"" for fruit and beer lovers alike."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
-marzoni_s_brick_oven_brewing_co-marzoni_s_amber_lager,0,0,244871069696,"{""name"":""Marzoni's Amber Lager"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Slightly Malty Amber Lager"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
-revolution_brewing_llc-cross_of_gold,0,0,244996112385,"{""name"":""Cross of Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""An american blonde ale with bursts of fruity aroma and a dry finish."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,37,1
-the_livery-the_livery_dunkel_weizen,0,0,245101494273,"{""name"":""The Livery Dunkel Weizen"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark version of our Hefe Weizen retains the banana and clove flavors from the yeast and also has a richer malt flavor. Available November through April"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,8,1
-sioux_falls_brewing-buffalo_stout,0,0,244983660546,"{""name"":""Buffalo Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-wheaten_ale,0,0,244986216448,"{""name"":""Wheaten Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
-olde_main_brewing-stout_to_be_named_later,0,0,244881424385,"{""name"":""Stout \""To Be Named Later\"""",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
-widmer_brothers_brewing-broken_halo_ipa,0,0,245750693888,"{""name"":""Broken Halo IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Broken Halo IPA is a beer produced in the spirit of traditional IPA products shipped from the UK to India in the late 1800s. The almost excessive amounts of Cascade and Columbus hops used in Broken Halo give it notable citrus and grapefruit aromas and flavors. The beer bitterness measures high but tastes smooth due to the full-bodied, Caramel malt sweetness. The finish is juicy, clean, and short lived. A devilishly bold, heavenly smooth India Pale Ale.\""\r\n-Widmer Brothers Brewing Company"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
-spoetzl_brewery-shiner_summer_stock_kolsch_beer,0,0,245121286145,"{""name"":""Shiner Summer Stock Kölsch Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-la_jolla_brewing-red_roost_ale,0,0,244754808833,"{""name"":""Red Roost Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
-pizza_port_brewing_solana_beach,0,0,244987527168,"{""name"":""Pizza Port Brewing - Solana Beach"",""city"":""Solana Beach"",""state"":""California"",""code"":""92075"",""country"":""United States"",""phone"":""1-858-481-7332"",""website"":""http://www.pizzaport.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Pizza Port was established in March of 1987 when we started making pizzas in our present location in Solana Beach! We started brewing beer as a hobby and as we began brewing more than we could leisurely drink, we really wanted to share some of the incredible brews that we created for fun with our customers too. We installed a 7 barrel brewery and served our first handcrafted beer brewed on the premises in October of 1992. In July of 1997, we celebrated our 10th anniversary by opening another location in Carlsbad. We expanded our brewing capacity into the building next door creating the opportunity to brew, bottle, distribute, and drink even more. Our distribution center is called PORT BREWING! We found the perfect location in San Clemente and opened in July of 2003 enabling us to brew several additional styles! Let's party! When people started asking where they could get our beer besides Pizza Port enough, we acquired the old Stone Brewing facility in San Marcos at 155 Mata Way #104 to expand our distribution as PORT BREWING! We officially opened on Cinco de Mayo 2006. Now we will be able to make up to 10,000 barrels to get out to your other favorite places to enjoy coldies! More impressive is the 100 plus barrel room for all of our barrel aged specialties. Come check out our tasting bar where you can get bottles, jugs & merchandise to go while you sample what's brewing!"",""address"":[""135 North Highway 101""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.9908,""lon"":-117.272}}",1,17,1
-sports_city_cafe_brewery-brown_ale,0,0,245114863617,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-river_west_brewing-india_pale_ale,0,0,245003321344,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
-sherlock_s_home-palace_porter,0,0,244987330561,"{""name"":""Palace Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,16,1
-shmaltz_enterprises-coney_island_lager,0,0,244986871809,"{""name"":""Coney Island Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shmaltz_enterprises"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-troegs_brewing-esb,0,0,245104181251,"{""name"":""ESB"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs E.S.B. \""extra special bitter\"" is dry hopped in the old world traditions. It has a full bodied caramel malt flavor an spicy hop aroma. A generous amount of Golding hops are added before fermentation to impart a pleasant \""bouquet nose\"" and balanced with pronounced caramel malts to create a complex, malty, aromatic amber ale."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,13,1
-orlando_brewing-orange_blossom_pilsner,0,0,244869955584,"{""name"":""Orange Blossom Pilsner ²"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlando_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""When you make a pot of coffee, but only use half the water, you get some pretty rich coffee. That's the approach we took with our latest offering. OBP Squared, with half the water, has 11% alcohol by volume-twice that of original OBP.\r\n\r\nThe result is a bold, distinct taste of its own. Made with twice as much real orange blossom honey, all-natural ingredients and no refined sugar, it really is the new king bee of beers."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,31,1
-o_hara_s_brewpub_and_restaurant-golden_honey_wheat,0,0,244872380417,"{""name"":""Golden Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_hara_s_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
-twin_rivers_brewing-weissbier,0,0,245102149633,"{""name"":""Weissbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
-sam_choy_s_breakfast_lunch_crab_big_aloha_brewery-s_team,0,0,244994342913,"{""name"":""S-Team"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sam_choy_s_breakfast_lunch_crab_big_aloha_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-high_falls_brewing-dundee_kolsch_style_ale,0,0,244741832704,"{""name"":""Dundee Kölsch-Style Ale"",""abv"":5.68,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-maclay_and_co-scotch_ale,0,0,244864450560,"{""name"":""Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-smuttynose_brewing_co,0,0,245110145024,"{""name"":""Smuttynose Brewing Co."",""city"":""Portsmouth"",""state"":""New Hampshire"",""code"":""3801"",""country"":""United States"",""phone"":""603-436-4026"",""website"":""http://www.smuttynose.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Smuttynose was founded in 1994 by the folks who started the Northampton and Portsmouth Breweries. Our beers - Shoals Pale Ale, Old Brown Dog, Portsmouth Lager, IPA, Robust Porter, The Big Beer Series & our seasonal specialties - are distributed throughout New England and the mid-Atlantic states."",""address"":[""225 Heritage Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0325,""lon"":-70.7948}}",1,28,1
-platte_valley_brewing-stout,0,0,245003583489,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""platte_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
-titletown_brewing-millennium_ale,0,0,245120303104,"{""name"":""Millennium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-slab_city_brewing-old_47_ale,0,0,244985036801,"{""name"":""Old 47 Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-iron_hill_brewery_wilmingon-lodestone_lager,0,0,244754153474,"{""name"":""Lodestone Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-manayunk_brewery_and_restaurant-nokdechiloff,0,0,244862222336,"{""name"":""Nokdechiloff"",""abv"":12.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""This winter warmer will knock the chill away until summer. It used as much malt as our brew house can handle and armloads of fresh hops and lovingly laid in our fermentor for four months. Massively malty and balanced with burly bitterness it is truly the king of beers, approaching wine in strength. A definitive one to have when you’re only having one. Adoringly served in brandy snifters to preserve precious properties."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,12,1
-la_jolla_brew_house,0,0,244757233665,"{""name"":""La Jolla Brew House"",""city"":""La Jolla"",""state"":""California"",""code"":""92037"",""country"":""United States"",""phone"":""1-858-456-6279"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7536 Fay Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.8409,""lon"":-117.274}}",1,57,1
-niagara_falls_brewing-eisbock,0,0,244880965635,"{""name"":""Eisbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
-southern_tier_brewing_co-hop_sun,0,0,245103067137,"{""name"":""Hop Sun"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Pour Hop Sun Summer Wheat Beer into a pint glass, give it a long whiff and you’ll realize that this isn’t your average wheatbeer. Filtered to a golden clarity and dry-hopped to perfection, Hop Sun is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of lemon and sweet malts waft to the fore as a touch of bitterness contributes to Hop Sun’s bright finish. Enjoy Hop Sun all summer long as a perfect balance to your outdoor recreation. Summer never tasted so good."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,11,1
-lazy_magnolia_brewing_company-southern_pecan,0,0,244748058626,"{""name"":""Southern Pecan"",""abv"":4.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lazy_magnolia_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Southern Pecan Nut Brown Ale is the first beer in the world, to our knowledge, made with whole roasted pecans. The pecans are used just like grain and provide a nutty characteristic and a delightful depth to the flavor profile. This beer is very lightly hopped to allow the malty, caramel, and nutty flavors shine through. The color is dark mahogany. Southern Pecan won a Bronze Medal in the 2006 World Beer Cup in the Specialty Beer category.""}",1,34,1
-mehana_brewing,0,0,244871069697,"{""name"":""Mehana Brewing"",""city"":""Hilo"",""state"":""Hawaii"",""code"":""96720"",""country"":""United States"",""phone"":""1-808-934-8211"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""275 East Kawili Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":19.706,""lon"":-155.069}}",1,35,1
-river_horse_brewing_company-summer_blonde,0,0,244996112386,"{""name"":""Summer Blonde"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Great summer memories are born out of uncomplicated times. We've made that the basis for our summer blonde recipe and kept this ale pure and simple. Relax and enjoy this all natural, light, golden beauty; a seasonal offering from the River Horse Brewing Company."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,37,1
-thirsty_dog_brewing-old_leghumper_porter,0,0,245101494274,"{""name"":""Old Leghumper Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter, dark brown in color and full bodied with a malty sweet taste."",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
-skagit_river_brewing-steelie_brown_ale,0,0,244983660547,"{""name"":""Steelie Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
-pyramid_alehouse_brewery_and_restaurant_seattle-thunder_head_ipa,0,0,244986216449,"{""name"":""Thunder Head IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
-oregon_trail_brewery,0,0,244881489920,"{""name"":""Oregon Trail Brewery"",""city"":""Corvallis"",""state"":""Oregon"",""code"":""97333"",""country"":""United States"",""phone"":""1-503-758-3257"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""341 SW Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5613,""lon"":-123.261}}",1,59,1
-william_kuether_brewing-princess_of_darkness_porter,0,0,245750693889,"{""name"":""Princess of Darkness Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""william_kuether_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-strangford_lough_brewing_company_ltd-st_patrick_s_best,0,0,245121286146,"{""name"":""St. Patrick's Best"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Light and refreshing on the palate, our session best bitter has a classic Irish malt & traditional hop aroma. Light amber in colour, this smooth beer has hints of caramel with a woody bitterness."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,56,1
-long_trail_brewing_co-blackbeary_wheat,0,0,244877230080,"{""name"":""Blackbeary Wheat"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Light & refreshing with a hint of blackberry at the finish makes this beer a real thirst quencher. For the health conscious, Blackbeary Wheat has less than 6 grams of carbs and contains 0 fat."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
-porterhouse_restaurant_and_brewpub-hop_hazard,0,0,244987592704,"{""name"":""Hop Hazard"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-steinfels_back_brau-altbier,0,0,245114863618,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steinfels_back_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
-rock_art_brewery-whitetail_golden_ale,0,0,245003321345,"{""name"":""Whitetail Golden Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our golden American ale has a crisp body and slightly dry, hoppy finish. This is a real treat for the beer lover. Pale, wheat and torrified wheat malts are used with Northern Brewer and Mt. Hood hops."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,54,1
-shipwrecked_brew_pub,0,0,244987396096,"{""name"":""Shipwrecked Brew Pub"",""city"":""Egg Harbor"",""state"":""Wisconsin"",""code"":""54209"",""country"":""United States"",""phone"":""1-888-868-2767"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7791 Egg Harbor Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.0495,""lon"":-87.2802}}",1,16,1
-sierra_nevada_brewing_co-bigfoot_2006,0,0,244986937344,"{""name"":""Bigfoot 2006"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-troegs_brewing-sunshine_pils,0,0,245104181252,"{""name"":""Sunshine Pils"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hop fans rejoice! Sunshine Pils combines the crisp taste of European style pilsners with a kicked-up hop character to create a balanced, refreshing seasonal beer. Golden in color with a fluffy white head, Sunshine Pils is the perfect beer for Summer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,13,1
-penn_brewery-penn_weizen,0,0,244993097728,"{""name"":""Penn Weizen"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Authentic wheat beer, brewed in the Southern German tradition, won the Silver Medal in 1997 and the Gold Medal at the 2000 in Denver, Colorado. Penn Weizen is top-fermented, cask-conditioned, and very effervescent with a slight hint of tangy clove flavor."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,31,1
-old_hat_brewery,0,0,244872380418,"{""name"":""Old Hat Brewery"",""city"":""Lawton"",""state"":""Michigan"",""code"":""49065"",""country"":""United States"",""phone"":""1-269-624-6445"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""114 North Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.1682,""lon"":-85.8497}}",1,38,1
-two_dogs_beverage_company,0,0,245102215168,"{""name"":""Two Dogs Beverage Company"",""city"":""Manhasset"",""state"":""New York"",""code"":""11030"",""country"":""United States"",""phone"":""1-516-869-6568"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""272 Plandome Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7964,""lon"":-73.699}}",1,9,1
-ship_inn_brewpub-best_bitter,0,0,244994342914,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-hoppy_brewing_company-total_eclipse_black_ale,0,0,244741832705,"{""name"":""Total Eclipse Black Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Total Eclipse Black Ale has been described as similar to a light, dry stout. Characterized by its distinctive hop aroma and rich, black color, Total Eclipse redefines the way you think about a dark ale. Brewed at a low temperature to create a refreshingly dry finish, Total Eclipse uses only the finest two row malted barley and hops grown in the great Pacific Northwest. This combination results in a clean, crisp, hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity. \r\nIt’s “totally” out of this world delicious!!!"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
-magic_hat-lucky_kat,0,0,244864450561,"{""name"":""Lucky Kat"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep golden IPA with a firm malt body, finishing with a big hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
-southern_tier_brewing_co-big_red_imperial_red_ale,0,0,245110210560,"{""name"":""Big Red Imperial Red Ale"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
-port_brewing_company-3rd_anniversary_ale,0,0,245003583490,"{""name"":""3rd Anniversary Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,55,1
-tooheys,0,0,245120303105,"{""name"":""Tooheys"",""city"":""Sydney"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""29 Nyrang Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-33.8501,""lon"":151.045}}",1,52,1
-sleeman_brewing_malting-sapporo_premium_beer,0,0,244985036802,"{""name"":""Sapporo Premium Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sleeman_brewing_malting"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-john_harvard_s_brew_house_framingham-wilmington_roggen_beer,0,0,244754219008,"{""name"":""Wilmington Roggen Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brew_house_framingham"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
-matilda_bay_brewing,0,0,244862222337,"{""name"":""Matilda Bay Brewing"",""city"":""North Fremantle"",""state"":""Western Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(08)-9430-0777"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""130 Stirling Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-32.0232,""lon"":115.754}}",1,12,1
-lancaster_brewing_co-boss_hog_double_ipa,0,0,244757233666,"{""name"":""Boss Hog Double IPA"",""abv"":10.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
-niagara_falls_brewing-old_jack,0,0,244881031168,"{""name"":""Old Jack"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,58,1
-sprecher_brewing-sprecher_russian_imperial_stout,0,0,245103132672,"{""name"":""Sprecher Russian Imperial Stout"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Once brewed in Britain for the Russian Czars, this tremendously rich and thick ale uses a profusion of burnt and caramel malts. A massive mouthful of dark roasted malt and coffee flavors finishes with hints of chocolate, caramel & licorice."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
-lion_brewery_ceylon_ltd-lion_stout,0,0,244870676480,"{""name"":""Lion Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_ceylon_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""\""...the stout was soft, fresh and quite delicious. This was the top-fermenting Lion Stout...It was bottle-conditioned and had an extraordinary chocolaty, mocha...character.\"" - Michael Jackson, The Beer Hunter"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
-michigan_brewing-bavarian_dark,0,0,244871069698,"{""name"":""Bavarian Dark"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Russett colored brown ale with a thinner but well defined white head, grainy aromas with a touch of caramel flavors."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,35,1
-river_west_brewing-nut_brown,0,0,244996177920,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
-triumph_brewing_of_new_hope,0,0,245101559808,"{""name"":""Triumph Brewing of New Hope"",""city"":""New Hope"",""state"":""Pennsylvania"",""code"":""18938"",""country"":""United States"",""phone"":""1-215-862-8300"",""website"":""http://www.triumphbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""400 Union Square""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.3659,""lon"":-74.9544}}",1,8,1
-snake_river_brewing,0,0,245100773376,"{""name"":""Snake River Brewing"",""city"":""Jackson"",""state"":""Wyoming"",""code"":""83001"",""country"":""United States"",""phone"":""307.739.BEER"",""website"":""http://www.snakeriverbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""from their site: At the Snake River Brewing Company, we think it's far easier to produce a million barrels of so-so beer than one barrel of great beer. So, here in Jackson Hole, we only produce about 5,000 barrels of award-winning beer per year. We operate a 15 barrel, steam fired brew house and hand craft our lagers and ales using several yeast strains along with hops and grains from the United States, British Isles and Europe. The SRB Brewery was also granted Organic certification in 2007 allowing us to create our first Organic Certified beer OB-1, an english style brown ale, which is fast becoming a favorite among our patrons."",""address"":[""265 S. Millward""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.4768,""lon"":-110.765}}",1,7,1
-radeberger_exportbierbrauerei,0,0,244986216450,"{""name"":""Radeberger Exportbierbrauerei"",""city"":""Radeberg"",""state"":""Sachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)3528-/-454-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dresdener Strae 2""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1148,""lon"":13.915}}",1,14,1
-oy_sinebrychoff_ab-koff_special_iii,0,0,244881489921,"{""name"":""Koff Special III"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oy_sinebrychoff_ab"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-williams_brothers_brewing_company-alba_scots_pine_ale,0,0,245750693890,"{""name"":""Alba Scots Pine Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
-sweetwater_brewing_atlanta-exodus_porter,0,0,245121351680,"{""name"":""Exodus Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a classic American Porter, poured on tap it has a good head that stays and leaves a nice lace. It is defined by its chocolate malt, medium body, and smooth mouthfeel. Balanced by the Golding and Columbus hops on the finish is a hint of bitterness. \r\nDon’t be afraid of the dark."",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
-mad_anthony_brewing-old_woody_pale_ale,0,0,244877230081,"{""name"":""Old Woody Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-portsmouth_brewery-kate_the_great_russian_imperial_stout,0,0,244987658240,"{""name"":""Kate The Great Russian Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The granddaddy of stouts. Intended for export to the Imerial Court of Russia's Catherine the Great. Jet black. Full-bodied. Very strong."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,17,1
-storm_brewing-black_plague_stout,0,0,245114929152,"{""name"":""Black Plague Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Derives its name from the historical fact that at one time in Europe beer was about the only safe liquid to drink. Black Plague is Irish style dry stout brewed only in fall and winter and only in small batches to ensure the freshness so paramount to such an intensely roasted beer."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
-rock_bottom_restaurant_brewery_denver-rocktoberfest,0,0,245003321346,"{""name"":""Rocktoberfest"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,54,1
-sierra_nevada_brewing_co-anniversary_ale_2007,0,0,244987396097,"{""name"":""Anniversary Ale 2007"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nEach fall we celebrate our anniversary as one of America’s craft brewing pioneers with a special beer. This year, in celebration of our 27th year, we have made this beer available to the public for the first time, and aptly named it Anniversary Ale. \r\n\r\nAnniversary Ale is an American-style IPA featuring Cascade hops, the signature hop used in our Pale Ale. The beer has a pronounced pine and citrus hop aroma balanced by the sweetness of two-row pale and caramel malts. The result is an unusually well-balanced IPA that proves an IPA can be both assertive and elegant. Anniversary Ale is a medium-bodied, well-hopped ale that finishes with a slight malt sweetness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
-sierra_nevada_brewing_co-glissade_golden_bock,0,0,244986937345,"{""name"":""Glissade Golden Bock"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""As winter begins its slide toward the sunny days of spring, we bring you Glissade Golden Bock to help you enjoy the ride. Glissade is a remarkably mellow take on the traditional spring bock. With restrained sweetness, we emphasize subtle malt flavor, balanced against delicate aromas of spicy and floral European hops. This complex balance helps Glissade slide across the palate—bracing us against the last cold nights of winter, while its bright golden color turns our thoughts toward spring."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,15,1
-troegs_brewing-troegs_pale_ale,0,0,245104246784,"{""name"":""Troegs Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Tröegs Brewery classic, our Pale Ale is copper colored with generous amounts of Cascade hops to create a floral, aromatic pale ale that smells as delicious as it tastes."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
-rahr_sons_brewing_company-blind_salamander_pale_ale,0,0,244993163264,"{""name"":""Blind Salamander Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Blind Salamander Pale Ale is the first of a series of Rahr beers\r\ncalled Rare Breed. These beers are dedicated to improving the lot of\r\nendangered Texas species. Rahr is making donations from these proceeds\r\nto the Texas Parks & Wildlife Foundation to help with the recovery\r\nof these species. \r\n\r\nThe Texas Blind Salamander is a rare cave dwelling troglobite amphibian native to San\r\nMarcos, specifically the San Marcos Pool in the Edwards Aquifer. It has\r\nbright red external gills for absorbing oxygen from the water. Its\r\nmature length is 5 cm and its diet varies by what flows into its cave,\r\nincluding shrimp, snails and amphipods. \r\n\r\nBlind Salamander Pale Ale is a blend of the finest pale malts and East Kent\r\nGoldings hops. The fine balance of these toasted caramel malts and\r\nearthy hops makes Blind Salamander an easy drinking and satisfying ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-otto_s_pub_and_brewery-dubbel_ale,0,0,244872445952,"{""name"":""Dubbel Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An Abbey-style Dubbel ale. This dark amber brown ale is full of apple, raisin, and banana esters with a smooth malty finish."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,38,1
-valley_brewing_company-ports_pale_ale,0,0,245102215169,"{""name"":""Ports Pale Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ports Pale Ale is an extremely light and easy to drink Pale Ale. It is brewed with the finest German and English Malt and Hops. Brewed for the local Stockton ports baseball team."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
-shipyard_brewing_portland,0,0,244994408448,"{""name"":""Shipyard Brewing - Portland"",""city"":""Portland"",""state"":""Maine"",""code"":""4101"",""country"":""United States"",""phone"":""1-800-789-0684"",""website"":""http://www.shipyard.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Since 1994, Shipyard Brewing Company has been brewing fine quality products with a wide range of style profiles. We use only top quality ingredients and pride ourselves on the consistency and freshness of our products. All our beer is hand crafted from recipes developed by master brewer Alan Pugsley, one of the most influential people in the craft brewing movement in North America. Shipyard is available in 35+ states around the country and markets for our freshly brewed, hand-crafted beers continue to expand."",""address"":[""86 Newbury Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.6619,""lon"":-70.2489}}",1,33,1
-indian_wells_brewing-mojave_gold,0,0,244741832706,"{""name"":""Mojave Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-mcmenamins_mill_creek,0,0,244864516096,"{""name"":""McMenamins Mill Creek"",""city"":""Mill Creek"",""state"":""Washington"",""code"":""98012"",""country"":""United States"",""phone"":""1-425-316-0520"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13300 Bothell-Everett Highway #304""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.8774,""lon"":-122.211}}",1,18,1
-steamworks,0,0,245110210561,"{""name"":""Steamworks"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""V6B 5C6"",""country"":""Canada"",""phone"":""1-604-689-2739"",""website"":""http://www.steamworks.com/gastown_index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Steamworks gets its name from the famous Gastown steam line that runs through our premises. The Gastown Brewing Company, which is located onsite and brews Steamworks beers, uses steam to fire its kettles. The instant heat of steam allows for greater brewing finesse, and most importantly great tasting beer. Whether you're in the mood for a thirst quenching Lions Gate lager, or a full bodied HeriocaTM Oatmeal Stout, we've got a beer to please your palate."",""address"":[""375 Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.2849,""lon"":-123.11}}",1,28,1
-port_brewing_company-port_panzer_imperial_pilsner,0,0,245003649024,"{""name"":""Port Panzer Imperial Pilsner"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-twin_ports_brewing,0,0,245120303106,"{""name"":""Twin Ports Brewing"",""city"":""Superior"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.7208,""lon"":-92.1041}}",1,52,1
-southampton_publick_house-south_hampton_ipa,0,0,245102346240,"{""name"":""South Hampton IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
-kona_brewing-wailua,0,0,244754219009,"{""name"":""Wailua"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Wailua is Hawaiian for two fresh water streams mingling. This was just the inspiration we needed for our Limited Release wheat ale brewed with tropical passion Fruit. A refreshing citrusy, sun-colored ale with the cool taste of Hawaii."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
-mickey_finn_s_brewery-scapegoat_bock,0,0,244862222338,"{""name"":""Scapegoat Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
-little_apple_brewing-xx_black_angus_stout,0,0,244880375808,"{""name"":""XX Black Angus Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,57,1
-oak_creek_brewery-oak_creek_amber_ale,0,0,244881031169,"{""name"":""Oak Creek Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-steamworks-skinny_tire_hefeweizen,0,0,245103132673,"{""name"":""Skinny Tire Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Hefeweizen is a faithful version of the traditional Bavarian wheat beer. Hefe is the German word for 'yeast' and weizen means 'wheat'. This beer is made with 40% wheat malt and is brewed with a special yeast that tends to stay in suspension, giving the beer its cloudy appearance. Bavarians are so convinced of the healthful qualities of this yeasty brew that doctors there are known to prescribe two Hefeweizens a day to feeble patients. The yeast used for this brew also imparts its unique spicy, clovey flavour. Some people even detect a light banana flavour. All of these wacky flavours are the natural 'signature' left by this specific yeast strain during its fermentation of the beer and no additional spices are added."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,11,1
-little_apple_brewing,0,0,244870742016,"{""name"":""Little Apple Brewing"",""city"":""Manhattan"",""state"":""Kansas"",""code"":""66502"",""country"":""United States"",""phone"":""1-785-539-5500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1110 Westloop Center""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.1836,""lon"":-96.5717}}",1,34,1
-midnight_sun_brewing_co-fur_rondy,0,0,244871135232,"{""name"":""Fur Rondy"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,35,1
-rocky_river_brewing-golden_eagle_helles,0,0,244996177921,"{""name"":""Golden Eagle Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-troegs_brewing-troegenator_double_bock,0,0,245101559809,"{""name"":""Troegenator Double Bock"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Troegenator Double Bock, is a dark, strong lager (8.2% abv). It pours into a glass with a bronze to brown color, fluffy white head and bready malt aroma. The Troegenator leaves a rich, warming feeling and subtle spicy flavors. The style, Double Bock, dates back a century or so ago. During periods of fasting without solid foods, the Monastic brewers relied on the double bock; a stronger, richer beer to fulfill their basic nutritional needs. Known to them as \""liquid bread,\"" a double bock has a strong malt aroma and chewy rich body. Traditionally these brewers ended the name of their double bock with the suffix \""ator\"", ex. Celabrator, Illuminator, Subliminator... In the spirit of the tradition we give you the Troegenator to provide warmth and richness through the early spring months. A double bock of epic proportions, beware,\r\nthe Troegenator is deceiving smooth and delicious."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,8,1
-southern_tier_brewing_co-pumking_imperial_pumpkin_ale,0,0,245100838912,"{""name"":""Pumking Imperial Pumpkin Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Pumking is an ode to Púca, a creature of Celtic folklore, who is both feared and respected by those who believe in it. Púca is said to waylay travelers throughout the night, tossing them on its back, and providing them the ride of their lives, from which they return forever changed. Brewed in the spirit of All Hallows Eve, a time of the year when spirits can make contact with the physical world and when magic is most potent. Pour Pumking into a goblet and allow it’s alluring spirit to overflow. As spicy aromas present themselves, let it’s deep copper color entrance you as your journey into this mystical brew has just begun. As the first drops touch your tongue a magical spell will bewitch your taste buds making it difficult to escape the Pumking."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,7,1
-red_star_brewery_grille-canvas_back_american_pale_ale,0,0,244986281984,"{""name"":""Canvas Back American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
-port_washington_brewing-transcendental_wheat_beer,0,0,245005221888,"{""name"":""Transcendental Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-wynkoop_brewing-st_charles_esb,0,0,245750759424,"{""name"":""St. Charles ESB"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our British-style session beer is cask conditioned and dry hopped. Tea colored with a toasted malt flavor, it's an easy drinker with a light mouthfeel and elgeant hop nose."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,48,1
-tallgrass_brewing_co-oasis,0,0,245121351681,"{""name"":""Oasis"",""abv"":7.2,""ibu"":93.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tallgrass_brewing_co"",""updated"":""2010-11-11 19:32:59"",""description"":""Oasis is a Double ESB/IPAish beer that came about from playing around with one of Jeff"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
-marin_brewing-mt_tam_pale_ale,0,0,244877295616,"{""name"":""Mt.Tam Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh-schneider_weisse,0,0,244987658241,"{""name"":""Schneider Weisse"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,17,1
-stoudt_s_brewery-honey_double_maibock,0,0,245114929153,"{""name"":""Honey Double Maibock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,39,1
-rogue_ales-juniper_pale_ale,0,0,245003386880,"{""name"":""Juniper Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Juniper Pale Ale: the new package for Yellow Snow Ale (winter 2004/2005). While the recipe (a pale ale infused with whole juniper berries) on the label remain the same, the name and label are new for 2005. Juniper Pale Ale is available in the classic 22-ounce bottle and on draft."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,54,1
-sly_fox_brewhouse_and_eatery_royersford-helles_golden_lager,0,0,245105164288,"{""name"":""Helles Golden Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-southern_tier_brewing_co-southern_tier_ipa,0,0,245104771072,"{""name"":""Southern Tier IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""IPA stands for India Pale Ale and ours is an American version of the classic style. IPA's namesake lies in its colonial roots. British soldiers on their way to India drank a lot of beer, but found it would go stale on the long voyages. Meanwhile, brewers knew that by adding more hops the beer would stay fresh. Voila! A new style was born and it is one we are proud to brew. Southern Tier IPA is triple-hopped on its journey to your glass for a fully aromatic experience."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
-tworows_restaurant_brewery_dallas-osage_golden_wheat_ale,0,0,245104246785,"{""name"":""Osage Golden Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-remington_watson_smith_brewing-amber_ale,0,0,244993228800,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""remington_watson_smith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
-otto_s_pub_and_brewery-slab_cabin_ipa,0,0,244872445953,"{""name"":""Slab Cabin IPA"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic American IPA with lots of floral punch and assertive hop presence. Hopped with Nugget, Palisade and Amarillo colored to a reddish hue thanks to Munich and Aromatic malts"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-victory_brewing-baltic_thunder,0,0,245102215170,"{""name"":""Baltic Thunder"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Truly a worldly beer. Baltic Thunder represents the Baltic Porter style admirably. Exhibiting the enticing, toffee roast of the British porter that originated the style in the 18th century, and the soothing, subtle fruit nuance of contemporary brews that flourish from Helsinki to Vilnius today, this dark lager honors the Baltic god of thunder. Created by an inspired collaboration of brewers and tempered with a touch of turmoil, Baltic Thunder rolls on to bring you enchanting light as the darkness fades."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
-sixpoint_craft_ales-hop_obama,0,0,244994408449,"{""name"":""Hop Obama"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
-kaiserdom_privatbrauerei_bamberg-rauchbier,0,0,244741898240,"{""name"":""Rauchbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-minhas_craft_brewery-berghoff_genuine_dark,0,0,244864516097,"{""name"":""Berghoff Genuine Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-stillwater_artisanal_ales,0,0,245110276096,"{""name"":""Stillwater Artisanal Ales"",""city"":""Baltimore"",""state"":""Maryland"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.stillwaterales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.2904,""lon"":-76.6122}}",1,28,1
-port_brewing_company-skye_strong_ale,0,0,245003649025,"{""name"":""Skye Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-tyranena_brewing-three_beaches_honey_blonde_ale,0,0,245120303107,"{""name"":""Three Beaches Honey Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Nothing beats a day at the beach... the sun, the sand and, of course, the scenery. Here in Lake Mills, the three beaches of Rock Lake have drawn young and old for generations... to laugh, to play, to frolic, to just escape stresses of life for a time. Three Beaches Honey Blonde is like a day at the beach... light, bleached blonde, gleefully effervescent, free from bitterness and sure to improve your attitude. When you need a little attitude adjustment, spend a day at the beach with Three Beaches Honey Blonde... and you won't even have to wash the sand out of your suit!\r\n\r\nThree Beaches Honey Blonde is our Wisconsin version of the American Blonde Ale. This beer is light-bodied with a sweet touch of honey and a mild citrus accent."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,52,1
-southern_tier_brewing_co-chautauqua_brew,0,0,245102346241,"{""name"":""Chautauqua Brew"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,10,1
-krogh_s_restaurant_and_brewpub,0,0,244754219010,"{""name"":""Krogh's Restaurant and Brewpub"",""city"":""Sparta"",""state"":""New Jersey"",""code"":""7871"",""country"":""United States"",""phone"":""1-973-729-8428"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23 White Deer Plaza""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":41.0323,""lon"":-74.6407}}",1,49,1
-middle_ages_brewing-swallow_wit,0,0,244862287872,"{""name"":""Swallow Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A wheat beer brewed in the style of a Belgian wit bier while using British ingredients. Lite and refreshing spiced with coriander and orange peel."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,12,1
-long_valley_pub_brewery,0,0,244880375809,"{""name"":""Long Valley Pub & Brewery"",""city"":""Long Valley"",""state"":""New Jersey"",""code"":""7853"",""country"":""United States"",""phone"":""1-908-876-1122"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Fairmount Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.7843,""lon"":-74.78}}",1,57,1
-otto_s_pub_and_brewery-arthur_s_english_old_ale,0,0,244881031170,"{""name"":""Arthur's English Old Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big malty ale brewed in the style of English Old Ales. Deep ruby in color and lightly bittered with a big malty backbone."",""style"":""Old Ale"",""category"":""British Ale""}",1,58,1
-steel_brewing-high_gravity_lager,0,0,245103132674,"{""name"":""High Gravity Lager"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
-magic_hat-hipa,0,0,244870742017,"{""name"":""HIPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
-midnight_sun_brewing_co-lust,0,0,244871135233,"{""name"":""Lust"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""LUST Belgian-style Dark Strong Ale stirs shameless desire in men (and women) with its captivating appearance, enticing aroma and satisfying flavors. Aged in bourbon oak barrels for twelve months, Lust is worldly, smooth and decadent. Sour cherries contribute tartness while brettanomyces brings muskiness to this naughty brew. \r\n\r\nThe pleasure you derive from this dark beer is beyond words. \r\n\r\nLUST. Regret. Repent. Repeat."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,35,1
-roffey_brewery-overcast_ale,0,0,244996177922,"{""name"":""Overcast Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roffey_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-tworows_restaurant_brewery_dallas-route_66_amber_ale,0,0,245101625344,"{""name"":""Route 66 Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-tablerock,0,0,245100838913,"{""name"":""Tablerock"",""city"":""Boise"",""state"":""Idaho"",""code"":""83702"",""country"":""United States"",""phone"":""(208) 342-0944"",""website"":""http://www.tablerockbrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""705 Fulton St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.6113,""lon"":-116.206}}",1,7,1
-rockyard_brewing-hopyard_ipa,0,0,244986281985,"{""name"":""Hopyard IPA"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rockyard_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
-ramapo_valley_brewery-copper,0,0,245005287424,"{""name"":""Copper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,59,1
-zea_rotisserie_and_brewery-ponchartrain_porter,0,0,245750759425,"{""name"":""Ponchartrain Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
-tampa_bay_brewing-old_elephant_foot_ipa,0,0,245121417216,"{""name"":""Old Elephant Foot IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tampa_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
-maritime_pacific_brewing-flagship_red_alt_ale,0,0,244877295617,"{""name"":""Flagship Red Alt Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
-privater_brauereigasthof_greifenklau,0,0,244987658242,"{""name"":""Privater Brauereigasthof Greifenklau"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-53219"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Laurenziplatz 20""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8851,""lon"":10.8823}}",1,17,1
-stout_brothers_public_house-yodeler_weisse,0,0,245114929154,"{""name"":""Yodeler Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,39,1
-salado_creek_brewing_company-amber,0,0,245003386881,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salado_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-spaten_franziskaner_brau-oktoberfestbier_oktoberfest_ur_marzen,0,0,245105164289,"{""name"":""Oktoberfestbier / Oktoberfest Ur-Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,16,1
-springfield_brewing-mueller_doppelbock,0,0,245104836608,"{""name"":""Mueller Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""springfield_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
-victory_brewing-yakima_glory,0,0,245745778688,"{""name"":""Yakima Glory"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-11-27 12:29:23"",""description"":""The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Bask in the "",""style"":""American-Style India Black Ale"",""category"":""North American Ale""}",1,13,1
-ridgeway_brewing-lump_of_coal_dark_holiday_stout,0,0,244993228801,"{""name"":""Lump of Coal Dark Holiday Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
-pennichuck_brewing_company-pompier,0,0,244996505600,"{""name"":""Pompier"",""abv"":12.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our fourth in the Firehouse Ales Series, Pompier means \""fireman\"" in French and represents our continued commitment to celebrate and honor the men and women who respond to the call day after day. Pompier is rich and smooth with complexities that come from a huge grain bill comprised of premium imported specialty malts, French Strisselspalt aroma hops and a 3 month aging process in oak hogsheads where it is combined with toasted French oak wood chips and champagne yeast. Pompier is intended to be a vintage quality English-Style Barleywine with a French twist. Appreciate its fine character and 12.1%ABV when we release this single 10 barrel batch sometime in December or you may choose to cellar it for many years to come. \r\n\r\nYou will find Pompier on retail shelves packaged in the same 1 Liter Swing-Top bottle that has become a signature for our specialty beers.""}",1,38,1
-weyerbacher_brewing_company-eleven,0,0,245745057792,"{""name"":""Eleven"",""abv"":11.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Eleventh anniversy ale, released in July 2006 only is a Triple IPA made exclusively with Phoenix hops. 11.7% abv make this Triple IPA powerful, but the Phoenix hops keep it smooth. Phoenix is another one of those hops with low cohumulone levels, which means when used in very large quantities (as we do in Eleven) the hops flavor is very smooth, not a hint of harshness for the enormous amounts of hops in the brew. As with all of our Anniversay ales, this one will age fantastically and will never be made again, as each anniversary is an entirely different brew."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,9,1
-smoky_mountain_brewing,0,0,245112242176,"{""name"":""Smoky Mountain Brewing"",""city"":""Knoxville"",""state"":""Tennessee"",""code"":""37902"",""country"":""United States"",""phone"":""1-423-673-8400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""424 South Gay Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.9657,""lon"":-83.9181}}",1,33,1
-knigsbacher_brauerei-pils,0,0,244741898241,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knigsbacher_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-new_belgium_brewing-abbey_belgian_style_ale,0,0,244864581632,"{""name"":""Abbey Belgian Style Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Winner of four World Beer Cup medals and eight medals at the Great American Beer Fest, Abbey Belgian Ale is the Mark Spitz of New Belgium’s lineup - but it didn’t start out that way. When Jeff and Kim first sampled the beer at the Lyons Folks Fest, reviews were mixed at best. One of founder Jeff’s first two Belgian style homebrews (along with Fat Tire), Abbey is a Belgian dubbel (or double) brewed with six different malts and an authentic Belgian yeast strain. Abbey is bottle-conditioned, weighs in at 7.0% alcohol by volume, and pairs well with chocolate (or boldly served by itself) for dessert."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,18,1
-stone_brewing_co-vertical_epic_06_06_06,0,0,245110276097,"{""name"":""Vertical Epic 06.06.06"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-privatbrauerei_gaffel,0,0,245003649026,"{""name"":""Privatbrauerei Gaffel"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)221-/-160060"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Eigelstein 41""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9465,""lon"":6.9563}}",1,55,1
-wagner_valley_brewing-oatmeal_stout,0,0,245751283712,"{""name"":""Oatmeal Stout"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wagner_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pours a very deep black with a pleasant aroma and a thick brown head. It has the usual coffee taste you would expect with a hint of chocolate. There is quite a lot of carbonation but is very drinkable."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,52,1
-spanish_peaks_brewing-black_dog_yellowstone_ale,0,0,245102411776,"{""name"":""Black Dog Yellowstone Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-labatt_ontario_breweries-labatt_sterling,0,0,244754284544,"{""name"":""Labatt Sterling"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""With only 88 calories per 341 ml bottle, Labatt Sterling is a light, refreshing beer with 1/3 less calories than regular beers. In other words, it's a great tasting beer...that won't slow you down."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,49,1
-moosejaw_pizza_dells_brewing_company-dells_chief_amber_ale,0,0,244862287873,"{""name"":""Dells Chief Amber Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-mad_river_brewing-john_barleycorn_barleywine_style_ale,0,0,244880441344,"{""name"":""John Barleycorn Barleywine Style Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Seasonal Offering. We honor the Harvest & Holidays each year by brewing a traditional Barleywine style ale, using a variety of ingredients. The Label, created by local artist Janis Taylor, is a folksy woodcut based on the tale of John Barleycorn in verse.\r\n\r\nBrewed in small 10-barrel batches with Certified Organic barley malt, this crimson hued ale has a sweet caramel nose with a zesty spicy, citrus taste. It has a slight hop finish and leaves a warm, tingling sensation on the tongue. A great winter warmer!\r\nStarting Gravity \t1.098\r\nFinish Gravity \t1.020\r\nABV \t9.5\r\nIBU \t96\r\n\r\n-http://www.madriverbrewing.com/pages/brews/john_barleycorn.html"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,57,1
-otto_s_pub_and_brewery-old_fugget,0,0,244881031171,"{""name"":""Old Fugget"",""abv"":11.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, bold ale brewed in the style of classic barleywines. Served lightly carbonated through the handpump at cellar temperature."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,58,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-melon_head_red,0,0,245103132675,"{""name"":""Melon Head Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,11,1
-manhattan_beach_brewing-rat_beach_red_ale,0,0,244870807552,"{""name"":""Rat Beach Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manhattan_beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
-miller_brewing-miller_high_life,0,0,244871135234,"{""name"":""Miller High Life"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Miller High Life, the \""champagne of beers,\"" dates back to 1903. Miller High Life is a classic American-style lager recognized for its consistently crisp, smooth taste and classic clear-glass bottle. Miller High Life embraces its rich heritage and is positioned as common sense in a bottle. Its drinkers know Miller High Life is an authentic, unpretentious beer. As the best beer value in America, we encourage our target consumers to \""Celebrate the High Life.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
-rogue_ales-frosty_frog,0,0,244996243456,"{""name"":""Frosty Frog"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong, but well balanced winter warmer, this ale has extreme complexity made for a holiday feast. The addition of Raisins and Molasses in the brewing process produces unusual spiced rum like flavors to go along with the well balanced malt and hops. \r\nNo Chemicals, Additives or Preservatives."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,37,1
-unibroue-edition_2005,0,0,245101625345,"{""name"":""Édition 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
-tailgate_beer-tailgate_sweet_stout,0,0,245100838914,"{""name"":""Tailgate Sweet Stout"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Bronze medal award winner - Sweet Stout Category – California State Fair 2008 Commercial Craft Brew Competition\r\n\r\nDon’t be afraid of the dark. This Sweet Stout is a surprisingly charming, and yet extremely robust ale that spills a soothing bouquet of caramel, chocolate and lightly roasted oats. As a truly unique foray into the world of stout ales, this sweet stout drinks so light you might be surprised at how apt you are to enjoy the darkest of TailGate Beer’s. The flavors are so rich and smooth that this TGB Sweet Stout can cool you on the hottest of days and warm you in the worst that winter can bring. Here is heaven in a bottle. If it weren't so wrong, this is what you wish mom could have given you in your baby bottle. Treat yourself right and enjoy an experience that is the best dessert to pass through your lips since mom last made her best fruit pie for you."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,7,1
-sacramento_brewing_company-barristers_bitter,0,0,244986281986,"{""name"":""Barristers Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Low in alcohol but big in flavor. This beer is dry hopped like an IPA but the alcohol and bitterness have been reduced for a great session beer."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,14,1
-real_ale_brewing_company-rio_blanco_pale_ale,0,0,245005287425,"{""name"":""Rio Blanco Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep golden and malty, with a spicy hop flavor and well balanced hop bitterness, Rio Blanco is a uniquely Texan interpretation of an English-style pale ale. Czech Saaz hops provide a crisp finish and delicate aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
-taylor_s_restaurant_and_brewery-hefeweizen,0,0,245121417217,"{""name"":""Hefeweizen"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,56,1
-maritime_pacific_brewing-old_seattle_lager,0,0,244877295618,"{""name"":""Old Seattle Lager"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-randy_s_fun_hunters_brewery_restaurant_and_banquet_center-pale_ale,0,0,244987723776,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-surly_brewing,0,0,245114929155,"{""name"":""Surly Brewing"",""city"":""Brooklyn Center"",""state"":""Minnesota"",""code"":""55429"",""country"":""United States"",""phone"":""1-763-535-3330"",""website"":""http://www.surlybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4811 Dusharme Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.0429,""lon"":-93.3246}}",1,39,1
-san_diego_brewing-dubble_fantasy,0,0,245003386882,"{""name"":""Dubble Fantasy"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Abbey ale with hints of bubble gum flavor."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,54,1
-sprecher_brewing-sprecher_oktoberfest,0,0,245105164290,"{""name"":""Sprecher Oktoberfest"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally brewed to celebrate the harvest season, this reddish-brown lager has a rich caramel character and a long flavorful finish. Its delicious malty sweetness is nicely accented by a slighty fruity bouquet and a mild hop flavor."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,16,1
-stevens_point_brewery-bock,0,0,245104836609,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
-vintage_50_restaurant_and_brew_lounge,0,0,245745778689,"{""name"":""Vintage 50 Restaurant and Brew Lounge"",""city"":""Leesburg"",""state"":""Virginia"",""code"":""20176"",""country"":""United States"",""phone"":""(703) 777-2169"",""website"":""http://www.vintage50.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Vintage 50, at this Leesburg, Virginia classically modern brewery. Whether you enjoy a fine California cabernet paired with innovative New American fare, or a cold beer brewed on-site paired with classic comfort food, you will feel at home at Vintage 50. Guests will relax in style while enjoying libations from near and far as well as a menu that features fresh, seasonal ingredients."",""address"":[""50 Catoctin Ct. NE #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.1126,""lon"":-77.5537}}",1,13,1
-rock_bottom_restaurant_brewery_san_jose-stillwater_stout,0,0,244993228802,"{""name"":""Stillwater Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
-pete_s_brewing-pete_s_rally_cap_ale,0,0,244996571136,"{""name"":""Pete's Rally Cap Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The key ingredient to a good summer is a GREAT brew! Born to play, Pete's Wicked Rally Cap Ale is crafted with a special blend of pale and wheat malts, Mt. Hood hops and a smack of natural lemon. Get in the game... Get Wicked!"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,38,1
-weyerbacher_brewing_company-quad,0,0,245745123328,"{""name"":""Quad"",""abv"":11.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Grand Champion in the 2000, and again in 2004 at United States Beer Tasting Championship, Weyerbacher QUAD is the first quadrupel style beer to be commercially brewed and bottled in the United States.\r\n\r\nIn December 2002 QUAD won Mid-Atlantic Champion at the USBTC for the third year in a row.\r\n\r\nMassively big and delicious, QUAD is an elegant and dark ale. Rich with complexity and flavor, try savoring it after a long day or during a fine dinner. You also might enjoy it as an aperitif or as an accompaniment to a dessert, but QUAD stands alone quite well. We recommend enjoying QUAD in a brandy snifter or wineglass so you can drink in the aroma of this fine elixir. QUAD, with an alcohol content of 11.8% (by volume) is the strongest beer we make, so please pay proper accord as you enjoy it.\r\n\r\nAs with any higher alcohol beers, QUAD will be at its best after a period of 6 or 12 months in the bottle, perhaps longer. We expect a shelf life of 3-5 years, but go ahead, we know you can't wait (we couldn't either). Enjoy one now, and another every month or two, and you'll be truly amazed as QUAD gains smoothness and complexity over time as it ages."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,9,1
-southend_brewery_and_smokehouse_charleston-blonde,0,0,245112307712,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
-krogh_s_restaurant_and_brewpub-alpine_glow_red_ale,0,0,244741898242,"{""name"":""Alpine Glow Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
-nodding_head_brewpub-tart,0,0,244864581633,"{""name"":""Tart"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-stone_city_brewing-iowa_pale_ale,0,0,245110276098,"{""name"":""Iowa Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-privatbrauerei_hofmhl-dunkel,0,0,245003714560,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_hofmhl"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-wells_and_youngs_brewing_company_ltd-wells_bombardier_english_bitter,0,0,245751283713,"{""name"":""Wells Bombardier English Bitter"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wells_and_youngs_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,52,1
-st_peter_s_brewery-india_pale_ale,0,0,245102477312,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-left_hand_brewing_company-sawtooth_ale,0,0,244754350080,"{""name"":""Sawtooth Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-murphy_s_wagon_wheel-red_ale,0,0,244862287874,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-manayunk_brewery_and_restaurant-california_dreaming,0,0,244880441345,"{""name"":""California Dreaming"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial, or super IPA’s were spawned out of the fascination of hops by the American consumer and are beyond Pale Ales and IPA’S in terms of both hop and alcohol content. Our interpretation is orange-gold in color, lightly bitter but highly hoppy with a firm malt backbone. \r\nWe’ll gladly put this head-to-head with the best that those California Hophead/Brewers have to offer."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
-paper_city_brewing_company,0,0,245004894208,"{""name"":""Paper City Brewing Company"",""city"":""Holyoke"",""state"":""Massachusetts"",""code"":""1040"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""108 Cabot St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2012,""lon"":-72.6104}}",1,58,1
-stone_brewing_co-imperial_stout_2002,0,0,245103198208,"{""name"":""Imperial Stout 2002"",""abv"":9.47,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
-millrose_brewing-south_barrington_stout,0,0,244870807553,"{""name"":""South Barrington Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
-minneapolis_town_hall_brewery-black_h2o_oatmeal_stout,0,0,244871200768,"{""name"":""Black H2O Oatmeal Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our darkest and most heavy regular offering. It is virtually black in color and features rich roasted malt flavor with a delicate caramel and vanilla finish. It is carbonated and served with the use of nitrogen gas, giving the Black Water a beautiful cascading pour and thick, creamy foam atop your glass. Made with only the freshest American malts and English hops."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,35,1
-rothaus_brauerei,0,0,244996243457,"{""name"":""Rothaus Brauerei"",""city"":""Hartford"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.3178,""lon"":-88.379}}",1,37,1
-unibroue-trois_pistoles,0,0,245101690880,"{""name"":""Trois Pistoles"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Trois Pistoles has a dark brown color topped with a rich foam mousse.\r\nIts slightly sweet taste is enhanced by accents of roasted malt, cocoa, ripe fruit and dark spices with a smooth finish like an old port.\r\n\r\nBrewed with four selected malts and four\r\nexotic spices, Trois Pistoles beckons with a\r\nsubtle sweetness that makes it surprisingly\r\nsmooth and satisfying for a beer of such strength and complexity."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,8,1
-the_alchemist-hellbrook,0,0,245100904448,"{""name"":""Hellbrook"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This American double red ale is packed with enough hops to balance the full malty body."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-saint_louis_brewery_schlafy_tap_room-schlafly_pilsner,0,0,244986347520,"{""name"":""Schlafly Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-rock_bottom_restaurant_brewery_milwaukee,0,0,245005287426,"{""name"":""Rock Bottom Restaurant & Brewery - Milwaukee"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53203"",""country"":""United States"",""phone"":""1-414-276-3030"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""740 North Plankinton Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0399,""lon"":-87.9117}}",1,59,1
-thirsty_dog_brewing-twisted_kilt_scotch_ale,0,0,245121482752,"{""name"":""Twisted Kilt Scotch Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Caramelized sugars lend a unique flavor and aroma to this lightly hopped, malty smooth, Scottish Export Ale."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,56,1
-mickey_finn_s_brewery-scapegoat_doppelbock,0,0,244877361152,"{""name"":""Scapegoat Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
-rch_brewery,0,0,244987723777,"{""name"":""RCH Brewery"",""city"":""Weston-super-Mare"",""state"":""Somerset"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01934)-834447"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""West Hewish""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.3723,""lon"":-2.8773}}",1,17,1
-taylor_s_crossing_brewing,0,0,245114994688,"{""name"":""Taylor's Crossing Brewing"",""city"":""North Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-984-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1025 Marine Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.3238,""lon"":-123.102}}",1,39,1
-schooner_brewery-downtown_brown,0,0,245003452416,"{""name"":""Downtown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
-standing_stone_brewing_company-standing_stone_nitro_stout,0,0,245105229824,"{""name"":""Standing Stone Nitro Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""With its dark-roasted coffee aroma, espresso and chocolate flavor, this stout has flaked oats which create a velvety body and a dry finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
-stewart_s_brewing-highlander_stout,0,0,245104836610,"{""name"":""Highlander Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stewart_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
-vyturio_alaus_darykla-1784_anniversary_beer,0,0,245745778690,"{""name"":""1784 Anniversary Beer"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vyturio_alaus_darykla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
-salopian_brewery,0,0,244993294336,"{""name"":""Salopian Brewery"",""city"":""Shrewsbury"",""state"":""Shropshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01743)-248414"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""67 Mytton Oak Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.7069,""lon"":-2.787}}",1,31,1
-pike_pub_and_brewery-xxxxx_stout,0,0,244996571137,"{""name"":""XXXXX Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-wharf_rat,0,0,245745123329,"{""name"":""Wharf Rat"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21201"",""country"":""United States"",""phone"":""410-244-8900"",""website"":""http://www.thewharfrat.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""206 W. Pratt St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2866,""lon"":-76.6182}}",1,9,1
-southern_tier_brewing_co-mokah_imperial_blended_stout,0,0,245112373248,"{""name"":""Mokah Imperial Blended Stout"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""When empirical and creative impulses collide, the result is often timeless. The classic utility-art aesthetic of the coffee maker is an example of design and engineering working in concert. \r\n\r\nIt is through similar cooperation that the simple bitter cocoa bean is transformed into a sweet treat. As scientists, our brewers utilize their materials to exacting standards. As artists, they couldn’t resist the temptation to combine two of our highly acclaimed Blackwater Series Imperial Stouts: Jahva and Choklat. Alone each is perfect, but together as Mokah they are an inimitable expression of two of the world’s most sought after flavors. Enjoy Mokah stout with – or as – your favorite dessert!\r\n11.0% abv • 27º plato • Imperial Stout Brewed with Coffee & Chocolate • 22 oz / 1/6 keg\r\n2-row pale malt • 2-row barley • caramel, chocolate & black malts • roasted barley barley flakes • Jamaican roasted coffee • bittersweet Belgian chocolate • chinook, willamette, cascade & columbus hops"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,33,1
-la_jolla_brewing-little_point_pale,0,0,244741963776,"{""name"":""Little Point Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_doppelt_ipa,0,0,244864581634,"{""name"":""Nøgne Ø Doppelt IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in collaboration with brewmaster Toshi Ishii from Yo-Ho Brewing, Japan. \r\n\r\nMalt: lager, münchener, crystal \r\nHops: Millennium, Centennial, Chinnok, Amarillo and Brewers Gold. \r\n\r\n19° P, 100 IBU, 8% ABV."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,18,1
-storm_brewing-hurricane_i_p_a,0,0,245110341632,"{""name"":""HURRICANE I.P.A."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""“A complex, flavourful and fascinating ale lies just on the edge of being totally out of control.” —Stephan Beaumont, Celebrator Beer News\r\n\r\nIndia Pale Ale dates back to the 1700’s when Britain needed a hearty beer to ship to her troops in India. Because the ships had to cross the equator twice to get there, spoilage was a major problem until some clever brewer realized that both alcohol and hops are natural preservatives. James brews Hurricane I.P.A. in this tradition, and packs it with enough hops and alcohol to survive crossing the orbit of Mercury twice. The grist is 100% Gambrinus premium 2-row barley malt, copiously hopped with fresh Centennial and Willamette. The result is a rich, golden, intense beer with bitterness in perfect balance with residual sweetness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,28,1
-pug_ryan_s_steakhouse_and_brewery,0,0,245003714561,"{""name"":""Pug Ryan's Steakhouse and Brewery"",""city"":""Dillon"",""state"":""Colorado"",""code"":""80435"",""country"":""United States"",""phone"":""1-970-468-2145"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""104 Village Place""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.6282,""lon"":-106.047}}",1,55,1
-weyerbacher_brewing_company-merry_monks,0,0,245751349248,"{""name"":""Merry Monks"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Merry Monks' Ale is a Belgian style Abby Trippel without limitation. This style was created by Trappist Monks in Belgium over 500 years ago. To be true to the style, Merry Monks' Ale is bottle conditioned. This means we add a bit of sugar and yeast just prior to bottling. This imparts a special effervescence to the beer, a creamier carbonation, and also extends the shelf life. The on-going fermentation inside the bottle will change the character of the beer as it ages, and you'll find it becomes dryer with age. You may want to lay down a few bottles for future evaluation. We suggest storing at cellar temperatures -around 55 degrees F- and away from light.\r\n\r\nWhen you try this beer you're in for a unique treat. The special effervescence and creaminess are immediately apparent when pouring. The Pilsner malts combined with the Belgian yeast strains yield a remarkable and complex flavor- perhaps you'll note subtle hints of fruit or spice. The flavor is nicely balanced and the finish moderate to dry , begging for the next sip.\r\n\r\nYou might ask why we go through all this trouble and expense for just a beer, but one taste and you'll know the Merry Monks' Ale (9.3% ABV) will more than complement any meal it accompanies. Enjoyed best around 48 degrees F, it also makes a fine after-dinner drink."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,52,1
-stone_brewing_co-stone_cali_belgique,0,0,245102477313,"{""name"":""Stone Cali-Belgique"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,10,1
-liefmans_breweries-lucifer,0,0,244754415616,"{""name"":""Lucifer"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-myanmar_brewery_and_distillery,0,0,244862353408,"{""name"":""Myanmar Brewery and Distillery"",""city"":""Yangon"",""state"":"""",""code"":"""",""country"":""Myanmar"",""phone"":""95-1-636258"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""No. 45, No. 3 Trunk Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":16.7779,""lon"":96.1679}}",1,12,1
-marshall_brewing_company-mcnellie_s_pub_ale,0,0,244880506880,"{""name"":""McNellie's Pub Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marshall_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,57,1
-paulaner-hacker_pschorr_weisse,0,0,245004959744,"{""name"":""Hacker-Pschorr Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
-stone_coast_brewing_portland,0,0,245103198209,"{""name"":""Stone Coast Brewing - Portland"",""city"":""Portland"",""state"":""Maine"",""code"":""4103"",""country"":""United States"",""phone"":""1-207-774-7437"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23 Rice Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.71,""lon"":-70.305}}",1,11,1
-moose_s_tooth_pub_and_pizzeria,0,0,244870807554,"{""name"":""Moose's Tooth Pub and Pizzeria"",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99503"",""country"":""United States"",""phone"":""(907) 258-2537"",""website"":""http://www.moosestooth.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3300 Old Seward Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":61.1902,""lon"":-149.869}}",1,34,1
-minocqua_brewing_company-bohemian_pilsner,0,0,244871200769,"{""name"":""Bohemian Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-russian_river_brewing-beer_esteem,0,0,244996308992,"{""name"":""Beer Esteem"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""If you can't feel good about your beer... what else is worth feeling good about.\""\r\nWe call Beer Esteem a California Common because it is brewed with a lager yeast and it is fermented at warmer ale temperatures. However, Beer Esteem is distinctly different from other California Commons. With a unique hop profile, a lager yeast not typically used for the style, and a \""Russian River\"" twist, Beer Esteem is anything but \""Common.\"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-water_street_lake_country-irish_red,0,0,245744992256,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
-the_church_brew_works-pipe_organ_pale_ale,0,0,245100904449,"{""name"":""Pipe Organ Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""When the British introduced draught pale ale to America, the Pipe Organ Pale Ale is what they had intended. It is truly British in character. Brewed with pale ale malt and a touch of caramel malt, it has a light copper color and subtle body. The maltiness is carefully balanced with only the best English hops - East Kent Goldings. Although this beer has a fair amount of hops, the caramel maltiness perfectly balances its profile."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-samuel_smith_old_brewery_tadcaster-india_ale,0,0,244986413056,"{""name"":""India Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
-rogue_ales-monk_madness_ale,0,0,245005352960,"{""name"":""Monk Madness Ale"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Let us give praise to our maker and glory to his bounty by learning about beer.\"" ~ Friar Tuck \r\nThe debut of Monk Madness began with the Johns Locker Stock draft program before being released to the Rogue Nation in the autumn of 2006 in 22-ounce bottles and kegs. Five layers of malt create a complex, slightly sweet flavor balanced by five different hop varieties. A versatile and robust ale, we recommend pairing this with spicy foods, stong cheeses, and/or with dessert. \r\n\r\nMonk Madness Ale is brewed with 12 ingredients: 2-row Pale, Belgian Munich, Belgian Special B, Weyermann Melonodon, and Amber Malts; Belgian Nobles, Chinook, Amarillo, Centennial, and Summit Hops; along with free-range coastal water and Rogues proproetary PacMan Yeast. Available in 22 ounce bottles and kegs. Note, Monk Madness was not brewed in the winter of 2007-2008 due to shortages of the speciality malts."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
-thirstybear_brewing-meyer_esb,0,0,245121482753,"{""name"":""Meyer ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-molson_breweries_of_canada-carling,0,0,244877361153,"{""name"":""Carling"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-rivertowne_pour_house-melting_pot_pale_ale,0,0,244987723778,"{""name"":""Melting Pot Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""If you liked the Nobleman this one should blow you away! We took malt and hops from around the world to create this International Pale ale! This beer has an incredible amount of hop flavor and the perfect hop bite!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-taylor_s_restaurant_and_brewery-amber_ale,0,0,245114994689,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
-schooner_brewery-rainbow_trout_stout,0,0,245003452417,"{""name"":""Rainbow Trout Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
-steinfels_back_brau-herbstbier,0,0,245105295360,"{""name"":""Herbstbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steinfels_back_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,16,1
-stone_brewing_co-stone_12_anniversery_bitter_chocolate_oatmeal_stout,0,0,245104902144,"{""name"":""Stone 12 Anniversery Bitter Chocolate Oatmeal Stout"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Anniversary Ale this year stems from 2 pilot beers that were brewed by members of Team Stone. The first was Jeremy Moynier’s incredibly delicious Oatmeal Stout, and the second was Jake Ratzke’s amazing homebrewed Imperial Stout that had authentic Oaxacan chocolate added to the boil. We loved both beers so much that we decided to combine the recipes to make this year’s Anniversary offering: Stone 12th Anniversary Bitter Chocolate Oatmeal Stout. This beer pours deep black with a rich brown head of foam. The aroma is dominated by roast malt and cocoa. Upon tasting, the cocoa (we used unsweetened, unprocessed cacao sourced through our friends at Chuao Chocolatier) really comes through with a deep chocolate flavor and a long lasting bitter finish. The roasted grains used add coffee and licorice accents. It is a thick beer, but not sweet, with the addition of oatmeal in the mash providing a rich, silky mouthfeel that adds to the creamy texture.""}",1,15,1
-water_street_lake_country-old_world_oktoberfest,0,0,245745844224,"{""name"":""Old World Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,13,1
-san_diego_brewing-mission_gorge_porter,0,0,244993359872,"{""name"":""Mission Gorge Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh-aventinus_weizen_eisbock,0,0,244996636672,"{""name"":""Aventinus Weizen-Eisbock"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,38,1
-wynkoop_brewing-b3k_schwarzbier,0,0,245745123330,"{""name"":""B3K Schwarzbier"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This German-style black lager has a deep color and gently roasted flavors balanced by an understated hoppiness. A thirst-quenching version of dark beer. A 2008 Great American Beer Festival Gold Medal Winner in the German Schwarzbier category."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,9,1
-speakeasy_ales_and_lagers-big_daddy_ipa,0,0,245112373249,"{""name"":""Big Daddy IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":""No lightweight, Big Daddy I.P.A tips the scales with a huge hop flavor and a clean, dry finish that leaves the scene without a trace."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
-laconner_brewing-laconner_pilsener,0,0,244741963777,"{""name"":""LaConner Pilsener"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,19,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_india_pale_ale,0,0,244864647168,"{""name"":""Nøgne Ø India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, malty, and very bitter ale. Cascade hops provide a long, fruity, and spicy after-taste. Recommended serving temperature 10°C/50°F. Ideal with barbequed or smoked meat dishes."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
-strangford_lough_brewing_company_ltd-st_patrick_s_gold,0,0,245110341633,"{""name"":""St. Patrick's Gold"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Our smooth yet powerful wheat beer is unusually refreshing on the pallet. Golden in colour, St. Patrick's Gold is brewed with barley and wheat malt. Citrus peel and coriander are added to the Goldings and Saaz hops for a symphony of authentic flavour."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
-pyramid_ales_brewery-pyramid_apricot_weizen,0,0,245003714562,"{""name"":""Pyramid Apricot Weizen"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma. \r\n\r\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,55,1
-wh_brakspear_sons-coniston_bluebird_bitter,0,0,245751414784,"{""name"":""Coniston Bluebird Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wh_brakspear_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
-stoudt_s_brewery,0,0,245102542848,"{""name"":""Stoudt's Brewery"",""city"":""Adamstown"",""state"":""Pennsylvania"",""code"":""19501"",""country"":""United States"",""phone"":""717-484-4386"",""website"":""http://www.stoudtsbeer.com/brewery.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Over 20 years, Stoudt's Brewing Company has grown and evolved from a small brewery with limited draught distribution, to a packaging regional microbrewery with distribution in 10 different states, producing over 10,000 barrels a year. Even with the growth over the years, one thing has always remained constant, and that is the attention to detail that goes into every batch of handcrafted beer that is traditionally brewed, packaged and sold with passion by our small team of hardworking dedicated employees. A tradition that was started by Ed and Carol and will be carried on by their children for many years to come"",""address"":[""2800 North Reading Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2369,""lon"":-76.072}}",1,10,1
-mad_crab_restaurant_and_brewery-buzz_beer,0,0,244876836864,"{""name"":""Buzz Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-new_glarus_brewing_company-symposium_eisbock,0,0,244862353409,"{""name"":""Symposium Eisbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
-mehana_brewing-red_ale,0,0,244880506881,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mehana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
-pennichuck_brewing_company-engine_5,0,0,245004959745,"{""name"":""Engine 5"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-strangford_lough_brewing_company_ltd-legbiter_ale,0,0,245103198210,"{""name"":""Legbiter Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Brilliant golden ale with an inviting citrus fragrance of late added Cascade and Glacier hops. The fine hop and light malt aromas carry through to the palate to give an ale that is full but refreshing, with a clean caramel malt bitter finish."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,11,1
-nicolet_brewing-dark_pilsener,0,0,244870873088,"{""name"":""Dark Pilsener"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-moose_s_tooth_pub_and_pizzeria-fairweather_ipa,0,0,244871200770,"{""name"":""Fairweather IPA"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover and beer connoisseur's favorite, this ale is surprisingly drinkable and fully delights with its hoppy aromatics. Stick your nose in this one."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
-sacramento_brewing_company-sacramento_nut_brown_ale,0,0,244996308993,"{""name"":""Sacramento Nut Brown Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A malty dark ale wtih ale with a chocolate and biscuit like flavor and balanced finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
-yazoo_brewing,0,0,245745057792,"{""name"":""Yazoo Brewing"",""city"":""Nashville"",""state"":""Tennessee"",""code"":""37203"",""country"":""United States"",""phone"":""615-891-4649"",""website"":""http://www.yazoobrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""910 Division St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.151,""lon"":-86.7821}}",1,8,1
-the_livery-laughing_dragon,0,0,245100904450,"{""name"":""Laughing Dragon"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for our friend and patron Tad Eastman, whose Laughing Dragon Tie-Dye studio puts out our fabulous shirts-each one an individual work of art signed by Tad! Reddish Amber in color, this beer has a very bold Chinook hop character."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-san_marcos_brewery_grill-honey_ale,0,0,244986413057,"{""name"":""Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
-rogue_ales-old_crustacean_barleywine_1993,0,0,245005352961,"{""name"":""Old Crustacean Barleywine 1993"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
-thunderhead_brewery-summer_gueuze,0,0,245121482754,"{""name"":""Summer Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,56,1
-nogne_o_det_kompromisslose_bryggeri_a_s,0,0,244877426688,"{""name"":""Nøgne Ø - Det Kompromissløse Bryggeri A/S"",""city"":""Grimstad"",""state"":""Lunde"",""code"":"""",""country"":""Norway"",""phone"":""47-37-25-74-00"",""website"":""http://nogne-o.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nøgne Ø was created by two home brewers. Unable to stay at home we started Norway's first microbrewery for creative brewing. Some times, when we get a momentary glimpse of sanity, we ask ourselves what we have achieved. We think we can say that we have achieved some level of fame, at least locally and among dedicated beer geeks around the world. But more important - before we started Nøgne Ø most Norwegians did not know much about beer styles like IPA, Porter or Amber. This has for sure started to change, and we do feel that we have contributed to what you can call a renaissance of Norwegian beer-culture. Diversity was one of our main goals - and it does seem like diversity in the world of beers is starting to come back."",""address"":[""Gamle Rygene Kraftstasjon""]}",1,50,1
-rock_art_brewery-ridge_runner_barley_wine,0,0,244987789312,"{""name"":""Ridge Runner Barley Wine"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""“Robust, Dark and Smooth, hold on to your hat cause you’ll lose your feet on this one!” Brewed with pale, dark crystal, Munich, flaked barley, black and chocolate malts. Hops include Cascade, Crystal, Challenger and Perle.""}",1,17,1
-the_alchemist-piston_bitter,0,0,245114994690,"{""name"":""Piston Bitter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""A full bodied special bitter brewed with British malt and American hops"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,39,1
-seabright_brewery-pelican_pale,0,0,245003517952,"{""name"":""Pelican Pale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
-stone_brewing_co-vertical_epic_07_07_07,0,0,245105295361,"{""name"":""Vertical Epic 07.07.07"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-sweetwater_tavern_centreville-high_desert_imperial_stout,0,0,245104902145,"{""name"":""High Desert Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_tavern_centreville"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
-weyerbacher_brewing_company-blithering_idiot,0,0,245745844225,"{""name"":""Blithering Idiot"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At Weyerbacher, we prefer to brew things true to European style guidelines. Consequently our barley wine is on the malty side, yet not overly sweet. Notes of date or perhaps fig on the palate follow a pleasurably malty aroma to your taste buds. The finish is warm and fruity, and begs for the next sip.\r\n\r\nEnjoy Blithering Idiot in a brandy snifter or wine glass, preferably in front of the fire, or accompanying a literary classic. This is the finest life has to offer and should be treated as such. Moments of reflection make all the toil worthwhile, and Blithering Idiot is for moments like these. Share it with your family over the holiday dinner. Lay a few down, aging only helps a barley wine develop more class. At 11.1 % ABV (alcohol by volume) this fine ale will keep for years. Our expected maximum shelf-life is 2 to 3 years. Although it might see a decade, beyond the 3rd year most barley-wines have a tendency to decrease in complexity, so don't wait too long"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,13,1
-sand_creek_brewing_company-oderbolz_bock,0,0,244993359873,"{""name"":""Oderbolz Bock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,31,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh-aventinus_weizenstarkbier_doppel_weizen_bock,0,0,244996702208,"{""name"":""Aventinus Weizenstarkbier / Doppel Weizen Bock"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark-ruby, almost black-colored and streaked with fine top-fermenting yeast, this beer has a compact and persistent head. This is a very intense wheat doppelbock with a complex spicy chocolate-like arome with a hint of banana and raisins. On the palate, you experience a soft touch and on the tongue it is very rich and complex, though fresh with a hint of caramel. It finishes in a rich soft and lightly bitter impression."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,38,1
-wynkoop_brewing-obamanator_maibock,0,0,245745188864,"{""name"":""Obamanator Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,9,1
-steinfels_back_brau-huusbier,0,0,245112373250,"{""name"":""Huusbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steinfels_back_brau"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-little_apple_brewing-wildcat_wheat,0,0,244864778240,"{""name"":""Wildcat Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-northwoods_brewpub_grill-whitetail_wheat,0,0,244864647169,"{""name"":""Whitetail Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-thirsty_dog_brewing-barktoberfest,0,0,245110407168,"{""name"":""Barktoberfest"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional old world German Oktoberfest made with German grains, yeast and hops."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,28,1
-rch_brewery-ale_mary,0,0,245003780096,"{""name"":""Ale Mary"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rch_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-wild_onion_brewing-jack_stout,0,0,245751414785,"{""name"":""Jack Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_onion_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
-strangford_lough_brewing_company_ltd-barelegs_brew,0,0,245102542849,"{""name"":""Barelegs Brew"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden with a hint of red (towards sunset). Barelegs tastes of fresh fruit, especially red current and malt fragrance. Full drinking with a subtle hoppy finish. Refreshing for a beer of this strength."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,10,1
-magic_hat-wacko,0,0,244876902400,"{""name"":""Wacko"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer truly defies style. A portion of the fermentable sugars that make up this beer come from beet sugar. Real beet extract is used which gives the beer a beautiful light red color. It’s body is inviting and the taste is smooth. Hops are barely perceivable and are there to balance out the sweetness from the malt."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,49,1
-new_glarus_brewing_company-totally_naked,0,0,244862353410,"{""name"":""Totally Naked"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pure and crisp this is a beer with nothing to hide. Wisconsin two-row barley malt ensures a mellow and smooth body. We imported Noble Hop varieties from Germany and the Czech Republic to ensure a fine mature aroma with no coarse bitterness. Expect this beer to pour a delicate golden hue that sparkles in the summer sun. This lager is brewed using all natural ingredients with no artificial additives of any kind. Kick back, relax and enjoy the simple unadorned flavor. This is beer at its most basic."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-millrose_brewing-wheat_honey_ale,0,0,244880572416,"{""name"":""Wheat Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
-portsmouth_brewery,0,0,245004959746,"{""name"":""Portsmouth Brewery"",""city"":""Portsmouth"",""state"":""New Hampshire"",""code"":""3801"",""country"":""United States"",""phone"":""1-603-431-1115"",""website"":""http://www.portsmouthbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Portsmouth Brewery, New Hampshire's first brewpub, was founded in 1991, four years after its sister company, the Northampton Brewery, opened in Western Massachusetts. Peter Egelston, Head Brewer in Northampton from 1987 until 1991, moved to Portsmouth to set up the new brewery here. (Egelston is now the sole proprietor of the Brewery.) The brewing system consists of a custom made seven-barrel (210 gallons) JV Northwest brewhouse, two fourteen-barrel and three seven-barrel JV Northwest unitank (cylindroconical) fermenters, two fourteen-barrel horizontal fermenters (added later, in 1994), and twelve seven-barrel grundy cellar tanks. Originally, the Portsmouth Brewery opened with beer recipes from Northampton - Pale Ale, Old Brown Dog, Weizenheimer, Black Cat Stout, Blonde Ale, Golden and Amber Lagers - and these still comprise the core of the Brewery's full-time beers today. However, over the years, successive brewers have contributed many outstanding seasonal and specialty beers to the list. Head Brewer Tod Mott arrived in late 2003, bringing with him is award-winning ways and oursized personality. All of the beers served at the Portsmouth Brewery are brewed right here on premise, with the exception of those beers, such as Shoals Pale Ale and Portsmouth Lager, brewed at Smuttynose Brewing Company, our sister company. --http://www.portsmouthbrewery.com/htmlpages.portsmouth/beerlist.html"",""address"":[""56 Market Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0781,""lon"":-70.7575}}",1,58,1
-sudwerk_privatbrauerei_hbsch-doppelbock,0,0,245103263744,"{""name"":""Doppelbock"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sudwerk_privatbrauerei_hbsch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,11,1
-north_country_brewery-station_33_firehouse_red,0,0,244870873089,"{""name"":""Station 33 Firehouse Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This red is a rich, malty, ruby-colored ale with a smooth finish."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,34,1
-murphy_s_wagon_wheel-american_pilsner,0,0,244871266304,"{""name"":""American Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-saint_louis_brewery_schlafy_tap_room-schlafly_smoked_porter,0,0,244996308994,"{""name"":""Schlafly Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-thunderhead_brewery-chinook_amber,0,0,245100969984,"{""name"":""Chinook Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
-shipyard_brewing_portland-pumpkinhead_ale,0,0,244986478592,"{""name"":""Pumpkinhead Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,14,1
-roy_pitz_brewing_company-ichabod_s_midnight_ride,0,0,245005352962,"{""name"":""Ichabod's Midnight Ride"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian style pumpkin ale was inspired by the legendary midnight ride of Ichabod Crane. It is a Belgian style ale complimented by a light touch of pumpkin and spice. Fresh toasted pumpkins are added in the mash with the grains adding a touch of the season to the brew. The complex fruitiness and dryness of the yeast is enhanced by the addition of sugars during fermantation. The beer is lightly spiced with pumpkin spice, all spice, and brown sugar. The pale and toasted malts used, provide a pie crust taste and smell in the beer as the higher alcohol's produced round out the finish."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,59,1
-titletown_brewing-red_lager,0,0,245121548288,"{""name"":""Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
-olde_main_brewing-mild_brown,0,0,244877426689,"{""name"":""Mild Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
-rogue_ales-old_crustacean_barleywine_1996,0,0,244987789313,"{""name"":""Old Crustacean Barleywine 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-three_needs_brewery_and_taproom,0,0,245114994691,"{""name"":""Three Needs Brewery and Taproom"",""city"":""Burlington"",""state"":""Vermont"",""code"":""5401"",""country"":""United States"",""phone"":""1-802-658-0889"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Freshly-brewed self and local beers, as well as a small but decent selection of beers on tap. Red felt pool table in the back, and friendly barstaff."",""address"":[""207 College Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4771,""lon"":-73.2115}}",1,39,1
-second_street_brewery-second_street_ipa,0,0,245003517953,"{""name"":""Second Street IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""second_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,54,1
-stoudt_s_brewery-stoudt_s_gold_lager,0,0,245105360896,"{""name"":""Stoudt's Gold Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Stoudt's Gold Lager is widely recognized as one of the finest German-style beers brewed in America. Brewed with the finest specialty malts and noble hops, this light bodied, easy drinking lager features a subtle balance of sweet malt and clean crisp hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-tailgate_beer-tailgate_brown_ale,0,0,245104902146,"{""name"":""Tailgate Brown Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""This is your solution to the same ol' ho hum brown ale you drink all the time. This ale might be dark and intimidating in a glass, yet the first sip proves to be a surprisingly refreshing assault on your taste buds. Complex blends of chocolate and roasted oats complement the essence of bittering hops, and sweet malts. The balanced combination makes this full flavored ale one to be enjoyed in any occasion."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
-yuksom_breweries-yeti_special_export,0,0,245745909760,"{""name"":""Yeti Special Export"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuksom_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
-sanford_s_grub_and_pub-red_line_amber,0,0,244993425408,"{""name"":""Red Line Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sanford_s_grub_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh-hopfen_weisse,0,0,244996702209,"{""name"":""Hopfen Weisse"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Schneider & Brooklyner Hopfen-Weisse is a collaboration between brewmasters Hans-Peter Drexler of the Schneider Weissbier Brewery and Garrett Oliver of the Brooklyn Brewery. Garrett and Hans-Peter have long admired each others beers. Now together they bring you a new sensation, a pale weissbock robustly dry-hopped with the Hallertauer Saphir variety grown in the fields near the Schneider brewery. Hoppy, zesty and supremely refreshing, Scheider & Brooklyner Hopfen-Weisse is a delicious blend of Bavarian craftsmanship and American ingenuity."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
-yegua_creek_brewing_dallas-blueberry_blonde,0,0,245745188865,"{""name"":""Blueberry Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,9,1
-stevens_point_brewery-special_beer,0,0,245112438784,"{""name"":""Special Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
-mercury_brewing_company-ipswich_original_ale,0,0,244864843776,"{""name"":""Ipswich Original Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named one of the World's Ten Best Beers by Wine Spectator Magazine, Ipswich Ale has satisfied discerning craft beer drinkers since 1991. A North Shore classic, Ipswich Ale is a medium-bodied, unfiltered English style pale ale with subtle hoppiness and a smooth malty flavor."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
-oaken_barrel_brewing-snake_pit_porter,0,0,244864712704,"{""name"":""Snake Pit Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
-thirsty_dog_brewing-maibark,0,0,245110407169,"{""name"":""Maibark"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden, easy drinking, traditional example of Maibock. All German grains, yeast and hops."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,28,1
-richbrau_brewing_company-big_nasty_porter,0,0,245003780097,"{""name"":""Big Nasty Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark brown porter has more bark than bite. It is actually fairly sweet and fruity with a nutty/chocolate flavor as well. Highly recommended."",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
-yakima_brewing_and_malting_grant_s_ales,0,0,245751414786,"{""name"":""Yakima Brewing and Malting / Grant's Ales"",""city"":""Yakima"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.6021,""lon"":-120.506}}",1,52,1
-tabernash_brewing-golden_pale,0,0,245102542850,"{""name"":""Golden Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-maui_brewing_co-maui_coconut_porter,0,0,244876902401,"{""name"":""Maui Coconut Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maui_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Coconut Porter is a classic robust porter spiced with all natural toasted coconut. It is black in color and crowned with a creamy, dark tan head. It begins with a malty-toasted coconut aroma followed by a rich, silky feel with tastes of dark malt, chocolate, and hints of coffee. It then finishes with flavors of toasted coconut and hoppy spice to balance the finish."",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
-new_zealand_breweries_limited,0,0,244862418944,"{""name"":""New Zealand Breweries Limited"",""city"":"""",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":"""",""website"":""http://www.steinlager.co.nz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,12,1
-nethergate_brewery_co_ltd,0,0,244880572417,"{""name"":""Nethergate Brewery Co Ltd"",""city"":""Pentlow"",""state"":""Essex"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01787)-283220"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.081,""lon"":0.6559}}",1,57,1
-raccoon_lodge_and_brewpub_cascade_brewing-bad_billy_blond_bock,0,0,245005025280,"{""name"":""Bad Billy Blond Bock"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Blond Bock is gold in color and features a malty profile and a spicy finish courtesy of Saaz hops. This beer boasts the flavor of a traditional Bock without the cloying aftertaste."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,58,1
-the_alchemist-pappy_s_porter,0,0,245103263745,"{""name"":""Pappy's Porter"",""abv"":5.42,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark mahogany ale has agreat and delicious malt depth, yet is balanced with supple, energizing bitterness."",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
-oak_creek_brewery-doc_s_pale_ale,0,0,244870873090,"{""name"":""Doc's Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
-nodding_head_brewpub-wee_heavier,0,0,244871266305,"{""name"":""Wee Heavier"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,35,1
-san_marcos_brewery_grill-caber_tossed,0,0,244996374528,"{""name"":""Caber Tossed"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-titletown_brewing-czech_mate_pilsner,0,0,245100969985,"{""name"":""Czech Mate Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-shmaltz_brewing_company-genesis,0,0,244986478593,"{""name"":""Genesis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shmaltz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
-rubicon_brewing,0,0,245005418496,"{""name"":""Rubicon Brewing"",""city"":""Sacramento"",""state"":""California"",""code"":""95814"",""country"":""United States"",""phone"":""1-916-448-7032"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2004 Capitol Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5731,""lon"":-121.481}}",1,59,1
-titletown_brewing-saison,0,0,245121548289,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
-olde_peninsula_brewpub_and_restaurant-sunset_red,0,0,244877426690,"{""name"":""Sunset Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
-rowland_s_calumet_brewery,0,0,244987789314,"{""name"":""Rowland's Calumet Brewery"",""city"":""Chilton"",""state"":""Wisconsin"",""code"":""53014"",""country"":""United States"",""phone"":""1-920-849-2534"",""website"":""http://rowlandsbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""25 North Madison St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0291,""lon"":-88.1629}}",1,17,1
-tied_house_cafe_brewery_san_jose-oatmeal_stout,0,0,245115060224,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
-simmerberg_brusttt_und_taferne-festbier,0,0,245003517954,"{""name"":""Festbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,54,1
-sturgeon_bay_brewing-highway_to_helles,0,0,245105360897,"{""name"":""Highway to Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-thirsty_dog_brewing-dierdorfer_gold,0,0,245104967680,"{""name"":""Dierdorfer Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-seabright_brewery,0,0,244993490944,"{""name"":""Seabright Brewery"",""city"":""Santa Cruz"",""state"":""California"",""code"":""95062"",""country"":""United States"",""phone"":""1-408-426-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""519 Seabright Avenue #107""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.9676,""lon"":-122.008}}",1,31,1
-raccoon_lodge_and_brewpub_cascade_brewing-old_salt_ipa,0,0,244996702210,"{""name"":""Old Salt IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our India Pale Ale is hoppy and bitter with a nice sweet malt finish. Slow dry-hop conditioning brings out the herbal hop aromas."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-surly_brewing-furious_beer,0,0,245112438785,"{""name"":""Furious Beer"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""surly_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Like Hops? You'll like this fire-hued beer. This is the beer I have always dreamed of making. This is the beer that would come to mind while spending the last two years tearing down walls, hanging sheetrock, moving kegs, power washing the ceilings, arguing with various agencies, and cutting the water main. \r\n\r\nWithout Golden Promise malt, made by family-owned Simpsons Malt, Furious would just be pissed off-ed. From Scotland, this malt is still produced in the tradition of turning over the barley by hand, resulting in a malt that is unsurpassed in its quality. Golden Promise is also used extensively by premium whisky distilleries such as The Macallan. This malt provides the backbone for the intense hop character. Four American hop varieties are used at a rate of over three pounds per barrel. The result is a rich malt sweetness infused with bright hop flavor and aroma from beginning to end. Oh yeah, it's about 6% alcohol and around 100 IBUs."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
-mercury_brewing_company-ipswich_summer,0,0,244864843777,"{""name"":""Ipswich Summer"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A light-bodied, unfiltered Blonde ale that retains the bold flavors typical of an Ipswich Ale, our Summer Ale is light enough for a hot summer day and can satisfy even the most scorching thirst."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,19,1
-old_hat_brewery-red_lager,0,0,244864712705,"{""name"":""Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-thirsty_dog_brewing-rasberry_ale,0,0,245110407170,"{""name"":""Rasberry Ale"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The inviting flavor and aroma of freshly picked raspberries is naturally infused in this unique, refreshing fruit beer. Raspberry Ale is brewed in the typical Thirsty Dog fashion, full of flavor and uninhibited"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,28,1
-rivertowne_pour_house-shepard_s_crook_scotish_ale,0,0,245003780098,"{""name"":""Shepard's Crook Scotish Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Medium in body, brown in color, this ale is delightfully malty with complex caramel overtones lending to the smoothest finish you will ever experience! Don’t be afraid of the dark and try this deceptive delight!!!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,55,1
-tenaya_creek_restaurant_and_brewery-india_pale_ale,0,0,245102608384,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tenaya_creek_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
-mendocino_brewing_hopland,0,0,244876967936,"{""name"":""Mendocino Brewing - Hopland"",""city"":""Hopland"",""state"":""California"",""code"":""95449"",""country"":""United States"",""phone"":""1-707-744-1361"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13351 Highway 101""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.9734,""lon"":-123.116}}",1,49,1
-nor_wester_brewery_and_public_house-raspberry_weizen,0,0,244862418945,"{""name"":""Raspberry Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,12,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_wit,0,0,244880637952,"{""name"":""Nøgne Ø Wit"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian Ale is what you could call a wit with an attitude. We are generous with all our ingredients - including both orange peel and coriander. This does not stop this ale from being a good companion with seafood dishes."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,57,1
-red_oak_brewery-hummin_bird,0,0,245005025281,"{""name"":""Hummin Bird"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_oak_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hummin' Bird is a Light Lager or Hell (Helles) similar to those found throughout Bavaria. We use carefully selected Pilsner Malt…then it is delicately hopped with imported Tettnang Noble Hops. Then we add a proprietary lager yeast strain which is not filtered out providing ones daily supply of vitamin B. Hummin' Bird is slow-cold aged for over one month resulting in a lush mouth feel."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,58,1
-the_church_brew_works-celestial_gold,0,0,245103263746,"{""name"":""Celestial Gold"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is golden in color with a light bubbly effervescence. The light body makes this lager beer appropriate for a business lunch or your evening sipping beer. The light malt flavor also accentuates the hop flavor. From the start, you will notice a fine hop aroma. As you sip the Celestial Gold, the subdued maltiness blends with a slight hop flavor. When this beer finishes, you will notice a pleasant hop bitterness. The bitterness will be mild and quite appropriate. Celestial Gold has been known to induce Celestial bliss."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,11,1
-oaken_barrel_brewing-indiana_amber,0,0,244870938624,"{""name"":""Indiana Amber"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
-nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_porter,0,0,244871266306,"{""name"":""Nøgne Ø Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""In this quite dark ale, dark malts provide flavors of coffee and dried fruit. Recommended serving temperature 10°C/50°F. Try with dark chocolate, cheese, or red meat dishes."",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
-schlossbru-spezial,0,0,244996374529,"{""name"":""Spezial"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-tomos_watkin_and_sons_ltd-osb_premium_ale,0,0,245100969986,"{""name"":""OSB Premium Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tomos_watkin_and_sons_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
-sierra_nevada_brewing_co-sierra_nevada_kellerweis,0,0,244986544128,"{""name"":""Sierra Nevada Kellerweis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,14,1
-russell_brewing-special_lager,0,0,245005418497,"{""name"":""Special Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-titletown_brewing,0,0,245121613824,"{""name"":""Titletown Brewing"",""city"":""Green Bay"",""state"":""Wisconsin"",""code"":""54303"",""country"":""United States"",""phone"":""1-920-437-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 Dousman Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.52,""lon"":-88.0173}}",1,56,1
-on_tap_bistro_brewery-hazy_daze_hefeweizen,0,0,244877492224,"{""name"":""Hazy Daze Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
-saint_somewhere_brewing_company,0,0,244987854848,"{""name"":""Saint Somewhere Brewing Company"",""city"":""Tarpon Springs"",""state"":""Florida"",""code"":""34689"",""country"":""United States"",""phone"":""813-503-6181"",""website"":""http://www.saintsomewherebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Saint Somewhere is a small batch brewery, located in Tarpon Springs, Florida. We specialize in traditionally brewed, hand crafted Belgian Style Ales. Our first offerings are... Saison Athene , a bottle conditioned Saison with a spicy and moderately hoppy profile true to the traditions of the farmhouse ales of Wallonia. Lectio Divina, brewed in the spirit of the abbey ales of Belgium. Brewed with the same care and attention to the Art of Brewing that is practiced in the monastic breweries of Belgium. Pays du Soleil, brewed with palmetto berries and hibiscus should be out this fall!"",""address"":[""1441 Savannah Ave Unit E""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.1646,""lon"":-82.7717}}",1,17,1
-timmermans,0,0,245115060225,"{""name"":""Timmermans"",""city"":""Itterbeek"",""state"":"""",""code"":""1701"",""country"":""Belgium"",""phone"":""3225690357"",""website"":""http://www.anthonymartin.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Timmermans brews only traditional Lambic; the basic beer that, from spontaneous fermentation, is used throughout the entire range. Brewing Lambic, without adding yeast, is a complex and subtle art requiring recipes and patience passed on by the family. Lambics survive thanks to a handful of Brussels breweries and the presence of two micro-organisms that exist only in the Senne Valley: Brettanomyces Bruxellensis and Brettanomyces Lambicus. By adding fruit and spices, the magic of traditionallymade beers unravels: Strawberry, Kriek, Pêche, Framboise, Forest Fruit, but also Oude Gueuze, Kriek Retro, Gueuze, Faro or Lambicus Blanche. A unique site: open daily (including weekends), booking required. Possibilities for your meetings and banquets."",""address"":[""Kerkstraat 11""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8399,""lon"":4.2475}}",1,39,1
-skagit_river_brewing-red_card_lager,0,0,245003517955,"{""name"":""Red Card Lager"",""abv"":6.65,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-sturgeon_bay_brewing-lighthouse_amber_lager,0,0,245105360898,"{""name"":""Lighthouse Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
-three_floyds_brewing-alpha_king_pale_ale,0,0,245104967681,"{""name"":""Alpha King Pale Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Big American Pale Ale with citrusy aroma- a hop lover’s cult beer and Three Floyds’ flagship beer Brewed with Cenntennial, Cascade & Warrior Hops"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
-slab_city_brewing-esker_alt,0,0,244993490945,"{""name"":""Esker Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
-richbrau_brewing_company-santa_s_little_helper_witbier,0,0,244996702211,"{""name"":""Santa's Little Helper Witbier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We brewed this pleasantly aromatic wheat beer with the addition of bitter orange peel, coriander and a Belgian Abbey ale yeast strain. This beer is unfiltered and its flavor is tart but sweet and perfumey."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,38,1
-the_livery-maillot_jaune,0,0,245112504320,"{""name"":""Maillot Jaune"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Maillot Jaune, or \""Yellow Shirt\"", is named for the jersey of honor given to the leader of the Tour De France bicycle race held every July. American Lance Armstrong is the only person in history to wear the Maillot Jaune 7 times in a row! Golden in color and blessed with a kiss of hop bitterness, this ale is also available barrel aged. Steve swears that he does not use any performance enhancing drugs in the production of this beer!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,33,1
-mickey_finn_s_brewery-five_springs_oatmeal_stout,0,0,244864843778,"{""name"":""Five Springs Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
-otter_creek_brewing_wolaver_s_organic_ales-white_sail,0,0,244864712706,"{""name"":""White Sail"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""White Sail is a Belgian-style white beer, craft brewed with wheat, malted barley, hops, and a little bit of coriander and orange peel. It is mild yet flavorful, with fruity undertones and a haze from the yeast and wheat. This ale is delicious on its own, or with a slice of orange."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,18,1
-thunderhead_brewery_2-amber_ale,0,0,245110472704,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
-rock_bottom_restaurant_brewery_milwaukee-barleywine,0,0,245003780099,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-terrapin_beer_company-the_iron_tankard,0,0,245102608385,"{""name"":""The Iron Tankard"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Brew 1 – March – “The Iron Tankard” Old Stock Ale – The building started as a YMCA in 1889 and had a huge iron swimming pool in the basement.\r\n\r\nFrom Spike: Iron Tankard “Old Stock Ale” is the first of four beers in Terrapin’s Georgia Theatre Sessions. It is brewed with a generous portion of crystal malts for a full body and is lightly hopped. This malt forward beer has flavors of dark dried fruit, mellow alcoholic warmth and is unfiltered for your listening pleasure.\r\n\r\nA portion of the proceeds will be donated to the Georgia Historic Trust for Historic Preservation Fund to rebuild the Georgia Theater. To make things even more interesting, there is one Golden Ticket hidden among each of the Georgia Theater Sessions brews. This means that four lucky winners will receive a lifetime pass to the new Theater."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,10,1
-michigan_brewing,0,0,244876967937,"{""name"":""Michigan Brewing"",""city"":""Webberville"",""state"":""Michigan"",""code"":""48892"",""country"":""United States"",""phone"":""1-517-521-3600"",""website"":""http://www.michiganbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1093 Highview Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6616,""lon"":-84.1946}}",1,49,1
-north_country_brewery-creamation_ale,0,0,244862418946,"{""name"":""Creamation Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This style of beer is light to medium in body (mouth-feel) with very little hop character. The brewer says “a good beer to try if you’re a Northern Lite drinker”"",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,12,1
-northwest_brewwrks-kirkland_ale,0,0,244880637953,"{""name"":""Kirkland Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwest_brewwrks"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
-river_west_brewing-red_fox_amber,0,0,245005090816,"{""name"":""Red Fox Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
-the_lost_abbey-avant_garde,0,0,245103329280,"{""name"":""Avant Garde"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""From the French word “Garde” meaning something worth keeping, this Biere de Garde styled Farmhouse Ale is a most delicious companion to a loaf of freshly baked bread from the oven. Grab a seat on the porch, some soft cheese and a tree ripened apple from your grandmother’s old orchard. Relax and watch the evening arrive as the afternoon sun is consumed by the illuminating moon over the gardens. We brewed Avant Garde for you, our friends and families. Here’s to things worth guarding over."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,11,1
-pabst_brewing_company-piels_light,0,0,244870938625,"{""name"":""Piels Light"",""abv"":3.79,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Over a century of brewing skill, along with the finest ingredients obtainable, has resulted in a beer unique for its balance of lightness and delicious flavor."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,34,1
-old_dominion_brewing_co-hop_mountain,0,0,244871266307,"{""name"":""Hop Mountain"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_dominion_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-schlossbru-stout,0,0,244996374530,"{""name"":""Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,37,1
-tuppers_hop_pocket_ale,0,0,245101035520,"{""name"":""Tuppers Hop Pocket Ale"",""city"":""Bethesda"",""state"":""Maryland"",""code"":""20817"",""country"":""United States"",""phone"":""1-301-229-2027"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6404 Redwing Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9735,""lon"":-77.1272}}",1,7,1
-skagit_river_brewing-navidad,0,0,244986544129,"{""name"":""Navidad"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
-schlobrauerei_reckendorf-weissbier,0,0,245005418498,"{""name"":""Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,59,1
-tyranena_brewing-bitter_woman_in_the_rye,0,0,245121613825,"{""name"":""Bitter Woman in the Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,56,1
-otto_s_pub_and_brewery-otto_s_hefeweizen,0,0,244877492225,"{""name"":""Otto's Hefeweizen"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A south German style wheat ale. This beer is served traditionally cloudy due to the suspended yeast (hefe=yeast). Strong spicy clove flavors and light banana esters are characteristics of a different yeast strain we are trying."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
-sea_dog_brewing_company,0,0,244987854849,"{""name"":""Sea Dog Brewing Company"",""city"":""Bangor"",""state"":""Maine"",""code"":""4401"",""country"":""United States"",""phone"":""207.947.8009"",""website"":""http://www.seadogbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Today, Sea Dog Brewing Company operates brew pubs in two locations. The Sea Dog in Topsham occupies a scenic spot on the Androscoggin River. The Bangor location overlooks the historic Penobscot River. Both locations serve a full menu of handcrafted ales and creative pub fare with a flair. Being authentic is important to us. Our beers are brewed in a traditional style using only the highest quality ingredients like imported English two-row malted barley and British top-fermenting yeast. Our English brewing style results in brews with a distinctive, refreshing taste and crisp finish unique to top-fermented beers."",""address"":[""26 Front Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.7974,""lon"":-68.77}}",1,17,1
-tyskie_browary_ksiazece,0,0,245115125760,"{""name"":""Tyskie Browary Książęce"",""city"":""Tychy"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-32-327-81-00"",""website"":""http://www.tyskie.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mikolowska 5""]}",1,39,1
-sly_fox_brewhouse_and_eatery_royersford-phoenix_pale_ale,0,0,245120630784,"{""name"":""Phoenix Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
-sullivan_s_black_forest_brew_haus_grill-grateful_red,0,0,245105426432,"{""name"":""Grateful Red"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Making Jerry proud with an amber ale that's slightly malty and very tasty."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
-titletown_brewing-belgian_trippel,0,0,245104967682,"{""name"":""Belgian Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-sleeman_brewing_malting,0,0,244993490946,"{""name"":""Sleeman Brewing & Malting"",""city"":""Guelph"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-822-1834"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""551 Clair Road West""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.487,""lon"":-80.2068}}",1,31,1
-rio_salado_brewing-thunderhead_schwarz_bier,0,0,244996767744,"{""name"":""Thunderhead Schwarz Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rio_salado_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
-thirsty_dog_brewing-irish_setter_red_ale,0,0,245112504321,"{""name"":""Irish Setter Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
-middle_ages_brewing-black_heart_stout,0,0,244864909312,"{""name"":""Black Heart Stout"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Generous portions of roasted barley, black and chocolate malts which leave \""coffee\"" overtones lingering on the palate."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
-park_city_brewing-steamer,0,0,244987985920,"{""name"":""Steamer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""park_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-trap_rock_restaurant_and_brewery,0,0,245110472705,"{""name"":""Trap Rock Restaurant and Brewery"",""city"":""Berkeley Heights"",""state"":""New Jersey"",""code"":""7922"",""country"":""United States"",""phone"":""1-908-665-1755"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""279 Springfield Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6892,""lon"":-74.4349}}",1,28,1
-rock_bottom_restaurant_brewery_minneapolis-stillwater_stout,0,0,245003845632,"{""name"":""Stillwater Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
-third_street_ale_works,0,0,245102673920,"{""name"":""Third Street Ale Works"",""city"":""Santa Rosa"",""state"":""California"",""code"":""95404"",""country"":""United States"",""phone"":""1-707-523-3060"",""website"":""http://www.thirdstreetaleworks.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""610 Third Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.4398,""lon"":-122.713}}",1,10,1
-midnight_sun_brewing_co-la_maitresse_du_moine,0,0,244876967938,"{""name"":""La Maitresse du Moine"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and strong as the style implies, La Maitresse du Moine dances across the palate with complexity and mystery--just as the Northern Lights move across the night sky, delighting the senses and enlightening the mind.\r\n\r\nIn the tradition of monks who have devoutly brewed beers of character and strength for centuries, La Maitresse du Moine Dark Strong Ale reflects the passion and dedication required to create a beer this heavenly. This Mistress of the Monk is seductive, pensive and intriguing. We say it in French: La Maitresse du Moine."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,49,1
-oggi_s_pizza_and_brewing_vista-ding_ding_double_ipa,0,0,244862484480,"{""name"":""Ding Ding Double IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
-o_gara_s_bar_grill-light_amber_ale,0,0,244880637954,"{""name"":""Light Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
-rogue_ales-half_e_weizen,0,0,245005090817,"{""name"":""Half-E-Weizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Half-e-Weizen (formerly Mo Ale), was inspired by, and dedicated to, Mo and Dutch Niemi, real people inspiring a real product. Mo was a restaurateur and raconteur whose clam chowder is world-famous; Dutch a leader by example for coastal fisherman. Together their spirit indelibly shapes the daily lives of the Newport, OR waterfront.\r\n\r\nHalf-e-Weizen is a refreshing, unfiltered fusion of wheat and Northwest Harrington malts, coriander, ginger, and Saaz hops in the Belgium style. Half-e-Weizen is available in the classic 22-ounce bottle and on draft."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,58,1
-titletown_brewing-the_400_honey_ale,0,0,245103329281,"{""name"":""The \""400\"" Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-pete_s_brewing-pete_s_wicked_strawberry_blonde,0,0,244994473984,"{""name"":""Pete's Wicked Strawberry Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pete's Wicked Strawberry Blonde is truly a unique beer experience. Reward yourself with our golden lager made of the finest pale and wheat malts and Cluster Hops, with a kiss of natural strawberry flavor."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
-pacific_coast_brewing-imperial_stout,0,0,244994867200,"{""name"":""Imperial Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-schooner_brewery-dunkelweizen,0,0,244996374531,"{""name"":""Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-tustin_brewing-old_town_ipa,0,0,245101035521,"{""name"":""Old Town IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tustin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
-south_shore_brewery-honey_pilsner,0,0,245104246784,"{""name"":""Honey Pilsner"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
-sierra_nevada_brewing_co-stout,0,0,245005484032,"{""name"":""Stout"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nCreamy, malty, and full-bodied, the Sierra Nevada Stout is satisfyingly rich. Caramel and Black malts give the Stout its deep, dark color and pronounced roasted flavor. \r\n\r\n“Sierra Nevada Stout is admirable from nose to finish, with notes of malty sweetness to the palate but plenty of bitterness available to set up a stimulating counterpoint.”\r\n\r\n– Christopher Finch, A Connoisseur’s Guide \r\nto the World’s Best Beer\r\n\r\nGOLD MEDAL WINNER\r\nCalifornia State Fair (Stout, Sweet & Foreign: 2000)"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
-unionsbru_haidhausen-unimator,0,0,245121679360,"{""name"":""Unimator"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unionsbru_haidhausen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,56,1
-pacific_beach_brewhouse-sunset_red,0,0,244877492226,"{""name"":""Sunset Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
-seabright_brewery-brew_ribbon,0,0,244987920384,"{""name"":""Brew Ribbon"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
-uerige_obergrige_hausbrauerei,0,0,245115125761,"{""name"":""Uerige Obergrige Hausbrauerei"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-86699-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bergerstrae 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.225,""lon"":6.7722}}",1,39,1
-smuttynose_brewing_co-portsmouth_lager,0,0,245120696320,"{""name"":""Portsmouth Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Named in honor of our hometown’s 375th anniversary, Smuttynose Portsmouth Lager is a full-flavored, medium bodied continental-style beer - deep golden in color, featuring a mouth-pleasing maltiness subtly balanced with spicy imported Saaz hops. One taste of this fine lager tells you this is no ordinary beer: From its mellow, velvety body to its lingering, fresh hop finish, Portsmouth Lager is smooth, complex and satisfying.""}",1,54,1
-sweetwater_tavern_centreville,0,0,245105426433,"{""name"":""Sweetwater Tavern - Centreville"",""city"":""Centreville"",""state"":""Virginia"",""code"":""20121"",""country"":""United States"",""phone"":""1-703-449-1100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14250 Sweetwater Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8289,""lon"":-77.4393}}",1,16,1
-tivoli_brewing,0,0,245104967683,"{""name"":""Tivoli Brewing"",""city"":""Denver"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7392,""lon"":-104.985}}",1,15,1
-slottskllans_bryggeri-vrak,0,0,245111324672,"{""name"":""Vrak"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slottskllans_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-river_horse_brewing_company-hop_hazard,0,0,244996767745,"{""name"":""Hop Hazard"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewing the perfect ale is truly a balancing act...hazardous work you might say. With Hop Hazard our challenge was to hand craft a malt rich base that could counterbalance a combustible five-hop blend and still leave your taste buds with enough room to enjoy a unique, crisp hop finish."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
-three_floyds_brewing-x_tra_pale_ale,0,0,245112504322,"{""name"":""X-Tra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-minneapolis_town_hall_brewery-masala_mama_ipa,0,0,244864909313,"{""name"":""Masala Mama IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our brewers believe an American IPA should be full of American hops. Masala Mama uses three different West Coast varieties, over five hop additions. This copper-colored ale is not strictly about hops; American pale barley and several caramel malts balance the flavor for a green, toasted caramel finish. The British realized an abundance of hops will help preserve beer … we realized hops can preserve our customers."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-pennichuck_brewing_company-pozharnik,0,0,244988051456,"{""name"":""Pozharnik"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,18,1
-twisted_pine_brewing_company-big_shot_espresso_stout,0,0,245110472706,"{""name"":""Big Shot Espresso Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twisted_pine_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A favorite of many coffee-loving beer drinkers, Big Shot Espresso Stout boasts about a shot of espresso in every pint. Twisted Pine teamed up with popular Amante Coffee in Boulder to produce what Amante co-owner and founder Greg Buchheister calls \""the most perfectly balanced buzz.\"" The earthy, dark chocolate flavors of the Amante Espresso blend to the flawless balance of the beer.""}",1,28,1
-rock_bottom_restaurant_brewery_san_jose-faller_wheat,0,0,245003845633,"{""name"":""Faller Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-three_floyds_brewing-broodoo,0,0,245102673921,"{""name"":""Broodoo"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
-midnight_sun_brewing_co-trickster_belgian_style_pumpkin_ale,0,0,244877033472,"{""name"":""Trickster Belgian-style Pumpkin Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""OK, what do you get when we toss pale malted barley, pumpkin and spices into a stainless steel cauldron then stir in some magic? Uh, Trickster! The “magic” is actually mischievous Belgian yeast at play with cardamom, nutmeg and coriander. This spooky cool brew will make your glass glow bright despite the gloominess of the season. \r\n\r\nDesigned to conjure up a little fun during the darkening days of autumn, Trickster is a frivolous concoction of earthy pumpkin, comforting malt, and lively spices. This makes Trickster the brew to accompany your post-winterizing duties, family fall dinners, ghost stories, U-boast-iT stories, and “supposedly haunted” garage parties. \r\n\r\nBut the flavor range of Trickster also pairs well with citrusy and spicy cuisine. Try a glowing glass with your favorite dishes that incorporate nutmeg, cardamom or coriander—like Thai curries, Swedish meatballs, gingerbread, roasted pumpkin soup. Add Trickster to soups and sauces, batters and doughs, glasses and mugs."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,49,1
-olde_peninsula_brewpub_and_restaurant-india_pale_ale,0,0,244862484481,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
-oregon_trader_brewing,0,0,244880637955,"{""name"":""Oregon Trader Brewing"",""city"":""Albany"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.6365,""lon"":-123.106}}",1,57,1
-rogue_ales-youngers_special_bitter,0,0,245005090818,"{""name"":""Youngers Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Our original Rogue Ale, Youngers Special Bitter (affectionately nicknamed YSB) is a classic English Special Bitter named after Bill Younger of the infamous Horse Brass Pub in Portland, Oregon. The Malt Advocate described Youngers Special Bitter as \""rich and flavorful. A triad of caramel maltiness, fruitiness (apricots?), and hop bitterness in aroma and flavor. A fuller malt foundation than some other pale ales, with some background spiciness. Dry, hoppy finish.\"" In the SouthWest Brewing News, Feb/March 1994 issue, George Fix wrote \""A strong case could be made for Rogue Ale being included among the top 5 ales brewed in the US.\""\r\n\r\nYSB is amber in color with a mild hoppy finish. Brewed with a blend of 2-row Harrington and Crystal malts, Willamette and East Kent Golding hops. YSB is available in the classic 22-ounce seriograph bottle (the 12-ounce 6-pack was phased out in early 2005), and on draft."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,58,1
-top_of_the_hill_restaurant_and_brewery-blackwood_mountain_stout,0,0,245103329282,"{""name"":""Blackwood Mountain Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
-pizza_port_brewing_solana_beach-mother_of_all_beers,0,0,244994473985,"{""name"":""Mother of All Beers"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizza_port_brewing_solana_beach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-phoenix_beverages_ltd,0,0,244994932736,"{""name"":""Phoenix Beverages Ltd"",""city"":""Pont Fer"",""state"":""Phoenix"",""code"":"""",""country"":""Mauritius"",""phone"":"""",""website"":""http://www.phoenixbeveragesgroup.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-20.2738,""lon"":57.4971}}",1,35,1
-selin_s_grove_brewing_co,0,0,244996440064,"{""name"":""Selin's Grove Brewing Co."",""city"":""Selinsgrove"",""state"":""Pennsylvania"",""code"":""17870"",""country"":""United States"",""phone"":""570-374-7308"",""website"":""http://www.selinsgrovebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""121 North Market St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.801,""lon"":-76.8614}}",1,37,1
-union_colony_brewery,0,0,245101101056,"{""name"":""Union Colony Brewery"",""city"":""Greeley"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.4233,""lon"":-104.709}}",1,7,1
-spaten_franziskaner_brau,0,0,245104312320,"{""name"":""Spaten-Franziskaner-Bräu"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-5122-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Marsstrae 46-48""]}",1,14,1
-simmerberg_brusttt_und_taferne,0,0,245005484033,"{""name"":""Simmerberg Brusttt und Taferne"",""city"":""Simmerberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8387-/-3806"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ellhofer Strae 2""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.5814,""lon"":9.9191}}",1,59,1
-utah_brewers_cooperative,0,0,245121679361,"{""name"":""Utah Brewers Cooperative"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84115"",""country"":""United States"",""phone"":""1-801-466-8855"",""website"":""http://www.utahbeers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1763 South 300 West""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.7322,""lon"":-111.9}}",1,56,1
-pelican_pub_brewery-bridal_ale_2005,0,0,245001486336,"{""name"":""Bridal Ale 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pelican_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-sierra_nevada_brewing_co-bigfoot_1998,0,0,244987920385,"{""name"":""Bigfoot 1998"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-umpqua_brewing,0,0,245115125762,"{""name"":""Umpqua Brewing"",""city"":""Roseburg"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.2165,""lon"":-123.342}}",1,39,1
-south_shore_brewery,0,0,245120696321,"{""name"":""South Shore Brewery"",""city"":""Ashland"",""state"":""Wisconsin"",""code"":""54806"",""country"":""United States"",""phone"":""1-715-682-9199"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""808 West Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.5872,""lon"":-90.8921}}",1,54,1
-switchback_brewing_co,0,0,245105491968,"{""name"":""Switchback Brewing Co"",""city"":""Burlington"",""state"":""Vermont"",""code"":""5406"",""country"":""United States"",""phone"":""(802) 651-4114"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 4210""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.3906,""lon"":-79.8049}}",1,16,1
-top_of_the_hill_restaurant_and_brewery-big_bertha_brown,0,0,245104967684,"{""name"":""Big Bertha Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
-southern_tier_brewing_co-back_burner_imperial_barley_wine_style_ale,0,0,245111390208,"{""name"":""Back Burner Imperial Barley Wine Style Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Long ago, British farmhouse brewers made special ales using the first runnings of the mash. These beers, now called barley wine, are brewed in the tradition of days past. At Southern Tier this long awaited brew is placed on the back burner until the start of the new year. Back Burner Barley Wine is a celebration of things to come and things remembered. It’s conceived in three small batches, using voluminous amounts of barley and hops. The process starts early in the morning and ends late into the night. We hope this rare brew reignites your spirit for another trip around the sun."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,31,1
-river_west_brewing-railroad_stout,0,0,244996833280,"{""name"":""Railroad Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-titletown_brewing-pale_ale_a_la_bushner,0,0,245112569856,"{""name"":""Pale Ale \""á la Bushner\"""",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
-mishawaka_brewing-kolsch,0,0,244864909314,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-pennichuck_brewing_company-the_big_o_oktobefest,0,0,244988051457,"{""name"":""The Big O Oktobefest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,18,1
-union_barrel_works-union_barrel_works_pale_ale,0,0,245110472707,"{""name"":""Union Barrel Works Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A translucent amber-red ale with a moderately high IBU of 36. Bittering hops include Kent Golding and Cascade. A generous amount of Kent Golding is used in the dry hopping to further enhance the aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
-rogue_ales-old_crustacean_barleywine_2006,0,0,245003911168,"{""name"":""Old Crustacean Barleywine 2006"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-three_floyds_brewing-pride_joy_mild_ale,0,0,245102739456,"{""name"":""Pride & Joy Mild Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,10,1
-moorhouse_s_brewery_burnley-pendle_witches_brew,0,0,244877033473,"{""name"":""Pendle Witches Brew"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moorhouse_s_brewery_burnley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-olde_peninsula_brewpub_and_restaurant-tornado_ale,0,0,244862484482,"{""name"":""Tornado Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
-pivovar_pardubice_a_s-porter_boom,0,0,245004632064,"{""name"":""Porter Boom"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_pardubice_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,57,1
-ruppaner_brauerei-edel_pils,0,0,245005156352,"{""name"":""Edel-Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
-troegs_brewing-rugged_trail_ale,0,0,245103394816,"{""name"":""Rugged Trail Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Designed as our session beer, Rugged Trail Nut Brown Ale is bronze in color with a velvety smooth taste and subtle chocolate note. Rugged Trail’s lower alcohol content and subtle hoppiness make it the perfect beer to enjoy during the day and into the night."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
-pleasanton_main_street_brewery-train_wreck_ipa,0,0,244994539520,"{""name"":""Train Wreck IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
-pizzeria_uno_chicago_grill_brewery-32_inning_ale,0,0,244994932737,"{""name"":""32 Inning Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-sharktooth_brewing-poi_dog_wheat,0,0,244996505600,"{""name"":""Poi Dog Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-vintage_50_restaurant_and_brew_lounge-point_of_rocks_pale_ale,0,0,245744926720,"{""name"":""Point Of Rocks Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vintage_50_restaurant_and_brew_lounge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
-st_peter_s_brewery-english_ale,0,0,245104312321,"{""name"":""English Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
-sixpoint_craft_ales-bengali_tiger,0,0,245005549568,"{""name"":""Bengali Tiger"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Sixpoint Bengali Tiger is reminiscent of the century-old English IPA. In my perspective, many current IPAs suffer from lacking substance; unbalanced by a hoppy assertiveness that is not substantiated by a strong foundation of rich malt flavors. Our interpretation uses the highest-quality, floor-malted base malt, which lends a full-bodied and rich caramel flavor. We mash at high temperatures and add generous amounts of specialty malts to further emphasize a strong foundation of malt as leverage for our generous additions of hops… Which are indeed generous. We use a total of three different hop strains, and add a total of six different additions throughout the process. The Bengali Tiger has a hoppy snap upfront, but strides at a steady pace, and finishes balanced. The signature characteristic of the Tiger is the aroma… we use massive quantities of whole East Kent Goldings hops to dry hop in our conditioning tanks. The result? The essential oils from the hops are an enticing treat before every sip. Notice the lacing of stripes around the pint glass as you finish your glass; it’s the mark of the Tiger."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
-voodoo_brewing_co_llc-pilzilla,0,0,245751873536,"{""name"":""PILZILLA"",""abv"":6.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Pilzilla is a beer that I've been brewing for years. Each year it gets bigger and bigger. Nicknamed \""The beer that took over Tokyo\"". It is an unfiltered Keller Bier. Nicley hopped at this point with 9 different kinds of hops at 10 additions and about 6.75 % alc. Each year we will add another variety of hop and bump the alc a bit. This is listed on Beer Advocate as the highest rated Kellerbier in the world. \r\n\r\nBottle Conditioned and Refermented. \r\n\r\nThis is not your average pilsner, get it before we drink it all! Prost!!""}",1,56,1
-pennichuck_brewing_company,0,0,245001486337,"{""name"":""Pennichuck Brewing Company"",""city"":""Milford"",""state"":""New Hampshire"",""code"":""3055"",""country"":""United States"",""phone"":""(603) 672-2750"",""website"":""http://www.pennichuckbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""127 Elm St., Unit C""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.8368,""lon"":-71.6626}}",1,50,1
-sioux_falls_brewing-midnight_star_ale,0,0,244987920386,"{""name"":""Midnight Star Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-warsteiner_brauerei-konig_ludwig_weissbier,0,0,245749448704,"{""name"":""Konig Ludwig Weissbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,39,1
-steamworks-cascadia_cream_ale,0,0,245120761856,"{""name"":""Cascadia Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Every year in Vancouver there are a few days when the air is cool & crisp, the sun shines brightly, and the leaves show their vibrant colours -- then it starts to rain incessantly. Anyway, our Cascadia Cream Ale is dedicated to the spirit of mountains, oceans, golden days and gentle mist. Caramel and honey malts lend this ale a mellow, grainy maltiness which is balanced by the subtle presence of English finishing hops. Cheers, our Cascadia Cream Ale will be sure to brighten up even the wettest West Coast day."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-the_blind_bat_brewery_llc-long_island_potato_stout,0,0,245105491969,"{""name"":""Long Island Potato Stout"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with real mashed Long Island Potatoes (or is it \""Potatos\""?) in the mash - hence, \""twice mashed.\"" \r\n\r\nI'll admit, my Polish, Irish, and German heritage finds the siren song of potatoes irresistible. (My French blood, not so much.) The local, Long Island agriculture booster in me needs to go for the Long Island potato above all others. \r\n\r\nWith a brewery this small (basically a home brewery with a license to sell), I can brew what \""gets\"" me, with hopes that some folks will enjoy it."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
-trailhead_brewing_company-trailblazer_blond_ale,0,0,245105033216,"{""name"":""Trailblazer Blond Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-sprecher_brewing-special_amber,0,0,245111390209,"{""name"":""Special Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A delicate balance of toasted malt and fresh hops give this medium-bodied German-style lager an intriguing, complex malt flavor. A creamy head, deep golden color and an impressive hop bouquet make this a very special beer."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-rogue_ales-imperial_india_pale_ale_i2pa,0,0,244996833281,"{""name"":""Imperial India Pale Ale / I2PA"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Above and beyond an India Pale Ale--I2PA is radically hopped with an intense aroma and hop bitterness. Unfiltered and aged for 9 months before it leaves the brewery--not for the faint of heart. I2PA is brewed with two-row Pipkin Pale malts, Saaz, Cascade and Northwest Golding hops. I2PA is available in a new 750ml Silkscreened black ceramic bottle and on draft."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,38,1
-tyranena_brewing,0,0,245112569857,"{""name"":""Tyranena Brewing"",""city"":""Lake Mills"",""state"":""Wisconsin"",""code"":""53551"",""country"":""United States"",""phone"":""1-920-648-8699"",""website"":""http://www.tyranena.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1025 Owen Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0862,""lon"":-88.8967}}",1,33,1
-moorhouse_s_brewery_burnley-black_cat,0,0,244864974848,"{""name"":""Black Cat"",""abv"":3.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moorhouse_s_brewery_burnley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,19,1
-pizza_beer,0,0,244988116992,"{""name"":""Pizza Beer"",""city"":""St Charles"",""state"":""Illinois"",""code"":""60175"",""country"":""United States"",""phone"":""(630) 377-6888"",""website"":""http://www.mammamiapizzabeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Chef Tom and Mamma Mia aren't the only folks that have discovered how great recipes using Mamma Mia Pizza Beer truly can be. Just ask the owners of Michel Angelo's Pizza & Pasta, Ream's Elburn Market, Josefs Elegante Meat and Deli, and the constantly growing list of fine establishments that now or will soon be featuring food products made with Mamma Mia Pizza Beer. Whether it's used in bread, crusts, meats and even fried fish batter, Mamma Mia Pizza Beer truly is expanding the meaning of The World's First Culinary Beer!"",""address"":[""5N404 Harvest Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9455,""lon"":-88.4507}}",1,18,1
-upstream_brewing_old_market-honey_raspberry_ale,0,0,245110538240,"{""name"":""Honey-Raspberry Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""This easy drinking beer is made with pale and \r\nMunich malts, wheat, honey and fresh raspberry puree. Honey Raspberry Ale is refreshing and mildly sweet."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,28,1
-rogue_ales-xs_imperial_stout,0,0,245003911169,"{""name"":""XS Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Deserving the title \""Emperor of Ales\"" (unlike the bourgeois \""King of Beers\""), Imperial is the strongest and fullest of all stouts. Imperials originally were brewed with large quantities of hops and a high alcohol content to withstand long, unrefrigerated journeys. Rogue Imperial Stout, considered the high end of stouts, is made of 2-row Great Western Harrington & Klages, Hugh Baird XLT-80, Black, Munich and Chocolate Malts; Willamette, Cascade and Chinook hops; rolled oats; and two secret ingredients. Unfiltered and unfined, Imperial Stout is best when aged for one year. Imperial Stout is available in a new 750-ml ceramic swing-top bottle (replacing the much older 7-ounce and more recent 12-ounce XS-line packaging) and on draft."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
-thunderhead_brewery_2-nitro_porter,0,0,245102739457,"{""name"":""Nitro Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,10,1
-moylan_s_brewery_restaurant-moylannium_ale,0,0,244877033474,"{""name"":""Moylannium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-ostankinskij_pivovarennij_zavod-beer,0,0,244862550016,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ostankinskij_pivovarennij_zavod"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-port_brewing_company-hop_15_ale,0,0,245004697600,"{""name"":""Hop 15 Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First brewed in 2002 to celebrate the 15th Anniversary of the Pizza Port in Solana Beach, Hop 15 was imagined and designed by Tomme Arthur and Jeff Bagby. It was to be a celebration of 15 years of \""Good Beer Brings Good Cheer.\"" So there are 15 different hop varieties that are added to the beer every 15 minutes. Over the years, Hop 15 has racked up numerous accolades. It has won two silver medals at the Great American Beer Festival. It also was named Alpha King in 2004 and received a first place award at the Bistro Double IPA beer festival in Hayward, CA. Hop 15 remains won of the stickiest most resinous beers we have ever tasted and for that, we are thankful it is on tap at our brewery each and every day.\r\n\r\nMalts- Two Row and English Light Crystal\r\nHops- We use 15 Different Varieties on a strictly don't ask don't tell policy\r\nYeast- White Labs California Ale and Proprietary Yeast Strains\r\n\r\nOriginal Gravity- 1.086\r\nTerminal Gravity- 1.014\r\n9.7 % ABV\r\n\r\nDraft- Available in Southern California 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
-san_marcos_brewery_grill-x_tra_pale,0,0,245005156353,"{""name"":""X-Tra Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-troegs_brewing-scratch_20_2009_apollo_imperial_ale,0,0,245103460352,"{""name"":""Scratch #20 2009 Apollo Imperial Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #20 has been dubbed Apollo Imperial Ale because of our experimentation with a new hop variety.\r\n \r\nApollo hops are high alpha acid with an intense aroma. Married with other high alpha hops, with almost two pounds of hops added per barrel produced, AIA has an intense staying power in the back of the throat. After a long discussion between Chris, John and the brewers, they dubbed this hop flavor stinky grapefruit with a hint of perfume. The dark color might lead you to believe the some malt may shine through; but no, the hops are the true player in this ale.\r\n \r\nScratch #20 has a dual role, also serving at The Drafting Room’s Anniversary Ale for 2009. We brewed a bit more to serve the brewery and The Drafting Room, but get it while when you see it. Before this intense hop flavor subsides, this beer will be sold out."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,11,1
-plzesk_prazdroj-pilsner_urquell,0,0,244994605056,"{""name"":""Pilsner Urquell"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""plzesk_prazdroj"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,34,1
-pizzeria_uno_chicago_grill_brewery-gust_n_gale_porter,0,0,244994998272,"{""name"":""Gust-N-Gale Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
-sierra_nevada_brewing_co-bigfoot_2003,0,0,244996505601,"{""name"":""Bigfoot 2003"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-weyerbacher_brewing_company-hops_infusion,0,0,245744992256,"{""name"":""Hops Infusion"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hops Infusion is loaded with piney, citrusy notes, much hops complexity, and a strong foundation of malt underneath it all.. Glowing a deep amber color, Hops Infusion is brewed with seven types of hops. Simcoe, Magnum, Cascade, Liberty, Saaz, Fuggles and E. Kent Goldings give this beer the complexity that's so interesting. Our brewers intention on Hops Infusion was to create a complexity of hops flavor and aromas, not found in any other beer.\r\n\r\nOriginally developed for our BrewPub (no longer open), Hops Infusion was ahead of its time in 1998, but eventually became over shadowed by plethora of entries from other brewers in the India Pale Ale category, with everyone pushing the envelope on hops content more and more. So, in late 2005 we redesigned this beer with an entirely new recipe and new packaging as well. The results are unmistakable, Hops Infusion is clearly a leading IPA once again.\r\n\r\nWe brew Hops Infusion (6.2% ABV, 1.068 OG) all year 'round. So if your local beer store doesn't have it, tell 'em to get moving!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
-stadsbrouwerij_de_hemel,0,0,245104377856,"{""name"":""Stadsbrouwerij De Hemel"",""city"":""Nijmegen"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-024-3606167"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Franseplaats 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.8486,""lon"":5.8639}}",1,14,1
-sixpoint_craft_ales,0,0,245005615104,"{""name"":""Sixpoint Craft Ales"",""city"":""Brooklyn"",""state"":""New York"",""code"":""11231"",""country"":""United States"",""phone"":"""",""website"":""http://www.sixpointcraftales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""40 Van Dyke St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.674,""lon"":-74.0118}}",1,59,1
-weyerbacher_brewing_company-alpha,0,0,245751939072,"{""name"":""Alpha"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Alpha, the first entry in our one-off, brewer's choice series is a Belgian-style Pale Ale at 6.2% ABV. Brewed with Pale, Carahell and Wheat malts, Amarillo and Cascade hops. This medium bodied beer is crisp on the palate with a smooth, not overly bitter hops flavor coupled with the fruity esters from the Belgian Abby yeast strain we used. Its bottle and keg conditioned, so expect a tall, fluffy head, and perhaps small amount of sediment. Just one batch was brewed in April 2008, kegs released in late May, and only 20 cases of bottles for sale only at the brewery at the special debut night event of June 13, 2008, from 5 to 8 pm. Recipe by Jeff Musselman, assistant brewer."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,56,1
-pivovar_hradec_krlov-lion_lev_export_lager_beer_double_bock,0,0,245001551872,"{""name"":""Lion Lev Export Lager Beer Double Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_hradec_krlov"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
-skagit_river_brewing-skagit_brown_ale,0,0,244987985920,"{""name"":""Skagit Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
-water_tower_brewing-flying_horse_pale_ale,0,0,245749448705,"{""name"":""Flying Horse Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_tower_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
-the_livery-old_cedar,0,0,245120761857,"{""name"":""Old Cedar"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after a drawing of an old cedar tree growing out of a cliff on the Lake Superior shoreline done by friend and artist Ladislav Hanka, this beer is copper colored and hopped with American Centennial and English East Kent Golding hops.""}",1,54,1
-titletown_brewing-birra_canadeo_gridiron_gold,0,0,245105491970,"{""name"":""Birra Canadeo / Gridiron Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-troegs_brewing-flying_mouflan,0,0,245105033217,"{""name"":""Flying Mouflan"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This strong alluring ale is two beers in one. Cracking open a fresh bottle unleashes hops and heat with more than 100 IBUs emanating from three hop varieties and sweet burn of 9.3% ABV. Cellaring the Flying Mouflan in a cool dark place at 50 degrees for a minimum of four months will mellow out the hops and wash away the heat. If you can resist temptation you will be rewarded with two memorable beers in a single bottle."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,15,1
-standing_stone_brewing_company-standing_stone_double_india_pale_ale,0,0,245111390210,"{""name"":""Standing Stone Double India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An unfiltered ale with intense hop bitterness, flavor and aroma. This ale is well balanced with higher alcohol, maltiness and hop character. (95 IBU.)"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,31,1
-rogue_ales-morimoto_soba_ale,0,0,244996833282,"{""name"":""Morimoto Soba Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The Morimoto Soba Ale is part of the new Signature Series of Rogue Ales, launched in the Spring of 2003 with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \r\n\r\nSoba (also known as buckwheat) is not a type of wheat but a member of the rhubard family (a fruit, not a grain!) Soba has been a longtime staple of Japanese cuisine because of its nutritional value. Buckwheat is high in potassium, phosphorous, vitamin B (50 percent more than wheat) and protein, and its virtually fat-free. The fruits of buckwheat plant are like small beechnuts, which are milled to separate the edible groats from the dark brown hulls. The groats are then roasted and used more or less like a grain (a good example is Kasha).\r\n\r\nMorimoto Soba Ale is brewed with Roasted Buckwheat, Pale malt, Munich Malt, 13-17 Carastan Malt, and Crystal Hops. (Note, this beer contains Gluten.) The flavor is unique, toasty-nutty sensation with medium body and good hop bitterness. Morimoto Soba Ale is available in a 22 ounce silkscreened bottle and 13.2 gallon sankey kegs.\r\nTo learn more about the Chef, visit Morimotos web page."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,38,1
-uerige_obergrige_hausbrauerei-sticke,0,0,245112569858,"{""name"":""Sticke"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uerige_obergrige_hausbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
-mordue_brewery-radgie_gadgie,0,0,244864974849,"{""name"":""Radgie Gadgie"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mordue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-apricot_wheat,0,0,244988116993,"{""name"":""Apricot Wheat"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
-vetter_s_alt_heidelberger_brauhaus-vetter_33,0,0,245110538241,"{""name"":""Vetter 33"",""abv"":37.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vetter_s_alt_heidelberger_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
-roots_organic_brewing,0,0,245003911170,"{""name"":""Roots Organic Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97214"",""country"":""United States"",""phone"":""1-503-235-7668"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1520 SE Seventh Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5118,""lon"":-122.659}}",1,55,1
-titletown_brewing-art_schmidt_pilsner,0,0,245102739458,"{""name"":""Art Schmidt Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-nethergate_brewery_co_ltd-old_growler,0,0,244877099008,"{""name"":""Old Growler"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nethergate_brewery_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
-otter_creek_brewing_wolaver_s_organic_ales-oktoberfest,0,0,244862550017,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Oktoberfest is our version of the perennial favorite Bavarian Autumn beer. Oktoberfest's deep golden hue helps bring to mind the old country and its time honored traditions. Brewed with Hallertau and Tettnang hops to balance its clean, malty sweetness, it's the perfect brew for a crisp Autumn day. Available from August to November."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,12,1
-redhook_ale_brewery-winterhook_robust_winter_ale_2000,0,0,245004763136,"{""name"":""Winterhook Robust Winter Ale 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-schussenrieder_erlebnisbrauerei,0,0,245005156354,"{""name"":""Schussenrieder Erlebnisbrauerei"",""city"":""Bad Schussenried"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7583-/-404-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wilhelm-Schussen-Strae 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.004,""lon"":9.6584}}",1,58,1
-tyranena_brewing-rocky_s_revenge,0,0,245103460353,"{""name"":""Rocky's Revenge"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep in the darkest depths of Rock Lake prowls a great saurian known today as Rocky. The legend of Rocky is old. The ancient inhabitants of Aztalan warned of the beast by building a giant serpent mound at the lake’s edge. The early residents of Lake Mills were forewarned of a guardian placed in the lake to protect its sacred stone tepees. And history tells of numerous encounters with Rocky, who became a source of great worry and fear. Although not seen for over a century, divers still experience a feeling of dread and being watched. Enjoy Rocky’s Revenge, our offering to this legendary protector of Tyranena.\r\n\r\nRocky’s Revenge is an American brown ale with a portion aged in bourbon barrels. Each bourbon barrel will contribute its own unique character to this rich, satisfying ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
-raccoon_river_brewing-tallgrass_prairie_gold,0,0,244994605057,"{""name"":""Tallgrass Prairie Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-port_brewing_company-frank_double_ipa,0,0,244994998273,"{""name"":""Frank Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
-south_shore_brewery-red_lager,0,0,245114011648,"{""name"":""Red Lager"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-stevens_point_brewery-white_biere,0,0,245104377857,"{""name"":""White Bière"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-sleeping_lady_brewing_company-urban_wilderness_english_pale,0,0,245005680640,"{""name"":""Urban Wilderness English Pale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sleeping_lady_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This tasty English pale ale gets its charm from Imported Maris Otter Pale Malt, East Kent goldings and a few secret ingredients to keep our competitiors guessing. Styled after a classic English Bitter, Urban Wilderness is supremely balanced, smooth and easy to drink."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,59,1
-wisconsin_brewing-badger_porter,0,0,245751939073,"{""name"":""Badger Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wisconsin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
-porterhouse_restaurant_and_brewpub-lager,0,0,245001551873,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-sleeman_brewing_malting-original_dark,0,0,244987985921,"{""name"":""Original Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sleeman_brewing_malting"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
-yakima_brewing_and_malting_grant_s_ales-deep_powder_winter_ale,0,0,245749448706,"{""name"":""Deep Powder Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,39,1
-the_lost_abbey-devotion,0,0,245120827392,"{""name"":""Devotion"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""It’s an unassuming road leading to the priory. Here, off the corner of two intersecting roads, dedicated monks have been making beer for over 150 years. It’s always been a simple life – the kind that requires they brew only enough to sustain the activities of their monastery. In the silence of passing seasons, they pray, they brew and retire in solitary existence behind the sheltering walls. They live a most interesting life. Most likely one we couldn’t sustain.\r\n\r\nNearby, each summer, the trellised fields spring to life as rows of resinous green cones are trained toward the heavens. Rumor is some monks love these hops and being surrounded by budding yellow aromas and the leafy pungent fields inspired them. Since we aren’t sensible enough to locate our brewery near hop fields, we can only offer this blond ale in celebration of our Abbey brethren and their steadfast Devotion."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,54,1
-top_of_the_hill_restaurant_and_brewery-iron_mine_pale_ale,0,0,245105491971,"{""name"":""Iron Mine Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
-twin_rivers_brewing-imperial_i_p_a,0,0,245105098752,"{""name"":""Imperial I.P.A."",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
-stone_brewing_co-5th_anniversary_ipa,0,0,245111455744,"{""name"":""5th Anniversary IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
-routh_street_brewery_and_grille-light_ale,0,0,244996898816,"{""name"":""Light Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-unibroue-don_de_dieu,0,0,245112635392,"{""name"":""Don De Dieu"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Don de Dieu displays an appealing orange-golden hue with a stable, creamy head of foam. Its fruity, malty and yeasty flavor is quickly succeeded by a palate-warming finish of roasted nuts and spices.\r\n\r\nThis smooth, exceptionally strong triple wheat\r\nale offers a complex flavor that is slightly\r\nfruity, malty, nutty and yeasty, with a hint of \r\nunfiltered sake."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,33,1
-namibia_breweries-urbock,0,0,244865040384,"{""name"":""Urbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""namibia_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,19,1
-r_b_brewing,0,0,244988182528,"{""name"":""R&B; Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-874-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""54 East Fourth Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2673,""lon"":-123.103}}",1,18,1
-victory_brewing-whirlwind_wit,0,0,245747679232,"{""name"":""Whirlwind Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A swirling dynamo of flavor, with a steady calm of satisfaction at its heart, that's Whirlwind Witbier. Offering a tamed tempest of flavors both spicy and sublime, this softly fermented ale greets the nose and tingles the tongue. Imported Belgian yeast charges Whirlwind with an energy all its own. It is a refreshing interpretation of the classic, Belgian 'white beer' style."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,28,1
-roy_pitz_brewing_company-white_horse_hefeweizen,0,0,245003976704,"{""name"":""White Horse Hefeweizen"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This German inspired wheat ale is packed full of citrus flavor. We use torrified wheat, pale, and carafoam for balance, giving it a nice hazy, straw color and refreshing wheat taste. We ferment the White Horse at higher ale temps with a German style yeast that is known for producing world class wheat beers. We let the yeast take over the majority of the flavoring in our fermenters, providing the beer with banana and clove like esters. We pull some of the yeast with it to give this brew the proper style and to keep its body and character. We than age this brew with zests of citrus and a brewers spice that blends harmoniously with the esters of the yeast and balance out the sweetness of this brew. Truly a favorite in the summer time for breakfast, lunch, or dinner."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,55,1
-tommyknocker_brewery_and_pub-alpine_glacier_lager,0,0,245102804992,"{""name"":""Alpine Glacier Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
-new_glarus_brewing_company-norski_honey_bock,0,0,244877099009,"{""name"":""Norski Honey Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
-palmetto_brewing,0,0,244985495552,"{""name"":""Palmetto Brewing"",""city"":""Charleston"",""state"":""South Carolina"",""code"":""29403"",""country"":""United States"",""phone"":""1-843-937-0903"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""289 Huger Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.8017,""lon"":-79.9455}}",1,12,1
-revolution_brewing_llc-workingman_mild,0,0,245004828672,"{""name"":""Workingman Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Drinkable brown session beer with a nutty, toffee flavor. Served lightly carbonated from a traditional Brittish handpump."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,57,1
-scuttlebutt_brewing-maibock,0,0,245005156355,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
-water_street_brewery-pils,0,0,245745385472,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
-rail_house_restaurant_and_brewpub-oktoberfest_discontinued,0,0,244994605058,"{""name"":""Oktoberfest (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,34,1
-private_weissbierbrauerei_g_schneider_sohn_gmbh,0,0,244995063808,"{""name"":""Private Weissbierbrauerei G. Schneider & Sohn GmbH"",""city"":""Kelheim"",""state"":"""",""code"":""93309"",""country"":""Germany"",""phone"":""0 94 41 / 7 05 - 0"",""website"":""http://www.schneider-weisse.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Emil-Ott-Strasse 1-5""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.9175,""lon"":11.8735}}",1,35,1
-southampton_publick_house-altbier,0,0,245114077184,"{""name"":""Altbier"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Reddish brown coloring. Aroma is slightly sweet, much like flavoring. Very drinkable. Recommended."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,37,1
-stone_brewing_co-old_guardian_barley_wine_2005,0,0,245104377858,"{""name"":""Old Guardian Barley Wine 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
-south_county_brewing_co-brigantine_smoked_porter,0,0,245122465792,"{""name"":""Brigantine Smoked Porter"",""abv"":8.54,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_county_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Brigantine Smoked Porter, much like the high seas, can be a wild ride. This beer is dark brown and full bodied with roasted tones and a hint of chocolate. As if that weren't enough it finishes with a smoked flavor that seems right at home during cooler months here in Southern York County."",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
-wychwood_brewery_company_ltd,0,0,245751939074,"{""name"":""Wychwood Brewery Company Ltd"",""city"":"""",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,56,1
-prescott_brewing_company-lodgepole_light,0,0,245001551874,"{""name"":""Lodgepole Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,50,1
-southern_tier_brewing_co-southern_tier_porter,0,0,245105754112,"{""name"":""Southern Tier Porter"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Porter is our darkest beer, but not necessarily our strongest. It is widely held that the darker the beer, the stronger the beer, but this is a summarily false. The contribution of color comes directly from the color of malt that we use. Some malt is oasted to achieve dark color and coffee-like flavor which in turn get transferred to the beer.\r\n\r\nOur Porter is ruchly complex with overtones of chocolate and expresso beans followed by a subtle flavor of hops. It's a nourishing beer without being too sweet or filling."",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
-the_lost_abbey-judgement_day,0,0,245120827393,"{""name"":""Judgement Day"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""A massive beer in every sense of the word. A stronger and more contemplative version of our Lost and Found Ale. Judgment Day is the base beer for our Cuvee de Tomme. Many of the Trappist Breweries produce a version of beer which ages incredibly well for many years to come. And, since none of us knows when the end of the world is coming, we suggest you stock up with lots of Lost Abbey beers so that when the end of the world magically appears from no where, you’ll have a beer or two on hand for even the stingiest of angels. Available in 750ml bottles and on draft at select inspired locations."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,54,1
-troegs_brewing-hopback_amber_ale,0,0,245105557504,"{""name"":""HopBack Amber Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Brewery’s Flagship beer, HopBack Amber Ale derives its name from a vessel in the brewhouse called a hopback. As the ‘wort’ is being transferred from the brewhouse to fermentation it passes through the hopback vessel. Packed full of fresh whole flower hops, the wort slowly circulates through this vessel extracting the essence of the aromatic hops. This vessel adds more time and more hop character that creates a fresh, spicy taste and rich caramel note that defines this signature ale.\r\n\r\nTASTING NOTES\r\nDeep amber in color under a huge creamy head. The aroma very apparent, bold and spicy with a slight floral character. Balanced with caramel malt, this well-rounded amber ale has an up-front floral spice that builds with a flush of sweetness"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
-unibroue-quelque_chose,0,0,245105098753,"{""name"":""Quelque Chose"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Quelque Chose was launched in January 1996. This versatile beer was specifically developed as a winter beer because, when warmed to 70ºC (160ºF), it can be taken as a hot drink. On the other hand, on the rocks, it is a wonderful aperitif. The cherries are soaked for months in slightly bitter ale before being blended into the beer. Quelque Chose is made with dark roasted malts, and the end result is something commonly known as an authentic nectar. The most original of the Unibroue line, it is highly appreciated by winter-sports enthusiasts."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,15,1
-straub_brewery-straub,0,0,245111521280,"{""name"":""Straub"",""abv"":4.33,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""straub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-scuttlebutt_brewing-nut_brown,0,0,244996898817,"{""name"":""Nut Brown"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,38,1
-upstream_brewing_old_market-1000_barley_wine,0,0,245112635393,"{""name"":""1000 Barley Wine"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
-north_coast_brewing_company-old_no_38_stout,0,0,244865040385,"{""name"":""Old No.38 Stout"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for a retired California Western Railroad steam engine on the Fort Bragg to Willits run through the Redwoods, Old No. 38 Stout is a smooth, firm-bodied stout with the toasted character and coffee notes of dark malts and roasted barley."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
-real_ale_brewing_company,0,0,244988182529,"{""name"":""Real Ale Brewing Company"",""city"":""Blanco"",""state"":""Texas"",""code"":""78606"",""country"":""United States"",""phone"":""1-830-833-2534"",""website"":""http://www.realalebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""231 San Saba Court""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":30.113,""lon"":-98.4156}}",1,18,1
-victory_brewing-yakima_twilight,0,0,245747679233,"{""name"":""Yakima Twilight"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Enjoy the ‘twilight’ for the bright and brassy hops!""}",1,28,1
-russian_river_brewing-dead_leaf_green,0,0,245004042240,"{""name"":""Dead Leaf Green"",""abv"":5.68,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,55,1
-tommyknocker_brewery_and_pub-black_powder_stout,0,0,245102804993,"{""name"":""Black Powder Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
-northwoods_brewpub_grill-red_cedar_red,0,0,244877099010,"{""name"":""Red Cedar Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,49,1
-paulaner,0,0,244985495553,"{""name"":""Paulaner"",""city"":""Munich"",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.paulaner.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The name of the Paulaner brewery refers to the order of friars that resided in Neuhauser Straße in Munich who were part of the order of Saint Francis of Paola. The monks had brewed beer for their own use since 1634. The beer that was permitted to be sold on holidays was a Bock style which gained local fame. After the abolition of the Neudeck Cloister in 1799, the building was converted into a penitentiary. Franz Xaver Zacherl, the brewer, purchased the former cloister brewery and continued the Starkbier tradition with the product Salvator, which is latin for Saviour. In 1861 the Salvatorkeller (Salvator cellar) was opened upon Nockherberg. In 1928 the brewery merged with the Gebrüder Thomas brewery creating Paulaner Salvator Thomas Bräu. 1994 saw the acquisition into the Kulmbacher brewery group with the affiliated producers Plauen and Chemnitz. A daughter company is the Auer Bräu AG Rosenheim. Paulaner belongs to the BHI (Brau Holding International AG), a joint venture between Schörghuber Ventures (50.1%) and with Holland's Heineken N.V. (49.9%)."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.1391,""lon"":11.5802}}",1,12,1
-rock_bottom_restaurant_brewery_denver-purple_nightie,0,0,245004828673,"{""name"":""Purple Nightie"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-siletz_roadhouse_brewery-wooly_bully,0,0,245005221888,"{""name"":""Wooly Bully"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,58,1
-weinkeller_brewery_berwyn-wee_heavy,0,0,245745385473,"{""name"":""Wee Heavy"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,11,1
-richbrau_brewing_company-griffin_golden_ale,0,0,244994670592,"{""name"":""Griffin Golden Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest and palest signature brew, the Griffin is our house session beer. Notice the spicy character imparted by the German hops we use in the Griffin."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,34,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-oktoberfest,0,0,244995063809,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,35,1
-st_james_s_gate_brewery,0,0,245114077185,"{""name"":""St. James's Gate Brewery"",""city"":""Dublin"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":""http://www.guinness.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.3441,""lon"":-6.2675}}",1,37,1
-taylor_s_crossing_brewing-traditional_india_pale_ale,0,0,245104443392,"{""name"":""Traditional India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
-southern_tier_brewing_co-gemini_imperial_blended_ale,0,0,245122531328,"{""name"":""Gemini Imperial Blended Ale"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""High in the winter sky, two parallel stick figures are visible & known as “the twins,” or the constellation Gemini. The astronauts of the 1960s flew as teams of two in a program named after the celestial pairing. At Southern Tier, we have our own fraternal twins, Hoppe & Unearthly. Blended together & placed in this vessel, the mission of our Gemini is to travel high & take passengers on a journey far into the heavens."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,59,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-pale,0,0,245001617408,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-sprecher_brewing-pale_lager,0,0,245105754113,"{""name"":""Pale Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
-the_lost_abbey-red_barn_ale,0,0,245120827394,"{""name"":""Red Barn Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""This Farmhouse Ale traces its roots to the small rustic breweries of Southern Belgium. The word Saison comes to us from the French language and it means Season. Lightly spiced with Organic Ginger, Orange Peels, Black Pepper and Grains of Paradise, this brew promises to quench your thirst on the hottest Southern California days or wherever your travels may take you. Available in 750 ml bottles and on draft at select inspired locations."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,54,1
-troegs_brewing-scratch_25_2009_magical_moustache_rye,0,0,245105557505,"{""name"":""Scratch #25 2009 Magical Moustache Rye"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This mahogany ale packs a lingering, earthy hoppiness. The addition of more than 20% rye to the grain bill gives a creamy mouthfeel and hints of spice that compliment the bitterness of hops. Subtle fruitiness come through from the Bravo hops added during the boil, but the Cluster and Liberty varieties used in dry-hopping this beer are the true flavor drivers in this spicy ale. Dark in color and intense is flavor, Scratch 25-2009 finds true balance in a beer that could have easily gone way over the top. Enjoy."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,16,1
-upstream_brewing_company_at_legacy-oak_aged_belgian_tripel,0,0,245105098754,"{""name"":""Oak-Aged Belgian Tripel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
-sweetwater_brewing_atlanta-420_extra_pale_ale,0,0,245111521281,"{""name"":""420 Extra Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-sequoia_brewing_conoabt-thunderhead_amber_ale,0,0,244996898818,"{""name"":""Thunderhead Amber Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sequoia_brewing_conoabt"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
-valley_brewing_company-valley_brew_pale_wheat,0,0,245112635394,"{""name"":""Valley Brew Pale Wheat"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An American style Wheat Ale made with 50% malted 2 Row barley and 50% malted wheat. Valley Brew Pale Wheat is lightly hopped to produce a smooth and satisfying finish."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
-o_fallon_brewery,0,0,244865040386,"{""name"":""O'Fallon Brewery"",""city"":""O'Fallon"",""state"":""Missouri"",""code"":""63366"",""country"":""United States"",""phone"":""1-636-474-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""26 West Industrial Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.8058,""lon"":-90.7532}}",1,19,1
-redhook_ale_brewery-rye,0,0,244988182530,"{""name"":""Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-walldorff_brew_pub-bee_sting_honey_rye_ale,0,0,245747679234,"{""name"":""Bee Sting Honey Rye Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth golden ale flavored with Pilsner malt and fresh local honey from Schaefer Shack Farms."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,28,1
-san_diego_brewing-old_town_nut_brown,0,0,245004042241,"{""name"":""Old Town Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,55,1
-tucher_bru-kristall_weizen,0,0,245102804994,"{""name"":""Kristall Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-o_grady_s_brewery_and_pub_1,0,0,244877164544,"{""name"":""O'Grady's Brewery and Pub #1"",""city"":""Arlington Heights"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.0884,""lon"":-87.9806}}",1,49,1
-pyramid_alehouse_brewery_and_restaurant_seattle-curve_ball,0,0,244985561088,"{""name"":""Curve Ball"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-rogue_ales-old_crustacean_barleywine_2004,0,0,245004828674,"{""name"":""Old Crustacean Barleywine 2004"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""In Britain, seasonal brews for winter are high in alcohol, robust, malty, and dark. The two main styles of these brews are Old Ales and Barleywines. As the name suggests, barleywines are similar to wines in alcohol and need aging but are derived from grain, not the grape. Rogues barleywine is described by beer expert Stuart Ramsey as: \""A masterful, intense creation from brewer John Maier....it has achieved a depth and complexity usually associated with well-ages strong ales. I hope the brewery bottles some before it disappears.\"" We call it the cognac of beers. An unfiltered and unfined Barleywine. Intense, robust, malty and dark. The cognac of beers. A hugh beer in a little bottle, this is a beer designed for sipping.\r\n\r\nOld Crustacean is brewed with eight ingredients, Great Western Harrington, Klages, Hugh Baird Carastan and Munich Malts, Chinook and Centennial Hops, free-range coastal water and PacMan yeast. Old Crustacean is best when aged for one year. Old Crustacean is available in a new 750-ml ceramic swingtop bottle (replacing the much older 7-ounce and more recent 12 ounce XS-line package) and on draft."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,57,1
-southend_brewery_and_smokehouse_charleston-east_bay_brown,0,0,245122072576,"{""name"":""East Bay Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
-weyerbacher_brewing_company-autumnfest,0,0,245745385474,"{""name"":""AutumnFest"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""AutumnFest is Weyerbacher's own unique twist on the German Oktoberfest style. Copper-amber in color, AutumnFest is made with Vienna and Munich malts for that authentic, Bavarian easy drinking taste. Each sip imparts a wonderful roastiness of malt on the tongue followed by a smooth, consistent finish. Wonderfully balanced with a clean, velvety, slightly fruity taste, AutumnFest is the perfect beer for the Fall- a nice transition between the lighter beers of summer and the darker, heavier winter brews. It's a favorite of many Weyerbacher aficionados, who anticipate the end of summer with this wonderful beer. \r\n\r\n Weyerbacher AutumnFest ( ABV 5.4%) is generally available in stores August through December. Pick up a case to celebrate the change of seasons. Prost!"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,11,1
-roost_brewery-kristall_weizen,0,0,244994670593,"{""name"":""Kristall Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-rock_bottom_restaurant_brewery_minneapolis-north_star_premium_lager,0,0,244995063810,"{""name"":""North Star Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
-st_peter_s_brewery-st_peter_s_organic_ale,0,0,245114077186,"{""name"":""St Peter's Organic Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Water is extracted from our own 300’ deep borehole and combined with Soil Association accredited light malted barley from Norfolk. Organic hops provide the distinctive palate. The yeast used is St. Peter’s own single strand variety. The result is a delicate, clean, crisp, lightly carbonated, traditional English Ale with a full ‘citrus hop’ aftertaste. This lovely beer won the Soil Association’s top prize in 2002 and a silver medal in 2006."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,37,1
-taylor_s_restaurant_and_brewery,0,0,245104443393,"{""name"":""Taylor's Restaurant and Brewery"",""city"":""San Diego"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7153,""lon"":-117.157}}",1,14,1
-southern_tier_brewing_co-jahva_imperial_coffee_stout,0,0,245122531329,"{""name"":""Jahva Imperial Coffee Stout"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,59,1
-pyramid_alehouse_brewery_and_restaurant_seattle-snow_cap,0,0,245001617409,"{""name"":""Snow Cap"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,50,1
-sprecher_brewing-sprecher_pub_ale,0,0,245105819648,"{""name"":""Sprecher Pub Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Seven varieties of malted barley are combined to give this English-style ale its complex flavor and deep, brown color. A select British yeast culture adds a subtle fruitiness and a blend of choice hops gives this non-bitter ale a soft finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
-the_round_barn_winery_brewery-round_barn_kolsch_style,0,0,245120892928,"{""name"":""Round Barn Kölsch Style"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Kölsch style beer is a golden-blonde ale that is our version of Cologne's native style. Soft, subtle maltiness and a clean finish make it a great thirst-quencher. Kölsch pairs well with spicy foods, or by itself. Enjoy with friends and in good health. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.""}",1,54,1
-tuppers_hop_pocket_ale-hop_pocket_ale,0,0,245105623040,"{""name"":""Hop Pocket Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tuppers_hop_pocket_ale"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
-ushers_of_trowbridge,0,0,245105164288,"{""name"":""Ushers of Trowbridge"",""city"":""Trowbridge"",""state"":""Wiltshire"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.3201,""lon"":-2.208}}",1,15,1
-t_r_theakston,0,0,245111521282,"{""name"":""T&R; Theakston"",""city"":""Ripon"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01765)-689544"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Brewery""]}",1,31,1
-siletz_roadhouse_brewery-paddle_me_ipa,0,0,244996898819,"{""name"":""Paddle Me IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-water_street_brewery-amber,0,0,245748269056,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
-odell_brewing-isolation_ale,0,0,244865105920,"{""name"":""Isolation Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ever been in a warm, cozy cabin and had a secret desire to get snowed in? To celebrate the winter season, we offer our Isolation Ale - a traditional winter brew made with premium malts imported from England. It's just one of the reasons Isolation Ale stands alone."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,19,1
-river_horse_brewing_company,0,0,244988248064,"{""name"":""River Horse Brewing Company"",""city"":""Lambertville"",""state"":""New Jersey"",""code"":""8530"",""country"":""United States"",""phone"":"""",""website"":""http://www.riverhorse.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""While we might be new to your area, we have been brewing fine craft ales and lagers along the banks of the Delaware River since April of 1996. You can find our all natural, fresh bottled and draft beer products throughout the Mid-Atlantic region and parts of New England. Distribution includes Pennsylvania, New Jersey, Delaware, Maryland, New York, New York City, Long Island, Ohio, Connecticut and Massachusetts. We have also been featured by several well-known beer-of-the-month clubs. We use choice, all-natural ingredients and local spring water to produce the best product made in our area. You will notice that all of our products are pure representations of their respective styles, very clean and very well balanced."",""address"":[""80 LAMBERT LANE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3688,""lon"":-74.9477}}",1,18,1
-water_street_lake_country-amber,0,0,245747744768,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
-san_miguel_corporation-dark_lager,0,0,245004042242,"{""name"":""Dark Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_miguel_corporation"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,55,1
-two_brothers_brewing,0,0,245102870528,"{""name"":""Two Brothers Brewing"",""city"":""Warrenville"",""state"":""Illinois"",""code"":""60555"",""country"":""United States"",""phone"":""1-800-451-6348"",""website"":""http://www.twobrosbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""30 Butterfield Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8206,""lon"":-88.2068}}",1,10,1
-odell_brewing-90_shilling,0,0,244877164545,"{""name"":""90 Shilling"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We introduced 90 Shilling, our flagship beer, at our opening party in 1989. For a while, we'd been wondering - what would happen if we lightened up the traditional Scottish ale? The result is an irresistibly smooth and delicious medium-bodied amber ale. The name 90 Shilling comes from the Scottish method of taxing beer. Only the highest quality beers were taxed 90 Shillings. A shilling was a British coin used from 1549 to 1982. We think you'll find this original ale brilliantly refreshing, and worth every shilling."",""style"":""Scottish-Style Light Ale"",""category"":""British Ale""}",1,49,1
-real_ale_brewing_company-sisyphus_barleywine,0,0,244985561089,"{""name"":""Sisyphus Barleywine"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-rogue_ales,0,0,245004894208,"{""name"":""Rogue Ales"",""city"":""Newport"",""state"":""Oregon"",""code"":""97365"",""country"":""United States"",""phone"":""1-541-867-3664"",""website"":""http://www.rogue.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Rogue Ales was founded in 1988 by Jack Joyce, Rob Strasser and Bob Woodell, three corporate types who wanted to go into the food/beverage industry. Rogue's first brewpub was located in Ashland, Oregon and was a 10bbl brewsystem. Rogue opened a second brewpub, 15bbl brewsystem, in May 1989 located in Newport, Oregon. Rogue closed its Ashland operation in 1997, after the great flood destroyed the place. In 1991, the 15bbl system, named Howard after John Maier's former boss, from the Newport brewpub was transferred across the bay to the current brewery and upgraded to a 30bbl system. In 1998 Rogue bought a 50bbl brewsystem, named Kobe. Kobe is the only brewsystem in use. Tours: We offer brewery tours every day at 3 pm (followed by a distillery tour at 4pm). Go up to the bar inside the brewery (Brewers on the Bay) and check in with the bartender and the tour will commence. Please call ahead if you have a large group and or to verify the tour time...Brewer's on the Bay phone is 541-867-3664. The view from Brewers on the Bay includes the marina (outside), and the bottling line and brew kettles (inside)."",""address"":[""2320 SE OSU Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.6202,""lon"":-124.052}}",1,57,1
-southend_brewery_and_smokehouse_charleston-frostbite,0,0,245122072577,"{""name"":""Frostbite"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-weyerbacher_brewing_company-raspberry_imperial_stout,0,0,245745451008,"{""name"":""Raspberry Imperial Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Enjoyed alone as a winter-warmer or as the perfect finish to any fine meal, our Raspberry Imperial Stout is a wonderfully full-flavored beer with just a \""kiss\"" of raspberry flavor. \r\nWhen we brew this beer we add just a touch of real raspberries during the fermentation process. The result is a modest fruit flavor which enhances--- without dominating the rich, malty, stout taste.\r\n\r\nOur Raspberry Imperial Stout (8.0% ABV) is great alone or as an after-dinner accompaniment. It's especially good with chocolate desserts. We brew it only during the winter months, so check out the Brewing Schedule on the \""What's New\"" page for the next time it will be coming to a beer store near you."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
-san_diego_brewing-friars_ipa,0,0,244994670594,"{""name"":""Friars IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
-rogue_ales-charlie_1981,0,0,244995129344,"{""name"":""Charlie 1981"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An unfiltered strong ale that is amber in color and has an intense piney hop aroma. The beer is named in honor of Charlie Papazian, president of the Association of Brewers, founder of the American Homebrewers Association and homebrewing guru. John Maier, Brewmaster for Rogue Ales, made his first batch of beer in 1981 using Papazians influential book \""The New Complete Joy of Homebrewing.\"" \r\nBrewed with Munich and Crystal 40 two-row pale malt, and dry-hopped with Horizon, Sterling and Amarillo hops, free range coastal waters, and top fermenting Pacman yeast.""}",1,35,1
-steamworks-nirvana_nut_brown_ale,0,0,245114142720,"{""name"":""Nirvana Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Our regulars have many reasons for frequenting our premises. Some come for the comfy chairs, a game of pool, or to exude some seriously suaveness at the oyster bar on a Friday evening. For the truly devoted, however, who come in search of truth, it's the Nut Brown they're after. Often they arrive with a glazed look in their eyes, having endured days of office drudgery or the unknowable hardships of securing a parking spot. Set your cares aside, for all can find solace in this ale's yin-yang of nutty maltiness and delicate, dryish hoppiness. For our Nut Brown, an ale deep auburn in colour, we use a blend of Munich, caramel and chocolate malts to create a rich malty palate with a lingering dry chocolatiness.""}",1,37,1
-the_alchemist-heathen,0,0,245104508928,"{""name"":""Heathen"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""An american IPA brewed with a blend of 3 base malts and a multitude of hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
-spanish_peaks_brewing-peaches_and_cream,0,0,245122596864,"{""name"":""Peaches and Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,59,1
-raccoon_river_brewing-railyard_ale,0,0,245001617410,"{""name"":""Railyard Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
-spring_house_brewing_company,0,0,245105819649,"{""name"":""Spring House Brewing Company"",""city"":""Conestoga"",""state"":""Pennsylvania"",""code"":""17516"",""country"":""United States"",""phone"":"""",""website"":""http://www.springhousebeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2519 Main St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9525,""lon"":-76.3295}}",1,17,1
-tomos_watkin_and_sons_ltd,0,0,245120892929,"{""name"":""Tomos Watkin and Sons Ltd."",""city"":""Swansea"",""state"":""Wales"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01792)-775333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unit 3, Century Park, Valley Way""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.6666,""lon"":-3.9443}}",1,54,1
-tworows_restaurant_brewery_dallas-esb,0,0,245105623041,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-wainwright_brewing-black_jack_black_and_tan,0,0,245745975296,"{""name"":""Black Jack Black and Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wainwright_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
-taylor_s_crossing_brewing-dominion_lager,0,0,245111521283,"{""name"":""Dominion Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
-southern_tier_brewing_co-phin_matt_s_extroidinary_ale,0,0,245114470400,"{""name"":""Phin & Matt's Extroidinary Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""After sampling a wide array of great beers, the duo hit upon an idea. \""I've got it!\"" exclaimed Matt, \""we'll use vast amounts of whole hops, the finest malt, and put a little love in each batch.\"" \""Eureka!\"" shouted Phin. And thus became a beer so fresh and tasty they had to put their names on it."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
-olde_main_brewing-caramel_apple_ale,0,0,244865105921,"{""name"":""Caramel Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,19,1
-rock_bottom_restaurant_brewery_san_jose-pilsner,0,0,244988248065,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-wychwood_brewery-bah_humbug,0,0,245747744769,"{""name"":""Bah Humbug"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,28,1
-shipwrecked_brew_pub-peninsula_porter,0,0,245004107776,"{""name"":""Peninsula Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
-uerige_obergrige_hausbrauerei-alt,0,0,245102870529,"{""name"":""Alt"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uerige_obergrige_hausbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
-odell_brewing-imperial_stout,0,0,244877164546,"{""name"":""Imperial Stout"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-rogue_ales-ten_thousand_brew_ale,0,0,244985626624,"{""name"":""Ten Thousand Brew Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Brew 10,000: One Brewer, Eighteen Years, Ten-Thousand Batches of Beer. \r\n\r\nBrew 10,000 is not so much a style of beer, rather it is a new recipe using some of the best ingredients John Maier has ever brewed with... Vienna, French Special Aroma, and Maris Otter Pale Malts; Yakima Summit and German Saphir Hops, Free-range Coastal Waters, and PacMan Yeast. \r\n\r\nBrew 10,000 was brewed only once, so its allocated and very, very limited. Its packaged in the swing-top 750-ml ceramic bottle and available only at select retailers. Note, Brew 10,000 was sold out at the brewery in early 2007, however, very limited amounts may still available in the retail trade, email Schuyler@rogue.com for a retailer near you."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,12,1
-sharktooth_brewing,0,0,245004894209,"{""name"":""Sharktooth Brewing"",""city"":""Kahului"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":20.8947,""lon"":-156.47}}",1,57,1
-southern_tier_brewing_co-southern_tier_harvest_ale,0,0,245122072578,"{""name"":""Southern Tier Harvest Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,58,1
-white_marsh_brewing_company-avenue_ale,0,0,245745451009,"{""name"":""Avenue Ale"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_marsh_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""2007 Maryland Governor's Cup Bronze Medal:\r\nA golden colored ale with crisp malt character and a slightly spicy hop aroma. We use a good amount of wheat and some German malt in this one to give it a very refreshing taste. Avenue Ale is a true session beer, so sit down and prepare for a long one."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
-sandlot_brewery_at_coors_field,0,0,244994670595,"{""name"":""SandLot Brewery at Coors Field"",""city"":""Denver"",""state"":""Colorado"",""code"":""80205"",""country"":""United States"",""phone"":""1-303-298-1587"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2145 Blake Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7557,""lon"":-104.993}}",1,34,1
-route_66_brewery-river_city_red_ale,0,0,244995129345,"{""name"":""River City Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
-stevens_point_brewery,0,0,245114142721,"{""name"":""Stevens Point Brewery"",""city"":""Stevens Point"",""state"":""Wisconsin"",""code"":""54481"",""country"":""United States"",""phone"":""1-715-344-9310"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2617 Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5104,""lon"":-89.5734}}",1,37,1
-the_alchemist-light_weight,0,0,245104508929,"{""name"":""Light Weight"",""abv"":4.33,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer, and our Bronze Medal Winner 2006 World Beer Cup German pilsner malt and American hops give this brew a light, crisp finish. Made with the light beer drinker in mind."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,14,1
-spilker_ales-espresso_stout_discontinued,0,0,245122596865,"{""name"":""Espresso Stout (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
-red_kettle_brewing-dark,0,0,245001682944,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_kettle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
-stieglbrauerei_zu_salzburg_gmbh-weizengold_hefefein,0,0,245105885184,"{""name"":""Weizengold Hefefein"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This fine yeast wheat beer specialty is a refreshing, natural and stimulating beer brand."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,17,1
-tunner_s_guild_brewing_systems-berkshire_springs_stock_ale,0,0,245120892930,"{""name"":""Berkshire Springs Stock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
-tyranena_brewing-hopwhore_imperial_india_pale_ale,0,0,245105623042,"{""name"":""HopWhore Imperial India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,16,1
-wernesgruner_brauerei_gmbh-wernesgruner_pils_legende,0,0,245746040832,"{""name"":""Wernesgrüner Pils Legende"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wernesgruner_brauerei_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic German-style Pils"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,15,1
-thomas_kemper_brewing-oktoberfest,0,0,245111586816,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_kemper_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,31,1
-spilker_ales-wind_chill_spiced_ale_discontinued,0,0,245114535936,"{""name"":""Wind Chill Spiced Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-orkney_brewery-skullsplitter_ale,0,0,244865171456,"{""name"":""Skullsplitter Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Skull Splitter is our strongest ale: which is named after Thorfinn Einarsson who was the 7th Viking Earl of Orkney. Sophisticated, satiny smooth with a deceptively light character, it is a tribute to our colourful forbear.\r\n\r\nOn the nose, this strong beer has a fruity malt character, with hints of dark fruit, spicy hop, dates and figs.\r\n\r\nOn the palate, rich and complex with sweet toasted malt, molasses, fresh and dried fruit and hints of warming spices."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,19,1
-rogue_ales-issaquah_bullfrog_ale,0,0,244988248066,"{""name"":""Issaquah Bullfrog Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An American style wheat beer and an Issaquah Brewhouse origina. Light in color and body and served with a lemon, Bullfrog is crisp, refreshing and goes down easy. Take a flying leap!\r\n\r\nBullfrog Ale took the Silver Medal at the 2004 Great American Beer Festival in the American Wheat category."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
-sierra_nevada_brewing_co-torpedo_extra_ipa,0,0,245004107777,"{""name"":""Torpedo Extra IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Sierra Nevada Torpedo Ale is a big American IPA; bold, assertive and full of flavor and aromas highlighting the complex citrus, pine and herbal character of whole-cone American hops.\r\n\r\nNamed after the torpedo-shaped hopback employed in its making, is an IPA made with Chinook, Cascade and Centennial hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
-upper_mississippi_brewing-mudcat_stout,0,0,245102870530,"{""name"":""Mudcat Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
-otter_creek_brewing_wolaver_s_organic_ales-alta_gracia_coffee_porter,0,0,244877230080,"{""name"":""Alta Gracia Coffee Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-12-20 16:10:29"",""description"":""Brewed with organic roasted barley and chocolate malts for a rich, dark and robust flavor with an infusion of organic vanilla beans and coffee from the Dominican Republic farm community Alta Gracia. "",""style"":""Porter"",""category"":""North American Ale""}",1,49,1
-russell_brewing-cream_ale,0,0,244985626625,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,12,1
-south_county_brewing_co,0,0,245121679360,"{""name"":""South County Brewing Co."",""city"":""Fawn Grove"",""state"":""Pennsylvania"",""code"":""17321"",""country"":""United States"",""phone"":"""",""website"":""http://www.southcountybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""104 Mill St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7323,""lon"":-76.4496}}",1,57,1
-spilker_ales-cortland_wheat,0,0,245122138112,"{""name"":""Cortland Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-youngs_company_brewery-old_nick,0,0,245745451010,"{""name"":""Old Nick"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
-sharktooth_brewing-amber,0,0,244994736128,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
-saint_louis_brewery_schlafy_tap_room-schlafly_oatmeal_stout,0,0,244995129346,"{""name"":""Schlafly Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-stroh_brewery_company-hatuey_beer,0,0,245114142722,"{""name"":""Hatuey Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stroh_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-the_blind_bat_brewery_llc-hellsmoke_porter,0,0,245104508930,"{""name"":""Hellsmoke Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""A roasty robust porter. \r\nBrewed with malt that I smoke over alder and apple wood. \r\n\r\nGoes great with steak, burgers, \r\nas well as barbecued, grilled, or smoked food. \r\nKielbasi! \r\n\r\nCheeses? \r\nTry it with Gouda, Brie, Swiss, or Havarti."",""style"":""Porter"",""category"":""Irish Ale""}",1,14,1
-spring_house_brewing_company-kerplunk_imperial_chocolate_stout,0,0,245122596866,"{""name"":""Kerplunk Imperial Chocolate Stout"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Kerplunk! Imperial Chocolate Stout is named for the delicious sound made as large amounts of Wilbur chocolate and west coast hops are added directly into the simmering brew kettle. This hefty black imperial-style stout boasts a rich caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your two front teeth into. The bold flavors found in Kerplunk! are produced using a generous blend of roasted barley, crystal malts and locally produced chocolate. The resulting brew exhibits a deliciously complex and unique profile of subtle mocha coffee and intense chocolate, balanced nicely by the underlying roasted hop bitterness. This is a balanced strong brew boasting an A.B.V. of 8.1% that can creep up on you.""}",1,59,1
-rogue_ales-golden_frog,0,0,245001682945,"{""name"":""Golden Frog"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian - Style Pale Ale. The Belgian yeast produces flavors of cloves, banana, and other spices that meld perfectly with the malt and hops. Ingredients: Pilsner Malt, Saaz Hops, Blegian Yeast, Free Range Cascade Water.\r\nNo Chemicals, Additives or Preservatives."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,50,1
-stone_cellar_brewpub_restaurant-riverboat_rye,0,0,245105885185,"{""name"":""Riverboat Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_cellar_brewpub_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-unibroue-15,0,0,245120958464,"{""name"":""15"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-upper_mississippi_brewing-mullin_brown,0,0,245105623043,"{""name"":""Mullin Brown"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,16,1
-yamhill_brewing-best_mild_discontinued,0,0,245746040833,"{""name"":""Best Mild (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yamhill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,15,1
-tommyknocker_brewery_and_pub-jack_whacker_wheat_ale,0,0,245111586817,"{""name"":""Jack Whacker Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Jack Whacker Wheat Ale is a light, unfiltered brew with a citrus aroma and flavor imparted by a late addition of lemon grass. It's the perfect refreshment for a thirsty, trail-weary ale lover."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,31,1
-st_peter_s_brewery-winter_ale,0,0,245114535937,"{""name"":""Winter Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,38,1
-otter_creek_brewing_wolaver_s_organic_ales-copper_ale,0,0,244865171457,"{""name"":""Copper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Copper Ale, a medium bodied, amber ale inspired by the Altbiers of Northern Germany. Brewed with six different malts, three hop varieties and our special house yeast, Copper Ale is characterized by a well-balanced blend of malty notes and mild bitterness."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,19,1
-rogue_ales-santas_private_reserve,0,0,244988248067,"{""name"":""Santas Private Reserve"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Rogues annual holiday offering, Santas Private Reserve, is a variation of the classic Saint Rogue Red, but with double the hops--including Chinook, and Centennial, and a mystery hop called Rudolph by head brewer John \""more hops\"" Maier!This holiday elixir is brewed with two-row Harrington, Klages and Munich malts, along with Hugh Baird 30-37, Carastan 13-17, and Crystal 70-80 malts, plus free range coastal water and Johns proprietary top-fermenting Pacman yeast. Available in both 22-ounce bottles, 12oz Loose packs for Winter 2005, and 12oz six packs for 2006."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,18,1
-silver_gulch_brewing_company-anchorage_ale,0,0,245004107778,"{""name"":""Anchorage Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""silver_gulch_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-upstream_brewing_old_market-heartland_hefeweizen,0,0,245103001600,"{""name"":""Heartland Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,10,1
-pearl_street_brewery,0,0,245001027584,"{""name"":""Pearl Street Brewery"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":""54603"",""country"":""United States"",""phone"":""1-608-784-4832"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1401 Saint Andrew Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.8344,""lon"":-91.2362}}",1,49,1
-sabmiller_india,0,0,244985626626,"{""name"":""Sabmiller India,"",""city"":""Bangalore"",""state"":""Karnataka"",""code"":""560022"",""country"":""India"",""phone"":""91 (0) 80 - 22198800"",""website"":""http://www.sabmiller.in/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If you are contacting SABMiller India with a question, then please feel free to find the answer to your question by contacting us."",""address"":[""SKOL Breweries Limited""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":12.9683,""lon"":77.657}}",1,12,1
-southend_brewery_and_smokehouse_charleston-ironman_wheat,0,0,245121744896,"{""name"":""Ironman Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
-spoetzl_brewery-shiner_blonde,0,0,245122203648,"{""name"":""Shiner Blonde"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-shepherd_neame,0,0,244994736129,"{""name"":""Shepherd Neame"",""city"":""Faversham"",""state"":""Kent"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01795)-532206"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""17 Court Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.3169,""lon"":0.8921}}",1,34,1
-saint_louis_brewery_schlafy_tap_room-schlafly_oktoberfest,0,0,244995194880,"{""name"":""Schlafly Oktoberfest"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""A malty, full-bodied, deep reddish-amber lager. Traditionally brewed in March for the Oktoberfest in the fall, this style is also known as Märzen. Also available in bottles."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,35,1
-t_bonz_gill_grill_and_brewery-market_street_wheat,0,0,245114142723,"{""name"":""Market Street Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
-the_hop_yard,0,0,245104574464,"{""name"":""The Hop Yard"",""city"":""San Ramon"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.hopyard.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Good rotating selection of beers from distinct breweries. Good food as well."",""address"":[""Bollinger Canyon Rd.""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":37.7839,""lon"":-122.001}}",1,14,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-satin_stout,0,0,245122662400,"{""name"":""Satin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
-santa_fe_brewing_company-santa_fe_wheat,0,0,245001682946,"{""name"":""Santa Fe Wheat"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A true Bavarian wheat yeast, sixty percent wheat malt, and German hops make Santa Fe Wheat Beer as true to the style as any American rendition can be. German Wheat Beer, with its hints of banana and clove, its delectable, spicy, hops, and its pale golden color, is becoming increasingly popular in America’s craft brewing world, and with good reason: wheat beers are both light enough to please light beer drinkers, and complex enough to please true micro-brew connoisseurs. To mimic a classic German Hefeweisen, after pouring your Santa Fe Wheat Beer into a glass, swirl the last few drops in the bottle to loosen the yeast from the bottom, then pour the yeast over the top of your beer."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
-stone_coast_brewing_portland-sunday_river_alt,0,0,245105950720,"{""name"":""Sunday River Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_coast_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
-valley_brewing_company-valley_brewing_apricot_ale,0,0,245120958465,"{""name"":""Valley Brewing Apricot Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Apricot Ale is a fruit beer produced using 100% Apricot fruit extract. The beer has a hint of Apricot in the nose and a sweet clean and refreshing finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,54,1
-upstream_brewing_company_at_legacy-oak_aged_ipa,0,0,245105688576,"{""name"":""Oak Aged IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-yards_brewing-thomas_jefferson_s_tavern_ale,0,0,245746040834,"{""name"":""Thomas Jefferson's Tavern Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""All beers are not created equal.\r\n\r\nWhile Thomas Jefferson spent much of his time in Philadelphia drafting, editing, revising, and re-editing the Declaration of Independence, he longed to be home in Monticello, where twice a year his wife Martha would brew up one of his favorite beverages — beer.\r\n\r\nThomas Jefferson Tavern Ale™ is a strong golden ale, based on Jefferson's original recipe, which included ingredients specified and grown on his Virginia estate.\r\n\r\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.""}",1,15,1
-tongerlo-tongerlo_dubbel_blond,0,0,245111586818,"{""name"":""Tongerlo Dubbel Blond"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""DOUBLE BLONDE 6°\r\nCopper-coloured beer with a honey aroma, a full and smooth flavour and a gently evolving aftertaste"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,31,1
-the_alchemist-el_jefe,0,0,245114535938,"{""name"":""El Jefe"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Our holiday ale. This I.D.A., India Dark Ale, is crisp, bitter and overflowing with the aroma of spruce. Perfect for the holidays."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-phoenix_beverages_ltd-phoenix,0,0,244988444672,"{""name"":""Phoenix"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""phoenix_beverages_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A polished, golden yellow beer with 5% alcohol. Phoenix beer is pasteurised after bottling, according to natural conservation methods. The quality of the underground water also allows us to produce a beer with no chemicals additives. Time of maturation before distribution is meticulously controlled.""}",1,19,1
-ruppaner_brauerei-hefe_weizen_hell,0,0,244988313600,"{""name"":""Hefe Weizen Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,18,1
-simmerberg_brusttt_und_taferne-braustatt_pils,0,0,245004173312,"{""name"":""Bräustatt Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-victory_brewing-helios,0,0,245103001601,"{""name"":""Helios"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,10,1
-pivzavod_baltika-baltika_6_porter,0,0,245001093120,"{""name"":""Baltika 6 Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
-sacramento_brewing_company,0,0,244985692160,"{""name"":""Sacramento Brewing Company"",""city"":""Sacramento"",""state"":""California"",""code"":""95821"",""country"":""United States"",""phone"":""(916) 485-4677"",""website"":""http://sacbrew.blogspot.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2713 El Paseo Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.6191,""lon"":-121.4}}",1,12,1
-speakeasy_ales_and_lagers-double_daddy,0,0,245121744897,"{""name"":""Double Daddy"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
-steamworks-blitzen_christmas_ale,0,0,245122203649,"{""name"":""Blitzen Christmas Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong, fruity, belgian-style trippel 8.5% alc./vol.\r\n\r\nOur aptly named Christmas Ale is based on the strong beers traditionally brewed by Belgium's trappist monasteries. Trippel is typically at least 8% alc./vol. and has a light golden colour. Because of its high strength this beer has an intensely fruity palate. Up front it has a honeyish sweetness but the finish is dry and champagne-like. Most weary Christmas shoppers would be well advised to benefit from the warmth and 'ho-ho-ho factor' that only a beer of the Biltzen's calibre can provide."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,58,1
-sherlock_s_home-cologne_golden_ale,0,0,244994736130,"{""name"":""Cologne Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-saint_somewhere_brewing_company-lectio_divina,0,0,244995194881,"{""name"":""Lectio Divina"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_somewhere_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the spirit of the abbey ales of Belgium. Brewed with the same care and attention to the Art of Brewing that is practiced in the monastic breweries of Belgium.\r\n\r\nA Belgian inspired amber. This beer gets it’s color from the candi sugar, as it is made without dark or crystal malts."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,35,1
-tap_room_brewing_company-tap_room_no_21_amber_ale,0,0,245114208256,"{""name"":""Tap Room No. 21 Amber Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tap_room_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,37,1
-the_lost_abbey-the_angel_s_share_bourbon_barrel_aged,0,0,245104574465,"{""name"":""The Angel's Share - Bourbon Barrel Aged"",""abv"":12.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""own in Kentucky and across the pond in Scotland, distillers who age their whiskeys for many years refer to the evaporation of the spirits from their barrels as \""The Angel's Share.\"" We couldn’t agree more. Each time a barrel is filled, a measure of liquid seeps into the oak and is lost for good.\r\n\r\nThis striking Strong Ale is brewed with copious amounts of Caramel malt to emphasize the vanilla and oak flavors found in freshly emptied bourbon or brandy barrels. The beer spends a year in oak before it is packaged for release. The beer is 12.5% ABV and is available in 375ml and 750ml bottles and on draft at inspired locations."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,14,1
-strangford_lough_brewing_company_ltd,0,0,245122662401,"{""name"":""Strangford Lough Brewing Company Ltd"",""city"":""Killyleagh"",""state"":""County Down"",""code"":""BT30 9UE"",""country"":""Ireland"",""phone"":""+44 (0)28 4482 1461"",""website"":""http://slbc.ie/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Braidleigh Lodge 22 Shore Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.3906,""lon"":-5.6548}}",1,59,1
-shipwrecked_brew_pub-lighthouse_light,0,0,245001748480,"{""name"":""Lighthouse Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-storm_brewing-fruit_lambics,0,0,245105950721,"{""name"":""Fruit Lambics"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""These authentic Belgian-style ales are intensely sour, dry and complex. All three of the lambics - Raspberry, Blackberry and Black Cherry - are aged in oak casks for more than one year. 15 kg, give or take, of whole unpasteurized fruit is added to each 200 litre oak barrel of fermented beer. The naturally occurring wild yeasts cause a second, slow fermentation, breaking down the fruit sugars to total dryness."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,17,1
-victory_brewing-st_victorious,0,0,245120958466,"{""name"":""St. Victorious"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""From the tradition started by the monks of St. Francis of Paula in 1634 comes this warming beer of rich heritage. A dark, rich lager of sublime complexity and character, St. Victorious is created from multiple German malts. Laborious decoction mashing yields the choicest elements of the malt. Long, cold aging mellows the strong temperament of this subtle beer. Celebrate the end of winter with a warming draft of St. Victorious Doppelbock!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-water_street_lake_country-pils,0,0,245746106368,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
-troegs_brewing-scratch_14_2008,0,0,245111652352,"{""name"":""Scratch #14 2008"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #14-2008 is our interpretation of a farmhouse ale—a once near-extinct winter-brewed (and summer–imbibed) Belgian ale.\r\n\r\nOur celebratory brew starts with a black pepper and ginger nose. The nicely carbonated brew releases a honey-malt flavor that gives way to a tart crisp finish that masks the elevated ABV.\r\n\r\nWe use a blended yeast strain (Saison Dupont & Le Chouffe) to create the traditional peppery, spicy earthy flavors of the saison. Slight hints of ginger also come through in the finish.\r\n\r\nDrink it ‘til the wedding bells chime!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,31,1
-thunderhead_brewery-dry_stout,0,0,245114601472,"{""name"":""Dry Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
-pizza_port_brewing_solana_beach-cuvee_de_tomme,0,0,244988510208,"{""name"":""Cuvee de Tomme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizza_port_brewing_solana_beach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-saint_louis_brewery_schlafy_tap_room-schlafly_pale_ale,0,0,244988313601,"{""name"":""Schlafly Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-sioux_falls_brewing-ringneck_red_ale,0,0,245004173313,"{""name"":""Ringneck Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
-victory_brewing,0,0,245745188864,"{""name"":""Victory Brewing"",""city"":""Downingtown"",""state"":""Pennsylvania"",""code"":""19335"",""country"":""United States"",""phone"":""1-610-873-0881"",""website"":""http://www.victorybeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""420 Acorn Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.0061,""lon"":-75.6942}}",1,10,1
-pizzeria_uno_chicago_grill_brewery-bootlegger_blonde_ale,0,0,245001093121,"{""name"":""Bootlegger Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
-sports_city_cafe_brewery-creamy_stout,0,0,245103525888,"{""name"":""Creamy Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-st_peter_s_brewery-golden_ale,0,0,245121810432,"{""name"":""Golden Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-steve_and_clark_s_brew_pub_and_sausage_co_2,0,0,245122269184,"{""name"":""Steve and Clark's Brew Pub and Sausage Co. #2"",""city"":""Durham"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.994,""lon"":-78.8986}}",1,58,1
-sierra_nevada_brewing_co-bigfoot_2002,0,0,244994736131,"{""name"":""Bigfoot 2002"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-santa_fe_brewing_company-sante_fe_pale_ale,0,0,244995194882,"{""name"":""Sante Fe Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Anything but a typical American Pale, Santa Fe Pale Ale is as full bodied as its most robust English counterparts, while asserting its American origin with a healthy nose resplendent with Cascade and Willamette hops. It finishes with a well-balanced combination of the subtle, almost Pilsner-like maltiness accentuated by the German yeast used to brew this Santa Fe classic, and a hop bite sufficient to leave a lingering smile on the face of any fan of American Pale Ales."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-terrapin_beer_company-terrapin_midnight_project_depth_charge_espresso_milk_stout,0,0,245114208257,"{""name"":""Terrapin Midnight Project Depth Charge Espresso Milk Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Terrapin Midnight Project Brew Two 2009. Sometime around midnight in a city nobody can agree on, the idea for Terrapin and Left Hand to brew a collaboration beer was born. Depth Charge is the second in the series of one-time releases between the two breweries. Be wary of the calm before the storm. This creamy, deeply delicious milk stout will seduce you into submission while the explosion of hand roasted gourmet espresso will blow you into next week. We Shall Drink in the breweries. We Shall Drink in the pubs, We Shall Drink the the comfort of our homes. We Shall Never Surrender."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,37,1
-thirstybear_brewing-brown_bear_ale,0,0,245104640000,"{""name"":""Brown Bear Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,14,1
-terrapin_beer_company-capt_n_krunkles,0,0,245122727936,"{""name"":""Capt'n Krunkles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A black IPA.""}",1,59,1
-skagit_river_brewing-yellowjacket_pale_ale,0,0,245001748481,"{""name"":""Yellowjacket Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
-terrapin_beer_company-terrapin_rye_pale_ale,0,0,245105950722,"{""name"":""Terrapin Rye Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""By using an exact amount of rye, a grain seldom found in other micro brewed beers, the Rye Pale Ale acquires its signature taste. Made with five varieties of hops and a generous amount of specialty malts, it offers a complex flavor and aroma that is both aggressive and well balanced – a rare find among beers.\r\n\r\nThe Terrapin Rye Pale Ale was released in Athens, GA in April of 2002 at the Classic City Brew Fest. Six months later this beer which was sold only in Athens was awarded the American Pale Ale Gold Medal at the 2002 Great American Beer Festival, the most prestigious competition in North America. We hope you will agree with our peers in the brewing industry that this is truly one of the best pale ales in the country."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-whitbread_beer_company,0,0,245751611392,"{""name"":""Whitbread Beer Company"",""city"":""Luton"",""state"":""Bedford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01582)-391166"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Porter Tun House""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.1357,""lon"":-0.468}}",1,54,1
-weissbierbrauerei_hopf-weisse_export_helle_wesse,0,0,245746106369,"{""name"":""Weiße Export / Helle Weße"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weissbierbrauerei_hopf"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,16,1
-troegs_brewing-the_mad_elf,0,0,245111652353,"{""name"":""The Mad Elf"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Mad Elf, a cheerful creation to warm your heart and enlighten your tongue. The combination of Cherries, Honey, and Chocolate Malts delivers gentle fruits and subtle spices. Fermented and aged with a unique yeast, this ruby red beer has significant warming strength that underlies the pleasant character of this intriguing yet delicious Ale. The Mad Elf, a jolly and delicious beer for the Holidays.""}",1,31,1
-thunderhead_brewery_2,0,0,245114601473,"{""name"":""Thunderhead Brewery #2"",""city"":""Grand Island"",""state"":""Nebraska"",""code"":""68801"",""country"":""United States"",""phone"":""1-308-398-2500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""120 East Third Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.9259,""lon"":-98.3397}}",1,38,1
-port_brewing_company-mongo_double_ipa,0,0,244988510209,"{""name"":""Mongo Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Double IPA brewed in memory of the brew cat. In honor of Mongo, Mike Rodriguez made his first Double IPA, as he loved the cat and wanted to honor him with this beer. This 8.5% abv beer was made with Columbus hops (Mongo’s Birthname), Cascade for the Mama cat, and Simocoe because that is Mike’s favorite hop."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,19,1
-seabright_brewery-blur_ipa,0,0,244988313602,"{""name"":""Blur IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
-sprecher_brewing-black_bavarian_lager,0,0,245120958464,"{""name"":""Black Bavarian Lager"",""abv"":5.86,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This intensely dark Kulmbacher style lager has a superb malt complexity with the distinctive flavors and aromas of coffee, caramel and chocolate.\r\n\r\nA renowned smoothness and a creamy, tan head make it a world champion."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,55,1
-wdi_bru_huus-hanf,0,0,245745254400,"{""name"":""Hanf"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-porterhouse_restaurant_and_brewpub-irish_stout,0,0,245001093122,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-spring_house_brewing_company-planet_bean_coffee_stout,0,0,245103525889,"{""name"":""Planet Bean Coffee Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed to give the stout a smoother, almost slick, mouthfeel with a nice finish of coffee provided by Cumberland Coffee and Tea Company. Dark malts are used to give this beer a very complex roast flavor. Lower bittering rates ~30 IBU’s helps put the flavor highlighting the maltiness, and roasted malt. ABV is coming in around 7% on this one!""}",1,12,1
-steam_whistle_brewery-steamwhistle_lager,0,0,245121810433,"{""name"":""Steamwhistle Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steam_whistle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Good clean lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
-t_bonz_gill_grill_and_brewery,0,0,245122269185,"{""name"":""T-Bonz Gill, Grill and Brewery"",""city"":""Mount Pleasant"",""state"":""South Carolina"",""code"":""29464"",""country"":""United States"",""phone"":""1-843-971-7777"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1028 Johnny Dodds Boulevard""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":32.8091,""lon"":-79.875}}",1,58,1
-sierra_nevada_brewing_co-summerfest,0,0,244994801664,"{""name"":""Summerfest"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nOur Summerfest® is a refreshing, pilsner-style lager. Its incredible smoothness comes from an extra-long lagering period. Lighter in body than our ales but just as complex in character, Summerfest® quenches your thirst with big aroma and a tangy hop bite. \r\n\r\nGOLD MEDAL WINNER\r\nCalifornia State Fair (European Light Lagers: 1999)"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,34,1
-sarah_hughes_brewery-dark_ruby_ale,0,0,244995194883,"{""name"":""Dark Ruby Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sarah_hughes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-three_floyds_brewing,0,0,245114208258,"{""name"":""Three Floyds Brewing"",""city"":""Munster"",""state"":""Indiana"",""code"":""46321"",""country"":""United States"",""phone"":""1-219-922-3565"",""website"":""http://www.threefloydspub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9750 Indiana Parkway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5354,""lon"":-87.5158}}",1,37,1
-three_floyds_brewing-gumballhead,0,0,245104640001,"{""name"":""Gumballhead"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Three Floyds official summer beer highly dry hopped American wheat beer. Quite hoppy. Gumballhead is brewed from red wheat and amarillo hops. It has a medium haze, due to bottle conditioning; once the beer is bottled, extra yeast is added for a secondary fermentation. The hops give off a pronounced citrus note on the nose. Notes of bread - from the yeast - and a good malt undertone. Medium carbonation."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,14,1
-the_alchemist-revitalization_rye,0,0,245122727937,"{""name"":""Revitalization Rye"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This IPA is brewed with 35% rye malt. The crisp malt character is layered with Warrior hops. Dry-hopped with Warrior and Simcoe."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,59,1
-sly_fox_brewhouse_and_eatery_royersford-instigator_doppelbock,0,0,245119320064,"{""name"":""Instigator Doppelbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
-the_church_brew_works-pious_monk_dunkel,0,0,245106016256,"{""name"":""Pious Monk Dunkel"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Gold Medal Winner of the Great American Beer Festival. Our beer is fairly dark in color, but don’t be afraid. It is a perfect example that dark beers are not always strong beers. The body is surprisingly mellow, and the alcohol content is a bit lower than most people might think. It has a wonderfully clean and roasty aroma. Hop bitterness levels are kept in line, but is has a noticeable hop flavor.""}",1,17,1
-williams_brothers_brewing_company-kelpie_seaweed_ale,0,0,245751742464,"{""name"":""Kelpie Seaweed Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-white_winter_winery,0,0,245746106370,"{""name"":""White Winter Winery"",""city"":""Iron River"",""state"":""Wisconsin"",""code"":""54847"",""country"":""United States"",""phone"":""1-800-697-2006"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7665 US Highway 2""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":47.3812,""lon"":-94.6669}}",1,16,1
-twin_rivers_brewing-n_w_pale_ale,0,0,245111652354,"{""name"":""N.W. Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-titletown_brewing-steam_engine_common,0,0,245114667008,"{""name"":""Steam Engine Common"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
-pyramid_alehouse_brewery_and_restaurant_berkeley-thomas_kemper_porter,0,0,244988575744,"{""name"":""Thomas Kemper Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
-seabright_brewery-oatmeal_stout,0,0,244988379136,"{""name"":""Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,18,1
-stevens_point_brewery-pale_ale,0,0,245121089536,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-wells_and_youngs_brewing_company_ltd,0,0,245745254401,"{""name"":""Wells and (&) Youngs Brewing Company Ltd."",""city"":"""",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":""http://www.bombardier.co.uk/bombardier"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,10,1
-prescott_brewing_company-willow_wheat,0,0,245001158656,"{""name"":""Willow Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
-staatliches_hofbrauhaus_in_munchen-original,0,0,245103591424,"{""name"":""Original"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-stone_brewing_co-stone_10th_anniversery_ipa,0,0,245121810434,"{""name"":""Stone 10th Anniversery IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Stone 10th Anniversary IPA harkens back to our earlier Anniversary Ales, with abundant hopping at many stages of the brewing process. Appropriately, the aroma is over-the-top, with pronounced piney and resiny hop flavors combined with tropical fruit esters and more subtle notes of toasted malts and alcohol. Our Stone 10th Anniversary Ale weighs in at 10% alcohol by volume (perfect for a 10th anniversary beer), and has a little more color and malt character than our other IPAs. In addition to using the new Summit hop variety in the brewhouse to provide the powerful bitterness, we went back through our records and found some of our favorite hops over the years, and used them to flavor this brew, including Chinook, Crystal, and large doses of Simcoe in the dry-hop to provide a huge, complex, piney, fruity and floral hop character. This is a colossal beer, big in every sense: hoppy, malty, rich, and strong! Right up our alley."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
-tabernash_brewing-weiss,0,0,245122269186,"{""name"":""Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
-six_rivers_brewery-six_rivers_ipa,0,0,244994801665,"{""name"":""Six Rivers IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""six_rivers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
-schlobrauerei_reckendorf-edel_pils,0,0,244995260416,"{""name"":""Edel-Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-tommyknocker_brewery_and_pub,0,0,245114273792,"{""name"":""Tommyknocker Brewery and Pub"",""city"":""Idaho Springs"",""state"":""Colorado"",""code"":""80452"",""country"":""United States"",""phone"":""1-303-567-2688"",""website"":""http://www.tommyknocker.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1401 Miner Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7418,""lon"":-105.518}}",1,37,1
-thunder_canyon_brewery-thunderhead_ipa,0,0,245104640002,"{""name"":""Thunderhead IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunder_canyon_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Granddaddy of Pale Ales, this style got its start as a special brew for English soldiers living in India. Our IPA is a medium bodied ale, with a light copper color characterized by an intense hop flavor, with a full flowery hop aroma and higher alcohol content."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
-timmermans-timmermans_framboise,0,0,245122793472,"{""name"":""Timmermans Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,59,1
-sly_fox_brewhouse_and_eatery_royersford-piketown_pils,0,0,245119320065,"{""name"":""Piketown Pils"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-titletown_brewing-hopping_turtle_pale_ale,0,0,245106016257,"{""name"":""Hopping Turtle Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-wychwood_brewery-wychcraft,0,0,245751742465,"{""name"":""Wychcraft"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
-wynkoop_brewing,0,0,245746171904,"{""name"":""Wynkoop Brewing"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-297-2700"",""website"":""http://www.wynkoop.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1634 18th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7535,""lon"":-104.998}}",1,16,1
-upstream_brewing_company_at_legacy-double_ipa,0,0,245111717888,"{""name"":""Double IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
-tollemache_and_cobbold_brewery-ipa,0,0,245114667009,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tollemache_and_cobbold_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
-pyramid_alehouse_brewery_and_restaurant_seattle,0,0,244988575745,"{""name"":""Pyramid Alehouse, Brewery and Restaurant - Seattle"",""city"":""Seattle"",""state"":""Washington"",""code"":""98134"",""country"":""United States"",""phone"":""1-206-682-3377"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1201 First Avenue South""]}",1,19,1
-shaftebury_brewing-cream_ale,0,0,244988379137,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shaftebury_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,18,1
-stone_cellar_brewpub_restaurant-masterpiece_porter,0,0,245121089537,"{""name"":""Masterpiece Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_cellar_brewpub_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
-wernesgruner_brauerei-pils_legende,0,0,245745254402,"{""name"":""Pils Legende"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wernesgruner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,10,1
-pripps_ringnes_bryggerier,0,0,245001158657,"{""name"":""Pripps Ringnes Bryggerier"",""city"":""Bromma"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":60.4877,""lon"":9.1885}}",1,49,1
-steamworks-signature_pale_ale,0,0,245103656960,"{""name"":""Signature Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""The term \""Pale Ale\"" dates back to the 1800s when all beer was dark brown in colour. New malting techniques led to the development of pale malt, a barley malt kilned at low temperatures which contributed very little colour to the finished beer. Hence the birth of Pale Ale, an amber- to copper-coloured ale you could actually see through. Plenty of British Crystal malt in the grist lends this ale its rich colour, its caramel maltiness, and adds the occasional whiff of toffee to the nose. An addition of American and German hops to the kettle at the end of the boil is used to suffuse our Pale Ale with a gently spicy hop finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-stone_brewing_co-stone_ipa,0,0,245121875968,"{""name"":""Stone IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""An \""India Pale Ale\"" by definition is highly hopped and high in alcohol (ours is 6.9% alc./vol.).\r\n\r\nMedium Bodied Refreshing Ale\r\nLight-medium malt character with a heavy dose of over the top hops! Two full weeks of \""dry hopping\"" give this beer its abundant hop aroma and crisp hop flavor."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
-the_livery-the_livery_kilt_tilter,0,0,245122334720,"{""name"":""The Livery Kilt Tilter"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our version of a Scotch Ale is made with a portion of peat smoked barley. Very malty, with a subtle smoky finish. Also available in a barrel aged version."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,58,1
-smuttynose_brewing_co-smuttynose_finestkind_ipa,0,0,245112766464,"{""name"":""Smuttynose Finestkind IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Portsmouth is a colonial era seaport town, so it goes to follow that sooner or later we'd brew an India Pale Ale as a tribute to those big, hoppy 19th century ales that made the long sea voyage from England's temperate shores, 'round the Cape of Good Hope, to the sultry climes of the faraway East Indies.\r\n\r\nBut there's another reason we brewed this beer, one that's closer to our home and hearts. Hopheads. \r\n\r\nTen years ago we brewed our first batch of Shoals Pale Ale, our American interpretation of the traditional British ESB (Extra Special Bitter) style. At the time, it was widely considered to be darned hoppy. However, a funny thing happened over the last decade - our Shoals Pale Ale didn't change; beer lovers did, and we started to hear more and more: “Why don't you guys make a really hoppy beer?”\r\n\r\nYou could say, then, that Smuttynose IPA is a physical salute to the glory of the American hop grower. The citrusy hop flavor coming from a mixture of Simcoe and Santiams is pleasantly balanced by a smooth bitterness from the Amarillo hops. The beer itself is light bodied and crisp with a golden color that will throw a slight haze, as we bottle it unfiltered. At 65 IBU's, this is definitely not a training-wheels IPA, but is meant for hop lovers looking to satisfy their craving in a way that's not easy to find. We think they’ll be quite pleased."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
-shepherd_neame-spitfire_premium_kentish_strong_ale,0,0,244995260417,"{""name"":""Spitfire Premium Kentish Strong Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shepherd_neame"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-troegs_brewing-dead_reckoning_porter,0,0,245114273793,"{""name"":""Dead Reckoning Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In the 14th Century, Sailors would rely on sheer skill to get from a starting point to a final destination. They called this Dead Reckoning. We see our beer the same way. We know where to begin and know where to go, but there are hundreds of ways to get there.\r\n\r\nDead Reckoning is unfiltered and weighs in at 5.8% abv and 53 IBU’s. It features Pilsner, Caramel, Chocolate and Roasted malts along with Chinook and Vanguard hops. “The outstanding taste and flavor of Dead Reckoning originates in the chocolate and roasted malts,” says John Trogner. \""There is a nice hoppiness in the front of the beer, but the rich, smooth mouth feel is what really stands out.\"""",""style"":""Porter"",""category"":""Irish Ale""}",1,37,1
-tommyknocker_brewery_and_pub-tundrabeary_ale,0,0,245104640003,"{""name"":""Tundrabeary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,14,1
-tommyknocker_brewery_and_pub-ornery_amber_lager,0,0,245122793473,"{""name"":""Ornery Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Ornery Amber is brewed with a blend of the finest European hops and gently roasted malts."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-southern_tier_brewing_co-oat_imperial_oatmeal_stout,0,0,245119385600,"{""name"":""Oat Imperial Oatmeal Stout"",""abv"":12.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""It is beer #2 in our \""Blackwater Series\"" of original Imperial Stouts. The first in the Series was \""Is\"", a dark and bitter Russian Imperial Stout. \""Oat\"" is the follow up; an Oatmeal Stout with major alcohol volume and tons of body to back it up. The cloying character of the oats in this brew lends itself to a chewy and almost oily mouthfeel. ABV. is off the charts at about 12.5%. Note, that this is an all malt beer fermented with our house ale strain of yeast. Judicious hopping with Columbus and Chinook produce a hoppy aroma that mingles nicely with the chocolate and de-bittered black barley from Belgium."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,50,1
-titletown_brewing-piper_down_scottish_ale,0,0,245106016258,"{""name"":""Piper Down Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-yuengling_son_brewing-yuengling_premium_beer,0,0,245751742466,"{""name"":""Yuengling Premium Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A regional favorite, Yuengling Premium Beer is popular among local beer drinkers for its thirst quenching taste. It is a pilsner-style brew, gold in color with pale malt character that finishes crisp and clean. Premium flawlessly blends both two-row and six-row barley malt for a well balanced flavor that is always refreshing. Traces of the slight hop aroma are evident in every delicious sip of Premium Beer. Discover this well kept secret and enjoy the superior quality and taste you've come to expect from America's Oldest Brewery."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
-youngs_company_brewery-winter_warmer,0,0,245746171905,"{""name"":""Winter Warmer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
-upstream_brewing_company_at_legacy-gueuze_lambic,0,0,245111717889,"{""name"":""Gueuze-Lambic"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,31,1
-troegs_brewing-nugget_nectar,0,0,245114732544,"{""name"":""Nugget Nectar"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Squeeze those hops for all they’re worth and prepare to pucker up: Nugget Nectar Ale, will take hopheads to nirvana with a heady collection of Nugget, Warrior and Tomahawk hops. Starting with the same base ingredients of our flagship HopBack Amber Ale, Nugget Nectar intensifies the malt and hop flavors to create an explosive hop experience."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
-rail_house_restaurant_and_brewpub-gold_rush_discontinued,0,0,244988575746,"{""name"":""Gold Rush (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-siletz_roadhouse_brewery-mojo_ale,0,0,244988444672,"{""name"":""Mojo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
-stonecutters_brewhouse,0,0,245121155072,"{""name"":""Stonecutters Brewhouse"",""city"":""Barre"",""state"":""Vermont"",""code"":""5641"",""country"":""United States"",""phone"":""(802) 476-6000"",""website"":""http://www.stonecuttersbrewhouse.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Stonecutters Brewhouse is a 4 barrel brewhouse located in central Vermont in the small town (pop. 9000) of Barre. Barre is the sister town to Montpelier, which is the capital of Vermont. Stonecutters is a locally owned and operated."",""address"":[""14 N Main St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.1972,""lon"":-72.5019}}",1,55,1
-williams_brothers_brewing_company-fraoch_heather_ale,0,0,245745319936,"{""name"":""Fraoch Heather Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-raccoon_lodge_and_brewpub_cascade_brewing-cascade_razberry_wheat,0,0,245001158658,"{""name"":""Cascade Razberry Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Razberry Wheat is crisp with a refreshing tartness and the fresh aroma of raspberries. This salmon pink ale is just the thing to transport you to berry time in the summer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,49,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-hefeweizen,0,0,245103656961,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,12,1
-summit_brewing-hefe_weizen,0,0,245121875969,"{""name"":""Hefe-Weizen"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,57,1
-thunderhead_brewery-hefeweizen,0,0,245122334721,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
-snowshoe_brewing_sonora-thompson_pale_ale,0,0,245112766465,"{""name"":""Thompson Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snowshoe_brewing_sonora"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
-sierra_nevada_brewing_co-unfiltered_wheat_beer,0,0,244995260418,"{""name"":""Unfiltered Wheat Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nPale, smooth, and light-bodied, Sierra Nevada Wheat Beer is brewed from premium malted wheat and light barley malts, utilizing our traditional ale yeast. This unfiltered ale is finished with the characteristically spicy Strissel Spalt hops from the Alsace region of France. \r\n\r\n“The lightest Sierra Nevada beer is this refreshing wheat beer made with barley & wheat for a very light character but loads of flavor!”\r\n\r\n– BevMo.com\r\n\r\nSILVER MEDAL WINNER\r\nCalifornia State Fair (American Wheat: 2000)"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,35,1
-tui_brewery-east_india_pale_ale,0,0,245114273794,"{""name"":""East India Pale Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tui_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-troegs_brewing-scratch_10_2008,0,0,245104705536,"{""name"":""Scratch #10 2008"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""he third time just might be the charm—Scratch #10-2008 is our third triple in the Scratch Beer series.\r\n\r\nThis grand cru has been lovingly aged since late-February, yet still unleashes the slightest hint of alcohol heat.\r\n\r\nScratch #10-2008 also has a triple flavor inspiration combining the caramel/toffee notes of dememera sugar and molasses, with citrus and licorice flavors created by the orange peel and star anise; lastly we create a peppery/spicy finish with the same trappist yeast has been used in each Scratch Beer Triple."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,14,1
-tropical_beverage_international_co_ltd-phuket_lager,0,0,245122859008,"{""name"":""Phuket Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tropical_beverage_international_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Phuket Beer was created as a refreshing ‘boutique’ beer in view of the exotic island of Phuket with a much lower formula of bitterness than any other domestic rivals in Thailand.\r\n\r\nPhuket Beer is the first regional beer brewed in Thailand and is positioned to appeal to both the international markets as well as the local population. This is manifested through the label and packaging designs presented in both English and Thai languages.\r\n\r\nPhuket Beer is well positioned as a premium brand located somewhere between the local standard brands and the imported premium brands. The efforts were inspired from the feeling of being in a tropical paradise. Thai beer consumers have become more sophisticated over the years, by selecting and demanding premium and high-end beers. initial consumer target was Phuket Island's significant tourist sector, a sector that is prone to taste and drink locally produced brands.However, strategic positioning and selected marketing of Phuket Beer has resulted in a ray of successful export markets with overwhelming response from the initial markets overseas.\r\n\r\nThe philosophy is to provide a ‘tropical lifestyle’ drinking experience in a fresh clean light tasting lager beer with 5% alcohol by volume, which is in total contrast to the other Thai beers that are very bitter with higher alcohol content."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
-spaten_franziskaner_brau-optimator,0,0,245119385601,"{""name"":""Optimator"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,50,1
-triple_rock_brewery-pale,0,0,245106016259,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triple_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-valley_forge_brewing-dunkelweizen,0,0,245111783424,"{""name"":""Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_forge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-troegs_brewing-scratch_19_2009_imperial_double_expresso_oatmeal_stout,0,0,245114732545,"{""name"":""Scratch #19 2009 Imperial Double Expresso Oatmeal Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Every beer tells a story, and some are longer than others.\r\n\r\nConsider Scratch #19; originally designed as an enhanced take on Scratch #15 with a slightly higher ABV, our brewers went to town to deliver a brew slightly more akin to our fabled Scratch #5, the Imperial Oatmeal Stout brewed for The Flying Mouflan Experience.\r\n\r\nFor Scratch #19, we teamed up with St. Thomas Roasters of Linglestown to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating en environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Scratch #19 a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus hop finsh coming from the Kenyan beans and hops.\r\n\r\nSome stories have twists, and unfortunately a faulty valve in the fermentation cellar led to a dramatic beer tragedy one afternoon in the brewery. Risking life and limb (while keeping his mouth open to sample the beer), a heroic brewery team member took the dive reconnecting the valve and saving about half the batch of Scratch #19.\r\n\r\nSo for your amusement (and our final relief), we give you a draft-only release of a third-take on a style that demands continued research for the Troegs Brewery staff. Enjoy!"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,38,1
-redhook_ale_brewery-redhook_long_hammer_ipa,0,0,244988641280,"{""name"":""Redhook Long Hammer IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-speakeasy_ales_and_lagers-untouchable_pale_ale,0,0,245106212864,"{""name"":""Untouchable Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-tennent_caledonian_brewery-lager,0,0,245121155073,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tennent_caledonian_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-wynkoop_brewing-light_rail_ale,0,0,245745319937,"{""name"":""Light Rail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This blonde beer has a very light body and mild flavors of hops and pale malts. A hint of caramel malt gives color to this popular choice for craft beer newcomers"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,10,1
-rock_art_brewery-rock_art_ipa,0,0,245001224192,"{""name"":""Rock Art IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A light copper body low bitterness with good hop flavor. This is my impression of what the English troops may have been drinking when they occupied India. The pale ale they drank had mellowed considerably. The wooden casks had spent many months traveling on ships and long inland journeys to the troops, where they were then tapped and enjoyed."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
-stone_brewing_co-imperial_stout_2003,0,0,245103656962,"{""name"":""Imperial Stout 2003"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
-tabernash_brewing,0,0,245121875970,"{""name"":""Tabernash Brewing"",""city"":""Longmont"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.1672,""lon"":-105.102}}",1,57,1
-tin_whistle_brewing,0,0,245122400256,"{""name"":""Tin Whistle Brewing"",""city"":""Penticton"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-250-770-1122"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""954 West Eckhardt Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.4944,""lon"":-119.61}}",1,58,1
-stone_brewing_co-oaked_arrogant_bastard_ale,0,0,245112832000,"{""name"":""Oaked Arrogant Bastard Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Arrogant Bastard Ale aged in oak barrels."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,34,1
-silver_gulch_brewing_company-old_55_pale_ale,0,0,244995325952,"{""name"":""Old 55 Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""silver_gulch_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-two_brothers_brewing-brown_fox_ale,0,0,245114339328,"{""name"":""Brown Fox Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
-tustin_brewing,0,0,245104705537,"{""name"":""Tustin Brewing"",""city"":""Tustin"",""state"":""California"",""code"":""92780"",""country"":""United States"",""phone"":""1-714-665-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13011 Newport Avenue #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.7496,""lon"":-117.812}}",1,14,1
-trout_river_brewing,0,0,245122859009,"{""name"":""Trout River Brewing"",""city"":""Lyndonville"",""state"":""Vermont"",""code"":""5851"",""country"":""United States"",""phone"":""802) 656-9396"",""website"":""http://www.troutriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Trout River Brewing prides itself on creating and serving fresh, all natural, premium ales and lagers. Our beers are made with pure Vermont water, the best imported and domestic malts and hops, and quality yeasts. Nothing else is added and we take nothing away!"",""address"":[""58 Broad Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.5203,""lon"":-72.0014}}",1,59,1
-standing_stone_brewing_company,0,0,245119451136,"{""name"":""Standing Stone Brewing Company"",""city"":""Ashland"",""state"":""Oregon"",""code"":""97520"",""country"":""United States"",""phone"":""(541) 482-2448"",""website"":""http://www.standingstonebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Ashland's only full service brewpub is housed in an historic building with a light industrial character. We offer our own freshly brewed handcrafted ales and lagers, including seasonal and other specialty brews. All Standing Stone Ales are made here at the brewery in ten barrel batches using over 80% organic malts."",""address"":[""101 Oak Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1976,""lon"":-122.715}}",1,50,1
-troegs_brewing,0,0,245106081792,"{""name"":""Troegs Brewing"",""city"":""Harrisburg"",""state"":""Pennsylvania"",""code"":""17104"",""country"":""United States"",""phone"":""1-717-232-1297"",""website"":""http://www.troegs.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Brewing Company was established in 1997. Today, the brewery produces nine different beers including Hopback Amber Ale, Troegenator Doublebock, Rugged Trail Ale, Tröegs Pale Ale, Nugget Nectar (seasonal) Dead Reckoning Porter (seasonal), Sunshine Pils (seasonal), The Mad Elf (seasonal), and distributes its product in Pennsylvania, New Jersey, Maryland, Delaware and Virginia."",""address"":[""800 Paxton Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.2559,""lon"":-76.8715}}",1,17,1
-victory_brewing-st_boisterous_hellerbock,0,0,245111783425,"{""name"":""St. Boisterous Hellerbock"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A full-bodied lager beer of exuberant and robust character. It’s muscle-man body comes from decocted German malts and noble German hops. Lagered long and cold to refine its strong temperament, St. Boisterous emerges smooth and seductive, with a malty sweet charm. This classic rendition of the German ‘maibock' style will warm your heart."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,31,1
-troegs_brewing-scratch_7_2008,0,0,245114732546,"{""name"":""Scratch #7 2008"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Red and white wheat combined with darker malts add body to this hazy, unfiltered ale. Fermented with the same yeast as DreamWeaver Wheat replicating the pepper, clove and all-spice flavors found in our year-round beer."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,38,1
-russian_river_brewing-damnation,0,0,244988641281,"{""name"":""Damnation"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Damnation has extraordinary aromas of banana and pear with mouth filling flavors of sweet malt and earthy hops. The lingering finish is dry and slightly bitter but very, very smooth."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,19,1
-st_austell_brewery-proper_job,0,0,245106278400,"{""name"":""Proper Job"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_austell_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Proper Job is an authentic IPA brewed with Cornish spring water and malt made from a blend of malts including Cornish grown Maris Otter barley."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,18,1
-the_alchemist-broken_spoke,0,0,245121155074,"{""name"":""Broken Spoke"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""An American pale ale made entirely with amarillo hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-zea_rotisserie_and_brewery-ginger_slap_spiced_ale,0,0,245745319938,"{""name"":""Ginger-\""slap\"" Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
-rock_bottom_restaurant_brewery_san_jose-boulder_creek_pale_ale,0,0,245001224193,"{""name"":""Boulder Creek Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-stroh_brewery_company-lone_star,0,0,245103722496,"{""name"":""Lone Star"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stroh_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-titletown_brewing-fort_edward_augustus_1770_scottish_ale,0,0,245121941504,"{""name"":""Fort Edward Augustus 1770 Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-titletown_brewing-boxcar_brown_ale,0,0,245122400257,"{""name"":""Boxcar Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
-stone_cellar_brewpub_restaurant,0,0,245112832001,"{""name"":""Stone Cellar Brewpub & Restaurant"",""city"":""Appleton"",""state"":""Wisconsin"",""code"":""54915"",""country"":""United States"",""phone"":""1-920-735-0507"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1004 South Olde Oneida""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2536,""lon"":-88.4037}}",1,34,1
-sports_city_cafe_brewery-india_pale_ale,0,0,245113159680,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
-tyranena_brewing-gemuetlichkeit_oktoberfest,0,0,245114339329,"{""name"":""Gemuetlichkeit Oktoberfest"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Gemuetlichkeit translates from German as \""the fondness of feasting, drinking and merry company.\"" This is true of most everyone in Wisconsin, especially those of us at the brewery. Each September in the nearby city of Jefferson, Wisconsin, thousand turn out for Gemuetlichkeit Days, a celebration of the area's German heritage. We invite you to celebrate the spirit of Gemuetlichkeit with us. Don your lederhösen, kick up your heels with a polka and raise a stein of our Gemuetlichkeit Oktoberfest with a friend. Ein Prosit!\r\n\r\nGemuetlichkeit Oktoberfest is a rich, amber lager with a malty aroma and balanced hop bitterness. This seasonal style is served at German Oktoberfests in liter steins."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,37,1
-ukiah_brewing-emancipator,0,0,245104705538,"{""name"":""Emancipator"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ukiah_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,14,1
-weyerbacher_brewing_company-blasphemy,0,0,245752201216,"{""name"":""Blasphemy"",""abv"":11.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First released in March 2007, Blasphemy is our award winning QUAD aged in bourbon barrels. But not overaged, so we've picked up gentle vanilla oaky notes which complement rather than supercede the complex qualities that already make QUAD such an incredible beer. Expected to be an annual Spring seasonal, supplies are limited. ABV is 11.8%."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,59,1
-steamworks-empress_india_pale_ale,0,0,245119451137,"{""name"":""Empress India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""During the heyday of the British Empire, India Pale Ale was born as a strong pale ale brewed especially to endure the rigors of the long journey to the colonies. In order to guard against spoilage, I.P.A. was brewed with a high alcohol content and with liberal amounts of hops, which act as a natural preservative. This ale's golden amber colour only hints at its full-bodied flavour. Its sumptuous maltiness is tempered by a goodly amount of bitterness and a mouth-filling hop flavour. In order to finish our I.P.A. with a truly fresh hop bouquet, we dry hop this ale in the serving tank with both East Kent Goldings and Mount Hood hops."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,50,1
-tucher_bru,0,0,245106081793,"{""name"":""Tucher Bru"",""city"":""Nrnberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)911-/-9776-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schillerstrae 14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.4643,""lon"":11.0847}}",1,17,1
-walldorff_brew_pub,0,0,245748006912,"{""name"":""Walldorff Brew Pub"",""city"":""Hastings"",""state"":""Michigan"",""code"":""49508"",""country"":""United States"",""phone"":""269 945-4400"",""website"":""http://walldorffbrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""105 East State Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6488,""lon"":-85.2875}}",1,31,1
-upland_brewing-upland_wheat_ale,0,0,245114732547,"{""name"":""Upland Wheat Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,38,1
-saint_louis_brewery_schlafy_tap_room-schlafly_witbier,0,0,244988641282,"{""name"":""Schlafly Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-steve_and_clark_s_brew_pub_and_sausage_co_2-northwest_pale_ale,0,0,245106278401,"{""name"":""Northwest Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
-thirstybear_brewing-polar_ale,0,0,245121155075,"{""name"":""Polar Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-rogue_ales-menage_frog,0,0,245001224194,"{""name"":""Menage Frog"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian Style Tripel using same Abbey Yeast. Monster aromas and sweet flavors coming from the yeast and a huge amount of Belgian Candi Sugar. Ingredients: Weyermann Pilsner Malt, Belgian Candi Sugar, Saaz Hops."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,49,1
-summit_brewing-horizon_red_ale,0,0,245103722497,"{""name"":""Horizon Red Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A richer shade of Red. Summit has artfully crossed the boundaries of traditional IPA and Amber styles to create a brew all our own. Featuring an aromatic blend of Horizon, Amarillo and Cascade hops with nicely balanced malts for a flavor you’ll enjoy to the fullest."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-top_of_the_hill_restaurant_and_brewery-davie_poplar_ipa,0,0,245121941505,"{""name"":""Davie Poplar IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
-troegs_brewing-scratch_27_2010_cocaoabunga,0,0,245122400258,"{""name"":""Scratch #27 2010 Cocaoabunga"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #27-2010 begins a new fold in the Scratch series. For the next several batches individual Troegs brewers will create recipes of their choice. First up, The Ticeman had a hankering for a sweet stout, so the Troegs brothers and all the brewers met with Scharffen Berger Chocolate Company engineers to eat ridiculous amounts of cocoa nibs and chocolates over a few pints of beer.\r\n\r\nThis collaboration resulted in the delivery of a special blend of cocoa nibs that were added during the boiling process. In addition to the nibs, lactose was added at the end of the boil to give a little sweetness in the body. The addition of Galena and Simcoe hops lends a subtle fruity balance. After primary fermentation, the beer was aged for three weeks on a blend of cocoa nibs and Ugandan vanilla beans.\r\n\r\nDubbed Cocaoabunga, this unfiltered beer has a pleasant cocoa aroma, a subtle sweetness in the mouthfeel, a full-bodied flavor, and hints of vanilla. Enjoy!"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
-stoney_creek_brewing_company,0,0,245112897536,"{""name"":""Stoney Creek Brewing Company"",""city"":""Detroit"",""state"":""Michigan"",""code"":""48207"",""country"":""United States"",""phone"":""1-877-786-6399"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""237 Joseph Campau""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3372,""lon"":-83.0186}}",1,34,1
-stone_city_brewing-stein_bock,0,0,245113225216,"{""name"":""Stein Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,35,1
-unibroue-la_fin_du_monde,0,0,245114404864,"{""name"":""La Fin Du Monde"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""La Fin du Monde has a brilliant golden color with vigorously effervescent foam.\r\nIt is midly yeasty with a complex palate of malt, fruit and spice notes followed by a smooth, dry finish."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,37,1
-weyerbacher_brewing_company,0,0,245745909760,"{""name"":""Weyerbacher Brewing Company"",""city"":""Easton"",""state"":""Pennsylvania"",""code"":""18042"",""country"":""United States"",""phone"":""1.610.559.5561"",""website"":""http://www.weyerbacher.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Weyerbacher, we're passionate about our brews. That passion is reflected in the diversity of our offerings. We currently offer over twenty styles of beers. These range from our flagship beers Double Simcoe IPA, Hops Infusion, Merry Monks' Ale, Old Heathen and Blithering Idiot Barleywine to our big seasonals like QUAD and Imperial Pumpkin Ale. And don't forget our bourbon barrel beers: Heresy, Insanity, and Blasphemy ( and yes, we actually age them in real bourbon barrels, and we only use the barrels once). We practically have a new seasonal every month."",""address"":[""905 Line Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6732,""lon"":-75.2249}}",1,14,1
-wyder_s_cider,0,0,245752201217,"{""name"":""Wyder's Cider"",""city"":""Calgary"",""state"":""Alberta"",""code"":""0"",""country"":""Canada"",""phone"":""1-510-832-4540"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""255999 Eighth Street SW""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.034,""lon"":-114.083}}",1,59,1
-steamworks-lions_gate_lager,0,0,245119516672,"{""name"":""Lions Gate Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""While ales are fermented for relatively short periods of time at room temperature, lagers employ a special variety of yeast and much cooler fermentation temperatures to achieve their truly clean, dry flavour profile. Our Lion's Gate Lager has a light body, a very crisp palate and a soft, hop finish, which is imparted by the exquisitely gentle Czech Saaz hop variety. The Lions would approve."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-twin_ports_brewing-derailed_ale,0,0,245106081794,"{""name"":""Derailed Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-watney_brewery-red_barrel,0,0,245748072448,"{""name"":""Red Barrel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""watney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-upper_mississippi_brewing-bartles_and_lager,0,0,245114798080,"{""name"":""Bartles and Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
-sand_creek_brewing_company-lilja_s_hop_nest_monster,0,0,244988706816,"{""name"":""Lilja's Hop Nest Monster"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-stone_brewing_co-stone_11th_anniversery_ale,0,0,245106343936,"{""name"":""Stone 11th Anniversery Ale"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The inspiration for making a Black IPA (or should we say \""India Black Ale/ IBA\""?) has been over a year in the making. As soon as we wrapped up the brewing of the Stone 10th Anniversary IPA, we started brainstorming ideas for the Stone 11th Anniversary Ale, and the Black IPA concept was born. This was a challenging brew to formulate and achieve what we considered the ideal flavor balance of intense up-front hops with balanced roasted malt flavors, a deep, rich flavor, and a hearty bitterness."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,18,1
-titletown_brewing-old_broadway_cream_ale,0,0,245121220608,"{""name"":""Old Broadway Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-russell_brewing,0,0,245001289728,"{""name"":""Russell Brewing"",""city"":""Surrey"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-599-1190"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""202 - 13018 80th Avenue""]}",1,49,1
-sweetwater_brewing_casper,0,0,245103722498,"{""name"":""Sweetwater Brewing - Casper"",""city"":""Casper"",""state"":""Wyoming"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.8666,""lon"":-106.313}}",1,12,1
-twin_rivers_brewing,0,0,245121941506,"{""name"":""Twin Rivers Brewing"",""city"":""Monroe"",""state"":""Washington"",""code"":""98272"",""country"":""United States"",""phone"":""1-360-794-4056"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""104 North Lewis Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.8559,""lon"":-121.971}}",1,57,1
-watson_brothers_brewhouse,0,0,245752070144,"{""name"":""Watson Brothers Brewhouse"",""city"":""Blue Ash"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.232,""lon"":-84.3783}}",1,58,1
-sturgeon_bay_brewing-peninsula_pirate_pilsner,0,0,245112897537,"{""name"":""Peninsula Pirate Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-stout_brothers_public_house-taverner_nut_brown_ale,0,0,245113225217,"{""name"":""Taverner Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,35,1
-unibroue-maudite,0,0,245114404865,"{""name"":""Maudite"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Maudite has a deep amber-red color with a rocky foam head and an appealing aroma of wild spices and floral hop notes. It is spicy, vinous, and deliciously complex with a crisp hop finish.\r\n\r\n\r\nThe robust maltiness and spiciness of our\r\namber-red ale is counterbalanced by an\r\nassertive hop finish, offering a distinctive\r\nflavor that is cognac-like in complexity."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,37,1
-wrzburger_hofbru_ag,0,0,245745909761,"{""name"":""Wrzburger Hofbru AG"",""city"":""Wrzburg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)931-/-4109-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hchberger Strae 28""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.792,""lon"":9.915}}",1,14,1
-yards_brewing-yards_extra_special_ale,0,0,245752266752,"{""name"":""Yards Extra Special Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Crafted from the finest ingredients and originally intended for the cask-ale connoisseur, Extra Special Ale is a robust and hearty amber ale with a malt body and aromatic hop finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,59,1
-stevens_point_brewery-lizard_lager,0,0,245119516673,"{""name"":""Lizard Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
-unicer,0,0,245106147328,"{""name"":""Unicer"",""city"":"""",""state"":"""",""code"":"""",""country"":""Portugal"",""phone"":"""",""website"":""http://www.unicer.pt"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,17,1
-white_oak_cider-black_cider,0,0,245748072449,"{""name"":""Black Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_oak_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-wachusetts_brewing_company,0,0,245749252096,"{""name"":""Wachusetts Brewing Company"",""city"":""Westminster"",""state"":""Massachusetts"",""code"":""1473"",""country"":""United States"",""phone"":""978-874-9965"",""website"":""http://www.wachusettbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""History Wachusett Brewery founders Ned, Kevin and Peter developed a significant appreciation for beer while attending Worcester Polytechnic Institute. Adventures in biking, canoeing, and hiking that led the trio to the northern New England states allowed them to visit some of the first operating craft breweries. Armed with a we can do this attitude the three cast off from their careers in engineering and biology to found the Wachusett Brewing Co. in 1993. Wachusett Country Ale was introduced to beer fans of Massachusetts the next year after lots of experimenting to get the formula just right. When Wachusett opened, the three designed and built most of the equipment; did the brewing and filling, selling and delivering, and everything else that a small startup brewery needed. Ned, Kevin and Peter are now backed by some of the most passionate and capable co-workers in the industry. Wachusett Ales continue to be hand crafted with the finest ingredients available, bottled and kegged in our Westminster facility. The three have never strayed from their plan to brew and sell the freshest, highest quality beers possible."",""address"":[""175 State Road East""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.5586,""lon"":-71.8715}}",1,38,1
-santa_cruz_brewing-beacon_barleywine,0,0,244988706817,"{""name"":""Beacon Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_cruz_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-t_bonz_gill_grill_and_brewery-low_country_light_lager,0,0,245106343937,"{""name"":""Low Country Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
-tworows_restaurant_brewery_dallas-honey_blonde_light_pale_ale,0,0,245121220609,"{""name"":""Honey Blonde Light Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
-saint_arnold_brewing-saint_arnold_texas_weat,0,0,245001289729,"{""name"":""Saint Arnold Texas Weat"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing, flavorful filtered wheat beer. The perfect beer to accompany a meal or for a summer's day. The wheat contributes a lighter flavor while maintaining a rich body. The beer has a light hop profile -- just enough to give the beer balance and complexity. The light fruitiness is derived from a Kölsch yeast strain. A chill haze may be present, which is a characteristic of wheat beers. \r\n\r\nSaint Arnold Texas Wheat is best consumed at 40-45° Fahrenheit.""}",1,49,1
-taylor_s_crossing_brewing-red_truck_ale,0,0,245103722499,"{""name"":""Red Truck Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-tyranena_brewing-shantytown_doppelbock,0,0,245122007040,"{""name"":""Shantytown Doppelbock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The sun barely breaks the horizon, the arctic winds bite, and snow blankets the land. It’s winter in Wisconsin! Throughout the area, you’ll find armies of fisherman, clad in blaze orange parkas and snowmobile suits, dragging their crudely built ice shanties onto the frozen lakes. While they vary in size, shape and color, each shanty contains an enthusiast braving the cold; spinning their tall tales; staring deeply into that hole in the ice; and, of course, enjoying a Legendary Wisconsin Beer. Brewed in the fall to help you survive our Wisconsin winters.\r\n\r\nShantytown Doppelbock is brewed in the style of a German Doppelbock. Brown in color with malty sweetness and a full body."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,57,1
-wrzburger_hofbru_ag-julius_echter_hefe_weissbier_hell,0,0,245752135680,"{""name"":""Julius Echter Hefe-Weißbier Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wrzburger_hofbru_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
-swan_brewery-lager,0,0,245112897538,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""swan_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-stroh_brewery_company-schlitz,0,0,245113290752,"{""name"":""Schlitz"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stroh_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
-union_colony_brewery-old_8444_alt,0,0,245114404866,"{""name"":""Old 8444 Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_colony_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
-yuengling_son_brewing-yuengling_premium_light,0,0,245745975296,"{""name"":""Yuengling Premium Light"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Light Beer is skillfully crafted to deliver a consistently refreshing brew with only 98 calories. Drawing from traditional brewing techniques, our Light Beer is brewed longer to reduce the sugar content and produce fewer calories in each thirst-quenching drink. Its pale golden color is complemented by a light-bodied flavor. Yuengling Light maintains a well balanced character of malt and hops, with slight carbonation for a crisp satisfying finish. We sacrifice nothing to produce a premium light beer that is low in calories and full of flavor. This combination delivers the ultimate refreshment in Yuengling Light Beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,14,1
-sullivan_s_black_forest_brew_haus_grill-pirate_s_porter,0,0,245119582208,"{""name"":""Pirate's Porter"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Arrr this be a dark beer with strong notes of coffee and chocolate flavors."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,50,1
-valley_forge_brewing-regiment_pale_ale,0,0,245106147329,"{""name"":""Regiment Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_forge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
-white_winter_winery-traditional_brackett,0,0,245748072450,"{""name"":""Traditional Brackett"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_winter_winery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-water_street_brewery-honey_lager_light,0,0,245749317632,"{""name"":""Honey Lager Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
-second_street_brewery-altbier,0,0,244988706818,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""second_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,19,1
-terrapin_beer_company-sunray_wheat_beer,0,0,245106343938,"{""name"":""SunRay Wheat Beer"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Sunray Wheat is a German-style unfiltered wheat beer brewed with a touch of local Georgia Coast Tupelo honey from the Savannah Bee Company.\r\n\r\nIts inviting banana and sweet clove like aroma gives way to a pleasant, clean finish with a hint of tartness.\r\n\r\nThis beer is available in the Terrapin “All The Hits” Variety 12-pack as well as in individual 6-packs."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
-unibroue-ephemere_pomme,0,0,245121220610,"{""name"":""Éphémère Pomme"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""White ale brewed with apple must\r\n\r\nRedolent of ripe Granny Smith apples, this\r\nunique white ale pleases the palate with a\r\ndelicate balance of fruit and spice notes and\r\njust a hint of sweetness.\r\n \r\nÉphémère apple satisfies with each sip and\r\nrefreshes in all seasons, especially when\r\npaired with an artisan cheddar cheese, pork\r\ntenderloin served with apple chutney or Vidalia\r\nonion soup.\r\n\r\nWe developed the Éphémère (Ephemeral)\r\nseries to feature a seasonal fruit in a\r\nrefreshing, lightly spiced white ale.\r\n \r\nThe label depicts a fairy, an ephemeral spirit\r\nassociated with fruits picked at the peak of\r\nripeness during each harvest season. \r\nÉphémère apple flavor is brewed with apple\r\nmust, which consists of the freshly-pressed\r\njuice from apples.\r\n\r\nEnjoy this beer 'alfresco' while dining in the\r\nafternoon sun, relaxing at a family gathering or\r\nat a picnic in the back yard.\r\n\r\nWinner of 3 Gold Medals from the Beverage\r\nTesting Institute since 2002"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,55,1
-santa_barbara_brewing,0,0,245001355264,"{""name"":""Santa Barbara Brewing"",""city"":""Santa Barbara"",""state"":""California"",""code"":""93101"",""country"":""United States"",""phone"":""1-805-730-1040"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""501 State Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.4166,""lon"":-119.696}}",1,49,1
-terrapin_beer_company-hopsecutioner,0,0,245103788032,"{""name"":""Hopsecutioner"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Here ye, here ye…All hopheads shall herewith rejoice! Terrapin has recruited ye old HOPSECUTIONER to execute the exact hop profile for this killer IPA!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
-ukiah_brewing,0,0,245122007041,"{""name"":""Ukiah Brewing"",""city"":""Ukiah"",""state"":""California"",""code"":""95482"",""country"":""United States"",""phone"":""1-707-468-5898"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 South State Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.1498,""lon"":-123.208}}",1,57,1
-yakima_brewing_and_malting_grant_s_ales-india_pale_ale,0,0,245752135681,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
-tempo-goldstar,0,0,245112963072,"{""name"":""Goldstar"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tempo"",""updated"":""2010-07-22 20:00:20"",""description"":""The best beer ever!""}",1,34,1
-sullivan_s_black_forest_brew_haus_grill-sully_s_irish_stout,0,0,245113290753,"{""name"":""Sully's Irish Stout"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Put on your kilt and enjoy this roasted, dark, malty and slightly sweet beer."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-upstream_brewing_company_at_legacy-oak_aged_ebenezer,0,0,245114404867,"{""name"":""Oak Aged Ebenezer"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
-zea_rotisserie_and_brewery-lager,0,0,245745975297,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
-tailgate_beer-tailgate_ipa,0,0,245119582209,"{""name"":""Tailgate IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""This is what beer is all about. First swallow offers a nice little bite, followed by a blossom of flavors delivered by our handpicked aromatic hops. Flavor carries through the end with a full fisted kick of alcohol content that rocks the Richter scale at 6.5%. A nose of citrus with a floral essence of spice tickles the tongue in this ode to hops. Discover an IPA that encourages how to enjoy what beer is all about."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,50,1
-victory_brewing-hop_wallop,0,0,245106212864,"{""name"":""Hop Wallop"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We celebrate the pioneering spirit of old Horace 'Hop' Wallop and those who dare mighty adventurous things in this vivid, robust ale. As our annual homage to the hop harvest, expect loads of aromatic splendor and bitter beauty."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,17,1
-widmer_brothers_brewing-sweet_betty_classic_blonde_ale,0,0,245748137984,"{""name"":""Sweet Betty Classic Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
-wdi_bru_huus-ur_weizen,0,0,245749317633,"{""name"":""Ur-Weizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
-st_austell_brewery-tribute_premium_cornish_ale,0,0,245106540544,"{""name"":""Tribute Premium Cornish Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_austell_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Supreme Champion Ale of Cornwall as\r\nvoted by CAMRA*, and the South West's Favourite cask beer**, Tribute is a popular\r\nfavourite with locals and visitors to Cornwall, as well as being a much sought after guest ale throughout the rest of the UK. It is brewed using specially grown Cornish Gold Malt and is a perfect accompaniment to chicken, gammon or fish. The ideal alternative to a fine white wine."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,19,1
-the_church_brew_works-mad_brewer_maibock,0,0,245106409472,"{""name"":""Mad Brewer Maibock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A bock beer is required by German law to start at 17°Plato. For those who are interested, °Plato is a measurement of the sugar content before fermentation. It is a very malty lager beer with medium hop bitterness. A maibock is a light to amber colored bock beer. A Maibock is very similar to a Helles/pale bock. Maibocks were originally brewed for the coming of spring, hence the name Mai (German for May). The Mad Brewer Maibock is medium amber in color. Though similar in color to our Pipe Organ Pale Ale, it is very different in character. Don’t let it get you though, it’s a very strong beer at about 7% alcohol. It has a very clean and malty nose. The hop bitterness is evident, but not dominant. The Mad Brewer Maibock will finish quite full and have a delicate sweetness."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,18,1
-utenos_alus-porter,0,0,245121220611,"{""name"":""Porter"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""utenos_alus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
-selin_s_grove_brewing_co-selin_s_grove_ipa,0,0,245001355265,"{""name"":""Selin's Grove IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""selin_s_grove_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
-terrapin_beer_company-terrapin_all_american_imperial_pilsner,0,0,245103788033,"{""name"":""Terrapin All-American Imperial Pilsner"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Help us celebrate American Independence and American Beer Month in July with the release of the Terrapin All-American Imperial Pilsner.\r\n\r\nThis beer was brewed using only American malts, American hops, and American yeast. Who says you have to import ingredients from Germany to make a true Pilsner?\r\n\r\nOf course, this Pilsner is made “Terrapin Style”. Hence the 75 B.U.’s, the 7.5% alcohol and the term “IMPERIAL Pilsner”.""}",1,12,1
-viking_brewing-copperhead_premium_ruby_lager,0,0,245751939072,"{""name"":""Copperhead Premium Ruby Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""viking_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,57,1
-yegua_creek_brewing_dallas-golden_wheat,0,0,245752135682,"{""name"":""Golden Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
-thomas_hooker_brewing-hooker_oktoberfest,0,0,245112963073,"{""name"":""Hooker Oktoberfest"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_hooker_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally brewed to celebrate the beginning of the German brewing season and the 1810 wedding of crown prince Ludwig of Bavaria and his bride-to-be, princess Therese of Saxon-Hildburghausen. This amber beer was brewed in March (\""Marzenbier\"") and left to age in cool lagering caves during the heat of the summer. Our rich and satisfying Bavarian-style OctoberFest comes from a special blend of imported German malts that creates a full-bodied brew and stresses a malty flavor and lingering aroma. Gently hopped and delicately balanced, its true-to-style, slow fermentation and long, cold maturation produces a luxuriously smooth, award-winning brew."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,34,1
-surly_brewing-darkness,0,0,245113356288,"{""name"":""Darkness"",""abv"":10.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""surly_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Russian Imperial Stout is a sipper. Problem is that you want to sip it all night. Look for this one to be released when the leaves change color and Halloween is approaching. Brewed with a blend of 8 different malts, oats and candi sugar. This huge stout reflects Surly's commitment to brewing intensely flavored beers in small batches. Only 25 barrels of this beer were brewed."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,35,1
-upstream_brewing_old_market-dundee_scotch_ale,0,0,245114470400,"{""name"":""Dundee Scotch Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Dundee Scotch Ale begins with a traditional \r\nsweetness and finishes with a full, malty flavor. Don’t be fooled by the dark color—this beer is delicious and surprisingly easy to drink."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,37,1
-the_bruery-orchard_white,0,0,245119647744,"{""name"":""Orchard White"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Orchard White is an unfiltered, bottle conditioned Belgian-style witbier. This hazy, straw yellow beer is spiced with coriander, citrus peel and lavender added to the boil and whirlpool. A spicy, fruity yeast strain is used to add complexity, and rolled oats are added for a silky texture."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,50,1
-victory_brewing-prima_pils,0,0,245106212865,"{""name"":""Prima Pils"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Heaps of hops give this pale lager a bracing, herbal bite over layers of soft and smooth malt flavor. This refreshing combination of tastes makes Prima a classy quencher in the tradition of the great pilsners of Europe. Dry and delightful, this is an elegant beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,17,1
-willoughby_brewing-wenceslas,0,0,245748137985,"{""name"":""Wenceslas"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""willoughby_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
-weyerbacher_brewing_company-scotch_ale,0,0,245749383168,"{""name"":""Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Exceptionally smooth and thoroughly robust, Weyerbacher Scotch Ale has a deep delicious flavor that will warm you down to your wee little bones. Malty and roasty on the palate, and with distinctive caramel notes, this beer will satisfy the desires of any malty beer aficionado. \r\n\r\nWeyerbacher Scotch Ale is our interpretation of a beer style originating from Scotland, where the chilly damp weather calls for a hearty beer. Lacking the preservative powers of hops, scotch ales were brewed with high alcohol content to prevent spoilage. And at 8.7% ABV (alcohol by volume) Weyerbacher Scotch Ale definitely contains a warming belt.\r\n\r\nWe brew Weyerbacher Scotch Ale mostly in the cooler months of the year. Check out the Upcoming Events and Beers page for the next time it will be at a beer store near you."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,38,1
-sweetwater_brewing_casper-wild_wyo_wheat,0,0,245106606080,"{""name"":""Wild Wyo Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_casper"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-troegs_brewing-scratch_11_2008,0,0,245106409473,"{""name"":""Scratch #11 2008"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Next up, we present Scratch Beer #11-2008, a Bitter. Back in the day, we used to brew a little number called Tröegs ESB. Even though this beer was retired almost six years ago, we still get numerous Tröegs old-schoolers (Martha) begging for its return.\r\n\r\nWell hang onto your boot straps because Scratch #11 is about as close as we can get to the original ESB without firing up the old brew kettle. The Scratch #11 recipe originates from Chris’ stint at England’s University of Sunderland brewing program. After returning to Colorado the brothers drew on Chris’ experience and brewed pilot batches tweaking that recipe. The ESB production recipe has direct bloodlines to these pilot batches.\r\n\r\nThe Thames Valley ale yeast and the roasted barley create a biscuit flavor with nutty undertones. Combining these flavors with the earthiness of East Kent Golding hops creates one hell of a fine session beer. Take in the deep mahogany beauty of this beer and breathe in the full hoppy nose. It’s not the ESB, but it’s damn special."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,18,1
-weinkeller_brewery_berwyn-pilsner,0,0,245751742464,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
-ship_inn_brewpub-pheasant_plucker,0,0,245001355266,"{""name"":""Pheasant Plucker"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,49,1
-thomas_kemper_brewing,0,0,245103788034,"{""name"":""Thomas Kemper Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98134"",""country"":""United States"",""phone"":""1-260-682-8322"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""91 South Royal Brougham""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.5924,""lon"":-122.334}}",1,12,1
-weyerbacher_brewing_company-weyerbacher_juliet,0,0,245752004608,"{""name"":""Weyerbacher Juliet"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,57,1
-yuengling_son_brewing-yuengling_lager_light,0,0,245752135683,"{""name"":""Yuengling Lager Light"",""abv"":3.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""True to its American heritage, Yuengling Light Lager is an exceptional brew that appeals to consumers who don't want to sacrifice character for a low-calorie light beer. It has been masterfully developed to maintain the full flavor profile akin to our flagship Lager brand. Skillfully pairing a caramel malt flavor and mild hop character creates a beautifully rich-colored beer with deep amber highlights that finishes smooth and clean. With only 99 calories, Yuengling Light Lager is a uniquely refreshing beer that brings new dimension to the meaning light beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,58,1
-three_floyds_brewing-dark_lord_russian_imperial_stout,0,0,245112963074,"{""name"":""Dark Lord Russian Imperial Stout"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Gargantuan Russian Stout brewed with coffee, molasses, and honey."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,34,1
-tabernash_brewing-dunkel_weizen,0,0,245113356289,"{""name"":""Dunkel Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-voodoo_brewing_co_llc-big_black_voodoo_daddy,0,0,245749055488,"{""name"":""Big Black Voodoo Daddy"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our Imperial Stout that we age in conditioning tanks with oak staves. This adds a classic character of old world aging with out the Bourbon tones. This black ale is about 12% alc. and very rich in roasted and chocolate malt tones. Velvety smooth and able tobe aged for years. For now this will be a Seasonal Beer Offering. \r\n\r\nAll Beers to be bottle conditioned and Refermented."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,37,1
-the_cambridge_house-old_mill_pond_esb,0,0,245119647745,"{""name"":""Old Mill Pond ESB"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""As English style extra special bitter, brewed using the finest malt and hops from England to produce a well balanced medium body pint."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,50,1
-voodoo_brewing_co_llc-voodoo_love_child,0,0,245746237440,"{""name"":""Voodoo Love Child"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our Gran Met Ale aged on intimate Passion Fruit, Raspberry and Michigan Tart Cherry. Lightly spiced with passion. Light Reddish hue and with a alcohol strength of 10% and nicely carbonated in the bottle. \r\n\r\nAgain Bottle Conditioned and Fermented. \r\n\r\nEnjoy a couple and have your own Voodoo Love Child later!!!"",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,17,1
-yards_brewing,0,0,245748137986,"{""name"":""Yards Brewing"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19125"",""country"":""United States"",""phone"":""1-215-634-2600"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2439 Amber Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.9831,""lon"":-75.1274}}",1,31,1
-wynkoop_brewing-two_guns_pilsner,0,0,245749383169,"{""name"":""Two Guns Pilsner"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Czech style Pilsner, Two Guns is golden in color with a soft malt character derived from Bohemian barley and just enough spicy bitterness to make another tasted desirable."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,38,1
-third_street_ale_works-old_redwood_porter,0,0,245106671616,"{""name"":""Old Redwood Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""third_street_ale_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
-twisted_pine_brewing_company,0,0,245106475008,"{""name"":""Twisted Pine Brewing Company"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80301"",""country"":""United States"",""phone"":""303.786.9270"",""website"":""http://www.twistedpinebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established in 1995, Twisted Pine Brewing Company produces only 100% natural, unpasteurized pure malt ales, batch brewed and hand-crafted. Because we believe that craft beer is best enjoyed fresh, Twisted Pine ales can only be found throughout Colorado. By maintaining only a local presence we feel proud that our beers capture the full flavor and variety of style found at our brewery. It is our intention to bring to you a select family of individually distinctive ales that we as brewers would enjoy drinking ourselves. That is our final measure. We ignore costs, fads, and difficulty in creating our ales. And, while we are very serious about the art and business of beer making, we try to avoid taking ourselves too seriously. After all, we realize brewing a fine beer isn't exactly nuclear physics. It's something far more important. -Twistedpine.com"",""address"":[""3201 Walnut Street Ste A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.0201,""lon"":-105.251}}",1,18,1
-yakima_brewing_and_malting_grant_s_ales-hefeweizen,0,0,245751808000,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,55,1
-sierra_nevada_brewing_co-harvest_ale,0,0,245001420800,"{""name"":""Harvest Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The cornerstone of our Harvest series is the beer that started the modern-day fresh hop ale phenomenon in America, our original Harvest Ale. \r\n\r\nCreated in 1996, Harvest Ale features Cascade and Centennial hops from the Yakima Valley in Eastern Washington. These hops are harvested and shipped as “wet” un-dried hops—the same day they are picked—to our brewery in Chico where our brewers eagerly wait to get them into the brew kettle while their oils and resins are still at their peak."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-three_floyds_brewing-dreadnaught_imperial_ipa,0,0,245103853568,"{""name"":""Dreadnaught Imperial IPA"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover’s dream! Mango and peach aromas with a crisp citrus finish."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,12,1
-white_oak_cider-1997,0,0,245752004609,"{""name"":""1997"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_oak_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
-thunderhead_brewery-american_wheat,0,0,245112963075,"{""name"":""American Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
-tampa_bay_brewing,0,0,245113421824,"{""name"":""Tampa Bay Brewing"",""city"":""Tampa"",""state"":""Florida"",""code"":""33605"",""country"":""United States"",""phone"":""1-813-247-1422"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1812 North 15th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":27.9607,""lon"":-82.4433}}",1,35,1
-voodoo_brewing_co_llc-wynona_s_big_brown_ale,0,0,245749121024,"{""name"":""Wynona's Big Brown Ale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is named after a song that sparked the idea to make this ale. Brown ales seem to be there, but not really there, do you know what I mean? Well that won't be the mistake with Wynona! We Voodooed out this style and added more that's what we say. Mildly hoppy and smooth with hints of chocolate and tons of brown malt to let you know it's there. Currently 7.3% by vol. \r\n\r\nBottle conditioned and Refermented. \r\n\r\nGet down with the brown, You'll be Happy You Did!!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
-the_church_brew_works,0,0,245119647746,"{""name"":""The Church Brew Works"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15201"",""country"":""United States"",""phone"":""412-688-8200"",""website"":""http://churchbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3525 Liberty Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4624,""lon"":-79.9645}}",1,50,1
-water_tower_brewing-old_ls_barleywine,0,0,245746237441,"{""name"":""Old LS Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_tower_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
-zea_rotisserie_and_brewery-z_p_a_india_pale_ale,0,0,245748203520,"{""name"":""Z.P.A. India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
-thirstybear_brewing-thirsty_ipa,0,0,245106737152,"{""name"":""Thirsty IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-victory_brewing-wild_devil_ale,0,0,245746302976,"{""name"":""Wild Devil Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
-yegua_creek_brewing_dallas-icehaus_pale_ale,0,0,245751808001,"{""name"":""Icehaus Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-sly_fox_brewhouse_and_eatery_phoenixville,0,0,245118926848,"{""name"":""Sly Fox Brewhouse and Eatery - Phoenixville"",""city"":""Phoenixville"",""state"":""Pennsylvania"",""code"":""19460"",""country"":""United States"",""phone"":""1-610-935-4540"",""website"":""http://www.slyfoxbeer.com/index1.asp"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A family owned brewpub founded in 1995. A second location, in Royersford, PA, was opened in 2004 and includes a full production brewery as well as an accompanying restaurant. Head brewer is Brian O'Reilly, a multi-GABF Medal winner. Sly Fox packages its beers in cans, 22oz and 750ml bottles, but not in the standard 12oz-er. The pub is noted for its annual Bock Festival & Goat Race (winning goat's name goes on the year's MaiBock) and the IPA Project, a year-long program of single varietal beers culminating in an Imperial IPA using all those varietals, released at a day-long party every December when all the IPAs are on draught."",""address"":[""519 Kimberton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.1298,""lon"":-75.5499}}",1,49,1
-trap_rock_restaurant_and_brewery-hathor_red_lager,0,0,245103853569,"{""name"":""Hathor Red Lager"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
-williams_brothers_brewing_company,0,0,245752004610,"{""name"":""Williams Brothers Brewing Company"",""city"":""Alloa"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01259)-725511"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""New Alloa Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.1163,""lon"":-3.7954}}",1,57,1
-tongerlo,0,0,245113028608,"{""name"":""Tongerlo"",""city"":""Westerlo"",""state"":""Antwerp"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":""http://www.tongerlo.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.0873,""lon"":4.9178}}",1,34,1
-the_alchemist-alena,0,0,245113421825,"{""name"":""Alena"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,35,1
-whitstable_brewery-east_india_ipa,0,0,245749186560,"{""name"":""East India IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitstable_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,37,1
-the_livery-herb_superb,0,0,245119713280,"{""name"":""Herb Superb"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This India Pale Ale is brewed with English Maris Otter pale malt and Chocolate malt, giving it a dark color and is generously hopped with English Fuggles hops. Named for mug club member and brewery supporter Herb Caldwell."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,50,1
-weyerbacher_brewing_company-weyerbacher_india,0,0,245746302976,"{""name"":""Weyerbacher India"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest in our Brewers’ Select One-offs, India is a West Coast style IPA at [7.2%] ABV, with incredibly delicious hoppiness! Golden in color, this beer is tilted way over toward the hops by way of less specialty malts used in the mash. Draft will be going out to select wholesalers in PA, NJ, FL, and MD.” 70+ IBU’s."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
-trade_winds_brewing-paniolo_ale,0,0,245106737153,"{""name"":""Paniolo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
-victory_brewing-workhorse_porter,0,0,245746368512,"{""name"":""Workhorse Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
-youngs_company_brewery-double_chocolate_stout,0,0,245751808002,"{""name"":""Double Chocolate Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, creamy stout with roasted chocolate flavors. A perfect dessert beer."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,55,1
-southend_brewery_and_smokehouse_charleston-blonde_light,0,0,245118926849,"{""name"":""Blonde Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
-trinity_brewing_company-flo_ipa,0,0,245103919104,"{""name"":""Flo IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trinity_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
-yazoo_brewing-sly_rye_porter,0,0,245752070144,"{""name"":""Sly Rye Porter"",""abv"":5.7,""ibu"":28.0,""srm"":29.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2011-04-17 12:32:26"",""description"":""A rich, chocolaty English Porter with a clean finish. We use the finest floor-malted Maris Otter malts from England, the same malts used for the best single-malt scotch. A portion of malted rye gives a spicy, slightly dry finish."",""style"":""Porter"",""category"":""North American Ale""}",1,57,1
-trap_rock_restaurant_and_brewery-ghost_pony_helles_lager,0,0,245113028609,"{""name"":""Ghost Pony Helles Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-the_livery-barrel_aged_synapse_esb,0,0,245113421826,"{""name"":""Barrel Aged Synapse ESB"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Extra Special Bitter, or ESB, were the benchmark beers for British brewers to serve to their special customers. Brewed with British pale and crystal malt, this reddish copper beer finishes with a subtle dose of English Fuggles hops."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,35,1
-wild_duck_brewing,0,0,245749186561,"{""name"":""Wild Duck Brewing"",""city"":""Eugene"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.0521,""lon"":-123.087}}",1,37,1
-tied_house_cafe_brewery_san_jose-alpine_gold,0,0,245119713281,"{""name"":""Alpine Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-troegs_brewing-scratch_23_2009_kellar_fest,0,0,245106737154,"{""name"":""Scratch #23 2009 Kellar Fest"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In honor of Oktoberfest, we give you Scratch #23-2009, Kellar Fest. This unfiltered lager features all German malts and noble hops. Fermented with the Augustinerbrau yeast strain, Kellar Fest is a blend of Bohemian Pils, Munich and Vienna malts. The Magnum hops provide a crisp bitterness and the Hallertau noble hops impart a slight earthy taste. Kellar Fest finishes crisp and dry with hints of fruit. Grab a lamb handle and savor this Kellar Fest.""}",1,19,1
-watch_city_brewing,0,0,245746368513,"{""name"":""Watch City Brewing"",""city"":""Waltham"",""state"":""Massachusetts"",""code"":""2453"",""country"":""United States"",""phone"":""1-781-647-4000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""256 Moody Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3718,""lon"":-71.2367}}",1,18,1
-yuengling_son_brewing-lord_chesterfield_ale,0,0,245751808003,"{""name"":""Lord Chesterfield Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""One of our distinct classic beers brewed since 1829, Yuengling Lord Chesterfield Ale has as much rich heritage as it does flavor and appeal. Crafted in a unique two-stage European brewing style for enhanced bitterness, it utilizes both conventional kettle hopping and dry hopping after fermentation resulting in a dry sharp finish. Brewed with select hops, its distinct robust flavor is derived from a delicate combination of sweet maltiness and lingering herbal bitterness. Lord Chesterfield Ale's bright gold color is complemented by a lightly laced foam head and fragrant zesty aroma. This fine Ale compares with the very best crafty-style beers. It pairs flawlessly with many foods including seafood dishes and fine cheeses."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
-southern_tier_brewing_co-heavy_weizen_imperial_unfiltered_wheat_ale,0,0,245118992384,"{""name"":""Heavy Weizen Imperial Unfiltered Wheat Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,49,1
-troegs_brewing-scratch_17_2009,0,0,245103919105,"{""name"":""Scratch #17 2009"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""O.G.: 12.7 Plato\r\nA.B.V.: 5.6%\r\nIBU: 43\r\nMalt: Pils\r\nYeast: Augustiner\r\nHops: Select, Tradition, Spalt, Glacier"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,12,1
-yegua_creek_brewing_dallas-white_rock_red,0,0,245752070145,"{""name"":""White Rock Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
-two_brothers_brewing-iditarod_imperial_stout,0,0,245113094144,"{""name"":""Iditarod Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
-the_lost_abbey,0,0,245113487360,"{""name"":""The Lost Abbey"",""city"":""San Marcos"",""state"":""California"",""code"":""92069"",""country"":""United States"",""phone"":""(800) 918-6816"",""website"":""http://www.lostabbey.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""155 Mata Way Suite 104""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.1406,""lon"":-117.15}}",1,35,1
-tied_house_cafe_brewery_san_jose-ironwood_dark,0,0,245119713282,"{""name"":""Ironwood Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
-twin_ports_brewing-gingered_ale,0,0,245106802688,"{""name"":""Gingered Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
-weyerbacher_brewing_company-imperial_pumpkin_ale,0,0,245746368514,"{""name"":""Imperial Pumpkin Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Yes that's right! The mother of all Pumpkin Ales is currently in transit to our wholesalers and should be out on shelves around mid-September. This 8.0% ABV pumpkin ale is heartier, spicier, and more \""caramelly\"" and \""pumpkiny\"" than its faint brethren! \r\n Perfect finisher on a cool autumn night, or match it up with a slice of pumpkin pie and fresh whipped cream. \r\n If you don't agree this is the mother of all pumpkin ales, then you just don't like mothers!"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,18,1
-spilker_ales,0,0,245118992385,"{""name"":""Spilker Ales"",""city"":""Cortland"",""state"":""Nebraska"",""code"":""68331"",""country"":""United States"",""phone"":""1-402-798-7445"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""300 West Fourth Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5058,""lon"":-96.707}}",1,49,1
-tucher_bru-dunkles_hefe_weizen,0,0,245103919106,"{""name"":""Dunkles Hefe Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-valley_brewing_company-indian_red_ale,0,0,245113094145,"{""name"":""Indian Red Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A flavorful Red Ale with a generous helping of fresh Cascade hops. A full-bodied unfiltered beer with a slightly dry and roasted finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
-thunderhead_brewery-belgian_brown,0,0,245113487361,"{""name"":""Belgian Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-titletown_brewing-befuddelator_doppelbock,0,0,245119713283,"{""name"":""Befuddelator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
-tworows_restaurant_brewery_dallas-barking_fish_porter,0,0,245106802689,"{""name"":""Barking Fish Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
-yaletown_brewing,0,0,245746434048,"{""name"":""Yaletown Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-688-0039"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1111 Mainland Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2755,""lon"":-123.121}}",1,18,1
-stone_brewing_co-imperial_russian_stout,0,0,245119057920,"{""name"":""Imperial Russian Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the authentic historical style of an Imperial Russian Stout, this ale is massive. Intensely aromatic (notes of anise, lack currants, coffee, roastiness and alcohol) and heavy on the palate, this brew goes where few can --- and fewer dare even try. The style originated from Czarist Russia's demand for ever thicker English stouts. Expect our version of this mysterious brew to pour like Siberian crude and taste even heavier!"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,49,1
-unibroue-seigneuriale,0,0,245103984640,"{""name"":""Seigneuriale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""The copper-colored body and generous foam\r\nhead of this amber ale tantalize the eyes but\r\nit's the complex flavor of Seigneuriale that\r\ndelivers a pleasant surprise. It is slightly\r\nsweet, malty and spicy, but a distinctive hop\r\ncharacter and notes of apricot brandy give\r\nSeigneuriale a truly unique character. \r\n\r\nWe recommending pairing it with carved ham,\r\napricot-glazed duck or squab, Thai shrimp\r\ncurry or a holiday fruit cake."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
-victory_brewing-festbier,0,0,245113094146,"{""name"":""Festbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Seductively smooth, this medium-bodied amber beauty is akin to the great Oktoberfest beers of Munich. All German malts and whole flower European hops make this lager true to style."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,34,1
-triumph_brewing_of_princeton-winter_wonder,0,0,245113487362,"{""name"":""Winter Wonder"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-trap_rock_restaurant_and_brewery-pacific_coast_ale,0,0,245119778816,"{""name"":""Pacific Coast Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-tyranena_brewing-bitter_woman_from_hell_extra_ipa,0,0,245106802690,"{""name"":""Bitter Woman From Hell Extra IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
-yuksom_breweries,0,0,245746434049,"{""name"":""Yuksom Breweries"",""city"":""Malli"",""state"":""Sikkim"",""code"":"""",""country"":""India"",""phone"":""91 03595-70205"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,18,1
-sweet_water_tavern_and_brewery-great_american_s_restaurant_pale_ale,0,0,245119057921,"{""name"":""Great American's Restaurant Pale Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweet_water_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A fruity, copper-colored ale with a firm maltiness & dry hop."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-voodoo_brewing_co_llc-4_seasons_ipa,0,0,245745516544,"{""name"":""4 Seasons IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ale is a wonderful example of marriage. Bitter Hops and Boasting Barley come together to make one of the most sought after ales of the Craft Beer masses. Bottle Conditioned and Refermented."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
-water_street_brewery,0,0,245748400128,"{""name"":""Water Street Brewery"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53202"",""country"":""United States"",""phone"":""1-414-272-1195"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1101 North Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0448,""lon"":-87.9114}}",1,34,1
-tsingtao,0,0,245113552896,"{""name"":""Tsingtao"",""city"":""Qingdao"",""state"":""Shandong"",""code"":"""",""country"":""China"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.0663,""lon"":120.383}}",1,35,1
-two_brothers_brewing-northwind_imperial_stout,0,0,245119778817,"{""name"":""Northwind Imperial Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,50,1
-victory_brewing-moonglow_weizenbock,0,0,245106868224,"{""name"":""Moonglow Weizenbock"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark amber wheat beer features fruity and spicy aromas galore. Significant strength underlies the pleasant citric appeal of this bock beer. Redolent with the flavors of harvest fruit, Moonglow typifies the traditional weizenbock-style so thoroughly enjoyed throughout Bavaria. Left unfiltered, its unique yeast strain gives Moonglow a radiance all its own."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,19,1
-tallgrass_brewing_co,0,0,245119123456,"{""name"":""Tallgrass Brewing Co."",""city"":""Manhattan"",""state"":""KS"",""code"":""66502"",""country"":""United States"",""phone"":""785-537-1131"",""website"":""http://www.tallgrassbeer.com"",""type"":""brewery"",""updated"":""2010-11-11 19:21:21"",""description"":"""",""address"":[""8845 Quail Lane""]}",1,49,1
-weyerbacher_brewing_company-old_heathen,0,0,245745582080,"{""name"":""Old Heathen"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich, velvety and deliciously complex, Old Heathen is a truly distinctive winter warmer. We use seven types of malt and two varieties of hops to bring forth this big brew. Quite robust and roasty on the palate, Old Heathen imperial stout has a wonderfully fruity nose and a moderately dry finish. The taste is highly complex- perhaps you'll even discern notes of espresso or chocolate. \r\n\r\nOld Heathen imperial stout is our interpretation of a beer style that originated in the 18th century. Brewed in England and exported to Germany, Scandinavia and Russia, these beers became fashionable among the members of the Czar's court. In order to survive long voyages they were brewed with high alcohol content to prevent spoilage. And at 8.0% ABV (alcohol by volume) Old Heathen definitely contains a warming belt. You may want to lay down a few bottles for future evaluation- this beer keeps well and will only get better with age.\r\n\r\nLike most of our beers, Weyerbacher Old Heathen is a perfect accompaniment to foods. Try it with rich stews, oysters, caviar or roasted meats. Old Heathen is also a perfect companion to chocolate desserts.\r\n\r\nOld Heathen is now available year-round."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,12,1
-wdi_bru_huus-dunkel,0,0,245748400129,"{""name"":""Dunkel"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
-tworows_restaurant_brewery_dallas,0,0,245113552897,"{""name"":""TwoRows Restaurant & Brewery - Dallas"",""city"":""Dallas"",""state"":""Texas"",""code"":""75206"",""country"":""United States"",""phone"":""1-214-696-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5500 Greenville Avenue #1300""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.8545,""lon"":-96.7687}}",1,35,1
-uinta_brewing_compnay-gelande_amber_lager,0,0,245119778818,"{""name"":""Gelande Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uinta_brewing_compnay"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-wdi_bru_huus-single_malt_bier,0,0,245746434048,"{""name"":""Single-Malt-Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
-the_blind_bat_brewery_llc,0,0,245119123457,"{""name"":""The Blind Bat Brewery LLC"",""city"":""Centerport"",""state"":""New York"",""code"":""11721"",""country"":""United States"",""phone"":""(631) 891-7909"",""website"":""http://www.blindbatbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""420 Harrison Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8959,""lon"":-73.3811}}",1,49,1
-white_winter_winery-dry_mead,0,0,245745582081,"{""name"":""Dry Mead"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_winter_winery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-weinkeller_brewery_berwyn-bavarian_weiss,0,0,245748400130,"{""name"":""Bavarian Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
-uehara_shuzou_co_ltd_echigo_beer_pub-koshihikari_echigo_beer,0,0,245113618432,"{""name"":""Koshihikari Echigo Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uehara_shuzou_co_ltd_echigo_beer_pub"",""updated"":""2011-07-23 20:37:34"",""description"":""Japanese Rice Lager"",""style"":""Out of Category"",""category"":""Other Style""}",1,35,1
-upstream_brewing_old_market-gold_coast_blonde_ale,0,0,245119844352,"{""name"":""Gold Coast Blonde Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Gold Coast Blonde is light in malt and hops and of course, golden in color. A great choice if you’re looking for true American beer flavor with a bit more malt than a light beer has to offer."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,50,1
-weeping_radish_restaurant_and_brewery_manteo,0,0,245746499584,"{""name"":""Weeping Radish Restaurant and Brewery - Manteo"",""city"":""Manteo"",""state"":""North Carolina"",""code"":""27954"",""country"":""United States"",""phone"":""1-800-896-5403"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""525 N Virginia Dare Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":35.8859,""lon"":-75.6697}}",1,19,1
-the_livery-cousin_jax,0,0,245119123458,"{""name"":""Cousin Jax"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \""Cousin Jack\"" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin! Also available barrel aged."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,49,1
-wild_river_brewing_and_pizza_cave_junction-light,0,0,245745647616,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
-weinkeller_brewery_berwyn-nut_brown_ale,0,0,245748531200,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
-unibroue-terrible,0,0,245113618433,"{""name"":""Terrible"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Topped by a sumptuous head of foam, La Terrible possesses a fruity aroma enriched with notes of roasted malt and Madeira. Its long lasting flavour is both elegant and full bodied.\r\n\r\nLa Terrible is a dark brown beer on lees and is part of a collection of exotic and refined Unibroue beers brewed using 100% natural raw materials. It may be drunk as an aperitif or as an after dinner digestive. It is equally a perfect accompaniment to the above-mentioned dishes or a pleasant alternative to coffee."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,35,1
-warsteiner_brauerei-warsteiner_premium_verum,0,0,245751021568,"{""name"":""Warsteiner Premium Verum"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,50,1
-weyerbacher_brewing_company-delta_ale,0,0,245746499585,"{""name"":""Delta Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A pitch black stout made with ginger, cinnamon and a touch of molasses. This medium–bodied ale has flavors of dark chocolate, roasted coffee beans and ginger snap cookies."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,19,1
-thomas_hooker_brewing-thomas_hooker_irish_red_ale,0,0,245119188992,"{""name"":""Thomas Hooker Irish Red Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_hooker_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Thomas Hooker's traditional Irish-Style Red Ale gets its warm, ruby color from an interesting blend of pale, caramel and roasted malts which promote a sweetness that's balanced with crisp, authentic, English-style hops. A very unique and drinkable red ale that's also favored by amber lovers.\r\nHooker Irish Red is drinks well year-round, not just on St. Paddy's day."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,49,1
-wisconsin_brewing,0,0,245745647617,"{""name"":""Wisconsin Brewing"",""city"":""Wauwatosa"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0495,""lon"":-88.0076}}",1,12,1
-weyerbacher_brewing_company-heresy,0,0,245748596736,"{""name"":""Heresy"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This incredibly intriguing Imperial Stout is made by aging our Old Heathen in some very famous Oak barrels that were used for aging bourbon! What do we have when we are done? A stout whose very essence has been enhanced. A stout whose complexity has been increased. A stout with notes of Oak, whiskey and vanilla melding together to create a new sensation. Have we gone too far this time? We don't think so. Heresy is a step above and a leap beyond the extraordinary. Taste it and see what everyone is talking about. 8.0% ABV"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,34,1
-van_honsebrouch-kasteel_blonde,0,0,245113618434,"{""name"":""Kasteel Blonde"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""van_honsebrouch"",""updated"":""2010-07-22 20:00:20"",""description"":""Slightly dangerous beer - tastes like an 8% blonde, delivers like nothing else. A little tart around the edges, due to the higher alcohol content, but otherwise a pleasant strong pils taste : not too much hop on the palate."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,35,1
-weyerbacher_brewing_company-decadence,0,0,245751087104,"{""name"":""Decadence"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Decadence is our Tenth Anniversay spiced amber ale. This is a very limited production, brewed only once, to celebrate ten fantastic years in business. This ale weighs in at 13% ABV and is a fantastic sipper, especially after dinner or consider paring it with a good book on a cool fall evening. Decadence is brewed with honey, cardamom spice and gentian (a rare botanical!) This ale is very unique and will develop finer character when aged at cellar temperatures."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
-whim_ales,0,0,245746565120,"{""name"":""Whim Ales"",""city"":""Buxton"",""state"":""Derby"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01298)-84991"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hartington""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.1407,""lon"":-1.8084}}",1,19,1
-trailhead_brewing_company-red_winter_ale,0,0,245119188993,"{""name"":""Red Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,49,1
-whitstable_brewery,0,0,245748662272,"{""name"":""Whitstable Brewery"",""city"":""Maidstone"",""state"":""Kent"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01622)-851007"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Little Telpits Farm, Woodcock Lane""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.2047,""lon"":0.6813}}",1,34,1
-vivungs_bryggeri,0,0,245748727808,"{""name"":""Vivungs Bryggeri"",""city"":""Romakloster"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":57.4985,""lon"":18.459}}",1,35,1
-wh_brakspear_sons-henley_ale,0,0,245751087105,"{""name"":""Henley Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wh_brakspear_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
-widmer_brothers_brewing-widmer_hefeweizen,0,0,245746565121,"{""name"":""Widmer Hefeweizen"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""A golden unfiltered wheat beer that is truly cloudy and clearly superb. Ever since Widmer introduced Hefeweizen to America in 1986, ours has been the standard by which all other Hefeweizens are judged.\r\n1998 and 2006 GABF Gold Medal Award Winner\r\n2004 Gold Medal Beer Cup\""\r\n-Widmer Brothers Brewing Company"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,19,1
-trailhead_brewing_company,0,0,245119188994,"{""name"":""Trailhead Brewing Company"",""city"":""Saint Charles"",""state"":""Missouri"",""code"":""63301"",""country"":""United States"",""phone"":""1-636-946-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""921 South Riverside Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.7745,""lon"":-90.484}}",1,49,1
-woodforde_s_norfolk_ales,0,0,245748662273,"{""name"":""Woodforde's Norfolk Ales"",""city"":""Norwich"",""state"":""Norfolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01603)-720353"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Woodbastwick""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.6842,""lon"":1.449}}",1,34,1
-walldorff_brew_pub-bistro_blonde,0,0,245748727809,"{""name"":""Bistro Blonde"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""An easy drinking ale that goes well with our food offerings. Also a great introduction to the world of craft brewing."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,35,1
-yazoo_brewing-pale_ale,0,0,245751152640,"{""name"":""Pale Ale"",""abv"":5.8,""ibu"":55.0,""srm"":6.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2011-04-17 12:25:31"",""description"":""A new version of an American classic. Our Yazoo Pale Ale bursts with spicy, citrusy hop aroma and flavor, coming from the newly discovered Amarillo hop. The wonderful hop aroma is balanced nicely with a toasty malt body, ending with a cleansing hop finish. Made with English Pale, Munich, Vienna, and Crystal malts, and generously hopped with Amarillo, Perle, and Cascade hops. Fermented with our English ale yeast."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,50,1
-yakima_brewing_and_malting_grant_s_ales-imperial_stout,0,0,245746565122,"{""name"":""Imperial Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
-troegs_brewing-scratch_beer_31_2010_citra_of_brotherly_love_ipa,0,0,245119188995,"{""name"":""Scratch Beer 31 - 2010 Citra Of Brotherly Love IPA"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch 31, the brothers and the brewers decided to revisit one of our favorite sweet spots – IPA – and have some fun with hop flavors. Dubbed ‘Citra of Brotherly Love’ in honor of Philly Beer week, Scratch #31 has generous amounts of Apollo, Cascade and Citra hops. This is our first use of Citra hops, which is known for an intense grapefruit aroma and flavor.\r\n\r\nWhile showcasing the intense Citra flavor we added additional bitterness with Apollo and Chinook hops as well. Scratch #31 went through a bed of Chinook hops in the hopback and was dry-hopped with Cascade and Citra hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
-yards_brewing-yards_saison,0,0,245748727808,"{""name"":""Yards Saison"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saisons were historically brewed to keep the farmhands happy and hydrated during the warm summer months. Crafted using Belgian pilsen malt and candi sugar, this golden Belgian style ale is a refreshing change from your usual beer lineup."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,34,1
-weinkeller_brewery_berwyn-dublin_stout,0,0,245748793344,"{""name"":""Dublin Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
-yazoo_brewing-dos_perros,0,0,245746630656,"{""name"":""Dos Perros"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Many Mexican beer styles today are descendants of old Austrian styles, from when Austria ruled Mexico in the late 19th century. Our Dos Perros is made with German Munich malt, English Pale malt, and Chocolate malt, and hopped with Perle and Saaz hops. To lighten the body, as many Mexican brewers do, we add a small portion of flaked maize. The result is a wonderfully bready malt aroma, balanced with some maize sweetness and a noble hop finish.\r\n\r\nFood Pairings: The toasty malt flavors go great with barbeque, grilled salmon, carmelized onions, and most hot and spicy foods. Try it with Mexican or Thai dishes.\r\n\r\nOG: 10.4 Plato\r\nFG: 3.3 Plato\r\nIBUs: 21\r\nSRM: 13\r\n3.5% abv"",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,19,1
-twin_ports_brewing-hopfenkopf,0,0,245119254528,"{""name"":""Hopfenkopf"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
-yegua_creek_brewing_dallas-cask_scotch_ale,0,0,245748793345,"{""name"":""Cask Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
-zea_rotisserie_and_brewery-category_5_strong_ale,0,0,245746630657,"{""name"":""Category 5 Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
-upland_brewing,0,0,245119254529,"{""name"":""Upland Brewing"",""city"":""Bloomington"",""state"":""Indiana"",""code"":""47404"",""country"":""United States"",""phone"":""1-812-336-2337"",""website"":""http://www.uplandbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Located in downtown Bloomington, just a few blocks from Courthouse Square, we are open (and brewing award-winning beers) every day of the year except Thanksgiving, Christmas Day, and New Year's Day. The Tap Room and Biergarten has six everyday Upland beers on tap with additional Seasonal brews (Oktoberfest, Winter Warmer, Chocolate Stout, Maibock�yea springtime!) throughout the year. (Check the News section opposite for seasonal release dates and related celebrations.) The Tap Room restaurant offers an eclectic menu of great pub grub (signature nachos, rib tips like no others) plus dinner fare that addresses sophisticated palates with cuisines from around the world. (Yes, we're a brew pub, but our wine list is excellent). Better yet, sign on to our Upland Update to learn who's performing. And while you're here be sure to check out the weekly dinner specials from the fertile imaginations of our excellent restaurant crew. Part of a group that's interested in brewing? Arrange for a brewery tour. We are proud of our hand-crafted, award-winning beers and would be delighted to guide you through the many stages involved in the brewing process. In the meantime, take the Virtual Tour for an inside look at how glorious stainless steel can be when directed to perform a noble task! Most of all, everyone here welcomes you to come by and partake of the Upland Experience�where great food, great beer, and great friends come together. Can't get to Bloomington? No problemo. As Indiana's largest microbrewer, you can find Upland beers in better stores, taverns, and restaurants throughout the state of Indiana."",""address"":[""350 West Eleventh Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1733,""lon"":-86.5369}}",1,49,1
-york_brewery,0,0,245748858880,"{""name"":""York Brewery"",""city"":""York"",""state"":"""",""code"":""YO1 6JT"",""country"":""England"",""phone"":""01904 621162"",""website"":""http://www.york-brewery.co.uk"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""12 Toft Green""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":53.9571,""lon"":-1.0905}}",1,35,1
-till,0,0,89984275906560,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,19,1
-upstream_brewing_old_market-american_wheat,0,0,245119254530,"{""name"":""American Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""A Silver Medal Winner in the American Hefenweizen category at the 2004 Great American Beer Festival, our American Wheat has a crisp and refreshing flavor."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
-valley_brewing_company-valley_brewing_london_tavern_ale,0,0,245119320064,"{""name"":""Valley Brewing London Tavern Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic English Style Mild with a light hop profile. London Tavern Ale is a well balanced beer with caramel flavor and English character. Only traditional English Kent Goldings and Fuggles hops are used."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,49,1
-wernesgruner_brauerei_gmbh,0,0,245750824960,"{""name"":""Wernesgrüner Brauerei GmbH"",""city"":""Steinberg-Wernesgrün, Germany"",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.wernesgruener.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Wernesgrüner Brewery or Wernesgrüner Brauerei GmbH is a brewery in Steinberg-Wernesgrün, Saxony, Germany. The brewery was founded in 1436 when the brothers Schorer acquired the rights to brew and open a tavern. After establishing property for bottling they soon began brewing on what would become the foundations of the Wernesgrüner Pils Legend. It is known as the aforementioned Pils Legend, because it was a bitter specialty during the communist period in Germany. [1] Throughout the company's history it has endured numerous changes of ownership. In 1762 the Günnel family bought the Schorer brewery. In 1774 the Männel family took over the bottling properties. Even though at the end of the 19th century the label now had five independent breweries, the families were still competing with each other. By 1910 the company had established itself throughout Germany and the Netherlands, and was even served on the renowned Hapag-Lloyd ships that ran from Hamburg to America.[1] The company was acquired by the Bitburger Braugruppe GmbH in 2002. The current output is 850,000 hl per year."",""address"":[]}",1,49,1
-weyerbacher_brewing_company-insanity,0,0,245750890496,"{""name"":""Insanity"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Insanity, just released this past November, 2004, is Weyerbacher's latest creation in the world of cutting edge beers. Insanity is made by aging our perfectly balanced Blithering Idiot Barleywine in oak bourbon casks. This incredible combination creates a melange of flavors such as malt, dates, oak, vanilla, and bourbon just to name a few.\r\n\r\n Insanity is 11.1% ABV. It is best enjoyed in a brandy snifter and served at 45-50 degrees F."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,49,1
-weyerbacher_brewing_company-muse_farmhouse_ale,0,0,245750956032,"{""name"":""Muse Farmhouse Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Muse, a Farmhouse Ale, is brewed \""somewhat\"" in the tradition of the style, but it has Weyerbacher fingerprints all over it! Made with Pale malt, a little carapils, raw wheat and raw oats, this warm weather seasonal is dry and ever so slightly tart on the pallet from the wheat and oats. At 6.2% abv, its a bit higher than your strictly traditional farmhouse, but not out of the realm, really. The wheat and oats makes the mouthfeel silky and light at the same time. They also bring some cloudiness to the brew, but don't be afraid! Hopped with Styrian Goldings and finished with Saaz, this beer has a noticable hoppy dryness which makes it a fine thirst quencher, something the original Farmhouse Ales were intended to be, served to workers out in the fields on hot summer days as a restorative.\r\nFermented with Forbidden Fruit yeast, at a very high temperature (78F), the spiciness developed is entirely from this traditional yeast strain, not from any kettle additions. Unfiltered, to enjoy this natural beauty, and imagine yourself out in the flat fields of Belgium! Cheers!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,49,1
-whitstable_brewery-whitstable_oyster_stout,0,0,245750956033,"{""name"":""Whitstable Oyster Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitstable_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
-wychwood_brewery-hobgoblin,0,0,245750956034,"{""name"":""Hobgoblin"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,49,1
-yards_brewing-yards_love_stout,0,0,245751021568,"{""name"":""Yards Love Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Straight from the heart of the City of Brotherly Love comes a dark and chocolatey seductive little stout dominated by roasted malt flavor. This is one Philly favorite that won't break your heart and will always love you back."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+id,flags,expiration,cas,value,rev,vbid,dtype
+alameda_brewhouse,0,0,244368670720,"{""name"":""Alameda Brewhouse"",""city"":""Portland"",""state"":""Oregon"",""code"":""97213"",""country"":""United States"",""phone"":""1-503-460-9025"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4765 NE Fremont""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5484,""lon"":-122.619}}",1,30,1
+abbey_wright_brewing_valley_inn,0,0,244371881984,"{""name"":""Abbey Wright Brewing/Valley Inn"",""city"":""Williamsport"",""state"":""Pennsylvania"",""code"":""17702"",""country"":""United States"",""phone"":""570.326.3383"",""website"":""http://www.valleyinnonline.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""204 Valley Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2225,""lon"":-77.0369}}",1,36,1
+allguer_brauhaus_ag_kempten,0,0,244377518080,"{""name"":""Allguer Brauhaus AG Kempten"",""city"":""Kempten"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)831-/-2050-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Beethovenstrae 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.7487,""lon"":10.5694}}",1,51,1
+ali_i_brewing,0,0,244368670721,"{""name"":""Ali`i Brewing"",""city"":""Honolulu"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":21.3069,""lon"":-157.858}}",1,30,1
+asheville_pizza_and_brewing_co,0,0,244371947520,"{""name"":""Asheville Pizza and Brewing Co."",""city"":""Asheville"",""state"":""North Carolina"",""code"":""28804"",""country"":""United States"",""phone"":""(828) 254-1281"",""website"":""http://www.ashevillepizza.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Asheville Brewpub, Brewery, Movie Theater and Pizzeria all rolled into 2 great places to meet and eat. Award winning beer and award winning pizza."",""address"":[""675 Merrimon Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6221,""lon"":-82.5536}}",1,36,1
+amstel_brouwerij-amstel_light,0,0,244377583616,"{""name"":""Amstel Light"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amstel_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,51,1
+allagash_brewing-allagash_fluxus_09,0,0,244368736256,"{""name"":""Allagash Fluxus 09"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,30,1
+atwater_block_brewing-dirty_blond,0,0,244372013056,"{""name"":""Dirty Blond"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Made with unmalted wheat, coriander and orange peel to help you live smart and enjoy everyday!"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,36,1
+andechser_klosterbrauerei,0,0,244377649152,"{""name"":""Andechser Klosterbrauerei"",""city"":""Andechs"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8152-/-376-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bergstrae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9775,""lon"":11.185}}",1,51,1
+allentown_brew_works,0,0,244368736257,"{""name"":""Allentown Brew Works"",""city"":""Allentown"",""state"":""Pennsylvania"",""code"":""18101"",""country"":""United States"",""phone"":""610.433.7777"",""website"":""http://www.thebrewworks.com/allentown-brewworks/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Allentown Brew Works is housed inside the historic Harold's Furniture Building at 812 W Hamilton Street. Years in the making, the new Allentown restaurant and brewery are part of the continuing vision of the Fegley family that established the original Bethlehem Brew Works in 1998. Proud to be part of the resurging downtown, the 400 seat restaurant is a testament to the vibrant heartbeat that thrives in this Queen City. Offering two and a half levels of dining, plus state of the art banquet facilities in The Hamilton Room, and multiple bars offering different atmospheres, as well as an outdoor casual Biergarten and a new seductive lower level lounge � Silk."",""address"":[""814 W Hamilton St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.6016,""lon"":-75.474}}",1,30,1
+atwater_block_brewing-dunkel,0,0,244372013057,"{""name"":""Dunkel"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our malty, sweet dark lager is a hometown favorite. Our Dunkel is packed with subtle roasted malt flavors without the excessive bitterness and heaviness of many dark beers and has a balanced hop finish.\r\n\r\nGABF Gold Winner"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+anheuser_busch-budweiser,0,0,244377649153,"{""name"":""Budweiser"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,51,1
+allguer_brauhaus_ag_kempten-bayrisch_hell,0,0,244368801792,"{""name"":""Bayrisch Hell"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+atwater_block_brewing-pilsner,0,0,244372078592,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+arcadia_brewing-india_pale_ale,0,0,244377649154,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+american_river_brewing,0,0,244368801793,"{""name"":""American River Brewing"",""city"":""Auburn"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8966,""lon"":-121.077}}",1,30,1
+atwater_block_brewing-x_line,0,0,244372078593,"{""name"":""X-Line"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+august_schell_brewing-caramel_bock,0,0,244377714688,"{""name"":""Caramel Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+anderson_valley_brewing-summer_solstice_cerveza_crema,0,0,244368867328,"{""name"":""Summer Solstice Cerveza Crema"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This copper colored ale is smooth, malty, and lightly sweet, with a delicate hint of spice for that oh-so-drinkable, extra velvety flavor. The character is lighter in body than its cousin our wildly popular Winter Solstice Seasonal Ale. This is a silky, creamy dream, perfect as a warm weather beer.\"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,30,1
+avery_brewing_company-czar_imperial_stout,0,0,244372078594,"{""name"":""Czar Imperial Stout"",""abv"":11.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+bbc_brewing_co_llc-dark_star,0,0,244377714689,"{""name"":""Dark Star"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,51,1
+augusta_brewing-tannhauser,0,0,244368867329,"{""name"":""Tannhauser"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augusta_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+bear_republic_brewery-apex,0,0,244372078595,"{""name"":""Apex"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Crafted with a blend of American and English malts and aggressively hopped with Pacific Northwest hops, this beer reflects what our brewers believe to be the Apex of IPA."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,36,1
+big_time_brewing-trombipulator,0,0,244377714690,"{""name"":""Trombipulator"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+augustiner_brau_munchen-weissbier,0,0,244368932864,"{""name"":""Weißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,30,1
+bierbrouwerij_st_christoffel-robertus,0,0,244372078596,"{""name"":""Robertus"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_st_christoffel"",""updated"":""2010-07-22 20:00:20"",""description"":""Christoffel Robertus is a low-fermenting ruby-red beer, brewed in the Münchener-style. It is a malty, fresh beer with a light sweetness. The typical hop bitterness found in Blond, is very lightly present in Robertus. The use of an extensive amount of selected barley gives Robertus the special malty taste and aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+boston_beer_company-samuel_adams_irish_red,0,0,244377780224,"{""name"":""Samuel Adams Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty and slightly sweet, balanced by earthy notes from the hops. The gentle rain and fertile soil of Ireland helped inspire this style of ale, known for being remarkably balanced. Pale and Caramel malts give the beer its rich, deep red color and distinctive caramel flavor. The sweetness of the malt is pleasantly balanced by a pronounced hop bitterness and an earthy note from the East Kent Goldings hops. Samuel Adams® Irish Red finishes smooth and leaves you wanting to take another sip."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,51,1
+baron_brewing_company-baron_pilsner,0,0,244368932865,"{""name"":""Baron Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our pilsner is a traditional Northern German Style Pilsner. It has a fantastic malty aroma with a slight spice from the hops. The head is brilliant white and floats on the clean pale lager. The sparkling mouthfeel gives way to a soft malt sweetness that is followed by a long, dry, crisp finish. The balanced clean finish taunts the mouth to take another drink. Lagered for a minimum of 8-12 weeks to ensure smoothness and drinkability.\r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,30,1
+big_buck_brewery_and_steakhouse_2-stout,0,0,244372144128,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery_and_steakhouse_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+brasserie_de_saint_sylvestre-3_monts,0,0,244377780225,"{""name"":""3 Monts"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_saint_sylvestre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+bavaria-club_colombia,0,0,244368932866,"{""name"":""Club Colombia"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":""La mejor cerveza de Colombia.""}",1,30,1
+bootleggers_steakhouse_and_brewery-34th_street_porter,0,0,244372144129,"{""name"":""34th Street Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
+brasserie_des_gants,0,0,244377780226,"{""name"":""Brasserie des Gants"",""city"":""Irchonwelz"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-068-28-79-36"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rue du Castel, 19""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.6204,""lon"":3.7592}}",1,51,1
+bear_republic_brewery-big_bear_black_stout,0,0,244368998400,"{""name"":""Big Bear Black Stout"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Big Bear, as the name implies, is a hefty, black, Russian Imperial-style stout. This bold stout boasts a rich, caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your teeth into. ...Big Bear's bold flavors are produced using a blend of Belgian and English roasted barley and crystal malts. Some unique flavors come forth in the malt character. ...Louisiana sweet molasses and dark brown sugar. This dark brew is well hopped with Chinook and Cascade hops, which are somewhat, masked by the malt. This is a balanced bold brew boasting an A.V.B. of 8.1% that can creep up on you, \""so don't get mauled\"". It has a dry roasted quality that masks its' high alchohol content, so drink responsibly. 2004 California State Fair, Silver Medal Winner; 2002 World Beer Cup, Gold Medal Winner; \r\n2002 Annual Bistro Beer Festival, Hayward, Gold Medal Winner; 2001 North American Brewers' Award, Honorable Mention - og 1.076, ABV 8.1%, IBU 68."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,30,1
+bootleggers_steakhouse_and_brewery,0,0,244372144130,"{""name"":""Bootleggers Steakhouse and Brewery"",""city"":""Bakersfield"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.3733,""lon"":-119.019}}",1,36,1
+brasserie_du_benin-ngoma_awooyo_special,0,0,244377780227,"{""name"":""Ngoma Awooyo Special"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_benin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+berliner_kindl_brauerei_ag,0,0,244368998401,"{""name"":""Berliner Kindl Brauerei AG"",""city"":""Berlin"",""state"":""Berlin"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)30-/-68992-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Werbellinstrasse 50""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.4793,""lon"":13.4293}}",1,30,1
+boston_beer_company-samuel_adams_scotch_ale,0,0,244372144131,"{""name"":""Samuel Adams Scotch Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a brew for adventurous beer drinkers. It is brewed with four malts: two row pale Harrington, Munich malt, chocolate malt, and a rare peat smoked malt commonly used by distillers of Scotch malt whiskey. This unique malt gives Samuel Adams® Scotch Ale its distinct, subtle smoky character and deep amber hue. Samuel Adams® Scotch Ale is brewed using traditional English hops, Goldings and Fuggles. This is a big brew dominated by malt flavors and aromas, rich and full bodied, slightly sweet. Its layered malt complexity lingers to a smooth and silky finish."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,36,1
+brauerei_schwelm-hefe_weizen,0,0,244495941632,"{""name"":""Hefe-Weizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schwelm"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
+21st_amendment_brewery_cafe-amendment_pale_ale,0,0,244375420928,"{""name"":""Amendment Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich golden hue color. Floral hop with sweet malt aroma. Medium mouth feel with malt sweetness, hop quenching flavor and well-balanced bitterness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+bill_s_tavern_brewhouse-thundermuck_stout,0,0,244369063936,"{""name"":""Thundermuck Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bill_s_tavern_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
+boulder_beer_company-gabf_25th_year_beer,0,0,244372209664,"{""name"":""GABF 25th Year Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,36,1
+brewer_s_art-proletary,0,0,244495941633,"{""name"":""Proletary"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewer_s_art"",""updated"":""2010-07-22 20:00:20"",""description"":""Black, smooth and easy to drink, this is a beer for the people!""}",1,51,1
+alesmith_brewing-old_numbskull_2003,0,0,244375420929,"{""name"":""Old Numbskull 2003"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+birrificia_le_baladin-nora,0,0,244369063937,"{""name"":""Nora"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+brasserie_des_cimes-yeti,0,0,244372209665,"{""name"":""Yeti"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_cimes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+brewmasters_restaurant_and_brewery_south,0,0,244495941634,"{""name"":""Brewmasters Restaurant and Brewery South"",""city"":""Kenosha"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.5847,""lon"":-87.8212}}",1,51,1
+amherst_brewing_company-boltwood_bock,0,0,244375420930,"{""name"":""Boltwood Bock"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light in color, full bodied and very malty, this lager has a toasted malt flavor. Brewed in February and usually on tap by May with a keg of the previous year's batch."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
+bj_s_restaurant_and_brewery-p_m_porter,0,0,244369063938,"{""name"":""P.M. Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
+brasserie_du_bocq-triple_moine,0,0,244372275200,"{""name"":""Triple Moine"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bocq"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+brouwerij_abdij_saint_sixtus-trappist_westvleteren_12,0,0,244496007168,"{""name"":""Trappist Westvleteren 12"",""abv"":11.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_saint_sixtus"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian beer has an everlasting tast. It has been choosen as the best beer in the world for several years!"",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,51,1
+anderson_valley_brewing-nitro_stout,0,0,244375420931,"{""name"":""Nitro Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+bj_s_restaurant_and_brewery-piranha_pale_ale,0,0,244369129472,"{""name"":""Piranha Pale Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+brasserie_dupont,0,0,244488732672,"{""name"":""Brasserie Dupont"",""city"":""Tourpes"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-069-67-10-66"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Basse 5""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.5718,""lon"":3.6508}}",1,36,1
+brouwerij_bavik_de_brabandere-petrus_aged_pale,0,0,244496007169,"{""name"":""Petrus Aged Pale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+bell_s_brewery_inc-batch_8000,0,0,244375486464,"{""name"":""Batch 8000"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Batch 8,000 is part of our commemorative series celebrating our progress with special brews. Our 8,000th batch is a special recipe to be brewed only once. It is wheat ale spiced with Coriander, Orange Peel, and Paradise Seed. Best consumed fresh."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,45,1
+boulevard_brewing_company-single_wide_i_p_a,0,0,244369129473,"{""name"":""Single-Wide I.P.A."",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest addition to the Boulevard family of year-around beers, Single-Wide I.P.A. is our take on a style that originated in 18th century Great Britain. This American version -- inspired by our Smokestack Series Double-Wide I.P.A. -- boasts a heady combination of six varieties of hops, some of which were employed for dry-hopping."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
+brasserie_fantme,0,0,244488798208,"{""name"":""Brasserie Fantme"",""city"":""Soy"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)86-47-70-44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Pral 8""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.286,""lon"":5.5127}}",1,36,1
+brouwerij_de_gouden_boom-blanche_de_bruges,0,0,244496007170,"{""name"":""Blanche de Bruges"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_gouden_boom"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+boston_beer_company-samuel_adams_honey_porter,0,0,244375486465,"{""name"":""Samuel Adams Honey Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark, full flavored English porter with Scottish heather honey. Samuel Adams® Honey Porter is a full-flavored, full-bodied English porter with a substantial roasted malt character, offering a smooth, rounded finish. This beer is brewed with traditional English Ale hops and is dry-hopped with East Kent Goldings, known for their spicy aroma and distinctive, earthy flavor. We brew Honey Porter with Scottish heather honey which balances the spiciness of the hops.\r\n\r\nThis brew is the perfect complement to glazed ham, spicy chili, and roasted vegetables like beets and carrots, which bring out the herbal notes found in the hops and the sweetness of the honey. Samuel Adams® Honey Porter also pairs well with rich desserts such as baklava and molasses cookies."",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
+brasserie_de_blaugies-biere_darbyste,0,0,244369129474,"{""name"":""Bière Darbyste"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_blaugies"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,30,1
+brasserie_la_caracole,0,0,244488798209,"{""name"":""Brasserie La Caracole"",""city"":""Falmignoul"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-082-74-40-80"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cte Marie-Thrse 86""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.2024,""lon"":4.8914}}",1,36,1
+brouwerij_nacional_balashi,0,0,244496072704,"{""name"":""Brouwerij Nacional Balashi"",""city"":"""",""state"":"""",""code"":"""",""country"":""Aruba"",""phone"":""297 854805"",""website"":""http://www.balashi.com/balashi/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,51,1
+boulevard_brewing_company-bully_porter,0,0,244375486466,"{""name"":""Bully! Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The intense flavors of dark-roasted malt in Boulevard’s rendition of the classic English porter are perfectly balanced by a generous and complex hop character. Bully! Porter’s robust nature makes it the ideal companion to a variety of foods, from seafood to chocolate."",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
+brasserie_de_brunehaut-brasserie_de_brunehaut_bio_biere_ambree_organic,0,0,244369195008,"{""name"":""Brasserie de Brunehaut Bio Bière Ambrée (Organic)"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber copper color with a beige head.\r\nCaramel malt aromas reminiscent of vanilla, along with toffee, butterscotch and ripe fruits. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\r\nHazy amber to brown coloured beer, with a fluffy off-white head. Nice aroma of spices, yeast and oak. The alcohol subtle. Flavour is moderately spicy and slightly fruity, with balanced hops. \r\nThis beer is certified organic."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,30,1
+brauerei_beck-st_pauli_girl_beer,0,0,244488863744,"{""name"":""St.Pauli Girl Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+brouwerij_sint_jozef,0,0,244496072705,"{""name"":""Brouwerij Sint-Jozef"",""city"":""Opitter"",""state"":""Limburg"",""code"":"""",""country"":""Belgium"",""phone"":""32-089-86-47-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Itterplein 19""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1168,""lon"":5.6464}}",1,51,1
+brasserie_de_tahiti-hinano,0,0,244375552000,"{""name"":""Hinano"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_tahiti"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+brasserie_ellezelloise-la_biere_des_collines_van_de_saisis,0,0,244486373376,"{""name"":""La Bière des Collines van de Saisis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+brauerei_beck,0,0,244488863745,"{""name"":""Brauerei Beck"",""city"":""Bremen"",""state"":""Bremen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)421-/-50940"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Deich 18-19""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":53.0787,""lon"":8.7901}}",1,36,1
+burgerbrau_wolnzach-hell,0,0,244496072706,"{""name"":""Hell"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burgerbrau_wolnzach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+brasserie_pietra,0,0,244492533760,"{""name"":""Brasserie Pietra"",""city"":""Furiani"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-04.95.30.14.70"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Route de la Marana""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.6483,""lon"":9.4529}}",1,45,1
+brasserie_grain_d_orge,0,0,244486504448,"{""name"":""Brasserie Grain D'Orge"",""city"":""Ronchin"",""state"":"""",""code"":"""",""country"":""France"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Once named Brasserie Jeanne D'Arc, this Brewery had changed their name due to change in management."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.6054,""lon"":3.0775}}",1,30,1
+brauerei_gbr_maisel_kg,0,0,244488863746,"{""name"":""Brauerei Gbr. Maisel KG"",""city"":""Bayreuth"",""state"":"""",""code"":""95445"",""country"":""Germany"",""phone"":""+49 (0) 9 21/4 01-0"",""website"":""http://www.maisel.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hindenburgstrasse 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.9477,""lon"":11.5659}}",1,36,1
+cains-fa,0,0,244496138240,"{""name"":""FA"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:15:54"",""description"":""FA is no small beer: despite its deceptively pale golden colour, it boasts a big, smooth flavour and strong punch. Brewed with the finest English malts, and conditioned in cask with dry hops to produce fresh hop aromas and a fuller flavour, delighting the mouth and stimulating the tongue."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,51,1
+brauhaus_johann_albrecht_konstanz-weizen,0,0,244492599296,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,45,1
+breckenridge_brewery-471_extra_esb,0,0,244486504449,"{""name"":""471 Extra ESB"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+breckenridge_bbq_of_omaha-raspberry_porter,0,0,244488863747,"{""name"":""Raspberry Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+chama_river_brewing-rye_on,0,0,244496138241,"{""name"":""Rye On"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chama_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+brausttte_der_steirerbrau_aktiengesellschaft,0,0,244492664832,"{""name"":""Brausttte der Steirerbrau Aktiengesellschaft"",""city"":""Graz"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0316/502-3545"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Reiningshausstrae 1-7""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.0679,""lon"":15.4417}}",1,45,1
+brewery_budweiser_budvar,0,0,244486569984,"{""name"":""Brewery Budweiser Budvar"",""city"":"""",""state"":""Ceske Budejovice"",""code"":"""",""country"":""Czech Republic"",""phone"":"""",""website"":""http://www.budvar.cz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.9739,""lon"":14.475}}",1,30,1
+breckenridge_brewery-autumn_ale,0,0,244488929280,"{""name"":""Autumn Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
+cherryland_brewing,0,0,244496138242,"{""name"":""Cherryland Brewing"",""city"":""Sturgeon Bay"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8342,""lon"":-87.377}}",1,51,1
+brewdog_ltd-paradox_speyside,0,0,244492664833,"{""name"":""Paradox Speyside"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,45,1
+bridgeport_brewing-old_knucklehead_1992,0,0,244486569985,"{""name"":""Old Knucklehead 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+brewery_de_troch-chapeau_exotic_lambic,0,0,244488994816,"{""name"":""Chapeau Exotic Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,36,1
+clipper_city_brewing_co-pale_ale,0,0,244496203776,"{""name"":""Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+brewery_creek_brewing-irish_stout,0,0,244492664834,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Guinness\"" is the prototype of all modern stouts. Many people, however, don't realize that there are different varieties of \""Guinness\"" brewed around the world. \""Draught Guinness* and \""Foreign Extra Stout\"" are the two primary types brewed in Ireland. Foreign Extra is the one I have emulated. It is closer in style to the London Porters of old than to modern stout. Very dark and rich, not as dry as Draught, about 6% abv and around 60 IBUs (that's hop bitterness). I used \""First Gold\"" hops because that's what I could get. Guinness use Nitrogen mixed with carbon dioxide to dispense their stout which adds to the creamy mouth-feel. BTW: The \""Imported\"" Guinness you buy here in the US comes from Canada. It could just as well be brewed in the US but the common wisdom in the brewing world is that Americans prefer \""imported\"" beers and will pay more for them."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+broughton_ales-kinmount_willie_stout,0,0,244486569986,"{""name"":""Kinmount Willie Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
+bridgeport_brewing-blue_heron_pale_ale,0,0,244488994817,"{""name"":""Blue Heron Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+dark_horse_brewing_co-fore_smoked_stout,0,0,244496203777,"{""name"":""Fore Smoked Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with all malted barley and peat malt (smoked malt). This beer is full bodied with chocolate, roasted barley flavors, and a smokey almost BBQ finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
+brewmasters_restaurant_and_brewery_south-cherry_ice,0,0,244492730368,"{""name"":""Cherry Ice"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,45,1
+brouwerij_sterkens,0,0,244486569987,"{""name"":""Brouwerij Sterkens"",""city"":""Hoogstraten-Meer"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-03-317-00-50"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Meerdorp 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4439,""lon"":4.7386}}",1,30,1
+bridgeport_brewing-bottle_conditioned_porter,0,0,244488994818,"{""name"":""Bottle Conditioned Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
+deschutes_brewery-bachelor_esb,0,0,244628062208,"{""name"":""Bachelor ESB"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Standing alone, distant from the Three Sisters mountains nestled to the north, Bachelor Butte was originally called \""Brother Jonathan\"" and then simply \""The Bachelor\"" before becoming widely known today as Mt. Bachelor."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,51,1
+bridgeport_brewing-esb,0,0,244492730369,"{""name"":""ESB"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+browar_okocim-o_k_beer,0,0,244486635520,"{""name"":""O.K. Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_okocim"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+brooklyn_brewery-brooklyn_lager,0,0,244489060352,"{""name"":""Brooklyn Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brooklyn Lager, the Brewery's flagship label, is New York's \""hometown\"" beer, brewed to a pre-Prohibition recipe that dates back to the days when Brooklyn was the brewing capital of the East Coast. Brooklyn Lager has won numerous awards. Wrote Michael Jackson in the Simon & Schuster Pocket Guide to Beer: \""The dry-hopped, fresh, flowery, firm, flavourful, Brooklyn Lager **-*** started well, in 1988, and has gained in character since.\""""}",1,36,1
+desnoes_geddes_ltd-dragon_stout,0,0,244628127744,"{""name"":""Dragon Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""desnoes_geddes_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
+brouwerij_oud_beersel-oude_gueuze_vielle,0,0,244492730370,"{""name"":""Oude Gueuze Vielle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_oud_beersel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,45,1
+bull_bush_pub_brewery-royal_arms_ipa,0,0,244486635521,"{""name"":""Royal Arms IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
+brouwerij_bosteels-triple_karmeliet,0,0,244489060353,"{""name"":""Triple Karmeliet"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bosteels"",""updated"":""2010-07-22 20:00:20"",""description"":""LOOK:\r\nTripel Karmeliet is a very refi ned and complex golden-to-bronze brew with a fantastic creamy head. These characteristics derive not only from the grains used but also from restrained hopping with Styrians and the fruity nature (banana and vanilla) of the house yeast.\r\n\r\nSMELL:\r\nVery refined and complex. Hints of vanilla mixed with citrus aromas.\r\n\r\nTASTE:\r\nTripel Karmeliet has not only the lightness and freshness of wheat, but also the creaminess of oats together with a spicy lemony almost quinine\r\ndryness."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,36,1
+dix_barbecue_brewery-red_truck_ale,0,0,244628127745,"{""name"":""Red Truck Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
+brouwerij_van_den_bossche-kerst_pater_special_christmas_beer,0,0,244492795904,"{""name"":""Kerst Pater Special Christmas Beer"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_den_bossche"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+cains,0,0,244486701056,"{""name"":""Cains"",""city"":""Liverpool"",""state"":""Merseyside"",""code"":""L8 5XJ"",""country"":""United Kingdom"",""phone"":""01517098734"",""website"":""http://www.cains.co.uk/"",""type"":""brewery"",""updated"":""2011-05-17 03:05:10"",""description"":""Cains is a brewery in Liverpool, England, founded in 1858 by Irish immigrant Robert Cain. \n\nCain had begun his brewing career aged 24 when he purchased a pub and brewed his own ales. Within 25 years of founding his brewery, Cain had established over 200 pubs. Robert Cain passed away in 1907 and the brewery still lives on to this day. \n\nOne of the most iconic beer brands in the UK Cain's has gone from strength to strength since being taken over by Indian brothers Sudarghara and Ajmail Dusanj in 2002. Cains now exports it's famous beers worldwide to the USA, Denmark, China, Ireland, India and Australia."",""address"":[""Robert Cain Brewery"",""Stanhope St""]}",1,30,1
+brouwerij_sterkens-bokrijks_kruikenbier,0,0,244489060354,"{""name"":""Bokrijks Kruikenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+dixie_brewing,0,0,244628193280,"{""name"":""Dixie Brewing"",""city"":""New Orleans"",""state"":""Louisiana"",""code"":""70119"",""country"":""United States"",""phone"":""1-504-822-8711"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2401 Tulane Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":29.9606,""lon"":-90.0871}}",1,51,1
+c_b_potts_of_cheyenne-big_horn_fort_collins_stout,0,0,244492795905,"{""name"":""Big Horn Fort Collins Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+caldera_brewing-caldera_ipa,0,0,244486701057,"{""name"":""Caldera IPA"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Available in 12 oz. cans and kegs. An American-style India Pale Ale brewed with plenty of body and an assertive hop profile."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
+brouwerij_the_musketiers-troubadour,0,0,244489125888,"{""name"":""Troubadour"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_the_musketiers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
+dogfish_head_craft_brewery-black_blue,0,0,244628258816,"{""name"":""Black & Blue"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A belgian-style Strong ale fermented with blackberries and blueberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,51,1
+captain_lawrence_brewing_company,0,0,244492795906,"{""name"":""Captain Lawrence Brewing Company"",""city"":""Pleasantville"",""state"":""New York"",""code"":""10570"",""country"":""United States"",""phone"":""914-741-BEER"",""website"":""http://www.captainlawrencebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Captain Lawrence beers are craft brewed in Pleasantville New York. We offer tastings and tours on Fridays from 4pm to 7pm, and Saturdays from 12pm 6pm."",""address"":[""99 Castleton Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.126,""lon"":-73.7896}}",1,45,1
+captain_lawrence_brewing_company-captin_lawrence_liquid_gold,0,0,244486701058,"{""name"":""Captin Lawrence Liquid Gold"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Don't let the golden color fool you - this isn't your father's lite beer!\r\n\r\nBrewed with imported German malts and US-grown hops, this beer is a full-flavored introduction to craft-brewed beer. We add the hops late in the boil, allowing you to enjoy the flavor and aroma of the hops without an aggressive bitterness."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,30,1
+brouwerij_van_steenberge-ertvelds_wit,0,0,244489125889,"{""name"":""Ertvelds Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+egan_brewing-1916_irish_stout,0,0,244628258817,"{""name"":""1916 Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
+carlow_brewing_company-o_hara_s_celtic_stout,0,0,244492861440,"{""name"":""O'Hara's Celtic Stout"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlow_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Unlike the image, does not have the creamy head like many Irish stouts (Beamish, Guinness, Murphys) and as a result lighter on the stomach and nice with a meal. Very distinctive taste which may put off those not accustomed to drinking stouts.I would recommend it for the more adventurous pallette.\r\n\r\nRoast barley comes through in the taste."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+carolina_brewery-lager,0,0,244486766592,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
+butterfield_brewing_1,0,0,244489125890,"{""name"":""Butterfield Brewing #1"",""city"":""Fresno"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.7477,""lon"":-119.772}}",1,36,1
+engel_brauerei_schwbisch_gmnd_lang,0,0,244628258818,"{""name"":""Engel Brauerei Schwbisch Gmnd Lang"",""city"":""Schwbisch Gmnd"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""D-73525 Schwbisch Gmnd""]}",1,51,1
+castle_springs_brewery,0,0,244492861441,"{""name"":""Castle Springs Brewery"",""city"":""Moultonborough"",""state"":""New Hampshire"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.7548,""lon"":-71.3967}}",1,45,1
+coastal_fog_brewing-brandenburg_gate_marzen,0,0,244486766593,"{""name"":""Brandenburg Gate Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coastal_fog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,30,1
+alaskan_brewing-alaskan_barley_wine_ale,0,0,244368277504,"{""name"":""Alaskan Barley Wine Ale"",""abv"":10.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Alaskan Barley Wine is produced in small batches each year. Typically this higher alcohol beverage is brewed in the spring, cellared in the tunnels of the Alaska-Juneau Gold Mine for the summer and retrieved in time for its release at the Great Alaska Beer and Barley Wine Festival in January. The cool tunnels of the mine shaft provide natural refrigeration and a prime environment for the aging process. \r\n\r\nLike a fine wine, Alaskan Barley Wine can be aged for years. The bottling of the 2007 vintage of Alaskan Barley Wine will allow individuals to age it to their liking. “We figured we’d leave it up to individuals as to how long to age their Alaskan Barley Wine,” said Quality Assurance Analyst Ryan Harvey. “Some people like barley wines fresh, and others store it for years.”"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,29,1
+climax_brewing_copmany-climax_ipa,0,0,244489191424,"{""name"":""Climax IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""This American-style, hop-driven beer starts with a citrus flavor, followed by two layers of caramel, and finishes on a hoppy note."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
+flat_earth_brewing_company-angry_planet_pale_ale,0,0,244628324352,"{""name"":""Angry Planet Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_earth_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+cervecera_cuauhtmoc_moctezuma-dos_equis_special_lager,0,0,244492926976,"{""name"":""Dos Equis Special Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+cooperstown_brewing_company-backyard_india_pale_ale,0,0,244486766594,"{""name"":""Backyard India Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Back Yard\"" is a golden India Pale Ale. Historically, ale shipped to India in the 19th Century was brewed to higher gravities so that it could mature during the long sea voyage. English brewers also hopped these ales heavily to protect them from spoiling. The term \""India pale Ale\"" or \""I.P.A.\"" is still used by brewers to denote a super-premium, hoppy pale ale style. Backyard IPA is no exception. English pale barley malt is predominant in this beer with just a small amount of crystal malt. It is well bittered with Cluster and Cascade hops and finished with a mix of local hop and larger amounts of Fuggle hop."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,30,1
+amherst_brewing_company-north_pleasant_pale_ale,0,0,244368343040,"{""name"":""North Pleasant Pale Ale"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light gold in color, slightly malty and hoppy, with a mild flowery hop finish."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
+climax_brewing_copmany-climax_oktoberfest,0,0,244489191425,"{""name"":""Climax Oktoberfest"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Oktoberfest is typically available from August to November and has toasty caramel and malty flavor. It is made from German Noble Hops and massive amounts of Münich Malt, which give it an orange color."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
+flossmoor_station_brewery-kilt_kicker_wee_heavy,0,0,244628324353,"{""name"":""Kilt Kicker Wee Heavy"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,51,1
+cervecera_hondurea-port_royal_export,0,0,244492926977,"{""name"":""Port Royal Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_hondurea"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+coors_brewing_golden_brewery-blue_moon_abbey_ale,0,0,244486766595,"{""name"":""Blue Moon Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+anheuser_busch-michelob_ultra,0,0,244368343041,"{""name"":""Michelob Ultra"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+clipper_city_brewing_co-heavy_seas_prosit_imperial_oktoberfest_lager,0,0,244489191426,"{""name"":""Heavy Seas Prosit! Imperial Oktoberfest Lager"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Malt focused, made with five types of grain including Vienna and Munich malts – plus a secret extra malt that we use only in our Prosit! Consider this bomber to be the burly big brother to our Clipper City MarzHon, a three year in a row winner at the Great American Beer Festival. We’ve balanced the sweetness of the malt with three kinds of hops making this one of the boldest marzen style lagers you’ll ever try.\r\n\r\n5 Kinds of Malt, 3 Kinds of Hops\r\nestimated ABV 9% estimated IBU 25"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
+flying_dog_brewery-old_scratch_lager,0,0,244628324354,"{""name"":""Old Scratch Lager"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This dog enjoys his days in the sun... Old Scratch Amber Lager is a malty, mellow beer that is fermented at medium temperatures to develop both ale and lager characteristics. \""Gold Scratch\"" raises the standard in the amber lager category."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
+cooper_s_cave_ale_company,0,0,244492992512,"{""name"":""Cooper's Cave Ale Company"",""city"":""Glens Falls"",""state"":""New York"",""code"":""12801"",""country"":""United States"",""phone"":""518.792.0007"",""website"":""http://www.cooperscaveale.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Cooper's Cave Ale Company, Ltd. Micro Brewery is the realized goal of three ale lovers, Ed, Pat and Adrian Bethel. A passion for great English style ales led us to commercially produce small quantities on a brewing system which we built. We gladly welcome visitors to our brewery and tasting room, and now we welcome you to learn more about Cooper's Cave Ale Company."",""address"":[""2 Sagamore Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.3177,""lon"":-73.64}}",1,45,1
+coronado_brewing_company-outlet_stout,0,0,244486832128,"{""name"":""Outlet Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Extremely dark in color, with a malty flavor dominated by caramel and chocolate malts and a slight hoppy bitterness. This full-bodied ale has a nice smooth lasting finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
+appalachian_brewing_company-hoppy_trails_india_pale_ale,0,0,244368408576,"{""name"":""Hoppy Trails India Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This IPA is an exciting beer with a floral in aroma and an incredible hop flavor. The maltiness is increased (over a regular pale ale) to help balance the aggressive hop usage. This contributes to the higher alcohol content as well. \r\nWhen India was part of the British Empire, pale ale shipped to the troops would often spoil due to the rough voyage and temperature extremes. The brewers had a theory that if they loaded the beer with extra hops, the hops would preserve the beer. Of course, this added significantly to the beer’s flavor and aroma. When the troops returned to Britain, they had become \""hop-heads\"", appreciating the beauty of the hop \""over-influence\"". Regular pale ale was simply not enough anymore! A new beer style, India Pale Ale, had been created: an aggressively hoppy and now quite happy to be home pale ale."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
+coopers_brewery-coopers_best_extra_stout,0,0,244489256960,"{""name"":""Coopers Best Extra Stout"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Now here's a beer with punch! \r\n\r\nCoopers Best Extra Stout is a beacon for lovers of a hearty brew. With its robust flavour it is everything a stout should be. \r\n\r\nBrewed naturally using a top fermentation method, Coopers Stout's unique rich, dark texture comes from specially roasted black malt. \r\n\r\nCoopers Best Extra Stout contains no additives and no preservatives."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+founders_hill_brewing-founders_light,0,0,244628389888,"{""name"":""Founders Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+coronado_brewing_company-coronado_golden_ale,0,0,244493058048,"{""name"":""Coronado Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This golden colored ale is smooth, light in flavor, crisp and very similar to a European-style pilsner. Our Golden ale is delicately hopped with traditional pilsner style Czech Saaz hops. It is one of our most popular beers and considered our gateway beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,45,1
+crabtree_brewery,0,0,244486832129,"{""name"":""Crabtree Brewery"",""city"":""Greeley"",""state"":""Colorado"",""code"":""80631"",""country"":""United States"",""phone"":""[970] 356-0516"",""website"":""http://www.crabtreebrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Crabtree Brewing Company is dedicated to serving the environment, the community, our customers, and our valued employees. Requiring the best ingredients to support unique premium beers. Keeping a dynamic business mind while remaining modestly profitable. Employing technology, embracing ethics, growing to meet the needs of our customers and employees, and having fun doing what we love�.Making Great Beer."",""address"":[""625 3rd St. #D""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4313,""lon"":-104.688}}",1,30,1
+appalachian_brewing_company-mountain_lager,0,0,244368408577,"{""name"":""Mountain Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Dortmunder-Export style of beer was developed in Westfalen, Germany, and is a classic light lager with great character. This style boasts a light golden blonde color and exhibits a moderate hop palate. The finish of our Mountain Lager is rich yet mellow.\r\nOur brewers have developed this beer as a tribute to the Appalachian Mountains where we live and play."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+coronado_brewing_company-uptown_brown,0,0,244489256961,"{""name"":""Uptown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
+frederick_brewing,0,0,244628389889,"{""name"":""Frederick Brewing"",""city"":""Frederick"",""state"":""Maryland"",""code"":""20176"",""country"":""United States"",""phone"":""1-888-258-7434"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4607 Wedgewood Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3628,""lon"":-77.4265}}",1,51,1
+crane_river_brewpub_and_cafe-homestead_pale_ale,0,0,244493058049,"{""name"":""Homestead Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+dark_horse_brewing_co,0,0,244618821632,"{""name"":""Dark Horse Brewing Co."",""city"":""Marshall"",""state"":""Michigan"",""code"":""49068"",""country"":""United States"",""phone"":""269-781-9940"",""website"":""http://www.darkhorsebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""511 S. Kalamazoo Ave.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.2667,""lon"":-84.9641}}",1,30,1
+barley_brothers_brewery_and_grill-tripppleberry_wheat,0,0,244368408578,"{""name"":""Tripppleberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,29,1
+crane_river_brewpub_and_cafe-good_life_stout,0,0,244489256962,"{""name"":""Good Life Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+full_sail_brewing_1,0,0,244628455424,"{""name"":""Full Sail Brewing #1"",""city"":""Hood River"",""state"":""Oregon"",""code"":""97031"",""country"":""United States"",""phone"":""1-541-386-2281"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""506 Columbia Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7103,""lon"":-121.515}}",1,51,1
+degroen_s_grill,0,0,244625637376,"{""name"":""DeGroen's Grill"",""city"":""Baltimore"",""state"":""Maryland"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.2904,""lon"":-76.6122}}",1,45,1
+de_halve_maan-straffe_hendrik_brugse,0,0,244618887168,"{""name"":""Straffe Hendrik Brugse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+barley_island_brewing-flat_belly_american_wheat,0,0,244368474112,"{""name"":""Flat Belly American Wheat"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+denver_chophouse_and_brewery-lucky_u_denver_special_bitter,0,0,244621705216,"{""name"":""Lucky U Denver Special Bitter"",""abv"":4.46,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+granite_city_food_brewery_saint_cloud-northern_light,0,0,244754808832,"{""name"":""Northern Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+dempsey_s_restaurant_brewery-holiday_wheat_bock,0,0,244625702912,"{""name"":""Holiday Wheat Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
+de_proef_brouwerij-lozen_boer_abt,0,0,244618887169,"{""name"":""Lozen Boer Abt"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+belhaven_brewery-st_andrews_ale,0,0,244368474113,"{""name"":""St. Andrews Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+desnoes_geddes_ltd,0,0,244621770752,"{""name"":""Desnoes & Geddes Ltd"",""city"":""Kingston"",""state"":"""",""code"":"""",""country"":""Jamaica"",""phone"":""1-876-923-9291"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""214 Spanish Town""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":33.9858,""lon"":-96.6515}}",1,36,1
+gray_brewing-honey_ale,0,0,244754874368,"{""name"":""Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+deschutes_brewery-mirror_mirror,0,0,244625702913,"{""name"":""Mirror Mirror"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Reserve Series romance all began with our first release of this limited-edition brew. Mirror Mirror, born of a double batch of Mirror Pond Pale Ale, is an inspired, barrel-aged barley wine layered with intriguing nuances. Explore this latest incarnation and enjoy its delicious complexity in every sip."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,45,1
+delafield_brewhaus-hops_and_glory_american_ale,0,0,244618887170,"{""name"":""Hops and Glory American Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+big_river_brewing-dry_stout,0,0,244368539648,"{""name"":""Dry Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,29,1
+dock_street_beer,0,0,244621770753,"{""name"":""Dock Street Beer"",""city"":""West Philly"",""state"":""Pennsylvania"",""code"":""19143"",""country"":""United States"",""phone"":""(215)-726-2337"",""website"":""http://www.dockstreetbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 S. 50th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9478,""lon"":-75.2229}}",1,36,1
+green_bay_brewing-hinterland_pale_ale,0,0,244754939904,"{""name"":""Hinterland Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+diamond_knot_brewery_alehouse-possession_porter,0,0,244625768448,"{""name"":""Possession Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
+dempsey_s_restaurant_brewery-golden_eagle,0,0,244618952704,"{""name"":""Golden Eagle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+boss_browar_witnica_s_a,0,0,244368539649,"{""name"":""BOSS Browar Witnica S.A."",""city"":""Witnica"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-(95)-751-51-14"",""website"":""http://www.browar-witnica.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ul. Marii Konopnickiej 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.6739,""lon"":14.9004}}",1,29,1
+drake_s_brewing-maibock,0,0,244621836288,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""drake_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,36,1
+greenshields_brewery_and_pub-greenshields_pale_ale,0,0,244755005440,"{""name"":""Greenshields Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+diebels_privatbrauerei-german_premium_dark,0,0,244625768449,"{""name"":""German Premium Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diebels_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
+diamond_knot_brewery_alehouse-golden_ale,0,0,244618952705,"{""name"":""Golden Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+boston_beer_company-samuel_adams_imperial_white,0,0,244368605184,"{""name"":""Samuel Adams Imperial White"",""abv"":10.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams® Imperial White is a new perspective on the classic witbier style. Witbiers are normally light and refreshing with a fruity finish and we wanted to see how these characteristics would stand up when we amped up the recipe. We were totally blown away by the flavors that were created by this beer.\r\n\r\nThis is not just a more intense version of our spring seasonal Samuel Adams® White Ale. Imperial White is a new recipe that stands on it own merits. In fact, it is more of a wine substitute than just another refreshing witbier. This is a beer that should be sipped and savored and you"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,29,1
+egan_brewing-nitro_pale,0,0,244621836289,"{""name"":""Nitro Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
+hacker_pschorr_bru-alt_munich_dark,0,0,244755005441,"{""name"":""Alt Munich Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hacker_pschorr_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+egan_brewing-abbot_pennings_trippel,0,0,244625768450,"{""name"":""Abbot Pennings Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+duck_rabbit_craft_brewery-duck_rabbit_schwarzbier,0,0,244618952706,"{""name"":""Duck-Rabbit Schwarzbier"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,30,1
+brasserie_de_brunehaut-abbaye_de_st_amand,0,0,244368605185,"{""name"":""Abbaye de St Amand"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A unique 7% Belgian blonde ale, flavoured with juniper berries. The beer has bittersweet malt flavours, and a heady perfumed aroma of orange and juniper."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,29,1
+egan_brewing-o_tay_bockwheat,0,0,244621836290,"{""name"":""O-Tay Bockwheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+hausbrauerei_zum_schlssel-altbier,0,0,244755070976,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hausbrauerei_zum_schlssel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,51,1
+f_x_matt_brewing,0,0,244625833984,"{""name"":""F.X. Matt Brewing"",""city"":""Utica"",""state"":""New York"",""code"":""13502"",""country"":""United States"",""phone"":""1-800-690-3181-x222"",""website"":""http://www.saranac.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""811 Edward Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1045,""lon"":-75.2452}}",1,45,1
+egan_brewing,0,0,244619018240,"{""name"":""Egan Brewing"",""city"":""De Pere"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.4489,""lon"":-88.0604}}",1,30,1
+brasserie_de_l_abbaye_val_dieu-winter,0,0,244368605186,"{""name"":""Winter"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+ej_phair_brewing_company_and_alehouse-marzen,0,0,244621836291,"{""name"":""Marzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ej_phair_brewing_company_and_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
+industrias_la_constancia_ilc-suprema,0,0,244755070977,"{""name"":""Suprema"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+firehouse_brewing-smoke_jump_stout,0,0,244625833985,"{""name"":""Smoke Jump Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+el_ahram_company,0,0,244619018241,"{""name"":""el ahram company"",""city"":"""",""state"":"""",""code"":"""",""country"":""Egypt"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,30,1
+brasserie_mcauslan-st_ambroise_pale_ale,0,0,244485914624,"{""name"":""St-Ambroise Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+elk_creek_cafe_and_aleworks-elk_creek_copper_ale,0,0,244621901824,"{""name"":""Elk Creek Copper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""This beautifully colored ale strikes an agreeable balance between malt and hops. Caramel + toffee notes from the use of more highly kilned malts step up to complement this beers assertive hop profile."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
+iron_springs_pub_brewery-fairfax_coffee_porter,0,0,244755070978,"{""name"":""Fairfax Coffee Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+fish_brewing_company_fish_tail_brewpub-mudshark_porter,0,0,244625833986,"{""name"":""Mudshark Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,45,1
+emery_pub,0,0,244619018242,"{""name"":""Emery Pub"",""city"":""Emeryville"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.8313,""lon"":-122.285}}",1,30,1
+brasseries_kronenbourg-1664,0,0,244485914625,"{""name"":""1664"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasseries_kronenbourg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+empyrean_brewing_company,0,0,244621901825,"{""name"":""Empyrean Brewing Company"",""city"":""Lincoln"",""state"":""Nebraska"",""code"":""68508"",""country"":""United States"",""phone"":""1-402-434-5959"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""729 Q Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8155,""lon"":-96.7105}}",1,36,1
+island_brewing_company,0,0,244755136512,"{""name"":""Island Brewing Company"",""city"":""Carpinteria"",""state"":""California"",""code"":""93013"",""country"":""United States"",""phone"":""1-805-745-8272"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5049 Sixth Street""]}",1,51,1
+3_fonteinen_brouwerij_ambachtelijke_geuzestekerij,0,0,244380663808,"{""name"":""3 Fonteinen Brouwerij Ambachtelijke Geuzestekerij"",""city"":""Beersel"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-/-306-71-03"",""website"":""http://www.3fonteinen.be/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hoogstraat 2A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7668,""lon"":4.3081}}",1,60,1
+fitger_s_brewhouse_brewery_and_grill-habanero,0,0,244625899520,"{""name"":""Habañero"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+esser_s_cross_plains_brewery-esser_s_best,0,0,244619083776,"{""name"":""Esser's Best"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""esser_s_cross_plains_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""German Style Lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
+bricktown_brewery,0,0,244485914626,"{""name"":""Bricktown Brewery"",""city"":""Dubuque"",""state"":""Iowa"",""code"":""52001"",""country"":""United States"",""phone"":""1-563-582-0608"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""299 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.4965,""lon"":-90.6652}}",1,29,1
+engine_house_9-barleywine,0,0,244621967360,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+jacob_leinenkugel_brewing_company,0,0,244755136513,"{""name"":""Jacob Leinenkugel Brewing Company"",""city"":""Chippewa Falls"",""state"":""Wisconsin"",""code"":""54729"",""country"":""United States"",""phone"":""1-715-723-5557"",""website"":""http://www.leinie.com/welcome.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Jefferson Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9449,""lon"":-91.3968}}",1,51,1
+512_brewing_company-512_alt,0,0,244380663809,"{""name"":""(512) ALT"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""(512) ALT is a German-style amber ale that is fermented cooler than typical ales and cold conditioned like a lager. ALT means “old” in German and refers to a beer style made using ale yeast after many German brewers had switched to newly discovered lager yeast. This ale has a very smooth, yet pronounced, hop bitterness with a malty backbone and a characteristic German yeast character. Made with 98% Organic 2-row and Munch malts and US noble hops."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,60,1
+flatlander_s_restaurant_brewery-prairie_wheat_beer,0,0,244625899521,"{""name"":""Prairie Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+f_x_matt_brewing-pomegranate_wheat,0,0,244619083777,"{""name"":""Pomegranate Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This wholesome combination of unfiltered wheat beer and real pomegranate juice makes a smooth refreshing beer with all the goodness of pomegranate. Look for a light body with a slight tart finish and golden straw color."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,30,1
+brooklyn_brewery-brooklyn_summer_ale,0,0,244485980160,"{""name"":""Brooklyn Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It is light with a bit of a citrus flavor. A pretty standard summer seasonal."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,29,1
+esser_s_cross_plains_brewery-esser_s_cross_plains_special,0,0,244621967361,"{""name"":""Esser's Cross Plains Special"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""esser_s_cross_plains_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,36,1
+john_harvard_s_brewhouse_wilmington,0,0,244755202048,"{""name"":""John Harvard's Brewhouse - Wilmington"",""city"":""Wilmington"",""state"":""Delaware"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7458,""lon"":-75.5467}}",1,51,1
+adnams_co-nut_brown_ale,0,0,244380729344,"{""name"":""Nut Brown Ale"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
+flying_dog_brewery-garde_dog,0,0,244625965056,"{""name"":""Garde Dog"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Proving the French may actually know something we don't... Garde Dog is a traditional French Biere de Garde or \""beer for keeping\"". This classic farmhouse ale was brewed in March for drinking during the spring and summer months. With it's toasted aroma and spicy, malty sweetness Garde Dog will liberate you from the winter doldrum.""}",1,45,1
+f_x_matt_brewing-roggen_bock,0,0,244619083778,"{""name"":""Roggen Bock"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the tradition of great German Bock beers with only German malts and hops, using 20% rye, malt to give it a distinctive spicy, yet smooth character. You'll love the rich flavors and deep red color of this unique German Brew."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,30,1
+broughton_ales-black_douglas,0,0,244486045696,"{""name"":""Black Douglas"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+fauerbach_brewing_company-fauerbach_export,0,0,244622032896,"{""name"":""Fauerbach Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fauerbach_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Actually a Dortmunder/Export style"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+kelmer_s_brewhouse-independence_ale,0,0,244755202049,"{""name"":""Independence Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+anheuser_busch-michelob_hop_hound_amber_wheat,0,0,244380729345,"{""name"":""Michelob Hop Hound Amber Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered American amber wheat ale brewed with a blend of imported and domestic hops for a balanced slightly citrus hop aroma and caramel malty taste."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,60,1
+flying_dog_brewery-woody_creek_white,0,0,244625965057,"{""name"":""Woody Creek White"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our tribute to the town we consider to be \""Gonzo Ground Zero\""... Woody Creek White is a traditional Belgian-style Wit Beer, brewed with unique ingredients like orange peel and coriander, resulting in a refreshing and slightly citrus flavor, perfect for the \""Dog Days of Summer\""."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,45,1
+f_x_matt_brewing-saranac_oatmeal_stout,0,0,244619149312,"{""name"":""Saranac Oatmeal Stout"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Oatmeal Stout is brewed with a delicate balance of the finest grown oats, selected hops, and our traditional ale yeast. Look for a sweet, dark chocolate and roasted taste."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,30,1
+brouwerij_boon-pertotale_faro,0,0,244486045697,"{""name"":""Pertotale Faro"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+faultline_brewing_2-best_bitter,0,0,244622032897,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+klosterbrauerei_weltenburg-winter_traum,0,0,244755202050,"{""name"":""Winter-Traum"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,51,1
+atwater_block_brewing,0,0,244380729346,"{""name"":""Atwater Block Brewing"",""city"":""Detroit"",""state"":""Michigan"",""code"":""48207"",""country"":""United States"",""phone"":""1-313-877-9205"",""website"":""http://www.atwaterbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Atwater Block Brewery, located in Detroit's historic Rivertown district is housed in a 1916 factory warehouse that was founded in March of 1997. Our brewing process however, is over 200 years old. We are able to brew our brands in the true heritage style of German lagers. With our imported Kasper Schultz brew house, only the finest malt and hops from Germany are used to brew our lagers and only the finest American hops for our specialty Ale's. Atwater block beers are distinctly fresh and flavorful, which is why we have a slogan We drink all we can and sell the rest.. Atwater Block Brewery is carrying on the rich history of breweries in Detroit, we are THE brewery of the D."",""address"":[""237 Joseph Campau Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3372,""lon"":-83.0186}}",1,60,1
+fordham_brewing,0,0,244626030592,"{""name"":""Fordham Brewing"",""city"":""Annapolis"",""state"":""Maryland"",""code"":""21401"",""country"":""United States"",""phone"":""1-410-216-9730"",""website"":""http://www.ramsheadtavern.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""95 Cathedral Street, Suite 200""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9773,""lon"":-76.4948}}",1,45,1
+faultline_brewing_1,0,0,244619149313,"{""name"":""Faultline Brewing #1"",""city"":""Sunnyvale"",""state"":""California"",""code"":""94086"",""country"":""United States"",""phone"":""1-408-736-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1235 Oakmead Parkway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.387,""lon"":-121.993}}",1,30,1
+brouwerij_de_dolle_brouwers-oerbier,0,0,244486045698,"{""name"":""Oerbier"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+firehouse_grill_brewery,0,0,244622032898,"{""name"":""Firehouse Grill & Brewery"",""city"":""Sunnyvale"",""state"":""California"",""code"":""94086"",""country"":""United States"",""phone"":""1-408-773-9500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""111 South Murphy Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.3775,""lon"":-122.03}}",1,36,1
+left_hand_brewing_company-widdershins_barleywine,0,0,244755202051,"{""name"":""Widdershins Barleywine"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+bad_frog_brewery_company,0,0,244380729347,"{""name"":""Bad Frog Brewery Company"",""city"":""Rose City"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.4214,""lon"":-84.1167}}",1,60,1
+founders_hill_brewing-blacksmith_stout,0,0,244626030593,"{""name"":""Blacksmith Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+fitger_s_brewhouse_brewery_and_grill-el_nino_ipa,0,0,244619149314,"{""name"":""El Niño IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
+brouwerij_de_dolle_brouwers,0,0,244486045699,"{""name"":""Brouwerij De Dolle Brouwers"",""city"":""Esen"",""state"":""West-Vlaanderen"",""code"":""BE-8160"",""country"":""Belgium"",""phone"":"""",""website"":""http://www.dedollebrouwers.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Roeselarestraat 12b""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.0281,""lon"":2.9038}}",1,29,1
+flying_bison_brewing,0,0,244622098432,"{""name"":""Flying Bison Brewing"",""city"":""Buffalo"",""state"":""New York"",""code"":""14207"",""country"":""United States"",""phone"":""1-716-873-1557"",""website"":""http://www.flyingbisonbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""For more than 800 years, brewing beer has been regulated by laws in Germany. A long tradition that all the German brewers still obey to: In 1165 the first fine for serving bad beer was imposed in Augsburg. From 1487 onwards every brewer in Munich had to confirm on an oath to the ducal Rentmeister of Upper Bavaria, stating that he would not use any ingredients but barley, hops, and water to brew beer. Originally, this oath was valid in Munich only. In 1987 it was renewed by the Munich brewers."",""address"":[""491 Ontario Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.9561,""lon"":-78.8966}}",1,36,1
+lwenbru_munich,0,0,244877557760,"{""name"":""Lwenbru Munich"",""city"":""Toronto"",""state"":""Ontario"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Toronto ON""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.7379,""lon"":-79.5714}}",1,51,1
+barley_creek_brewing-rescue_ipa,0,0,244380729348,"{""name"":""Rescue IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hopped four separate times with pure Centennial hops for one of the hoppiest brews around. With a nice dry finish, Rescue IPA is our Mug Club's favorite."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,60,1
+frontwaters_restaurant_and_brewing,0,0,244626030594,"{""name"":""Frontwaters Restaurant and Brewing"",""city"":""Marblehead"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.5403,""lon"":-82.7355}}",1,45,1
+flensburger_brauerei-flensburger_pilsner,0,0,244619214848,"{""name"":""Flensburger Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flensburger_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,30,1
+brouwerij_st_bernardus-grotten_brown,0,0,244486111232,"{""name"":""Grotten Brown"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest acquisition “Grottenbier” was created by Master Brewer Pierre Celis. It is an aromatic dark beer with 6.5% alcohol content.\r\n\r\nIn the marl pits in Kanne ( Belgium) and Valkenburg (the Netherlands), deep under the ground, you can taste the Grottenbier in a constant temperature of 11° Celsius.\r\n\r\nAs it is the case with Champagne, the bottles are placed in a “pupitre” with results in an additional fermentation. \r\n\r\nThis beer with a high fermentation with a second fermentation in the bottle has been pointed out as one of the best 10 present-day beers by beer guru Michael Jackson."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,29,1
+fratellos_restaurant_and_brewery-fox_tail_amber_ale,0,0,244622098433,"{""name"":""Fox Tail Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
+maclay_and_co-the_only_oat_malt_stout_in_the_world,0,0,244877557761,"{""name"":""The Only Oat Malt Stout In The World"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
+barrel_house_brewing_co-cumberland_pale_ale,0,0,244380794880,"{""name"":""Cumberland Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barrel_house_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Early Cincinnati brewers shipping their beers into Tennessee would generously hop their beer to prevent spoilage during the long arduous trip over the Cumberland Trail. This classic interpretation of the American Pale Ale features a solid foundation of pale malt loaded with fresh Cascade hops. Here’s to getting where you’re going!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+gasthof_brauerei_zum_frohsinn,0,0,244626096128,"{""name"":""Gasthof-Brauerei zum Frohsinn"",""city"":""Arbon"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-71-474-84-84"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Romanshornerstrasse 15""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5171,""lon"":9.43}}",1,45,1
+goose_island_beer_company_clybourn-honest_stout,0,0,244619214849,"{""name"":""Honest Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
+brouwerij_van_hoegaarden,0,0,244486111233,"{""name"":""Brouwerij van Hoegaarden"",""city"":""Hoegaarden"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-016-76-98-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stoopkensstraat 46""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7778,""lon"":4.8877}}",1,29,1
+full_sail_brewing_1-wassail_winter_ale,0,0,244622098434,"{""name"":""Wassail Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,36,1
+mad_anthony_brewing-auburn,0,0,244877623296,"{""name"":""Auburn"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+bavarian_barbarian_brewing_company-headbangerz_brown_ale,0,0,244380794881,"{""name"":""Headbangerz Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Headbangerz Brown Ale is based on an English brown ale style. Its color is a demonic, dark reddish-brown. This beer is subtly sweet and punctuated with roasty, nutty flavors. The hops take a back seat and simply complement the malt character. Headbangerz Brown Ale is perfect for any Autumn outdoor activities or for relaxing on Summer evenings. Headbangerz Brown Ale is named in honor of Barbarian Chief's, Mike Hiller, hardworking former co-workers – heavy metal freaks and masters of metal fabrication."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
+goose_island_beer_company_fulton_street-stockyard_oatmeal_stout,0,0,244626096129,"{""name"":""Stockyard Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,45,1
+goose_island_beer_company_fulton_street-oatmeal_stout,0,0,244619214850,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
+c_b_potts_of_cheyenne-big_horn_light,0,0,244486176768,"{""name"":""Big Horn Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+glacial_lakes_brewing-pale,0,0,244622163968,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glacial_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
+magic_hat-thumbsucker,0,0,244877623297,"{""name"":""Thumbsucker"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Vermont Imperial Stout\r\nPast the dark and into the deep lies this stout and hearty hale ale from a far off forsaken age. Black like shimmering shades of furthest night, this ale will warm your cold limbs and light your mind's fire.\r\n\r\nThumbsucker(tm), big full-bodied, dark beer with a rich, roasted malt flavor and balanced by an assertive hop bitterness, is our salute to the rarest Imperial Stouts of lore."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,51,1
+belfast_bay_brewing_company,0,0,244380794882,"{""name"":""Belfast Bay Brewing Company"",""city"":""Belfast"",""state"":""Maine"",""code"":""4915"",""country"":""United States"",""phone"":""207-338-4216"",""website"":""http://www.belfastbaybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""100 Searsport Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.4295,""lon"":-68.975}}",1,60,1
+great_divide_brewing-samurai,0,0,244752056320,"{""name"":""Samurai"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Looking for something a little different? Brewed with rice and barley malts, Samurai is an easy drinking, unfiltered ale that changes the status quo for unfiltered beers. The addition of rice gives Samurai a slightly fruity, crisp, refreshing and clean taste. This is definitely not your everyday unfiltered beer.""}",1,45,1
+gottberg_brew_pub-heavenly_helles,0,0,244619280384,"{""name"":""Heavenly Helles"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+camerons_brewery_company-long_leg_english_fuggles_hop_ale,0,0,244486176769,"{""name"":""Long Leg English Fuggles Hop Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""camerons_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+golden_pacific_brewing-golden_gate_copper_ale,0,0,244622163969,"{""name"":""Golden Gate Copper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
+main_street_beer_company_1,0,0,244877688832,"{""name"":""Main Street Beer Company #1"",""city"":""Richmond"",""state"":""Virginia"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.543,""lon"":-77.4691}}",1,51,1
+bell_s_brewery_inc-kalamazoo_stout,0,0,244380794883,"{""name"":""Kalamazoo Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A full-bodied stout with plenty of roast flavor. Kalamazoo Stout is available year round, leading our vast portfolio of stouts."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,60,1
+great_divide_brewing-titan_ipa,0,0,244752121856,"{""name"":""Titan IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally India Pale Ales, the hoppiest of all pales, were brewed with more alcohol and large quantities of hops in order to survive the lengthy ocean journey from the U.K. to India. Unlike our brewing forefathers, Great Divide enjoys the modern benefits of refrigeration and we don’t have any plans to ship Titan IPA to India. Instead, we brew Titan IPA for hop disciples – independent beer drinkers seeking out robust, flavorful beers characterized by their abundance of hops flavor, aroma and bitterness. As a big, aggressively hopped India Pale Ale, Titan IPA fills this bill – beginning with piney hop aromas and citrus hop flavors, and finishing with a rich, malty sweetness that is carefully balanced with crisp hop bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
+granite_city_food_brewery_saint_cloud-broad_ax_stout,0,0,244746289152,"{""name"":""Broad Ax Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
+carlsberg_bryggerierne-jacobsen_dark_lager,0,0,244486176770,"{""name"":""Jacobsen Dark Lager"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_bryggerierne"",""updated"":""2010-07-22 20:00:20"",""description"":""Original Dark Lager is brewed according to J.C. Jacobsen's original recipe. The colour is chestnut. It has a Hersbrucker hiop aroma while the floor malted Munich malt adds a caramel character. The carbonisation is gentle and the hop bitterness is soft. Enjoy at 6-8C.""}",1,29,1
+goose_island_beer_company_fulton_street-summertime_kolsch,0,0,244622229504,"{""name"":""Summertime Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+martini_brauerei,0,0,244877688833,"{""name"":""Martini-Brauerei"",""city"":""Kassel"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)561-/-7885-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Klnische Strae 94-104""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.3175,""lon"":9.4793}}",1,51,1
+big_rock_brewery-traditional_ale,0,0,244380794884,"{""name"":""Traditional Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
+green_bay_brewing-hinterland_maple_bock,0,0,244752121857,"{""name"":""Hinterland Maple Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+great_divide_brewing-great_divide_saison,0,0,244746354688,"{""name"":""Great Divide Saison"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our homage to the beers that have quenched the thirst of Belgian farm workers for centuries. Brewed with barley, wheat and rice and fermented at high temperatures with a special blend of four different yeast strains, Saison is fruity and slightly tart, with a dry finish that makes it that rarest of treats–a beer as refreshing as it is complex."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,30,1
+celis_brewery-raspberry,0,0,244486242304,"{""name"":""Raspberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,29,1
+grumpy_troll_restaurant_and_brewery-grumpy_two,0,0,244748517376,"{""name"":""Grumpy Two"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+mckenzie_brew_house-french_country_spring_beer,0,0,244877688834,"{""name"":""French Country Spring Beer"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+big_sky_brewing-scape_goat_pale_ale,0,0,244380794885,"{""name"":""Scape Goat Pale Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scape Goat is our award-winning Pale Ale. It is a very smooth brew, refreshing and well-balanced. Scape Goat took home the Gold Medal from the North American Brewers' Association competitions as the best English-style pale ale brewed west of the Mississippi, but only because it is the best. Scape Goat is brewed with pale, crystal malts, and Kent Goldings and Crystal Hops. Scape Goat is 3.8% alcohol by weight and 4.7% by volume."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+green_bay_brewing-hinterland_pub_draught,0,0,244752187392,"{""name"":""Hinterland Pub Draught"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+green_mill_brewing_saint_paul-kabeelo_lodge_lager,0,0,244746354689,"{""name"":""Kabeelo Lodge Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
+celis_brewery,0,0,244486242305,"{""name"":""Celis Brewery"",""city"":""Austin"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.2672,""lon"":-97.7431}}",1,29,1
+hair_of_the_dog_brewing,0,0,244748517377,"{""name"":""Hair of the Dog Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97202"",""country"":""United States"",""phone"":""1-503-232-6585"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4509 SE 23rd Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4901,""lon"":-122.643}}",1,36,1
+mckenzie_brew_house-unicorn_amber_ale,0,0,244877688835,"{""name"":""Unicorn Amber Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
+bison_brewing,0,0,244380860416,"{""name"":""Bison Brewing"",""city"":""Berkeley"",""state"":""California"",""code"":""94704"",""country"":""United States"",""phone"":""1-510-841-7734"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2598 Telegraph Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.8634,""lon"":-122.259}}",1,60,1
+green_mill_brewing_saint_paul-gunflint_gold_ale,0,0,244752187393,"{""name"":""Gunflint Gold Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+grolsche_bierbrouwerij-grolsch_pilsner_speciale,0,0,244746354690,"{""name"":""Grolsch Pilsner Speciale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""Grolsch Speciale Pilsner is a special version of the Grolsch Premium Pilsner. It has a fruitier taste than the Premium Pilsner."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,30,1
+central_waters_brewing_company,0,0,244486242306,"{""name"":""Central Waters Brewing Company"",""city"":""Amherst"",""state"":""Wisconsin"",""code"":""54406"",""country"":""United States"",""phone"":""1-715-824-2739"",""website"":""http://www.centralwaters.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewing since 1998, Central Waters Brewing Company is built on the solid reputation of producing the finest quality beer in Central Wisconsin: Ouisconsing Red Ale, Happy Heron Pale Ale, Mudpuppy Porter, and many more."",""address"":[""351 Allen Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4419,""lon"":-89.2797}}",1,29,1
+hapa_s_brew_haus_and_restaurant-red_sky_amber_lager,0,0,244748582912,"{""name"":""Red Sky Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+mehana_brewing-beer,0,0,244877754368,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mehana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+21st_amendment_brewery_cafe-potrero_esb,0,0,244380860416,"{""name"":""Potrero ESB"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional English E.S.B. made with English malt and hops. Fruity aroma with an imparted tart flavor brought about by replicating the water profile in England at Burton on Trent."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,61,1
+brasserie_de_vervifontaine,0,0,244380860417,"{""name"":""Brasserie de Vervifontaine"",""city"":""Jalhay-Vervifontaine"",""state"":""Lige"",""code"":"""",""country"":""Belgium"",""phone"":""32-087-64-83-03"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vervierfontaine 100""]}",1,60,1
+heavenly_daze_brewery_and_grill-amber_daze,0,0,244752252928,"{""name"":""Amber Daze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
+heartland_brewery_union_square-farmer_jon_s_oatmeal_stout,0,0,244746420224,"{""name"":""Farmer Jon's Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":""Hearty, creamy oatmeal stout has hints of espresso and an elegant dark chocolate sweetness. Flavor and aroma are characteristic of Espresso and Dark Chocolate. It has a rich, silky, full, and complex body with a long, rich, smooth finish."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,30,1
+cervejaria_de_macau-lager,0,0,244486307840,"{""name"":""Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_de_macau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+harbor_city_brewing-main_street_brown_ale,0,0,244748582913,"{""name"":""Main Street Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harbor_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
+midnight_sun_brewing_co-meltdown_double_ipa,0,0,244877819904,"{""name"":""Meltdown Double IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The days are long but the season is short. So what gives? Sleep! After doing more before midnight than most Outsiders do in a week, Alaskans deserve some down time. And these moments of relaxation demand more than that ordinary, non-distinct lawn mower beer. Celebrate a day well done with a beer done well—a seriously delicious IPA with some scorchin’ hops. \r\n\r\nOur new seasonal double IPA is designed to keep you incredibly hopped up spring through summer."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,51,1
+abbaye_de_maredsous-8,0,0,244380925952,"{""name"":""8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_maredsous"",""updated"":""2010-07-22 20:00:20"",""description"":""Moortgat's Maredsous 8 is a fine strong dubbel that is sweet when young but develops a stout like flavour as it ages."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,61,1
+brauerei_reissdorf,0,0,244499283968,"{""name"":""Brauerei Reissdorf"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2236-/-9655-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Emil-Hoffmann-Strae 4-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8753,""lon"":6.9944}}",1,60,1
+heineken_international-lager_beer,0,0,244752252929,"{""name"":""Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+hoppin_frog_brewery-smashing_berry_dark,0,0,244746420225,"{""name"":""Smashing Berry Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Fresh, natural fruit flavor and a hint of chocolate malt makes this dark beer something really special. The just picked, fresh fruit flavor is very evident in this beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,30,1
+cj_s_brewery_grill,0,0,244486307841,"{""name"":""CJ's Brewery & Grill"",""city"":""La Jolla"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.8575,""lon"":-117.876}}",1,29,1
+hc_berger_brewing-rauchbier,0,0,244748582914,"{""name"":""Rauchbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+midnight_sun_brewing_co-obliteration_vi,0,0,244877819905,"{""name"":""Obliteration VI"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion & purpose, we present this series of experimental hop-driven beers. Using different hop varieties & brewing techniques, we aim to educate the palate & challenge the hophead in you.\r\n\r\nObliteration VI is a Double IPA brewed with Summit, Summit and Summit; 95 IBU’s"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,51,1
+anheuser_busch-bud_light_golden_wheat,0,0,244380991488,"{""name"":""Bud Light Golden Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,61,1
+breckenridge_brewery-avalanche_amber,0,0,244499349504,"{""name"":""Avalanche Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,60,1
+hoffbrau_steaks_brewery_1-buffalo_ale,0,0,244752252930,"{""name"":""Buffalo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+idaho_brewing-dr_hops_pale_ale,0,0,244746485760,"{""name"":""Dr. Hops Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""idaho_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+cricket_hill-colonel_blide_s_cask_ale,0,0,244486373376,"{""name"":""Colonel Blide's Cask Ale"",""abv"":5.5,""ibu"":31.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-12-06 13:08:34"",""description"":""A tasty, moderately hoppy, easy to drink beer with an orange marmalade hue with a frothy, off-white head. An herbal hop aroma with a hint of lemon and pine. This beer is not overly bitter, with orangy citrus and pine hop with slight earthy notes! There is a malty biscuit flavor that balances the hops. Makes me wish I had some Fish & Chips!!"",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,29,1
+hereford_hops_restaurant_and_brewpub_1-lichthaus_lager,0,0,244748648448,"{""name"":""Lichthaus Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+midnight_sun_brewing_co-uranus_100_brettanomyces_golden_ale,0,0,244877819906,"{""name"":""Uranus - 100% Brettanomyces Golden Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Uranus, ruler of the heavens, reigns supreme with beauty and brilliance. Gloriously gold in color, URANUS Golden Ale holds title to our first 100% Brettanomyces fermentation and conditioning. Brewed by mere mortals and blessed by the beer gods, this ale deserves to be worshipped."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,51,1
+back_road_brewery-millennium_lager,0,0,244380991489,"{""name"":""Millennium Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic pilsner."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,61,1
+brewery_corsendonk-monk_pale_ale_agnus_dei,0,0,244499349505,"{""name"":""Monk Pale Ale / Agnus Dei"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+hoppers_seafood_grill-uno_mas,0,0,244752252931,"{""name"":""Uno Mas"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppers_seafood_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+iron_springs_pub_brewery-kent_lake_kolsch,0,0,244746485761,"{""name"":""Kent Lake Kolsch"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+cropton_brewery,0,0,244486373377,"{""name"":""Cropton Brewery"",""city"":""Pickering"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01751)-417330"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cropton""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.2912,""lon"":-0.8406}}",1,29,1
+hirschbru_privatbrauerei_hss,0,0,244748648449,"{""name"":""Hirschbru Privatbrauerei Hss"",""city"":""Sonthofen"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8321-/-6633-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Grntenstrae 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5132,""lon"":10.279}}",1,36,1
+milly_s_tavern,0,0,244877885440,"{""name"":""Milly's Tavern"",""city"":""Manchester"",""state"":""New Hampshire"",""code"":""3102"",""country"":""United States"",""phone"":""1-603-625-4444"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""500 Commercial Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.9945,""lon"":-71.4674}}",1,51,1
+bear_republic_brewery-racer_5_ipa,0,0,244381057024,"{""name"":""Racer 5 IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a hoppy IPA. Did I say hops? Your brewer is a hop head! This is a full bodied beer using American grains. The goal was to create a base for showing off the unique floral qualities of two Pacific Northwest hops, Columbus and Cascade. Columbus is a new hybrid High Alpha Acid hop used mostly for bittering, but used heavily as an aromatic in this strong brew. Cascade is the balance that ties the malt and bittering hops together. It is a true specialty ale and is our brewer's statement on this style."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
+brewery_de_troch-chapeau_peche_lambic,0,0,244499349506,"{""name"":""Chapeau Pêche Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,60,1
+jack_s_brewing,0,0,244752318464,"{""name"":""Jack's Brewing"",""city"":""Fremont"",""state"":""California"",""code"":""94538"",""country"":""United States"",""phone"":""1-510-796-2036"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""39176 Argonaut Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.5441,""lon"":-121.988}}",1,45,1
+james_page_brewing,0,0,244746485762,"{""name"":""James Page Brewing"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55413"",""country"":""United States"",""phone"":""1-612-789-0400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1500 Jackson Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.0039,""lon"":-93.2502}}",1,30,1
+delafield_brewhaus-amber,0,0,244618493952,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
+jack_s_brewing-red_ale,0,0,244748713984,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+mishawaka_brewing-four_horsemen_ale,0,0,244877885441,"{""name"":""Four Horsemen Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
+bent_river_brewing,0,0,244381057025,"{""name"":""Bent River Brewing"",""city"":""Moline"",""state"":""Illinois"",""code"":""61265"",""country"":""United States"",""phone"":""1-309-797-2722"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1413 Fifth Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5059,""lon"":-90.5171}}",1,61,1
+bridgeport_brewing,0,0,244499415040,"{""name"":""BridgePort Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97209"",""country"":""United States"",""phone"":""1-503-241-7179"",""website"":""http://www.bridgeportbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1313 NW Marshall Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5311,""lon"":-122.685}}",1,60,1
+jobber_s_canyon_restaurant_brewery-tip_top_pale_ale,0,0,244752318465,"{""name"":""Tip Top Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jobber_s_canyon_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+karl_strauss_brewery_gardens_sorrento_mesa-endless_summer_gold,0,0,244746551296,"{""name"":""Endless Summer Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+dempsey_s_restaurant_brewery-bad_bear_brown,0,0,244618559488,"{""name"":""Bad Bear Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,29,1
+karl_strauss_brewery_gardens_sorrento_mesa-amber_lager,0,0,244748713985,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+mishawaka_brewing-wall_street_wheat_ale,0,0,244877885442,"{""name"":""Wall Street Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+big_buck_brewery-big_buck_beer,0,0,244381057026,"{""name"":""Big Buck Beer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A standard American-style beer and our flagship brand. A small amount of corn is added to the grist to give the brew a smooth character. Features a rich, golden color and a light malt character balanced with a mild dose of hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
+burton_bridge_brewery-olde_expensive_ale,0,0,244499415041,"{""name"":""Olde Expensive Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,60,1
+joboy_s_brew_pub-manheim_red,0,0,244752318466,"{""name"":""Manheim Red"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer, is amber to red in color with a medium body, slight caramel sweetness, and a balance more towards malt than hops. This beer is a true crowd-pleaser and keeps you coming back for more."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
+kelmer_s_brewhouse-krystal,0,0,244746551297,"{""name"":""Krystal"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
+deschutes_brewery-brocken_top_bock,0,0,244618559489,"{""name"":""Brocken Top Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Broken Top Bock is a malt forward, high gravity lager with a subtle aroma and warming sweetness. Czech Saaz hops balance a diverse malt composition that creates the flavor, color and mouth feel. The lager yeast chosen for this beer plays an important role in the flavor contribution, adding sweet fruit overtones. This bock boasts a clever 7% alcohol by volume so don’t let it “kick” you off of your stool."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,29,1
+keg_microbrewery_restaurant-pale_ale,0,0,244748713986,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
+mission_springs_brewing-oatmeal_stout,0,0,244877950976,"{""name"":""Oatmeal Stout"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
+big_ridge_brewing-17_cream_ale,0,0,244381057027,"{""name"":""#17 Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
+caledonian_brewing-double_dark,0,0,244499415042,"{""name"":""Double Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caledonian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+joshua_huddy_s_brew_pub_and_grill-amber,0,0,244752384000,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joshua_huddy_s_brew_pub_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
+kona_brewing,0,0,244746551298,"{""name"":""Kona Brewing"",""city"":""Kailua-Kona"",""state"":""Hawaii"",""code"":""96740"",""country"":""United States"",""phone"":""1-808-334-1133"",""website"":""http://www.konabrewingco.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""75-5629 Kuakini Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":19.642,""lon"":-155.996}}",1,30,1
+dix_barbecue_brewery-red_truck_lager,0,0,244618625024,"{""name"":""Red Truck Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+king_and_barnes,0,0,244748779520,"{""name"":""King and Barnes"",""city"":""Horsham"",""state"":""West Sussex"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.0638,""lon"":-0.327}}",1,36,1
+nebraska_brewing_company,0,0,244877950977,"{""name"":""Nebraska Brewing Company"",""city"":""Papillion"",""state"":""Nebraska"",""code"":""68046"",""country"":""United States"",""phone"":""1-402-934-7100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7474 Towne Center Parkway #101""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.244,""lon"":-107.879}}",1,51,1
+big_time_brewing-bhagwan_s_best_ipa,0,0,244381122560,"{""name"":""Bhagwan's Best IPA"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Building on a classic English style and adding some uniquely Northwest touches, Bhagwan's Best has developed fiercely loyal following wherever it is served. Bursting with local hop flavor, bitterness, and aroma, it is a particular treat when served dry-hopped and cask-conditioned on Big Time's beer engine. O.G. 16 Plato (1.064), alcohol is approximately 5% by weight."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
+cedar_brewing-pardon_me_porter,0,0,244499480576,"{""name"":""Pardon Me Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,60,1
+la_jolla_brew_house-stout,0,0,244752384001,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+kulmbacher_brauerei_ag-eisbock,0,0,244746616832,"{""name"":""Eisbock"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,30,1
+dixon_s_downtown_grill-angel_amber,0,0,244618625025,"{""name"":""Angel Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
+knig_ludwig_schlobrauerei_kaltenberg-konig_ludwig_weissbier_hell,0,0,244748779521,"{""name"":""König Ludwig Weissbier Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_ludwig_schlobrauerei_kaltenberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,36,1
+north_coast_brewing_company-old_rasputin_russian_imperial_stout,0,0,244877950978,"{""name"":""Old Rasputin Russian Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Produced in the tradition of 18th Century English brewers who supplied the court of Russia's Catherine the Great, Old Rasputin seems to develop a cult following wherever it goes. It's a rich, intense brew with big complex flavors and a warming finish."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,51,1
+blue_point_brewing-oatmeal_stout,0,0,244381122561,"{""name"":""Oatmeal Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,61,1
+celis_brewery-white,0,0,244499546112,"{""name"":""White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+labatt_ontario_breweries,0,0,244752384002,"{""name"":""Labatt Ontario Breweries"",""city"":""London"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-663-5050"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""150 Simcoe Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.9778,""lon"":-81.2467}}",1,45,1
+lake_placid_pub_brewery-lake_placid_frostbite_ale,0,0,244746616833,"{""name"":""Lake Placid Frostbite Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_placid_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
+dragonmead_microbrewery-erik_the_red,0,0,244618690560,"{""name"":""Erik the Red"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An Irish style red (amber) beer. Light in finish but bold in taste. Melanoidin malt is added for the red color and the spicy finish comes through from the Chinook hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
+kostritzer_schwarzbierbrauerei-schwarzbier,0,0,244748779522,"{""name"":""Schwarzbier"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kostritzer_schwarzbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,36,1
+oconomowoc_brewing-alt,0,0,244878016512,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oconomowoc_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,51,1
+blue_point_brewing-oktoberfest,0,0,244381122562,"{""name"":""Oktoberfest"",""abv"":5.01,""ibu"":28.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-12-20 15:35:15"",""description"":""Blue Point Octoberfest is another palate-pleasing seasonal brew. Originally brewed in 1810 to celebrate the betrothal of the Crown Prince of Bavaria, Blue Point continues the celebration by traditionally brewing this special malty amber lager every October. Octoberfest lager is stored cold for 2 months to ensure its distinct smooth flavor. Tap a pint and celebrate the season!"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
+cervejaria_sudbrack-eisenbahn_weizenbock,0,0,244499546113,"{""name"":""Eisenbahn Weizenbock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,60,1
+lakefront_brewery-pumpkin_lager,0,0,244752449536,"{""name"":""Pumpkin Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+lakefront_brewery-klisch,0,0,244746682368,"{""name"":""Klisch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+elliott_bay_brewery_and_pub,0,0,244618690561,"{""name"":""Elliott Bay Brewery and Pub"",""city"":""Seattle"",""state"":""Washington"",""code"":""98116"",""country"":""United States"",""phone"":""1-206-932-8695"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4720 California Avenue SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5604,""lon"":-122.387}}",1,29,1
+kulmbacher_brauerei_ag-monchshof_premium_schwarzbier,0,0,244748845056,"{""name"":""Mönchshof Premium Schwarzbier"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""Schwarzbier means \""black beer\"" in German. It is a medium-bodied, malt-accented dark brew, very opaque and deep-sepia in color, with a chewy texture and a firm, creamy, long-lasting head. In spite of its dark color, it comes across as a soft and elegant brew that is rich, mild, and surprisingly balanced. It never tastes harsh, toasty or acrid. The beer is often referred to as a Schwarzpils, a \""black Pils,\"" but, unlike a blond Pils, which can be assertively bitter, the hop bitterness in Schwarzbier is always gentle and subdued.\r\n\r\nIn a glass, Schwarzbier looks much like a British dark ale, but looks can be deceiving. Schwarzbier, unlike a British ale, has a clean lager taste that leaves next to no perception of fruitiness on the palate. Instead, Schwarzbier produces very mild, almost bittersweet, notes of chocolate, coffee, and vanilla. Like most traditional German lagers, Schwarzbier has a malty middle, but the sweetness is never cloying or overpowering. The beer is moderately to well attenuated and the finish tends to be dry. Its alcohol level by volume is in the range of 4.5 to 5%, rarely higher. To accentuate the Schwarzbier's dark elegance and appealing head, always serve it in a tall, fluted or tulip-shaped glass."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,36,1
+otto_s_pub_and_brewery-apricot_wheat,0,0,244878016513,"{""name"":""Apricot Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A light American wheat ale with the delicate aroma and flavor of apricot. ABV 4.7%"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,51,1
+bluegrass_brewing_company_inc,0,0,244381122563,"{""name"":""Bluegrass Brewing Company, Inc."",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40207"",""country"":""United States"",""phone"":""502-899-7070"",""website"":""http://www.bbcbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The original Bluegrass Brewing Company opened in 1993 at this location, 3929 Shelbyville Road, near Westport Rd., & Chenoweth, & Breckenridge Lanes. It is the city's oldest remaining brewpub and was the first to make a significant mark on the national brewpub and microbrewery scene. Louisville's best beer is made at this location, and large glass windows in the back dining room allow you to witness the brewing operation. The headbrewer is Jerry Gnagy, assisted by Sam Cruz and Cody Mingus."",""address"":[""3929 Shelbyville Rd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.253,""lon"":-85.654}}",1,61,1
+cheshire_cat_brewery-fat_cat,0,0,244499611648,"{""name"":""Fat Cat"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+lammin_sahti_oy,0,0,244752449537,"{""name"":""Lammin Sahti Oy"",""city"":""Lammi"",""state"":"""",""code"":""0"",""country"":""Finland"",""phone"":""358-3-633-5444"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Liesontie 554""]}",1,45,1
+mcmenamins_mill_creek-nebraska_bitter,0,0,244869431296,"{""name"":""Nebraska Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+etna_brewing-export,0,0,244618690562,"{""name"":""Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""etna_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+liberty_steakhouse_and_brewery-rocket_s_red_ale,0,0,244748845057,"{""name"":""Rocket's Red Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A blend of Pacific Northwest hops and three different caramel malts combine to give this beer its unique character."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
+otto_s_pub_and_brewery-otto_s_weizenbock,0,0,244878016514,"{""name"":""Otto's Weizenbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong dark German style wheat bock. This wheat beer is estery like the hefeweizen, but bigger with more of everything."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,51,1
+boston_beer_company-samuel_adams_cream_stout,0,0,244381122564,"{""name"":""Samuel Adams Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Cappucino of beers. Roasty, smooth and sweet.\r\nSamuel Adams® Cream Stout is a true cream stout, balancing body and sweetness with the natural spiciness of grain and hand selected English hops. Our Brewers use generous portions of roasted chocolate and caramel malts as well as unroasted barley to impart a fullness of body, a roasty malt character and rich, creamy head. Its dark mahogany color make it almost as easy on the eyes as it is on the palate."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
+coopers_brewery-coopers_sparkling_ale,0,0,244499611649,"{""name"":""Coopers Sparkling Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The ale by which all others should be measured. With its famous cloudy sediment and its distinctive balance of malt, hops and fruity characters, the old 'Red Label' is a tasty slice of Coopers history. \r\n\r\nLittle has changed since Thomas Cooper produced his first batch of Coopers Sparkling Ale in 1862. It's still brewed naturally using the century old top fermentation method and it still tastes great! \r\n\r\nSparkling Ale contains no additives or preservatives."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,60,1
+latrobe_brewing,0,0,244752449538,"{""name"":""Latrobe Brewing"",""city"":""Latrobe"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.3212,""lon"":-79.3795}}",1,45,1
+michigan_brewing-big_mac,0,0,244869496832,"{""name"":""Big Mac"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Made popular in the 19th century in Dortmunder, Germany, these pale golden lagers exhibit a classic clean character with notes of biscuity malts. Bitterness is akin to a German Pilsner with an aromatic aroma. Mouthfeel is firm and even, with an overall dry tone."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
+fish_brewing_company_fish_tail_brewpub-blonde_ale,0,0,244618690563,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+live_oak_brewing,0,0,244871331840,"{""name"":""Live Oak Brewing"",""city"":""Austin"",""state"":""Texas"",""code"":""78702"",""country"":""United States"",""phone"":""1-512-385-2299"",""website"":""http://www.liveoakbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Live Oak Brewing Company is truly a home-grown Austin enterprise. Two of Austin's own homebrews, Chip McElroy and Brian Peters, literally hand-built the brewery and were the two main brewers, keg washers, delivery persons, and proselytizers. Live Oak has grown since then, but we are still just as passionate about providing delicious old-world style beers that are rarely commercially available. Our special beers are brewed in limited quantities in a small east Austin brewery and are available in fine pubs and restaurants in Austin, Dallas, Houston, Alpine, Marathon, San Marcos and San Antonio."",""address"":[""3301-B East Fifth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2541,""lon"":-97.7055}}",1,36,1
+paulaner-hefeweizen,0,0,245001814016,"{""name"":""Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""Paulaner Hefe-Weißbier is the best-selling beer by the Paulaner Brewery. Specially produced top-fermented yeast is what gives it its unmistakeable character: sparkling light, fruity, and just a tiny bit bitter. Because it is not filtered during the brewing process, it retains its originality and the many vitamins, minerals and trace elements.\r\n\r\nHefe Weissbier Naturtrüb:\r\n12.5% original wort; 5.5% alcohol; 44 kcal/100 ml"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
+brasserie_mcauslan-st_ambroise_oatmeal_stout,0,0,244499742720,"{""name"":""St-Ambroise Oatmeal Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,61,1
+cooperstown_brewing_company-old_slugger_pale_ale,0,0,244499611650,"{""name"":""Old Slugger Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Old Slugger\"" is a hearty Pale Ale, copper in color, crisp malty fullness on the front of the palate and lingering hop bitterness on the back with a dry finish. It is brewed with four barley malts, including two-row English pale and crystal malts, balanced with Mt. Hood, Cascade and Fuggle hops, and fermented in open vessels by Ringwood Yeast, a true top-fermenting ale yeast. \""Old Slugger\"" is the flagship beer of the Cooperstown Brewing Company and was first brewed in July 1995 and bottled in November 1995."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+le_cheval_blanc,0,0,244752449539,"{""name"":""Le Cheval Blanc"",""city"":""Montreal"",""state"":""Quebec"",""code"":""0"",""country"":""Canada"",""phone"":""1-514-522-0211"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""809 Rue Ontario Est""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.5181,""lon"":-73.5642}}",1,45,1
+midnight_sun_brewing_co-envy,0,0,244869562368,"{""name"":""Envy"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""ENVY Imperial Pilsner obsessively desires to be better than the world’s most common lager. Envy vies for attention with its beautifully bright, golden color and tightly-formed crown. Intense yet true pilsner malt provides the perfect base for profuse citrus, floral and spicy hop flavor. Envy achieves distinction, making other beers turn green.""}",1,30,1
+goose_island_beer_company_clybourn-strong_brown_ale,0,0,244618756096,"{""name"":""Strong Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,29,1
+lost_coast_brewery-hefeweizen,0,0,244871331841,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+privatbrauerei_bolten-alt,0,0,245001879552,"{""name"":""Alt"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_bolten"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,51,1
+brennerei_distillerie_radermacher-rader_ambree,0,0,244499808256,"{""name"":""Rader Ambrée"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brennerei_distillerie_radermacher"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+corner_pub,0,0,244499611651,"{""name"":""Corner Pub"",""city"":""Reedsburg"",""state"":""Wisconsin"",""code"":""53959"",""country"":""United States"",""phone"":""1-608-524-8989"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""100 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.5323,""lon"":-90.0099}}",1,60,1
+lion_nathan_australia_hunter_street,0,0,244875001856,"{""name"":""Lion Nathan Australia Hunter Street"",""city"":""Sydney"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":""61-(02)-9320-2200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Level 15, 20 Hunter Street""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-33.8687,""lon"":151.217}}",1,45,1
+minocqua_brewing_company-rye_porter,0,0,244869562369,"{""name"":""Rye Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark, full bodied ale has a hint of rye accompanied by chocolate malt. The perfect brew for relaxed sipping!"",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
+gordon_biersch_brewing-golden_export,0,0,244618756097,"{""name"":""Golden Export"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+main_street_alehouse-eager_beaver_ipa,0,0,244871397376,"{""name"":""Eager Beaver IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
+privatbrauerei_erdinger_weissbru-weissbier_pikantus,0,0,245001879553,"{""name"":""Weißbier Pikantus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,51,1
+broughton_ales-border_gold_oranic_ale,0,0,244499808257,"{""name"":""Border Gold Oranic Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""According to legend, gold panned from the crystal clear Border streams of the Yarrow valley, nearby the site of the Broughton Ales brewery, was used to make the third wedding ring of Mary Queen of Scots.\r\n \r\nThis golden coloured ale is brewed with a skilful blend of organically grown hops and malt, and pure Scottish water to the exacting standards required by Soil Association Certification Ltd. of the United Kingdom.\r\n\r\nThe end result is a light golden coloured, clean tasting beer with an excellent hop aroma and aftertaste.\r\n\r\nAt 6.0% ABV a premium ale for those who know and care about what they eat and drink.\r\n\r\nBorder Gold has won several awards, the most recent being a bronze medal in the International Brewing Awards in Munich 2005."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,61,1
+crooked_river_brewing,0,0,244499677184,"{""name"":""Crooked River Brewing"",""city"":""Cleveland"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,60,1
+long_trail_brewing_co,0,0,244875067392,"{""name"":""Long Trail Brewing Co"",""city"":""Bridgewater Corners"",""state"":""Vermont"",""code"":""5035"",""country"":""United States"",""phone"":""802) 672-5011"",""website"":""http://www.longtrail.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Long Trail Brewery is a microbrewery located in Bridgewater, Vermont, USA. It was opened in May of 1989 by Andy Pherson, who now serves both as the company's president and brewmaster. The company's first brewery was located in the basement of the Bridgewater Woolen Mill in Vermont's Green Mountains, but by 1995 the company had become popular enough that it was able to relocate to a state-of-the-art brewery and visitor center (featuring an open-air deck overlooking the Ottaquechee River) in Bridgewater Corners, VT."",""address"":[""Route 4 & 100A""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.5882,""lon"":-72.6563}}",1,45,1
+montana_brewing-harvest_ale,0,0,244869627904,"{""name"":""Harvest Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+gottberg_brew_pub-bugeater_brown_ale,0,0,244618821632,"{""name"":""Bugeater Brown Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,29,1
+michigan_brewing-celis_pale_bock,0,0,244871397377,"{""name"":""Celis Pale Bock"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian, lightly spiced pale ale. This caramel colored, light-bodied brew has a mild caramel flavor, a hint of orange peel and coriander and slight hop bitterness."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,36,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-dpa,0,0,245001945088,"{""name"":""DPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+3_fonteinen_brouwerij_ambachtelijke_geuzestekerij-drie_fonteinen_kriek,0,0,244381188096,"{""name"":""Drie Fonteinen Kriek"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""3_fonteinen_brouwerij_ambachtelijke_geuzestekerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,62,1
+brouwerij_liefmans-goudenband_1999,0,0,244499808258,"{""name"":""Goudenband 1999"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+crooked_waters_brewing,0,0,244499677185,"{""name"":""Crooked Waters Brewing"",""city"":""Peoria"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.6936,""lon"":-89.589}}",1,60,1
+lowenbrau_brauerei-dunkel,0,0,244875132928,"{""name"":""Dunkel"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+nordsj_grdsbryggeri-ostgota_blabars,0,0,244869627905,"{""name"":""Östgöta Blåbärs"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nordsj_grdsbryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+great_dane_pub_and_brewing_1-old_scratch_barleywine_2000,0,0,244745961472,"{""name"":""Old Scratch Barleywine 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+mickey_finn_s_brewery-wee_heavy,0,0,244871462912,"{""name"":""Wee Heavy"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,36,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-summer_brau,0,0,245001945089,"{""name"":""Summer Brau"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+abita_brewing_company-strawberry,0,0,244381188097,"{""name"":""Strawberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:55:43"",""description"":""Strawberry Harvest Lager is a wheat beer made with real Louisiana strawberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,62,1
+bulmer_cider-strongbow_cider,0,0,244499873792,"{""name"":""Strongbow Cider"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bulmer_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""Strongbow is a brand of cider manufactured in England by Bulmers. It is the UK's most popular cider[citation needed], accounting for more than half of the draught cider sold in British pubs. Strongbow is also unique in that it is produced with a Royal Warrant."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
+daleside_brewery,0,0,244499742720,"{""name"":""Daleside Brewery"",""city"":""Harrogate"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01423)-880022"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Camwal Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":53.9999,""lon"":-1.501}}",1,60,1
+mad_anthony_brewing-harry_baals_stout,0,0,244875198464,"{""name"":""Harry Baals Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+oggi_s_pizza_and_brewing_vista-torrey_pines_ipa,0,0,244869627906,"{""name"":""Torrey Pines IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,30,1
+great_divide_brewing-bee_sting_honey_ale,0,0,244746027008,"{""name"":""Bee Sting Honey Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
+mill_steakhouse-5280_roadhouse_ghost_town_brown,0,0,244871462913,"{""name"":""5280 Roadhouse Ghost Town Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mill_steakhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
+pyramid_alehouse_brewery_and_restaurant_berkeley,0,0,245001945090,"{""name"":""Pyramid Alehouse, Brewery and Restaurant - Berkeley"",""city"":""Berkeley"",""state"":""California"",""code"":""94710"",""country"":""United States"",""phone"":""1-510-528-9880"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""901 Gilman Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5917,""lon"":-122.335}}",1,51,1
+alltech_s_lexington_brewing_company-limestone_crisp_hoppy_pale_ale_discontinued,0,0,244381188098,"{""name"":""Limestone Crisp-Hoppy Pale Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+cains-2008_culture_beer,0,0,244499873793,"{""name"":""2008 Culture Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:27:08"",""description"":""A full, clean and refreshing pale coloured bitter with an abundance of citrus hop character created by the blend of dry and late hopping techniques.\n\nIt also has subtle hints of malt and fruit on aroma and palate which gives the beer a well rounded balance."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,61,1
+de_dochter_van_de_korenaar,0,0,244631928832,"{""name"":""de dochter van de korenaar"",""city"":""baarle-hertog"",""state"":"""",""code"":""2387"",""country"":""Belgium"",""phone"":""0032 14699800"",""website"":""http://www.dedochtervandekorenaar.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""pastoor de katerstraat 24""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4421,""lon"":4.9232}}",1,60,1
+mad_river_brewing-double_india_pale_ale,0,0,244875198465,"{""name"":""Double India Pale Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+old_hat_brewery-alt,0,0,244869627907,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,30,1
+great_lakes_brewing-edmund_fitzgerald_porter,0,0,244746027009,"{""name"":""Edmund Fitzgerald Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,29,1
+minhas_craft_brewery-berghoff_original_lager_beer,0,0,244871462914,"{""name"":""Berghoff Original Lager Beer"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+ramapo_valley_brewery-demon_fuel,0,0,245002010624,"{""name"":""Demon Fuel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+amherst_brewing_company,0,0,244381253632,"{""name"":""Amherst Brewing Company"",""city"":""Amherst"",""state"":""Massachusetts"",""code"":""1002"",""country"":""United States"",""phone"":""413-253-4400"",""website"":""http://www.amherstbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Amherst Brewing Company is a full-service brewpub located in downtown Amherst, Massachusetts. Our 10-Barrel brewery is visible from the bar and produces some of the finest ales and lagers for serving in our 150-seat restaurant and 100-seat lounge and game room. Brewery tours can be made by appointment. Our giant, brass-top bar seats over 30 people and is fully stocked, including Single Malt Scotches and Small Batch Bourbons. An additional 40 seats are available on our seasonal patio; the best place in town to relax and enjoy an ABC draft or specialty brew while watching passersby. --From Amherst Website"",""address"":[""24 North Pleasant Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.3763,""lon"":-72.5199}}",1,62,1
+cj_s_brewery_grill-mocha_joe,0,0,244499939328,"{""name"":""Mocha Joe"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cj_s_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+devil_mountain_brewing-black_honey_ale,0,0,244631994368,"{""name"":""Black Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""devil_mountain_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
+mambo_beer-beer,0,0,244875198466,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mambo_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+oyster_bar_bistro_and_brewery-lighthouse_ale,0,0,244869693440,"{""name"":""Lighthouse Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+great_waters_brewing_company,0,0,244746092544,"{""name"":""Great Waters Brewing Company"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55102"",""country"":""United States"",""phone"":""1-651-224-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""426 St.Peter Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9467,""lon"":-93.097}}",1,29,1
+moon_river_brewing_company-dixie_crystal,0,0,244871528448,"{""name"":""Dixie Crystal"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Belgian Trippel tradition calls for a moderately heavy grist of golden pilsner malt and \""Candy\"" sugar that sends the yeast into overdrive. We used local Dixie Crystal."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,36,1
+restaurant_isarbru-stationsweizen,0,0,245002010625,"{""name"":""Stationsweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""restaurant_isarbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
+anheuser_busch-bud_light,0,0,244381253633,"{""name"":""Bud Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced nationally in 1982, Bud Light is brewed using a blend of domestic and imported hops as well as a combination of barley malts and rice. It contains more malt and hops by ratio of ingredients than Budweiser, which gives the brew a distinctively clean and crisp taste."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,62,1
+cooper_s_cave_ale_company-radeau_red_ale,0,0,244500004864,"{""name"":""Radeau Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Cooper's Cave Ale Company's flagship ale is an Irish Red Ale. Three English Malts and one Belgian Munich Malt make up the grain bill. It is a full bodied Red Ale packed with flavor, blended with American Nugget hops for bitterness and East Kent Golding for flavor and aroma. This ale has turned the heads of many \""dyed in the wool\"" American lager drinkers."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
+dixon_s_downtown_grill-wazee_wheat,0,0,244632059904,"{""name"":""Wazee Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
+manayunk_brewery_and_restaurant-slam_dunkel,0,0,244875264000,"{""name"":""Slam Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+pike_pub_and_brewery-weisse,0,0,244992770048,"{""name"":""Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
+harpoon_brewery_boston-harpoon_leviathan,0,0,244746092545,"{""name"":""Harpoon Leviathan"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Harpoon Leviathan Imperial IPA will challenge your senses and your palate. As the vibrant aroma rushes out of your glass you will notice the blend of piney and tropical fruit notes. At first sip, this big beer starts with apowerful hop bitterness up front and an aggressive hop flavor and character throughout. \r\n\r\nLeviathan Imperial IPA is brewed with tons of pale malt and just enough caramel malt to provide a sweet malt body to balance the hop intensity. We used copious amounts of a variety of hops including Chinook, Centennial, Simcoe, and Amarillo at various points during the boil to create a complex hop flavor and clean lingering bitter finish. We then fermented the beer with Harpoon’s own versatile proprietary yeast. Finally, we dry hopped at a rate of over 1 lb a barrel to produce this beer’s massive aroma."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,29,1
+nicolet_brewing-oktoberfest,0,0,244871528449,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
+rogue_ales-morimoto_black_obi_soba_ale,0,0,245002010626,"{""name"":""Morimoto Black Obi Soba Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The Morimoto Black Obi Soba Ale is part of the Rogue Ales Signature Series with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \r\n\r\nBlack Obi Soba Ale is dedicated to Phred Kaufmann, Rogues Distributor in Japan for the past decade--an International Rogue who runs Beer Inn Mugishutei in Sapporo (http://www.ezo-beer.com/index-e.html). Black Obi Soba is brewed with roasted buckwheat and malts (2-row pale, Munich, C-15, c-60 and Weyermann - note, this beer contains Gluten) providing a rich nut-laced flavor, while the 3 hop varieties (Horizon. Sterling and Cascade) blend to provide a refreshing zest. Morimoto Black Obi Soba Ale is packaged in a 22oz screened bottle and is available in select markets.\r\nTo learn more about the Chef, visit Morimotos web page."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,51,1
+anheuser_busch-jack_s_pumpkin_spice_ale,0,0,244381253634,"{""name"":""Jack's Pumpkin Spice Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Our fall seasonal is a subtle, well-balanced ale, copper in color, offering rich, full flavors and aromas of pumpkin and spices."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,62,1
+coronado_brewing_company-mermaids_red_ale,0,0,244500004865,"{""name"":""Mermaids Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A well balanced, medium-to full bodied beer, red in color and very flavorful. The red color and slight caramel-roasted flavor comes from generous amounts of caramel malts and a touch of chocolate malts. Well hopped to balance the malty sweetness, and dry-hopped with cascade for a full hop flavor and aroma."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,61,1
+dogfish_head_craft_brewery-chateau_jiahu,0,0,244632059905,"{""name"":""Chateau Jiahu"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""9000 year old Chateau Jiahu stands apart as the most ancient, chemically-attested alcoholic beverage in the world. Its recreation is based on painstaking excavation by Chinese archaeologists of Jiahuin the Yellow River basin, state-of-the-art microanalysis of pottery residues by American laboratories, and the inspired \""Neolithic\"" brewing of Dogfish Head Craft Brewery. Chateau Jiahu, then as now, opens a window into the world of our ancestors."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,60,1
+margaritaville_brewing_company-lone_palm_ale,0,0,244875264001,"{""name"":""Lone Palm Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""margaritaville_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
+pyramid_ales_brewery-pyramid_hefe_weizen,0,0,244992835584,"{""name"":""Pyramid Hefe Weizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Pyramid Hefe Weizen is left unfiltered for extra flavor and aroma. \r\n\r\nHandcrafted with 60% malted wheat (10% more than Bavarian tradition calls for), our award-winning Hefe Weizen is unsurpassed in quality and exceptionally smooth and refreshing for the whole beer experience."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,30,1
+harvey_son_lewes-elizabethan_ale,0,0,244746092546,"{""name"":""Elizabethan Ale"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+nodding_head_brewpub,0,0,244871528450,"{""name"":""Nodding Head Brewpub"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19102"",""country"":""United States"",""phone"":""1-215-569-9525"",""website"":""http://www.noddinghead.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1516 Sansom Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9502,""lon"":-75.1666}}",1,36,1
+ruppaner_brauerei,0,0,245002076160,"{""name"":""Ruppaner-Brauerei"",""city"":""Konstanz"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7531-/-9373-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hoheneggstrae 41-51""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6855,""lon"":9.208}}",1,51,1
+appleton_brewing,0,0,244381253635,"{""name"":""Appleton Brewing"",""city"":""Appleton"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.2619,""lon"":-88.4154}}",1,62,1
+crane_river_brewpub_and_cafe-zoo_brew_25,0,0,244500004866,"{""name"":""Zoo Brew 25"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
+dogfish_head_craft_brewery-fort,0,0,244632059906,"{""name"":""Fort"",""abv"":18.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong ale brewed with a ridiculous amount of pureed raspberries (over a ton of em!)."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,60,1
+marin_brewing-hefe_weiss,0,0,244875329536,"{""name"":""Hefe Weiss"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+red_oak_brewery,0,0,244992901120,"{""name"":""Red Oak Brewery"",""city"":""Whitsett"",""state"":""North Carolina"",""code"":""27377"",""country"":""United States"",""phone"":""1-888-Red-Oaks"",""website"":""http://www.redoakbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Oak Brew Pub was opened in February of 1991. In addition to brewing according to the Law of Purity, we decided not to filter or pasteurize our Bavarian Lagers to ensure the vitamins remain whole for that rich, mellow taste. Within months of opening the pub we began selling Red Oak to other accounts in the Greensboro area. In no time the 6 original aging tanks were maxed out so we added on to the building and installed 13 new tanks. By 2001 Red Oaks popularity had grown so much that we were brewing 24/7...and out of aging capacity. We began the search for a location to build a larger brewery with space to accommodate future growth. After settling on a 12 acre tract along I 40/85 between Greensboro and Burlington in 2003...we began discussions with 3 Bavarian Brewery fabricators. Rolec of Cheming, Bavaria was chosen to supply the new brewery; and in 2005 construction began on the building to house it. By the summer of 2007 Red Oak was ready to open the nation's most modern computerized brewing facility...consistently producing the Freshest, Purest, Bavarian Lagers in America."",""address"":[""6901 Konica Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.0613,""lon"":-79.5695}}",1,30,1
+harviestoun_brewery,0,0,244746158080,"{""name"":""Harviestoun Brewery"",""city"":""Alva"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01259)-769100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hillfoots Business Village""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.1531,""lon"":-3.8006}}",1,29,1
+north_country_brewery-paddlers_pale_ale,0,0,244871593984,"{""name"":""Paddlers Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This clean, crisp ale was dry-hopped and is as refreshing as a plunge in the Slippery Rock Creek."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
+saint_louis_brewery_schlafy_tap_room-schlafly_barleywine,0,0,245002076161,"{""name"":""Schlafly Barleywine"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,51,1
+arthur_guinness_son-foreign_extra_stout,0,0,244381253636,"{""name"":""Foreign Extra Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-12-20 15:44:53"",""description"":""Foreign Extra Stout is brewed with generous hops and roasted barley for a bittersweet balance & full-flavored, natural bite. Developed over 200 years ago for global export from Ireland, the addition of extra hops ensured this Stout would arrive to its destination in perfect condition. Today, Guinness Foreign Extra Stout is enjoyed by millions of people around the world."",""style"":""Foreign (Export)-Style Stout"",""category"":""Irish Ale""}",1,62,1
+diamond_knot_brewery_alehouse-brown_ale,0,0,244632387584,"{""name"":""Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,61,1
+eddie_mcstiff_s_brewpub,0,0,244632059907,"{""name"":""Eddie McStiff's Brewpub"",""city"":""Moab"",""state"":""Utah"",""code"":""84532"",""country"":""United States"",""phone"":""1-435-259-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""57 South Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5725,""lon"":-109.551}}",1,60,1
+mckenzie_brew_house-east_kent_ipa,0,0,244875329537,"{""name"":""East Kent IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
+rock_bottom_restaurant_brewery_milwaukee-hefeweizen,0,0,244992901121,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,30,1
+hops_grillhouse_brewery_cherry_creek-lightning_bold_gold,0,0,244746158081,"{""name"":""Lightning Bold Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+oregon_trader_brewing-russian_imperial_stout,0,0,244871593985,"{""name"":""Russian Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oregon_trader_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+san_marcos_brewery_grill,0,0,245002076162,"{""name"":""San Marcos Brewery & Grill"",""city"":""San Marcos"",""state"":""California"",""code"":""92069"",""country"":""United States"",""phone"":""1-760-471-0050"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1080 West San Marcos Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.1345,""lon"":-117.191}}",1,51,1
+australian_brewing_corporation-king_lager,0,0,244381319168,"{""name"":""King Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""australian_brewing_corporation"",""updated"":""2010-07-22 20:00:20"",""description"":""King Lager is brewed to an all Australian full strength formula in Germany, by the Giessener Brauhaus who have over 100 years of brewing knowledge. Made 100% naturally, King Lager complies with the strict German Purity Law of 1516 resulting in a superior tasting lager of world standing.\r\n\r\nOnly the highest quality barley malt, hops, water and yeast, have been combined to give King Lager its unique malt character and crisp, distinctive taste.\r\n\r\nThe sophisticated King Lager packaging reflects the quality of this exceptional, full flavoured beer. The sleek, contoured bottle, stylish 4 pack design and premium labelling makes this lager stand out amongst the best in any environment. \r\n\r\nKing Lager is full strength with 5.2% alc/vol, 20 beers to a case and 375ml of classic, crisp, clean beer in every bottle.\r\n\r\nMake your move now to King Lager – it’s world class"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,62,1
+diamond_knot_brewery_alehouse-industrial_ipa,0,0,244632453120,"{""name"":""Industrial IPA"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""This one's a butt-kicker! Essentially, the same recipe as the IPA, but with approximately 25% more grain and twice the hops!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,61,1
+edelweissbrauerei_farny-edelweiss,0,0,244632125440,"{""name"":""Edelweiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,60,1
+mendocino_brewing_hopland-blue_heron_pale_ale,0,0,244875329538,"{""name"":""Blue Heron Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+rock_bottom_restaurant_brewery_milwaukee-honey_creek_pale_ale,0,0,244992901122,"{""name"":""Honey Creek Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+hops_haven_brew_haus,0,0,244746223616,"{""name"":""Hops Haven Brew Haus"",""city"":""Sheboygan"",""state"":""Wisconsin"",""code"":""53081"",""country"":""United States"",""phone"":""1-920-457-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1327 North 14th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.7594,""lon"":-87.7228}}",1,29,1
+orlando_brewing-orlando_blonde_ale,0,0,244871593986,"{""name"":""Orlando Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlando_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
+sand_creek_brewing_company-whiskey_barrel_whitetail_cream_ale,0,0,245002141696,"{""name"":""Whiskey Barrel Whitetail Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+backwater_brewing-cat_tail_pale_ale,0,0,244381319169,"{""name"":""Cat Tail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backwater_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+eagle_brewing-golden,0,0,244632453121,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+egan_brewing-smokey_the_beer,0,0,244632125441,"{""name"":""Smokey the Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+michigan_brewing-superior_stout,0,0,244875395072,"{""name"":""Superior Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""All the good stuff and just a little bit more. Michigan Brewing Company is proud to offer this thick and creamy stout with all the roasted, coffee-like flavor you can handle. Need we say more?"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+sabmiller_india-peroni,0,0,244992966656,"{""name"":""Peroni"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Peroni Nastro Azzurro is an intensely crisp and refreshing lager beer, with\r\nan unmistakable touch of Italian style\r\nhttp://www.sabmiller.in/brands_peroni.html\r\nPeroni Beer, Peroni Lager Beer, Peroni Nastro Azzurro Bee"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,30,1
+humboldt_brewing-black_xantus,0,0,244746223617,"{""name"":""Black Xantus"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A bourbon barrel aged Imperial Stout infused with coffee."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,29,1
+pabst_brewing_company,0,0,244871659520,"{""name"":""Pabst Brewing Company"",""city"":""San Antonio"",""state"":""Texas"",""code"":""78296"",""country"":""United States"",""phone"":""1-800-935-2337"",""website"":""http://www.pabst.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Pabst Brewing Company, we make beer with history, with a sense of place. From Milwaukee to Motown, through the Pacific Northwest and back East again, our brands are like family and hometown friends. And we should know a little something about regional pride: Since we started in 1844, we've welcomed 24 new states into the Union. Today, Pabst crafts over 25 classic brews with strict adherence to original standards of quality. Our brands rack up national and international festival awards. Most important, they continue to make memories in the places that mean a lot to our consumers."",""address"":[""PO Box 1661""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.43,""lon"":-98.49}}",1,36,1
+saxer_brewing-pilsner,0,0,245002141697,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saxer_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+barley_island_brewing-60_shilling_scotch_ale,0,0,244381319170,"{""name"":""60 Shilling Scotch Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+abbaye_de_maredsous,0,0,244381384704,"{""name"":""Abbaye de Maredsous"",""city"":""Dene"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)82-69-82-11"",""website"":""http://www.maredsous10.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de Maredsous, 11""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.3093,""lon"":4.7646}}",1,63,1
+egan_brewing-stuvenbrau_maibock,0,0,244632518656,"{""name"":""Stüvenbräu Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,61,1
+elysian_brewery_public_house-zephyrus_pilsner,0,0,244632190976,"{""name"":""Zephyrus Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+middle_ages_brewing-old_marcus_ale,0,0,244875395073,"{""name"":""Old Marcus Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Typically Yorkshire. A strong Ale in which all English grown hop varieties are used. The grassy earthy character of Kent Goldings hops is the keynote in the aroma and finish. Try with fish and chips or a meat pie."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,45,1
+santa_barbara_brewing-pacific_pale,0,0,244992966657,"{""name"":""Pacific Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_barbara_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+humboldt_brewing-summer_nectar_wheat_ale,0,0,244746289152,"{""name"":""Summer Nectar Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+pete_s_brewing-bohemian_pilsner,0,0,244995325952,"{""name"":""Bohemian Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+schooner_brewery-oktoberfest,0,0,245002141698,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,51,1
+barley_john_s_brewpub-wild_brunette,0,0,244381319171,"{""name"":""Wild Brunette"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+allentown_brew_works-hop_explosion,0,0,244381450240,"{""name"":""Hop Explosion"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppiest Brew Works beer ever? The smell of grapefruit, a sweet malt flavor, and oh by the way, lots of hop bitterness. Brewed in the tradition of West Coast ales, we have put loads of malt and hops in our kettle to come up with this sensational ale. Brewed with pale, and crystal malts, hopped with Tomahawks for Yakima Valley, WA. This beer styled has made many a microbrewery famous and this one is sure to please all those who love hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
+elgood_sons,0,0,244632518657,"{""name"":""Elgood & Sons"",""city"":""Wisbech"",""state"":""Cambridge"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wisbech PE13 1LN""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.6643,""lon"":0.1595}}",1,61,1
+emerson_brewing,0,0,244632190977,"{""name"":""Emerson Brewing"",""city"":""Dunedin"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(03)-477-1812"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14 Wickliffe Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-45.872,""lon"":170.518}}",1,60,1
+midnight_sun_brewing_co-venus_belgian_style_quadrupel,0,0,244875460608,"{""name"":""Venus - Belgian-style Quadrupel"",""abv"":16.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Venus—goddess of love and beauty—exudes grace and voluptuousness. Indulgent with lush dark malts and sensuous star anise, VENUS is decadent and divine in body and spirit. Leisure lounging in French oak Cabernet Sauvignon wine casks results in a lovely liquid feast of fabulously luxurious flavors."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,45,1
+schloss_eggenberg-samichlaus_bier_2006,0,0,244993032192,"{""name"":""Samichlaus Bier 2006"",""abv"":14.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed only once a year on December 6. Samichlaus is aged for 10 months before bottling. This beer is perhaps the rarest in the world. Samichlaus may be aged for many years to come. Older vintages become more complex with a creamy warming finish.""}",1,30,1
+lammin_sahti_oy-kataja_olut_ivb,0,0,244746289153,"{""name"":""Kataja Olut IVB"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lammin_sahti_oy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+philadelphia_brewing_co-kenziger,0,0,244995391488,"{""name"":""Kenziger"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a real drinkin' beer! - a golden session ale that boasts both a European birthright and a thirst-quenching Philadelphia sensibility. Ke n zinger is refreshingly crisp and smooth, with a spirited flavor that grabs the attention of taste buds everywhere. Get some!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,36,1
+schussenrieder_erlebnisbrauerei-weisse,0,0,245002207232,"{""name"":""Weiße"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
+beach_brewing-harvest_gold,0,0,244381384704,"{""name"":""Harvest Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+appalachian_brewing_company-ipa_series_zeus,0,0,244381515776,"{""name"":""IPA Series (Zeus)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
+english_ales_brewery,0,0,244632518658,"{""name"":""English Ales Brewery"",""city"":""Marina"",""state"":""California"",""code"":""93933"",""country"":""United States"",""phone"":""1-831-883-3000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""223 Reindollar Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.6802,""lon"":-121.804}}",1,61,1
+fitger_s_brewhouse_brewery_and_grill-farmhouse_reserve,0,0,244632190978,"{""name"":""Farmhouse Reserve"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+mikkeller,0,0,244875460609,"{""name"":""Mikkeller"",""city"":""København"",""state"":"""",""code"":"""",""country"":""Denmark"",""phone"":""45-4162-3489"",""website"":""http://www.mikkeller.dk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Slien 2, 2. tv""]}",1,45,1
+schooner_brewery-ranger_red,0,0,244993032193,"{""name"":""Ranger Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,30,1
+marin_brewing-albion_amber_ale,0,0,244869103616,"{""name"":""Albion Amber Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,29,1
+philadelphia_brewing_co-newbold_ipa,0,0,244995391489,"{""name"":""Newbold IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Hop shortage be damned! We love IPA's, Philadelphia loves IPA's, we're going to brew an IPA. Rekindle your passion for your favorite Phi ladelphia brewery by enjoying our substantial, aromatic India Pale Ale. Newbold is aggressively hopped, with a crimson hue and depth of flavor that will satisfy the most demanding devotee of this revived style. Newbold I.P.A. tells it like it is."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
+sierra_nevada_brewing_co-india_pale_ale,0,0,245002207233,"{""name"":""India Pale Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+beach_chalet_brewery-fleishhacker_stout,0,0,244381384705,"{""name"":""Fleishhacker Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
+bamberger_mahr_s_bru-weisse,0,0,244381515777,"{""name"":""Weisse"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,63,1
+estes_park_brewery-stinger_wild_honey_wheat,0,0,244632584192,"{""name"":""Stinger Wild Honey Wheat"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We put close to a half a pound of Colorado honey per case in this wheat ale. The honey adds a sweetness and raises the alcohol content slightly. We use Mount hood and hallertau hops."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,61,1
+flour_city_brewing,0,0,244632190979,"{""name"":""Flour City Brewing"",""city"":""Rochester"",""state"":""New York"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.161,""lon"":-77.6109}}",1,60,1
+moonlight_brewing-baritone_red,0,0,244875460610,"{""name"":""Baritone Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
+selin_s_grove_brewing_co-shade_mountain_oatmeal_stout,0,0,244993097728,"{""name"":""Shade Mountain Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""selin_s_grove_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,30,1
+maritime_pacific_brewing-jolly_roger,0,0,244869169152,"{""name"":""Jolly Roger"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+pike_pub_and_brewery-old_bawdy_2006,0,0,244995457024,"{""name"":""Old Bawdy 2006"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+simmerberg_brusttt_und_taferne-dunkles_weissbier,0,0,245002207234,"{""name"":""Dunkles Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+bootleggers_steakhouse_and_brewery-double_zz_raspberry_wheat,0,0,244381384706,"{""name"":""Double ZZ Raspberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,62,1
+barley_s_brewing_1-pilsner,0,0,244381515778,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+f_x_matt_brewing-saranac_extra_special_bitter,0,0,244632584193,"{""name"":""Saranac Extra Special Bitter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Bitters are popular pub beers in England and are closely related to the more well known pales ales. Saranac Extra Special Bitter has a rich, malty taste balanced by the pleasant bitterness of Williamette Hops. The finish is dry with a hint of the Foral English Fuggle and Spicy Saaz hop. Enjoy!"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,61,1
+flyers_restraunt_and_brewery-sick_duck_imperial_stout,0,0,244632256512,"{""name"":""Sick Duck Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich and very dark Imperial Stout that has a complex flavor profile with hints of molasses and caramel. Brewed in July to allow time for aging, Sick Duck finishes very smooth for such a big beer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,60,1
+morland_and_co-old_speckled_hen,0,0,244875460611,"{""name"":""Old Speckled Hen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""morland_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,45,1
+ship_inn_brewpub,0,0,244993097729,"{""name"":""Ship Inn Brewpub"",""city"":""Milford"",""state"":""New Jersey"",""code"":""8848"",""country"":""United States"",""phone"":""1-800-651-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""61 Bridge Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5684,""lon"":-75.0954}}",1,30,1
+mash_house_restaurant_and_brewery-hoppy_hour_ipa,0,0,244869169153,"{""name"":""Hoppy Hour IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mash_house_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
+pike_pub_and_brewery,0,0,244995457025,"{""name"":""Pike Pub and Brewery"",""city"":""Seattle"",""state"":""Washington"",""code"":""98101"",""country"":""United States"",""phone"":""1-206-622-6044"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1415 First Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6081,""lon"":-122.34}}",1,36,1
+sixpoint_craft_ales-righteous_ale,0,0,245002207235,"{""name"":""Righteous Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Righteous Ale is actually a Rye Beer, brewed with a high amount of hops."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,51,1
+brauerei_locher_ag-leermond_bier,0,0,244500070400,"{""name"":""Leermond Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_locher_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+belfast_bay_brewing_company-lobster_ale,0,0,244381515779,"{""name"":""Lobster Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belfast_bay_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
+firehouse_brewing-wilderness_wheat,0,0,244632649728,"{""name"":""Wilderness Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
+founders_brewing-dirty_bastard_scotch_style_ale,0,0,244632256513,"{""name"":""Dirty Bastard Scotch Style Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Founders flagship beer. Dirty Bastard is an absolute beautiful beer to behold. Dark ruby in color and brewed with ten varieties of imported malts this beer continuously lives up to its reputation as a bold and powerful ale. Dirty Bastard is complex in the finish with hints of smoke and peat paired with a malty richness, finalized with a good bit of hop attitude. This beer ain't for the wee lads."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,60,1
+nelson_brewing-paddywhack_ipa,0,0,244875526144,"{""name"":""Paddywhack IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nelson_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
+south_shore_brewery-porter,0,0,245111062528,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
+matilda_bay_brewing-redback_original_malt_wheat_beer,0,0,244869234688,"{""name"":""Redback Original Malt Wheat Beer"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""matilda_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+rail_house_restaurant_and_brewpub-silver_cream,0,0,244995457026,"{""name"":""Silver Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+slab_city_brewing-ale,0,0,245002272768,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+brouwerij_abdij_saint_sixtus-trappist_westvleteren_8,0,0,244500070401,"{""name"":""Trappist Westvleteren 8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_saint_sixtus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,62,1
+bierbrouwerij_de_koningshoeven-la_trappe_dubbel,0,0,244381581312,"{""name"":""La Trappe Dubbel"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,63,1
+flatlander_s_restaurant_brewery-winter_delight,0,0,244632649729,"{""name"":""Winter Delight"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,61,1
+four_peaks_brewing-belgian_wit,0,0,244632256514,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian Wits originated in Belgium, in the area of Brabant just east of Brussels. This are was a part of the Netherlands in the early 1800's and was the wheat growing region. In this era, the Dutch basically controlled the spice trade, thus, coriander as well as Curacao orange peel made its way into the beer. Spices were used well before the widespread use of hops in beer. At one point there were more than thirty breweries producing a Wit, but overtime the style died off and in 1954 the last of the breweries ceased operations. One of the most famous brands of Belgian Wits is Hoegaarden (pronounced \""Who Garden\"") produced by Pierre Celis back in 1966. This revived the style and by the 1980's it was popular again!\r\n\r\nBelgian Wits are similar to a Hefeweizen with respect to the cloudiness of the beer and some phenolic (clove) and tart flavors. Wits should have white, rocky head when poured and should be almost white in appearance, hence the name. \r\n\r\nYou will smell oranges and coriander which is different than a Hefeweizen that smells of banana and clove. Our version of a Belgian Wit is called \""Hoof - Hearted Wit,\"" and it is brewed to style with dried bitter and sweet orange peel and coriander seeds."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,60,1
+new_holland_brewing_company-ichabod,0,0,244875526145,"{""name"":""Ichabod"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ichabod combines malted barley and real pumpkin with cinnamon and nutmeg in a delicious and inviting brew. A rewarding complement to many dishes, Ichabod pairs well with autumnal foods such as poultry and root vegetables. After dinner, try it with your favorite dessert!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,45,1
+spilker_ales-hopluia,0,0,245111128064,"{""name"":""Hopluia"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,30,1
+michigan_brewing-celis_grand_cru,0,0,244869234689,"{""name"":""Celis Grand Cru"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A GABF Gold Medal winner for 2007, this Belgian style strong ale, bright and golden colored is brewed with a hint of orange peel and coriander. This balanced, pleasant to drink brew, will sneak up on you. Consume with caution."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,29,1
+red_star_brewery_grille-golden_light,0,0,244995522560,"{""name"":""Golden Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,36,1
+sly_fox_brewhouse_and_eatery_royersford-featherweight_lager,0,0,245119844352,"{""name"":""Featherweight Lager"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+brouwerij_kerkom-bloesem_bink,0,0,244500135936,"{""name"":""Bloesem Bink"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_kerkom"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+bierbrouwerij_de_koningshoeven-la_trappe_quadrupel_2000_2001,0,0,244381581313,"{""name"":""La Trappe Quadrupel 2000/2001"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+flying_fish_brewing_company-esb_ale,0,0,244632649730,"{""name"":""ESB Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This ESB is a classic British extra special bitter made fresh with an American slant. A beautiful copper color with an amber head, this classic style features five different malts, including imported English malts, and three hop varieties. The rich malty start features caramel notes that develop into a smooth, pleasurable hop finish."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,61,1
+full_sail_brewing_1-very_special_pale_golden_ale,0,0,244632322048,"{""name"":""Very Special Pale Golden Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+north_country_brewery-squirrel_s_nut_brown,0,0,244875526146,"{""name"":""Squirrel's Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This smooth Ale has an even display of hop bitterness and bold malt flavor, with a hint of nutty flavor from the dark malt, to produce a superior brown ale taste"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
+steamworks-the_great_pumpkin_ale,0,0,245111193600,"{""name"":""The Great Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""A spiced ale that tastes just like pumpkin pie in a glass.\r\n\r\nThe Pumpkin Ale is a malty, copper coloured brew that's spiced with cinnamon, cloves, nutmeg and ginger. We add 100 lbs of pumpkin directly to the mash and the resulting beer tastes just like pumpkin pie in a glass."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,30,1
+midnight_sun_brewing_co-full_curl_scotch_ale,0,0,244869234690,"{""name"":""Full Curl Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Full Curl Scotch Ale is brewed in the traditional Wee Heavy Scotch strong ale style. (This is not to be confused with the lighter-bodied Scottish ale style.) All about malt, Full Curl pours dark brown with a tan head. Its medium body provides sustenance while its strength boosts courage. With a stiff mug of Full Curl under your belt, you may even have what it takes to don a kilt."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,29,1
+redhook_ale_brewery-hoptoberfest,0,0,244995522561,"{""name"":""Hoptoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
+spaten_franziskaner_brau-franziskaner_hefe_weissbier_dunkel,0,0,245119844353,"{""name"":""Franziskaner Hefe-Weissbier Dunkel"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":""Franziskaner Hefe-Weisse Dunkel wins supporters with its refreshing yet aromatic and full-bodied flavour. This dark, cloudy specialty is a special treat for weiss beer connoisseurs and bock beer aficionados.\r\n\r\nAll of Franziskaner's weiss beer products - Hefe-Weisse Hell and Hefe-Weisse Dunkel - are top-fermentation beers noted for their agreeable carbonation levels and zesty wheat flavour. The consistently high quality of our products makes Franziskaner weiss beers a refreshing taste sensation of a special sort. All Franziskaner weiss beers are brewed in strict adherence to the Bavarian Purity Law of 1516.""}",1,51,1
+brouwerij_van_steenberge-bruegel_amber_ale,0,0,244500135937,"{""name"":""Bruegel Amber Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
+bj_s_restaurant_and_brewery,0,0,244381581314,"{""name"":""BJ's Restaurant and Brewery"",""city"":""Brea"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":""714-990-2095"",""website"":""http://www.bjsrestaurants.com/beer.aspx"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 Brea Mall""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.9132,""lon"":-117.889}}",1,63,1
+fort_collins_brewery-chocolate_stout,0,0,244632649731,"{""name"":""Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fort_collins_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
+glen_ellyn_sports_brew-black_forest_dunkelweizen,0,0,244632322049,"{""name"":""Black Forest Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+northwest_brewwrks,0,0,244875591680,"{""name"":""Northwest Brewwrks"",""city"":""Kirkland"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6815,""lon"":-122.209}}",1,45,1
+stout_brothers_public_house-celtic_cross_stout,0,0,245111193601,"{""name"":""Celtic Cross Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,30,1
+midnight_sun_brewing_co-obliteration_i,0,0,244869300224,"{""name"":""Obliteration I"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration I is a Double IPA, heavily hopped with a big malt base. Its aroma is pungent with citrus, onion, and a touch of alcohol. The sweetness of caramel malt is offset with spice and pepper flavors that lead into an overwhelmingly bitter finish."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,29,1
+remington_watson_smith_brewing-nocturn,0,0,244995588096,"{""name"":""Nocturn"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""remington_watson_smith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,36,1
+sprecher_brewing-ipa,0,0,245119909888,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,51,1
+bube_s_brewery-bube_s_red_ale,0,0,244500201472,"{""name"":""Bube's Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This was the first draught on tap in November 2001. It has developed to a very quaffable ale. the slight sweet malt flavor is balanced with East Kent Golding hops to produce this delicious reddish-amber ale."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
+blitz_weinhard_brewing-hazelnut_stout,0,0,244381646848,"{""name"":""Hazelnut Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blitz_weinhard_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+four_peaks_brewing-8th_street_ale,0,0,244632715264,"{""name"":""8th Street Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Now In Bottles!! Our award winning 8th Street Ale is based on an English-style \""Best Bitter\"" which is the most common ale served in British pubs. What makes 8th Street Ale uncommon is its mellow bitterness and its slightly sweet malt flavor. It's aroma is derived from rare, imported Kentish hops, and lots of them.\r\nAlcohol content approximately 4.5% by volume (ALWAYS ON TAP!!)"",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,61,1
+golden_city_brewery-brain_damage,0,0,244632322050,"{""name"":""Brain Damage"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_city_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,60,1
+oggi_s_pizza_and_brewing_vista-sweet_spot_hefe,0,0,244875591681,"{""name"":""Sweet Spot Hefe"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,45,1
+sweetwater_brewing_atlanta-georgia_brown,0,0,245111193602,"{""name"":""Georgia Brown"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""It's definitely one of the finer American Brown Ales. A deep, copper colored, mild brown ale.\r\n\r\nSGB is accentuated by a slight nuttiness from its malt character. Designed to be a session beer it has a real smooth finish with a subtle hop character."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,30,1
+midnight_sun_brewing_co-pride,0,0,244869300225,"{""name"":""Pride"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""RIDE Belgian-style Strong Pale Ale boasts a glorious deep gold color and an amazing yet arrogant head. Plentiful pale malt creates beautiful, agile body. Assertive hops and Belgian yeast achieve charismatic floral and spice notes in aroma and flavor. But Pride’s predominant and unique character comes from its exposure to Brettanomyces in French oak Chardonnay barrels. At once tart and refreshing yet earthy and musty, Pride is unlike most beers on earth. And it’s bitter, lingering finish demands another sip. \r\n\r\nAwarded a BRONZE medal at World Beer Cup 2008, Pride has much too much to boast about."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,29,1
+rock_bottom_restaurant_brewery_minneapolis-big_horn_nut_brown_ale,0,0,244995653632,"{""name"":""Big Horn Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
+spring_house_brewing_company-two_front_teeth_holiday_ale,0,0,245119909889,"{""name"":""Two Front Teeth Holiday Ale"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We welcome the release of “Two Front Teeth Holiday Ale” a Belgian style Saison with subtle real cherry flavoring. What a good way to drown out in-laws by enjoying a pint or two of this recent release from Spring House Brewing Company. This is not for the faint palate; this holiday offering is coming in at 9.4% ABV! We hope you stop by for a taste or a Growler fill but unfortunately you have to stop in for this one. Enjoy!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,51,1
+bull_bush_pub_brewery-allgood_amber_ale,0,0,244500267008,"{""name"":""Allgood Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
+boston_beer_company-sam_adams_light,0,0,244381646849,"{""name"":""Sam Adams Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Great tasting yet drinkable, with a clean smooth finish. Sam Adams Light® is not just a lighter version of our Samuel Adams Boston Lager® but rather the culmination of over two years of tireless research and brewing trials to create a flavorful Light beer. And it has proved to be worth the wait. Brewed using only the finest two row malt and German Noble hops it has a smooth, complex roasted malt character that is superbly balanced with the subtle orange fruit notes of the Noble hops. Sam Adams Light® finishes crisp and smooth without any lingering bitterness, leaving you yearning for more."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,63,1
+front_street_brewery-hefeweizen,0,0,244632715265,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,61,1
+goose_island_beer_company_fulton_street-hex_nut_brown_ale,0,0,244632387584,"{""name"":""Hex Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
+on_tap_bistro_brewery-alt_er_ego_amber,0,0,244875591682,"{""name"":""Alt-Er-Ego Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
+the_alchemist-rapture,0,0,245111259136,"{""name"":""Rapture"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,30,1
+midnight_sun_brewing_co-rumbah_double_rum_bock,0,0,244869300226,"{""name"":""RUMBAH Double Rum Bock"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer Description:\r\nThis double bock provides smooth sailin' in rough seas. The fact that this luscious lager was aged in rum barrels creates the illusion that the open sea is a safe place. And while riding out these waves of grain, you may fall victim to the dangers of pirates, rum, bock. OK...maybe the beach is a bit over-rated."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,29,1
+rogue_ales-oregon_golden_ale,0,0,244995653633,"{""name"":""Oregon Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Oregon Golden Ale is the original Rogue brew dating back to 1988 and the days of the old Ashland brewpub location (which was destroyed by a flood several years ago). Deep golden in color with a rich malty aroma. Delicately smooth and crisp flavor and an herbal finish. Oregon Golden Ale is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops. Oregon Golden Ale is available in a 22-ounce bottle (the 12-ounce 6-pack was phased out in early 2005), and on draft."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,36,1
+st_georgenbru_modschiedler_kg-keller_bier,0,0,245119975424,"{""name"":""Keller-Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_georgenbru_modschiedler_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+bull_bush_pub_brewery-stonehenge_stout,0,0,244500267009,"{""name"":""Stonehenge Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
+boulevard_brewing_company-boulevard_unfiltered_wheat,0,0,244381646850,"{""name"":""Boulevard Unfiltered Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard Unfiltered Wheat Beer is a lively, refreshing ale with a naturally citrusy flavor and distinctive cloudy appearance. This easy-drinking American-style wheat beer has become our most popular offering, and the best-selling craft beer in the Midwest."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,63,1
+gaslight_brewery-harvest_ale,0,0,244632780800,"{""name"":""Harvest Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
+green_mill_brewing_saint_paul,0,0,244758020096,"{""name"":""Green Mill Brewing - Saint Paul"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55105"",""country"":""United States"",""phone"":""1-651-698-0353"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""57 Hamline Avenue South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9398,""lon"":-93.1568}}",1,60,1
+pacific_coast_brewing-harvest_wheat,0,0,244998930432,"{""name"":""Harvest Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+the_church_brew_works-heavenly_hefeweizen,0,0,245111259137,"{""name"":""Heavenly Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""I’m sure everyone here knows, Pittsburgh has some humid summers. What can you do to escape the heat and enjoy yourself? Well I’ve got the answer. How about a light thirst quenching Hefe Weizen (pronounced hefa Vite zen) in the cool environment of our Hop Garden patio. I can hear you wondering, what is a hefe weizen? Allay your fears my friends because I’m going to tell you. A hefe weizen is a special style of beer made with malted wheat and malted barley. Hefe weizens are from Germany. This beer is top fermented (an ale) with a very special yeast. The Hop levels are kept deliberately low in order to bring out the character of the yeast. If you notice the nose of the beer, it has a clove-like or fruity aroma. The grain bill includes 50% wheat malt and 50% barley malt. It is served very carbonated and a touch cloudy. It is cloudy because it is served unfiltered. The remaining yeast contributes flavor, adds B vitamins, and improves the beer as it ages."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,30,1
+midnight_sun_brewing_co-wrath,0,0,244869300227,"{""name"":""Wrath"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""WRATH Belgian-style Double IPA is fiercely bitter with notes of spice and earth. Its fury slowly and purposefully unfurls on the tongue, relentlessly bringing on more and more enraged flavor with each sip. \r\n\r\nWrath wreaks havoc on your taste buds. Anything you drink after this may as well be water."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,29,1
+rowland_s_calumet_brewery-calumet_bock,0,0,244995719168,"{""name"":""Calumet Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,36,1
+standing_stone_brewing_company-standing_stone_lager,0,0,245119975425,"{""name"":""Standing Stone Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry, crisp refreshing filtered lager. A good balance between sweet malt and light bitter hops. This beer is made with a Southern German lager yeast, Saaz, and Hershbrucker hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,51,1
+daas-daas_organic_witte,0,0,244500267010,"{""name"":""Daas Organic Witte"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daas"",""updated"":""2010-07-22 20:00:20"",""description"":""The Daas Organic Witte is very well received by women beer drinkers; it is a naturally cloudy Belgian wheat beer. Its fruity blend of subtle citrus (baked oranges) and spice (coriander) flavors compliment its crispy dry and bitter hop finish."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,62,1
+brasserie_artisanale_de_rulles-triple,0,0,244381712384,"{""name"":""Triple"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_artisanale_de_rulles"",""updated"":""2010-12-20 16:14:15"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,63,1
+george_gale_company-horndean_special_bitter_hsb,0,0,244632780801,"{""name"":""Horndean Special Bitter / HSB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+hanssens_artisanal,0,0,244758085632,"{""name"":""Hanssens Artisanal"",""city"":""Dworp"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-/-380-31-33"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vroenenbosstraat 15""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.729,""lon"":4.2971}}",1,60,1
+pearl_street_brewery-old_skeezer_barley_wine,0,0,244998995968,"{""name"":""Old Skeezer Barley Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pearl_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+thomas_hooker_brewing,0,0,245111259138,"{""name"":""Thomas Hooker Brewing"",""city"":""Bloomfield"",""state"":""Connecticut"",""code"":""6002"",""country"":""United States"",""phone"":""860-242-3111"",""website"":""http://www.hookerbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Tastings every Saturday from 12-6pm, and 1st and 3rd Friday of every month from 5-8."",""address"":[""16 Tobey Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8087,""lon"":-72.7108}}",1,30,1
+milwaukee_ale_house-pull_chain_pail_ale,0,0,244869365760,"{""name"":""Pull Chain Pail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
+saint_arnold_brewing-saint_arnold_brown_ale,0,0,244995719169,"{""name"":""Saint Arnold Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A beautiful, deep copper brown ale. It has a full, malty body with hints of chocolate, a touch of sweetness and a light hop flavor. A complex malt character is created by combining five different types of malts. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \r\n\r\nSaint Arnold Brown Ale is best consumed at 45-50° Fahrenheit."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,36,1
+stone_brewing_co-arrogant_bastard_ale,0,0,245119975426,"{""name"":""Arrogant Bastard Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+day_brewing,0,0,244632911872,"{""name"":""Day Brewing"",""city"":""Marrero"",""state"":""Louisiana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.8994,""lon"":-90.1004}}",1,62,1
+brasserie_des_franches_montagnes-cuvee_du_7eme,0,0,244381712385,"{""name"":""Cuvée du 7ème"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_franches_montagnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+glen_ellyn_sports_brew-evolutionary_ipa,0,0,244632780802,"{""name"":""Evolutionary IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
+hapa_s_brew_haus_and_restaurant-paradise_pale_lager,0,0,244758085633,"{""name"":""Paradise Pale Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+pivovar_starobrno,0,0,244999061504,"{""name"":""Pivovar Starobrno"",""city"":""Brno"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-543-516-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hlinky 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.1911,""lon"":16.5918}}",1,45,1
+troegs_brewing-troegs_splinter_beer_red,0,0,245111259139,"{""name"":""Tröegs Splinter Beer Red"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Before filtering the final batch of 2008 Mad Elf we racked some beer into bourbon barrels for six weeks of tender loving care. After bottling, we aged the beer for approximately eight months. This allows the tart cherries to push to the front. Subtle vanilla, bourbon, charred wood, coconut and toasted nut endnotes emanate from Splinter Red."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,30,1
+mogollon_brewing_company-horny_toad_ipa,0,0,244869365761,"{""name"":""Horny Toad IPA"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""If you like big, bold, pronounced hop character, then this beer is for you. One taste and you’ll find yourself right smack in the middle of Hop Head Heaven! But this beer has more to offer than just hops. We use tons of the finest malted barley available to balance out this beer. The result of our efforts is a beer with a magnitude of hop aroma and bite, yet perfectly balanced with a clean, crisp malty flavor. WARNING: This beer is not intended for the masses that prefer a mild domestic beer, It’s big, bold characteristics and 7.1% a.b.v. are not intended for the weak."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
+saint_somewhere_brewing_company-pays_du_soleil,0,0,244995784704,"{""name"":""Pays du Soleil"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_somewhere_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber ale with Palmetto berries and hibiscus."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,36,1
+sudwerk_privatbrauerei_hbsch-hefe_weizen,0,0,245119975427,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sudwerk_privatbrauerei_hbsch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,51,1
+de_leyerth_brouwerijen,0,0,244632911873,"{""name"":""De Leyerth Brouwerijen"",""city"":""Ruiselede"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-/-68-89-99"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Krommekeerstraat 21""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0811,""lon"":3.3699}}",1,62,1
+brasserie_la_binchoise,0,0,244500332544,"{""name"":""Brasserie La Binchoise"",""city"":""Binche"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)64-37-01-75"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Faubourg St Paul 38""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.408,""lon"":4.1659}}",1,63,1
+glen_ellyn_sports_brew-smoked_porter,0,0,244632780803,"{""name"":""Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
+hereford_hops_steakhouse_and_brewpub_3-st_edmunds_strong_porter,0,0,244758085634,"{""name"":""St. Edmunds Strong Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,60,1
+pivzavod_baltika-baltika_5,0,0,244999061505,"{""name"":""Baltika #5"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+vermont_pub_brewery,0,0,245111324672,"{""name"":""Vermont Pub & Brewery"",""city"":""Burlington"",""state"":""Vermont"",""code"":""5401"",""country"":""United States"",""phone"":""(802) 865-0500"",""website"":""http://www.vermontbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""VPB is the third oldest brewpub on the East Coast."",""address"":[""144 College St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4773,""lon"":-73.2144}}",1,30,1
+montana_brewing-whitetail_wheat,0,0,244869365762,"{""name"":""Whitetail Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+sanford_s_grub_and_pub-oil_can_stout,0,0,244995784705,"{""name"":""Oil Can Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sanford_s_grub_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+three_floyds_brewing-apocalypse_cow,0,0,245120040960,"{""name"":""Apocalypse Cow"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,51,1
+de_proef_brouwerij-tripel_krullekop,0,0,244632977408,"{""name"":""Tripel Krullekop"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+brauerei_spezial-ungespundetes,0,0,244500332545,"{""name"":""Ungespundetes"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+golden_gate_park_brewery-celebration_red,0,0,244632846336,"{""name"":""Celebration Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,61,1
+high_falls_brewing-dundee_india_pale_ale,0,0,244758151168,"{""name"":""Dundee India Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""It takes a bit of seasoning to understand that bitter can be a good thing. \r\n\r\nWhen you’re a child, you want everything to be sweet. When you’re a teenager, you want everything to be sweeeeet. But when you get a bit wiser and acquire some taste, you realize that bitter is an excellent alternative. It’s a sign of complexity. It’s a sign of maturity. It’s a sign of the times. Face it, modern life demands a little bitterness every once in a while. \r\n\r\nWhen you are in the mood for something bitter, Dundee IPA is hop bitterness at its finest. As the youngsters would say, that’s sweet.\r\n\r\nAn aggressively hopped IPA brewed with Amarillo and Simcoe hops. Blended Crystal malts balance the flavors with a distinctive spicy aroma and a long, crisp finish."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,60,1
+rahr_sons_brewing_company-rahr_s_winter_warmer,0,0,244999061506,"{""name"":""Rahr's Winter Warmer"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Warm up the long, cold nights of winter with Rahr's latest seasonal offering. Wonderfully robust, rich and full-bodied, Rahr's Winter Warmer is crated in the fine British tradition of holiday ales. Perfect for either holiday gatherings or quiet evenings at home."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,45,1
+wh_brakspear_sons,0,0,245747875840,"{""name"":""WH Brakspear & Sons"",""city"":""Henley-on-Thames"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.5375,""lon"":-0.9046}}",1,30,1
+aldaris,0,0,244378238976,"{""name"":""Aldaris"",""city"":""Rga"",""state"":"""",""code"":"""",""country"":""Latvia"",""phone"":""371-70-23-200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tvaika iela 44""]}",1,53,1
+monteith_s_brewing_co,0,0,244869365763,"{""name"":""Monteith's Brewing Co."",""city"":""Greymouth"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":"""",""website"":""http://www.monteiths.com/nz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cnr Turumaha and Herbert St""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-42.4505,""lon"":171.207}}",1,29,1
+santa_fe_brewing_company-viszolay_belgian,0,0,244995784706,"{""name"":""Viszolay Belgian"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Viszolay is a distinctly continental ale with a hint of the southwest. Belgian malt, Bavarian and Czech hops, and a secret blend of German and Belgian yeast strains provide this beer, inspired by the Trappist’s Dubbel style ale, with a strong traditional base, while a hint of New Mexico wildflower honey infuses it with that ethereal quality that we New Mexicans simply call, “enchanting”. Like the Trappist ales from which it sprung, Viszolay is light and refreshing. The hop’s subtle notes are overpowered by complex fruity flavors derived from the Belgian yeast, leaving Viszolay a very drinkable (yet rather potent) addition to the Santa Fe Brewing Company’s family of beers."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,36,1
+thunderhead_brewery-dark_wheat,0,0,245120040961,"{""name"":""Dark Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+del_mar_stuft_pizza_and_brewing,0,0,244632977409,"{""name"":""Del Mar Stuft Pizza and Brewing"",""city"":""San Diego"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7153,""lon"":-117.157}}",1,62,1
+breckenridge_brewery-lucky_u_denver_special_bitter,0,0,244500332546,"{""name"":""Lucky U Denver Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+goose_island_beer_company_fulton_street-goose_island_ipa,0,0,244632846337,"{""name"":""Goose Island IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Goose Island website:\r\n\r\n\""Our IPA recalls a time when ales shipped from England to India were highly hopped to preserve their distinct taste during the long journey. The result, quite simply a hop lover's dream. And this classic ale adds a fruity aroma, set off by a dry malt middle, to ensure that the long hop finish is one you'll remember.\"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
+hops_haven_brew_haus-port_washington_pier_96_lager,0,0,244758216704,"{""name"":""Port Washington Pier 96 Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
+richbrau_brewing_company-richbrau_india_pale_ale,0,0,244999127040,"{""name"":""Richbrau India Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A hops showcase in aroma, flavor and bitterness. We used the delightful Amarillo hop as the most prominent choice."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,45,1
+wharf_rat-oliver_esb,0,0,245747875841,"{""name"":""Oliver ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wharf_rat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,30,1
+alesmith_brewing,0,0,244378304512,"{""name"":""AleSmith Brewing"",""city"":""San Diego"",""state"":""California"",""code"":""92126"",""country"":""United States"",""phone"":""1-858-549-9888"",""website"":""http://alesmith.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9368 Cabot Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.892,""lon"":-117.144}}",1,53,1
+moonlight_brewing-4868_dark_wheat,0,0,244869431296,"{""name"":""4868 Dark Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,29,1
+scuttlebutt_brewing,0,0,244995850240,"{""name"":""Scuttlebutt Brewing"",""city"":""Everett"",""state"":""Washington"",""code"":""98201"",""country"":""United States"",""phone"":""1-425-257-9316"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1524 West Marine View Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.9975,""lon"":-122.214}}",1,36,1
+thunderhead_brewery-russian_imperial_stout,0,0,245120106496,"{""name"":""Russian Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,51,1
+delafield_brewhaus-noch_einmal_dunkel,0,0,244633042944,"{""name"":""Noch Einmal Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+breckenridge_brewery-oatmeal_stout,0,0,244500398080,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
+great_waters_brewing_company-golden_prairie_blond,0,0,244758347776,"{""name"":""Golden Prairie Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+industrija_piva_i_sokova_trebjesa,0,0,244758216705,"{""name"":""Industrija Piva I Sokova Trebjesa"",""city"":""Nikic"",""state"":"""",""code"":"""",""country"":""Serbia and Montenegro"",""phone"":""381-83-242-433"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Njegoseva 18""]}",1,60,1
+river_west_brewing-maibock,0,0,244999127041,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
+wychwood_brewery-old_devil,0,0,245747941376,"{""name"":""Old Devil"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,30,1
+bandana_brewery-eagle_lake_pale_ale,0,0,244378304513,"{""name"":""Eagle Lake Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+nodding_head_brewpub-spring_ale,0,0,244869431297,"{""name"":""Spring Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+sierra_nevada_brewing_co-porter,0,0,244995915776,"{""name"":""Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nDark and rich, Sierra Nevada Porter is a delicious, medium-bodied ale with a creamy head. The Porter’s smooth flavor (malty with hints of caramel) comes from a blend of deep-roasted barley malts.\r\n\r\n\r\n“…there can be little doubt that this is one of the best porters being brewed anywhere in the world today.”\r\n\r\n— Christopher Finch, A Connoisseur’s Guide \r\nto the World’s Best Beer\r\n\r\nFIRST PLACE\r\nCalifornia Brewers Festival (Robust Porter: 2000)\r\nColorado State Fair (Porter: 1996)"",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
+tied_house_cafe_brewery_san_jose-cascade_amber,0,0,245120106497,"{""name"":""Cascade Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,51,1
+diamond_knot_brewery_alehouse-lighthouse_ale,0,0,244633042945,"{""name"":""Lighthouse Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+brick_brewing-premium_lager,0,0,244500398081,"{""name"":""Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brick_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+green_bay_brewing-barley_wine_2001,0,0,244758347777,"{""name"":""Barley Wine 2001"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+john_harvard_s_brewhouse_wilmington-scottish_ale,0,0,244758216706,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+schlossbru,0,0,244999127042,"{""name"":""Schlossbru"",""city"":""Dornbirn"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-05572-/-386-683"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oberdorferstrae 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.4097,""lon"":9.7514}}",1,45,1
+yuengling_son_brewing-yuengling_porter,0,0,245748006912,"{""name"":""Yuengling Porter"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Dark Brewed Porter is an original specialty beer that has been brewed expressly for tavern owners and family trade since 1829. We are proud to be recognized as one of the largest porter producers in the US. An authentic craft-style beer, our Porter calls for a generous portion of caramel and dark roasted malts, which deliver a rich full-bodied flavor and creamy taste with slight tones of chocolate evident in every sip. It pours dark, topped with a thick foamy head, and imparts a faint malty aroma. This smooth and robust Porter has a unique character that complements any meal from steak or seafood to chocolate desserts. Yuengling Dark Brewed Porter is enjoyed by even the most discerning consumer for its flawless taste and unwavering quality."",""style"":""Porter"",""category"":""Irish Ale""}",1,30,1
+barley_brothers_brewery_and_grill-blonde_ale,0,0,244378304514,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+park_city_brewing-tie_die_red,0,0,244992311296,"{""name"":""Tie Die Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""park_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
+smuttynose_brewing_co-big_a_ipa,0,0,245113683968,"{""name"":""Big A IPA"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Big A IPA has earned its share of praise over the last few years. In 2004 the New York Times named it its top IPA , and in 2007 Mens Journal Magazine included it on its list of 25 best beers in America. The last of each year's edition typically leaves our warehouse around mid-May, and, as always, it doesn't last long. \r\n\r\nStash Wojciechowski, the “Killer Kielbasa,” created this bonafide India Pale Ale recipe exclusively for the Smuttynose Big Beer Series."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,36,1
+titletown_brewing-oktoberfest,0,0,245120106498,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,51,1
+duvel_moortgat,0,0,244633042946,"{""name"":""Duvel Moortgat"",""city"":""Breendonk"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-038-86-71-21"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Breendonkdorp 58""]}",1,62,1
+bridgeport_brewing-old_knucklehead_2003,0,0,244500463616,"{""name"":""Old Knucklehead 2003"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+heavenly_daze_brewery_and_grill-el_rey_cerveza,0,0,244758413312,"{""name"":""El Rey Cerveza"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
+joshua_huddy_s_brew_pub_and_grill-pale_ale,0,0,244758216707,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joshua_huddy_s_brew_pub_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+scottish_newcastle_plc,0,0,244999192576,"{""name"":""Scottish & Newcastle PLC"",""city"":""Edinburgh"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0131)-528-2000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33 Ellersly Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.9465,""lon"":-3.2485}}",1,45,1
+big_buck_brewery,0,0,244378304515,"{""name"":""Big Buck Brewery"",""city"":""Gaylord"",""state"":""Michigan"",""code"":""49735"",""country"":""United States"",""phone"":"""",""website"":""http://www.bigbuck.com/gaylord.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The large dining room provides ample seating with a separate full bar. From choice cuts of aged beef, including a 20-ounce Porterhouse, or a 9-ounce Filet Mignon, menu selections range from fine steaks, chicken, pork and seafood entrees, to a tempting selection of appetizers. Our chef's daily dessert specials complete your dining experience. Join our master brewer for a tour of the operating brewery and taste test our newest brew, or visit our Northwoods inspired gift shop for a selection of unusual gifts. Featuring our glass walled, 15,000 barrel capacity brewery, Big Buck offers 8 signature beers along with seasonal specialty brews sure to please the most discriminating palate. Enjoy dinner or drinks on our deck during the season. Watch your favorite team or make a presentation on one of our many large screen televisions. Our child and adult game rooms are available for your pre or post dining entertainment. With advance notice, special hours and special menus, including breakfast menus, may be arranged!"",""address"":[""550 South Wisconsin Avenue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":45.0223,""lon"":-84.6826}}",1,53,1
+paulaner-hacker_pschorr_weisse_bock,0,0,244992376832,"{""name"":""Hacker-Pschorr Weisse Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,29,1
+snowshoe_brewing_sonora,0,0,245113683969,"{""name"":""Snowshoe Brewing - Sonora"",""city"":""Sonora"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.9841,""lon"":-120.382}}",1,36,1
+top_of_the_hill_restaurant_and_brewery-bitter,0,0,245120172032,"{""name"":""Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+elgood_sons-flag_porter_1825_original,0,0,244633108480,"{""name"":""Flag Porter 1825 Original"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elgood_sons"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,62,1
+brouwerij_de_ranke-xx_bitter,0,0,244500463617,"{""name"":""XX Bitter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+hoffbrau_steaks_brewery_2-windmill_wheat_ale,0,0,244758413313,"{""name"":""Windmill Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,61,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_real_ginger_brew,0,0,244758216708,"{""name"":""Hitachino Nest Real Ginger Brew"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+scuttlebutt_brewing-hefe_weizen,0,0,244999192577,"{""name"":""Hefe Weizen"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+bj_s_restaurant_and_brewery-nutty_brewnette,0,0,244378370048,"{""name"":""Nutty Brewnette"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
+pivovar_hradec_krlov-black_lion_lev_czech_premium_dark_beer,0,0,244992442368,"{""name"":""Black Lion Lev Czech Premium Dark Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_hradec_krlov"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+south_shore_brewery-chocolate_mint_stout,0,0,245113749504,"{""name"":""Chocolate Mint Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+upper_mississippi_brewing,0,0,245120172033,"{""name"":""Upper Mississippi Brewing"",""city"":""Clinton"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8445,""lon"":-90.1887}}",1,51,1
+empyrean_brewing_company-maple_nut_brown,0,0,244633108481,"{""name"":""Maple Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,62,1
+brouwerij_duysters-loterbol,0,0,244500529152,"{""name"":""Loterbol"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_duysters"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+hoppin_frog_brewery-hop_master_s_abbey_belgian_style_double_ipa,0,0,244758413314,"{""name"":""Hop Master's Abbey Belgian-style Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""American hops and Belgian abbey beer flavors intermingle to create a spicy and assertive beer style all their own. Citrusy character from select hops dominate this assertive Double I.P.A., complimented by a unique Belgian flavor to add complexity and ultimate beer satisfaction. The result is a flavor combination that’s a whirlwind of taste sensations."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,61,1
+kulmbacher_mnchshof_bru,0,0,244758216709,"{""name"":""Kulmbacher Mnchshof Bru"",""city"":""Kulmbach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.1077,""lon"":11.453}}",1,60,1
+sierra_leone_brewery-star_beer,0,0,244999258112,"{""name"":""Star Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_leone_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""• Millions of golden bubbles\r\n• Sparkling brightness\r\n• Refreshing taste\r\n• Cascading foam head\r\n• Cold filtered for quality\r\n\r\nhttp://www.slbrewery.com/index.php?option=com_content&task=view&id=18&Itemid=36""}",1,45,1
+blue_cat_brew_pub-wigged_pig_wheat,0,0,244378370049,"{""name"":""Wigged Pig Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
+raccoon_river_brewing-bandit_ipa,0,0,244992507904,"{""name"":""Bandit IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
+st_peter_s_brewery-old_style_porter,0,0,245113749505,"{""name"":""Old-Style Porter"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,36,1
+walldorff_brew_pub-padawan_pale_ale,0,0,245751152640,"{""name"":""Padawan Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A mild pleasant ale with lingering hoppy notes."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,51,1
+feldschlosschen_ag,0,0,244633108482,"{""name"":""Feldschlößchen AG"",""city"":""Dresden"",""state"":""Sachsen"",""code"":""1189"",""country"":""Germany"",""phone"":"""",""website"":""http://www.feldschloesschen.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cunnersdorfer Str. 25""]}",1,62,1
+brouwerij_van_steenberge-monk_s_cafe,0,0,244500529153,"{""name"":""Monk's Cafe"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""A sweet and sour beer that gets its flavor from mixing old and new ales. An unusual, yet perfect, combination.""}",1,63,1
+jack_s_brewing-hefeweizen,0,0,244758478848,"{""name"":""Hefeweizen"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,61,1
+lakefront_brewery-cream_city_pale_ale,0,0,244758282240,"{""name"":""Cream City Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+sierra_nevada_brewing_co-sierra_nevada_pale_ale,0,0,244999258113,"{""name"":""Sierra Nevada Pale Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nOur most popular beer, Sierra Nevada Pale Ale, is a delightful interpretation of a classic style. It has a deep amber color and an exceptionally full-bodied, complex character. Generous quantities of premium Cascade hops give the Pale Ale its fragrant bouquet and spicy flavor. \r\n\r\n“Sierra Nevada Pale Ale is the flagship beer, the one that made Chico famous. It is a flawless beer that opens with bright, perky high notes of maltiness and orange blossom and segues into a delectable hoppiness.”\r\n\r\n– Elaine Louie, Premier Beer—A Guide to America's Best Bottled Microbrews\r\n \r\n \r\n \r\nGOLD MEDAL WINNER\r\nGreat American Beer Festival (American Pale Ale: 1995, 1994, 1993; \r\nClassic English Pale Ale: 1992; Pale Ale: 1990, 1989, 1987)"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+boddington_s_brewery-pub_ale_draught,0,0,244378370050,"{""name"":""Pub Ale Draught"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boddington_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+rahr_sons_brewing_company-blonde_lager,0,0,244992507905,"{""name"":""Blonde Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It's our very first beer - golden medium-bodied and brewed as a traditional Munich Helles style pale lager. It features a rounded maltiness without being too heavy. And like every proud Texan, it has a good head, is pleaseant but never overly sweet."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+stone_cellar_brewpub_restaurant-stout,0,0,245113749506,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_cellar_brewpub_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+wedge_brewery,0,0,245751218176,"{""name"":""Wedge Brewery"",""city"":""Asheville"",""state"":""NC"",""code"":""28801-3128"",""country"":""United States"",""phone"":""828-505-2792"",""website"":""http://wedgebrewing.com/"",""type"":""brewery"",""updated"":""2011-05-23 10:34:59"",""description"":""The Wedge Brewing Co. is located in the lower level of the Wedge Studios situated in the River Arts District of Asheville, N.C. The building is a classic brick warehouse adjacent to the railroad tracks. The original use of the structure was probably as a food warehouse. The space the brewery is in at onetime stored slaughtered hogs.\n We chose this location because it is in the last frontier of Asheville.\n We chose this specific space because it is a perfect fit for our brewing system and gives\nus great outdoor potential."",""address"":[""125B Roberts St""]}",1,51,1
+firestone_walker_brewing_company-union_jack_india_pale_ale,0,0,244633174016,"{""name"":""Union Jack India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firestone_walker_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The newest member of the Firestone family, Union Jack is the aggressive IPA that you’ve been searching for. Citrus, pineapple, and a full chewy malt profile finish clean on your palate. Over 70 IBUs and 7.5% alcohol by volume, Union Jack won’t have any problem competing with the big India Pale Ales. A beer true to its origins; deeply hopped and bolstered for a long voyage."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,62,1
+browar_zywiec-krakus,0,0,244500529154,"{""name"":""Krakus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_zywiec"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+357,0,0,244369719296,"{""name"":""357"",""city"":"""",""state"":"""",""code"":"""",""country"":"""",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,32,1
+jacob_leinenkugel_brewing_company-auburn_ale,0,0,244758478849,"{""name"":""Auburn Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,61,1
+lancaster_brewing_co-lancaster_limited_triple,0,0,244758282241,"{""name"":""Lancaster Limited Triple"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,60,1
+silverado_brewing,0,0,244999323648,"{""name"":""Silverado Brewing"",""city"":""Saint Helena"",""state"":""California"",""code"":""94574"",""country"":""United States"",""phone"":""1-707-967-9876"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3020 St. Helena Highway North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5243,""lon"":-122.497}}",1,45,1
+boss_browar_witnica_s_a-mocny_boss_boss_beer,0,0,244378435584,"{""name"":""Mocny BOSS / BOSS Beer"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boss_browar_witnica_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
+red_star_brewery_grille-greensburg_lager,0,0,244992507906,"{""name"":""Greensburg Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+taylor_s_crossing_brewing-mad_scow_stout,0,0,245113749507,"{""name"":""Mad Scow Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+weinkeller_brewery_berwyn-kristall_weiss,0,0,245751218177,"{""name"":""Kristall Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,51,1
+fish_brewing_company_fish_tail_brewpub-light,0,0,244633174017,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+budjovick_mansk_pivovar-samson_crystal_lager_beer,0,0,244500594688,"{""name"":""Samson Crystal Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""budjovick_mansk_pivovar"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+512_brewing_company-512_wit,0,0,244369784832,"{""name"":""(512) Wit"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Made in the style of the Belgian wheat beers that are so refreshing, (512) Wit is a hazy ale spiced with coriander and domestic grapefruit peel. 50% US Organic 2-row malted barley and 50% US unmalted wheat and oats make this a light, crisp ale well suited for any occasion."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
+jobber_s_canyon_restaurant_brewery-oktoberfest,0,0,244758478850,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jobber_s_canyon_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
+legacy_brewing_co-hedonism_ale,0,0,244758282242,"{""name"":""Hedonism Ale"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Wickedly tasty red ale packed with a full aroma from dry hopping and a massive hop flavor. Specially brewed with all European malts and West Coast whole flower hops. The result is a rich ruby red color; lacy collar and a feast of hop aroma and flavor."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,60,1
+sonoran_brewing_company-burning_bird_pale_ale,0,0,245117288448,"{""name"":""Burning Bird Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sonoran_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Burning Bird is our representation of the Phoenix, our city’s namesake, a mythical bird which lived 500 years, consumed itself by fire, then was reborn from its ashes. Like the phoenix of old, this pale ale is reborn from the time when fabulous hoppy brews were more than mere myths."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,45,1
+boulder_beer_company-never_summer_ale,0,0,244378435585,"{""name"":""Never Summer Ale"",""abv"":5.94,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,53,1
+redhook_ale_brewery-sunrye,0,0,244992507907,"{""name"":""SunRye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+the_livery-bourbon_barrel_aged_cousin_jax,0,0,245113815040,"{""name"":""Bourbon Barrel Aged Cousin Jax"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \""Cousin Jack\"" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,36,1
+flyers_restraunt_and_brewery-catalina_common_lager,0,0,244633174018,"{""name"":""Catalina Common Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This copper colored lager is brewed with hybrid yeast that ferments at warmer temps, giving that clean refreshing taste of a lager with the slight fruitiness of an ale."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
+burton_bridge_brewery,0,0,244500594689,"{""name"":""Burton Bridge Brewery"",""city"":""Burton-upon-Trent"",""state"":""Staffordshire"",""code"":""DE14 1SY"",""country"":""United Kingdom"",""phone"":""44-(01283)-510573"",""website"":""http://www.burtonbridgebrewery.co.uk/Index.shtml"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bridge Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.8065,""lon"":-1.6225}}",1,63,1
+aksarben_brewing_bop,0,0,244369850368,"{""name"":""Aksarben Brewing (BOP)"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68130"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This brewery is closed."",""address"":[""11337 Davenport St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2603,""lon"":-96.0903}}",1,32,1
+jolly_pumpkin_artisan_ales-e_s_bam,0,0,244758478851,"{""name"":""E.S. Bam"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An Extra Special Farmhouse Ale. A Bam celebration of excess. More malt, more hops, same vivacious personality."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,61,1
+lift_bridge_brewery-biscotti,0,0,244758282243,"{""name"":""Biscotti"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We drew inspiration from Steve’s Grandmother’s holiday biscotti recipe to create this one of a kind brew. By utilizing an array of malts, oats, wheat, pure local honey, light European hops and delicately spicing with Grains of Paradise, Madagascar vanilla beans, whole star anise, all brought together with traditional Belgian yeast, the result is a cloudy, deep copper colored, complex experience. This delight to the senses should be served in a 12 ounce footed glass and allowed to warm to 50 degrees to fully gather the malt and spice spectrum."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,60,1
+south_australian_brewing-old_australia_stout,0,0,245117353984,"{""name"":""Old Australia Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_australian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+boulder_beer_company,0,0,244378435586,"{""name"":""Boulder Beer Company"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80301"",""country"":""United States"",""phone"":""1-303-444-8448"",""website"":""http://boulderbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2880 Wilderness Place""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0267,""lon"":-105.248}}",1,53,1
+river_horse_brewing_company-tripel_horse,0,0,244992573440,"{""name"":""Tripel Horse"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Notice a unique aromatic nose with a hint of vanilla esters, which comes from the Belgian ale yeast. Tripel Horse has a big body and rich mouth feel and finishes mostly dry with only a touch of sweetness. If you shy from some of the sweeter Belgian ales, we think you will enjoy this one. The palate improves with age, so keep some on hand and you can ride Tripel Horse down a new path with each opened bottle."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,29,1
+titletown_brewing-winter_gale_spiced_ale,0,0,245113815041,"{""name"":""Winter Gale Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+flying_fish_brewing_company,0,0,244633239552,"{""name"":""Flying Fish Brewing Company"",""city"":""Cherry Hill"",""state"":""New Jersey"",""code"":""8003"",""country"":""United States"",""phone"":""(856) 489-0061"",""website"":""http://www.flyingfish.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""When Gene Muller founded Flying Fish Brewing Co. in 1995, he did so first on the World Wide Web - making it the world's first virtual microbrewery. That early Web site helped generate positive press coverage and helped attract the investors needed to make the virtual brewery a real one. Muller said the idea was to make the Web site This Old House meets the World Wide Web�letting people go behind the taps and see the thousands of details needed to put a microbrewery together. He also wanted to give beer lovers a chance, via their computers, to roll up their cyber-sleeves and help build the brewery. The site let beer lovers help select and name beers, design t-shirts and labels, volunteer to be a taste-tester and even apply for a job as a brewer. Visitors to the Web site can sign up for FlyingFishMail a monthly e-mail newsletter which now boasts more than 12,000 subscribers. Muller, who got into the brewing field to become a brewer, trained at Chicago's Siebel Institute of Technology, America's oldest brewing school. He quickly realized someone was going to have to run the day-to-day business of the brewery and now serves as President and Head Janitor (though not necessarily in that order). Flying Fish Brewing Company is located in Cherry Hill, New Jersey, approximately seven miles east of Philadelphia. In a state that once boasted 50 breweries, it is the first microbrewery in Southern New Jersey and the first new brewery built in that part of the state in more than half a century. From its opening in late 1996, Flying Fish has tripled its capacity and become the largest of the approximately 20 craft breweries in the state. Head brewer Casey Hughes now produces four full-time styles, as well as a variety of seasonal beers. The key word to describe all Flying Fish beers is balance. The beers are full-flavored, yet highly drinkable. Flavors harmonize, not fight for individual attention. Hopping is generous, but to style. Seeing beer as equal to, if not superior to, wine, Flying Fish beers are designed to complement food. Because of this effort, one can walk into any fine restaurant in the Philadelphia region and be pretty sure of finding a Flying Fish beer available. Flying Fish beers were the first in the region to be featured at the Great British Beer Festival, Oregon Brewers Festival and Canada's Biere de Mondial Festival. They have also won several medals at the Real Ale Festival in Chicago, the World Beer Championships and is the only New Jersey brewery featured in the 2000 book Best American Beers."",""address"":[""1940 Olney Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9121,""lon"":-74.9701}}",1,62,1
+caldera_brewing-dry_hop_red,0,0,244500594690,"{""name"":""Dry Hop Red"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A red ale dry hopped with three different hop varieties.""}",1,63,1
+alaskan_brewing-alaskan_amber,0,0,244369850369,"{""name"":""Alaskan Amber"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Alt. The name of this beer style comes from the German word \""alt\"" meaning \""old\"". This refers to the aging that alts undergo since they ferment more slowly and at colder temperatures than most ales. Slow fermentation helps condition the flavors in Alaskan Amber, contributing to its overall balance and smoothness.\r\n\r\nRichly malty and long on the palate, with just enough hop backing to make this beautiful amber colored \""alt\"" style beer notably well balanced.\r\n\r\nAlaskan Amber is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches of rainfall we receive each year."",""style"":""Old Ale"",""category"":""British Ale""}",1,32,1
+jolly_pumpkin_artisan_ales-luciernaga,0,0,244758544384,"{""name"":""Luciérnaga"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisan pale ale brewed in the Grand Cru tradition. Enjoy its golden effervescence and gentle hop aroma. Coriander and Grains of Paradise round out the spicy palate, melting o so softly into a silken finish of hoppiness and bliss! Make any season a celebration!"",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,61,1
+mad_river_brewing-jamaica_brand_red_ale,0,0,244881555456,"{""name"":""Jamaica Brand Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+st_stan_s_brewing_co,0,0,245117353985,"{""name"":""St. Stan's Brewing Co."",""city"":""Modesto"",""state"":""California"",""code"":""95354"",""country"":""United States"",""phone"":""1-209-606-2739"",""website"":""http://www.ststans.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""821 L Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.6417,""lon"":-121.004}}",1,45,1
+boulevard_brewing_company-boulevard_dry_stout,0,0,244378501120,"{""name"":""Boulevard Dry Stout"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Velvety black and perfectly opaque, our bottled Dry Stout is the somewhat livelier companion to our popular draught version of this enduring style. This surprisingly smooth, drinkable beer is a delightful harmony of smoky roasted flavors and tangy, coffee-like notes."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
+river_west_brewing-marzen,0,0,244992573441,"{""name"":""Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,29,1
+trap_rock_restaurant_and_brewery-octoberfest,0,0,245113815042,"{""name"":""Octoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,36,1
+foothills_brewing_company,0,0,244633305088,"{""name"":""Foothills Brewing Company"",""city"":""Winston-Salem"",""state"":""North Carolina"",""code"":""27101"",""country"":""United States"",""phone"":""(336) 777-3348"",""website"":""http://www.foothillsbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""638 W. 4th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.0973,""lon"":-80.2509}}",1,62,1
+capital_brewery-capital_fest_beer,0,0,244500660224,"{""name"":""Capital Fest Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,63,1
+alaus_darykla_kalnapilis,0,0,244369850370,"{""name"":""Alaus Darykla Kalnapilis"",""city"":""Panevys"",""state"":"""",""code"":"""",""country"":""Lithuania"",""phone"":""370-45-505223"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Taikos aleja 1""]}",1,32,1
+jt_whitney_s_brewpub_and_eatery-koln_kolsch,0,0,244758544385,"{""name"":""Köln Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+magic_hat-chaotic_chemistry,0,0,244881555457,"{""name"":""Chaotic Chemistry"",""abv"":10.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Aged Barleywine Ale infused with the copper glow of more than 1,000 setting suns. This exceptional offering has infinite body... a big, sweet malty tumult followed by a long, balanced, hop symphony."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,60,1
+stevens_point_brewery-spring_bock,0,0,245117353986,"{""name"":""Spring Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,45,1
+brasserie_d_orval-orval_trappist_ale,0,0,244378566656,"{""name"":""Orval Trappist Ale"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_orval"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,53,1
+rock_art_brewery-rock_art_american_red_ale,0,0,244992573442,"{""name"":""Rock Art American Red Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The unofficial name for this beer is “Super Glide”. Malty rich with a hint of spicy hops and roasted grains. This beer is one smooth ride with a clean finish! We brewed this one with American Pale, oats, flaked barley, black, chocolate, red malt, melandolin malt. American hops include Magnum, Centennial, Liberty and Crystal. Enjoy!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,29,1
+troegs_brewing-troegs_splinter_beer_gold,0,0,245113815043,"{""name"":""Tröegs Splinter Beer Gold"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The transformation of Scratch #3-2007 to Splinter Gold has been a slow rest in oak wine barrels dosed with brettanomyces. During a two-year aging period the horsy flavors of the brett combined with the Westmalle yeast used during primary fermentation to create a complex blend of flavors. Bone-dry and 12% abv, Splinter Gold is highly carbonated."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,36,1
+fordham_brewing-copper_head_ale,0,0,244633305089,"{""name"":""Copper Head Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fordham_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
+captain_lawrence_brewing_company-brown_bird_brown_ale,0,0,244500660225,"{""name"":""Brown Bird Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after the little birds that fly by the brewery looking for grain after the weather turns cold, this was originally to be a Fall/Winter seasonal. Clearly we underestimated the market for this smooth and malty brown ale, and we have decided to keep it for year round enjoyment."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
+alesmith_brewing-speedway_stout,0,0,244369915904,"{""name"":""Speedway Stout"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A HUGE Imperial Stout that weighs in at an impressive 12% ABV! As if that's not enough, we added pounds of coffee for a little extra kick. Our special-edition Brewer's Reserve Speedway Stout, which is aged in Bourbon barrels, has been rated the #1 BEST BEER IN THE WORLD at ratebeer.com. It was also featured on CNBC's \""Squawk Box\"" in a segment on the best dark beers in America."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,32,1
+jt_whitney_s_brewpub_and_eatery-mad_badger_barley_wine,0,0,244758609920,"{""name"":""Mad Badger Barley Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+main_street_alehouse,0,0,244881555458,"{""name"":""Main Street Alehouse"",""city"":""Gresham"",""state"":""Oregon"",""code"":""97030"",""country"":""United States"",""phone"":""1-503-669-0569"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""333 North Main Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.5001,""lon"":-122.431}}",1,60,1
+stone_brewing_co-old_guardian_barley_wine_2003,0,0,245117419520,"{""name"":""Old Guardian Barley Wine 2003"",""abv"":9.91,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+brasserie_de_l_abbaye_des_rocs-blanche_double,0,0,244378566657,"{""name"":""Blanche Double"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+rogue_ales-chipotle_ale,0,0,244992638976,"{""name"":""Chipotle Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Dedicated to Spanish author Juan de la Cueva, who, in 1575, wrote of a an dish that combined seedless chipotles with beer: Chipotle Ale is based on Rogues American Amber Ale, but delicately spiced with smoked jalapeno (chipotle) chile peppers. Deep amber in color with a tight head, rich malty aroma, delicately smooth and crisp flavor, and subtle chipotle chili finish. Chipotle Ale is created from Northwest Harrington, Klages, and Maier Munich Malts; Willamette and Cascade hops; and Chipolte (smoked jalapeno) Peppers. Available in a 22-ounce (12/case), 12-ounce (24 loose/case) screened bottles, and on draft. Blend it with Rogue Chocolate Stout and create a Mole black and tan!""}",1,29,1
+tyranena_brewing-fighting_finches_bock,0,0,245113880576,"{""name"":""Fighting Finches Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Finches will get you if you don’t watch out!\"" In the early days of southern Wisconsin, falling into the clutches of the \""Fighting Finches\"" was the ultimate threat. Moses Finch fathered 21 offspring whose most notable talents were stealing horses and robbing stagecoaches. From their stronghold in the impenetrable marshes west of Lake Mills, the Finches raided the farms of local settlers and held up the early travelers between Madison and Milwaukee.\r\n\r\nThe Finches are long gone, but their legend lives on. So enjoy a pint of our Fighting Finches Bock… or you better watch out, ‘cause the Finches are gonna get you!"",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,36,1
+greene_king-olde_suffolk,0,0,244758806528,"{""name"":""Olde Suffolk"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,62,1
+carlsberg_bryggerierne-47_bryg,0,0,244500660226,"{""name"":""47 Bryg"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_bryggerierne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
+america_s_brewing-sweeney_stout,0,0,244369981440,"{""name"":""Sweeney Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+keg_microbrewery_restaurant-stout,0,0,244758609921,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
+manayunk_brewery_and_restaurant-bohemian_blonde,0,0,244881620992,"{""name"":""Bohemian Blonde"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer – pale blonde in color with a crisp, softly sweet malt flavor, smooth finish and very subtle bitterness. Went to the final judging table at the GABF alongwith the Mega Breweries last year!"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,60,1
+stroh_brewery_company,0,0,245117419521,"{""name"":""Stroh Brewery Company"",""city"":""Tampa"",""state"":""Florida"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":27.9494,""lon"":-82.4651}}",1,45,1
+brauerei_reissdorf-kolsch,0,0,244496728064,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_reissdorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+rogue_ales-rogue_smoke,0,0,244992638977,"{""name"":""Rogue Smoke"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Rogue Smoke(previously known as Welkommen on draft) is a German style Rauchbier (Smoke Beer), which was inspired by the Fall of the Berlin Wall. Most rauch brews are bottom fermented, however Rogue Smoke, is top fermented. It is orange-amber in hue with a delicate smoke aroma and flavor with an intense hop finish.\r\n\r\nIn All About Beer, August, 1995 issue, Christopher Brooks writes \""Alder wood, indigenous to the Northwest, is the smoking agent, though a small amount of Bamberg malt is used in the mash, too. Beech is drier than alder, reports brewmaster John Maier, so we use a little of that for added complexity. Welkommen, a smoky, nutty ale, is also very dry, which given the 15 pounds of hops (perle and Saaz) added to each 15-barrel batch, is no surprise.\"" The seven medals in nine years which Rogue Smoke won at theGreat American Beer Festival in Denver are also a tribute to this unusual brew.\r\n\r\nRogue Smoke is brewed with Great Western Harrington, Klages, Munich, Hugh Baird Crystal, Carastan (30-37 and 13-17), Chucks Alderwood Smoked Munich and Bamberg Beechwood Smoked malts; plus Perle and Saaz hops. Rogue Smoke is available in the classic 22-ounce seriograph bottle (replacing the older 7 ounce bottle) and on draft.""}",1,29,1
+umpqua_brewing-no_doubt_stout,0,0,245113880577,"{""name"":""No Doubt Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""umpqua_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+greenshields_brewery_and_pub-pilsner,0,0,244758806529,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+chimay_abbaye_notre_dame_de_scourmont-chimay_doree,0,0,244500725760,"{""name"":""Chimay Dorée"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed from very similar ingredients as the Red, but paler and spiced differently. It is intended only to be drunk at the abbey or at the nearby inn Auberge de Poteaupré which is associated with the abbey. The monks themselves drink this variety rather than the stronger three. The Dorée is not sold commercially and the rare bottles which make their way out are through unofficial sources. Even the brewery's own web site makes no mention of this variety."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,63,1
+anderson_valley_brewing-boont_amber_ale,0,0,244369981441,"{""name"":""Boont Amber Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
+kostritzer_schwarzbierbrauerei-oktoberfest,0,0,244758675456,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kostritzer_schwarzbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
+mendocino_brewing_saratoga_springs-white_ale,0,0,244881620993,"{""name"":""White Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_saratoga_springs"",""updated"":""2010-07-22 20:00:20"",""description"":""This Limited Edition unfiltered Belgian Style Ale, brewed with premium unmatted wheat has a crisp & refreshing flavor. This thirst quenching ale has a blend of sweet orange peel, a subtle hint of coriander and a delicate twist of lemon."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,60,1
+sweet_water_tavern_and_brewery,0,0,245117419522,"{""name"":""Sweet Water Tavern and Brewery"",""city"":""Sterling"",""state"":""Virginia"",""code"":""20121"",""country"":""United States"",""phone"":""(703) 449-1108"",""website"":""http://www.greatamericanrestaurants.com/sweetMainSter/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""45980 Waterview Plaza""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.0324,""lon"":-77.4097}}",1,45,1
+brauerei_spezial-rauchbier_lager,0,0,244496793600,"{""name"":""Rauchbier Lager"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+saint_louis_brewery_schlafy_tap_room-schlafly_tripel,0,0,244992704512,"{""name"":""Schlafly Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+union_barrel_works-union_barrel_works_lager,0,0,245113946112,"{""name"":""Union Barrel Works Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Dortmunder style lager with full body and deep golden color. Brewed using four specialty malts with moderate hopping for a smooth clean flavor and aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,36,1
+grolsche_bierbrouwerij-grolsch_amber_ale,0,0,244758872064,"{""name"":""Grolsch Amber Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,62,1
+cooperstown_brewing_company-nine_men_ale,0,0,244500725761,"{""name"":""Nine Men Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Nine Man\"" is a golden ale, brewed from English pale and crystal malts, and with torrified wheat. It is bittered with Cascade and Cluster hops and finished with Cascade hops. \""Nine Man Ale\"" was first brewed as a summer seasonal beer in 1996. It was kegged the first season but not bottled until the opening of the baseball season in April 1997."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,63,1
+appalachian_brewing_company-jolly_scot_scottish_ale,0,0,244369981442,"{""name"":""Jolly Scot Scottish Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This flavorful sweet ale has a smooth malt finish balanced against a light hop flavor. This beer is very quaffable and has become a brewpub favorite throughout the United States. \r\n\""Jolly Scot\"" was a famed local beer produced by R.H. Graupners Brewery that was located at 10th and Market – one block from our brewery."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,32,1
+krogh_s_restaurant_and_brewpub-packs_a_punch_porter,0,0,244758675457,"{""name"":""Packs A Punch Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,61,1
+mendocino_brewing_saratoga_springs,0,0,244881686528,"{""name"":""Mendocino Brewing - Saratoga Springs"",""city"":""Saratoga Springs"",""state"":""New York"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.mendobrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0831,""lon"":-73.7846}}",1,60,1
+sweetwater_brewing_casper-surefire_stout,0,0,245117485056,"{""name"":""Surefire Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_casper"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,45,1
+brauhaus_johann_albrecht_konstanz-kupfer,0,0,244496793601,"{""name"":""Kupfer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
+saint_somewhere_brewing_company-saison_athene,0,0,244992704513,"{""name"":""Saison Athene"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_somewhere_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A bottle conditioned Saison with a spicy and moderately hoppy profile true to the traditions of the farmhouse ales of Wallonia.\r\n\r\n A spiced saison with chamomile, rosemary and black pepper."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,29,1
+upstream_brewing_old_market-old_market_stout,0,0,245113946113,"{""name"":""Old Market Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+grupo_modelo-negra_modelo,0,0,244758872065,"{""name"":""Negra Modelo"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":""Negra Modelo has long been the dark beer alternative for Mexican beer drinkers. It has been identified as one of the few surviving examples of Vienna style lager - a style that was largely replaced in European breweries with Oktoberfest, a slightly lighter lager, in the early twentieth century. \r\nNegra Modelo pours with an off-white, medium head. The body is clear with a rich amber/copper color. The aroma is sweet with hints of apple. The impression at the first sip is sweet. This gives way only a bit to some hops bitterness which gives some balance but leaves the beer firmly in the sweet category. It has no real lager snap at the end, just lingering hops. This actually makes the second sip more balanced than the first.\r\n\r\nThere is some complexity and depth here but the flavors are very delicate. They are obliterated by the aggressive flavors of the Mexican food that Modelo is often served with making it a sweet balance to the savory and sometimes hot cuisine."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
+copper_kettle_brewery-celebration_wheat,0,0,244500725762,"{""name"":""Celebration Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A nice traditional cloudy wheat beer. It is light in color with a banana and yeasty fragrance. This would go nice on a hot summer day or anytime you want a refreshing drink."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,63,1
+appleton_brewing-adler_brau_winter_ale,0,0,244369981443,"{""name"":""Adler Bräu Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,32,1
+kulmbacher_brauerei_ag-monchshof_original_pils,0,0,244758740992,"{""name"":""Mönchshof Original Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+moosejaw_pizza_dells_brewing_company-oktoberfest,0,0,244881686529,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,60,1
+taylor_s_restaurant_and_brewery-nut_brown,0,0,245117485057,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,45,1
+brauhaus_johann_albrecht_konstanz-messing,0,0,244496859136,"{""name"":""Messing"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+schooner_brewery,0,0,244992704514,"{""name"":""Schooner Brewery"",""city"":""Dallas"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.803,""lon"":-96.7699}}",1,29,1
+wachusetts_brewing_company-wachusetts_ipa,0,0,245748858880,"{""name"":""Wachusetts IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wachusetts_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Nice Hoppy IPA - available in MA & NY only"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,36,1
+harbor_city_brewing,0,0,244758937600,"{""name"":""Harbor City Brewing"",""city"":""Port Washington"",""state"":""Wisconsin"",""code"":""53074"",""country"":""United States"",""phone"":""1-262-284-3118"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""535 West Grand Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.3871,""lon"":-87.8795}}",1,62,1
+daas,0,0,244500791296,"{""name"":""Daas"",""city"":""Tournai"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":""442032865958"",""website"":""http://www.daasbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Daas beers are organically brewed Belgium beer produced in Hainaut the famous Belgian province known for its fine hand crafted beers."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.6059,""lon"":3.3884}}",1,63,1
+barley_brothers_brewery_and_grill-kickstart_oatmeal_stout,0,0,244370046976,"{""name"":""Kickstart Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+aksarben_brewing_bop-bavarian_bock,0,0,244366180352,"{""name"":""Bavarian Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
+lancaster_brewing_co-celtic_rose,0,0,244758740993,"{""name"":""Celtic Rose"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our version of the traditional Irish Amber Ale. This beer combines the richness of German and Austrian malts with the delicate and spicy British hops for a taste worthy of the Red Rose City."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
+moylan_s_brewery_restaurant-white_christmas,0,0,244881752064,"{""name"":""White Christmas"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+tied_house_cafe_brewery_san_jose-new_world_wheat,0,0,245117485058,"{""name"":""New World Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+brewpub_on_the_green-independence_ale,0,0,244496859137,"{""name"":""Independence Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewpub_on_the_green"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+shipyard_brewing_portland-pugsley_s_signature_series_xxxx_ipa,0,0,244992770048,"{""name"":""Pugsley's Signature Series XXXX IPA"",""abv"":9.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""XXXX IPA is a non-traditional American IPA with a brilliant copper color and the classic citrus nose of Cascade hops. This beer demonstrates a unique balance of malt-inspired, delicate red grapefruit sweetness and lingering hop dryness. The OG and final ABV provide the structure and body to balance the harmony of distinct flavours. Cascade, Warrior, Summit and Glacier Hops are used for bittering and Cascade Hops are added for dry hopping after fermentation. This hop blend is well balanced with Malted Wheat, Pale Ale, Crystal, and Caramalt Malts. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit. This beer pairs well with Cajun dishes, blackened fish, and BBQ. XXXX draws its name from the British brewing convention of using X’s to denote style. 70 BU’s, 1.092 OG, 9.25% ABV."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,29,1
+weyerbacher_brewing_company-house_ale,0,0,245748924416,"{""name"":""House Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""House Ale, our 4.5% session ale, was first brewed in 2006. Our goal was to brew a beer that was a little bit lower in alcohol, but did not lack for body and flavor. We're sure you'll agree, that's just what we achieved with this tasty brew. Brewed with Pale, Caramunich, and Carapils malt for flavor and body, then hopped exclusively with expensive Tettnang hops, a very delicate, delicious hops that perfectly fits this beer with just the right snap of flavor. Available only in Pennsylvania, in our Variety Pack Case."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,36,1
+hook_ladder_brewing_company,0,0,244758937601,"{""name"":""Hook & Ladder Brewing Company"",""city"":""Silver Spring"",""state"":""Maryland"",""code"":""20910"",""country"":""United States"",""phone"":""301.565.4522"",""website"":""http://www.hookandladderbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Hook & Ladder Brewing we believe in great beer in the company of good friends, so we bring you three great beers for your drinking pleasure (please drink responsibly). Each of our beers is carefully crafted with the finest quality ingredients for a distinctive taste we know you will enjoy. Try one tonight, you just might get hooked. Through our own experiences in the fire and rescue service we have chosen the Hook & Ladder as a symbol of pride and honor to pay tribute to the brave men and women who serve and protect our communities."",""address"":[""8113 Fenton St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9911,""lon"":-77.0237}}",1,62,1
+denmark_brewing-valhalla_ale,0,0,244633305088,"{""name"":""Valhalla Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denmark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+big_buck_brewery_and_steakhouse_2,0,0,244370046977,"{""name"":""Big Buck Brewery and Steakhouse #2"",""city"":""Grand Rapids"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.9634,""lon"":-85.6681}}",1,32,1
+aksarben_brewing_bop-witbier,0,0,244366180353,"{""name"":""Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+legends_brewhouse_eatery_of_green_bay-light,0,0,244758740994,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legends_brewhouse_eatery_of_green_bay"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+nodding_head_brewpub-3c_extreme,0,0,244881752065,"{""name"":""3C Extreme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+tunner_s_guild_brewing_systems-rock_river_lager_beer,0,0,245117485059,"{""name"":""Rock River Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,45,1
+brouwerij_de_achelse_kluis-trappist_blond,0,0,244496859138,"{""name"":""Trappist Blond"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+sierra_nevada_brewing_co-dark_wheat,0,0,244992770049,"{""name"":""Dark Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+wild_river_brewing_and_pizza_cave_junction-esb,0,0,245748989952,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,36,1
+hoppin_frog_brewery-smashing_berry_ale,0,0,244759003136,"{""name"":""Smashing Berry Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An abundance of fresh, natural fruit flavor makes this beer something special. You would think we picked the fruit moments before brewing."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,62,1
+deschutes_brewery-jubel_2000,0,0,244633370624,"{""name"":""Jubel 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,63,1
+big_dog_s_brewing_company-black_lab_stout,0,0,244370112512,"{""name"":""Black Lab Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_dog_s_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+amherst_brewing_company-puffers_smoked_porter,0,0,244366245888,"{""name"":""Puffers Smoked Porter"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, full bodied ale with a prominent smoked malt flavor"",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+lowenbrau_brauerei-original,0,0,244881883136,"{""name"":""Original"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+o_grady_s_brewery_and_pub_1-haymarket_pilsner,0,0,244881817600,"{""name"":""Haymarket Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
+tunner_s_guild_brewing_systems,0,0,245117550592,"{""name"":""Tunner's Guild Brewing Systems"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.9442,""lon"":-93.0861}}",1,45,1
+bullfrog_brewery-billtown_blonde,0,0,244496924672,"{""name"":""Billtown Blonde"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This lightly colored ale has a delicate floral aroma and flavor reminiscent of Williamsports first breweries, clean and crisp with just a touch of lingering sweetness leading to a dry, balanced finish.""}",1,53,1
+spaten_franziskaner_brau-munchner_hell_premium_lager,0,0,245110538240,"{""name"":""Münchner Hell / Premium Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,29,1
+wynkoop_brewing-sagebrush_stout,0,0,245748989953,"{""name"":""Sagebrush Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark, deeply roasted and full-bodied ale. Rich with kisses of chocolate, coffee and oats, it's a glorious version of an American-style stout. A longtime house favorite."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,36,1
+jj_bitting_brewing-hop_garden_pale_ale,0,0,244759003137,"{""name"":""Hop Garden Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+devil_mountain_brewing-5_malt_ale,0,0,244633370625,"{""name"":""5 Malt Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""devil_mountain_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
+birra_moretti,0,0,244370112513,"{""name"":""Birra Moretti"",""city"":""Udine"",""state"":"""",""code"":"""",""country"":""Italy"",""phone"":""39-800-1859.00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Viale Venezia 9""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.0597,""lon"":13.2269}}",1,32,1
+anderson_valley_brewing-hop_ottin_ipa,0,0,244366311424,"{""name"":""Hop Ottin IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hop Ottin' IPA is as hoppy as they come. The name means \""hard working hops,\"" in Boontling, and that tells it all. Generous additions of high-alpha Pacific Northwest hops added during a vigorous boil, plus traditional dry hopping, with whole hop cones, give this ale a delicious citrus aroma, and an intense hoppy bite. This IPA is a hop lover's dream."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,24,1
+magic_hat-feast_of_fools,0,0,244881948672,"{""name"":""Feast of Fools"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Holiday Offering\r\nIn pre-christian times, the Celebration of darkness and light was marked with great halls filled with smoke & mirrors. Guilded goblets brimming with seasonal brews were lifted to lips, speaking a language no longer known. \r\nCenturies pass.\r\n\r\nThe winter wind finds its way through heavy wood doors. There is a solemn business of monks to be done. But also brewing, a season of celebration is about to begin....\r\nMore years pass.\r\nThe modern age. \r\nThe present connects the past through the brewer's art and a new beer is born.\r\nFeast of Fools... \r\nA perfect dessert beer brewed exclusively for the holiday season. Hand bottled, champagne corked. \r\nOur inky, rich, black stout, with the addition of raspberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
+oak_creek_brewery-village_nut_brown_ale,0,0,244881817601,"{""name"":""Village Nut Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
+upper_mississippi_brewing-hefeweizen,0,0,245117550593,"{""name"":""Hefeweizen"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,45,1
+callahan_s_pub_and_brewery-mesa_pale_ale,0,0,244496924673,"{""name"":""Mesa Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""callahan_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+sprecher_brewing-winter_brew,0,0,245110669312,"{""name"":""Winter Brew"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A flavorful blend of dark roasted and sweet caramel malts defines this smooth and robust lager. The rich, nourishing flavors of a full-bodied Munich bock make this Bavarian-style brew perfect for those long winter nights."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,29,1
+yards_brewing-yards_brawler,0,0,245748989954,"{""name"":""Yards Brawler"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Boasting superior taste and champion flavor, the Brawler is crafted in the style of English session ales. This malt-forward, ruby colored ale is great for when you want to go a few rounds."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,36,1
+keesmann_bru,0,0,244759003138,"{""name"":""Keesmann Bru"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-26646"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wunderburg 5""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8904,""lon"":10.9056}}",1,62,1
+diebels_privatbrauerei-alt,0,0,244633436160,"{""name"":""Alt"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diebels_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
+bj_s_restaurant_and_brewery-harvest_hefeweizen,0,0,244370178048,"{""name"":""Harvest Hefeweizen"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
+appalachian_brewing_company-batch_666,0,0,244366311425,"{""name"":""Batch 666"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,24,1
+maritime_pacific_brewing-portage_bay_pilsener,0,0,244882014208,"{""name"":""Portage Bay Pilsener"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+pacific_beach_brewhouse-over_the_line_stout,0,0,244881883136,"{""name"":""Over The Line Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,60,1
+upstream_brewing_old_market-irish_red,0,0,245117550594,"{""name"":""Irish Red"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+cedar_brewing-flying_aces_ale,0,0,244496990208,"{""name"":""Flying Aces Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+standing_stone_brewing_company-standing_stone_india_pale_ale,0,0,245110669313,"{""name"":""Standing Stone India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This unfiltered ale retains a medium maltiness and body and features a flowery hop perfume and pleasant bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
+yuengling_son_brewing,0,0,245749055488,"{""name"":""Yuengling & Son Brewing"",""city"":""Pottsville"",""state"":""Pennsylvania"",""code"":""17901"",""country"":""United States"",""phone"":""570-622-0153"",""website"":""http://www.yuengling.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""310 Mill Creek Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7,""lon"":-76.1747}}",1,36,1
+king_and_barnes-worthington_white_shield,0,0,244759068672,"{""name"":""Worthington White Shield"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""king_and_barnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+duck_rabbit_craft_brewery-duck_rabbit_porter,0,0,244633436161,"{""name"":""Duck-Rabbit Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Duck-Rabbit Porter is very dark in color. This robust porter features a pronounced flavor of roasted grains reminiscent of dark chocolate. Also, Paul and Brandon add oats to the grist to give a subtle round silkiness to the mouthfeel. We’re confident that you’re really going to love this yummy porter!"",""style"":""Porter"",""category"":""Irish Ale""}",1,63,1
+black_sheep_brewery-ale,0,0,244370178049,"{""name"":""Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_sheep_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+appleton_brewing-adler_brau_doppel_bock_beer,0,0,244366311426,"{""name"":""Adler Bräu Doppel Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
+mckenzie_brew_house,0,0,244882014209,"{""name"":""McKenzie Brew House"",""city"":""Glen Mills"",""state"":""Pennsylvania"",""code"":""19342"",""country"":""United States"",""phone"":""1-610-361-9800"",""website"":""http://www.mckenziebrewhouse.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""451 Wilmington-West Chester Pike""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.8658,""lon"":-75.5442}}",1,61,1
+paulaner-paulaner_oktoberfest,0,0,245005680640,"{""name"":""Paulaner Oktoberfest"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""Paulaner Oktoberfestbier is festive, full-flavoured and ultra delicious, and is brewed specially for the most famous festival in the world. Every year, more than one million liters are served at the Oktoberfest. You can create your own \""beer tent atmosphere\"" at home with this golden yellow, mildly hoppy seasonal speciality - but only between July and October.\r\n\r\nOktoberfest Bier:\r\n13.7% original wort; 6.0% alcohol; 50 kcal/100 ml"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,60,1
+valley_brewing_company,0,0,245117616128,"{""name"":""Valley Brewing Company"",""city"":""Stockton"",""state"":""California"",""code"":""95204"",""country"":""United States"",""phone"":""(209) 464-2739"",""website"":""http://www.valleybrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1950 W. Fremont St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.9551,""lon"":-121.322}}",1,45,1
+central_city_brewing_company-red_racer_india_pale_ale,0,0,244496990209,"{""name"":""Red Racer India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,53,1
+stoudt_s_brewery-scarlet_lady_ale,0,0,245110669314,"{""name"":""Scarlet Lady Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This English-style ale is brewed with Marris Otter and Caramel malts for a rich, reddish-copper color and smooth malty palate. The use of bittering and aroma addition hops balances the regal, sweet maltiness and imparts a softly perfumed aroma"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,29,1
+lancaster_brewing_co-amish_four_grain,0,0,244759068673,"{""name"":""Amish Four Grain"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our multi-grain pale ale summons the sweetness of oats, the complexity of rye and the smoothness of malted wheat, balanced by a generous dry-hopping of imported, noble Saaz hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+eastern_shore_brewing,0,0,244633436162,"{""name"":""Eastern Shore Brewing"",""city"":""St Michaels"",""state"":""Maryland"",""code"":""21663"",""country"":""United States"",""phone"":""410.745.8010"",""website"":""http://www.easternshorebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Offering beers for every taste including: St. Michaels Blonde Ale, St. Michaels LT, Not So Pale Ale and seasonal beers...Ameri-Hefe & Ameri-Wheat. Stop by the tasting room and sample a few beers. We anticipate being open by Labor Day 2008."",""address"":[""605 S. Talbot St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.7814,""lon"":-76.2222}}",1,63,1
+black_sheep_brewery,0,0,244370178050,"{""name"":""Black Sheep Brewery"",""city"":""Ripon"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01765)-689227"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wellgarth""]}",1,32,1
+augusta_brewing,0,0,244366376960,"{""name"":""Augusta Brewing"",""city"":""Augusta"",""state"":""Missouri"",""code"":""63332"",""country"":""United States"",""phone"":""1-636-482-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5221 Water Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5702,""lon"":-90.8802}}",1,24,1
+middle_ages_brewing-middle_ages_raspberry_ale,0,0,244882014210,"{""name"":""Middle Ages Raspberry Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A scintillating ale with just the right amount of hops and ripe berry flavor."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
+quigleys,0,0,245005746176,"{""name"":""Quigleys"",""city"":""Pawleys Island"",""state"":""South Carolina"",""code"":""29585"",""country"":""United States"",""phone"":""(843) 237-7010"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Former brewer at Liberty Brewpub in Myrtle Beach is the owner/brewer at this new brewpub in the middle of golf country."",""address"":[""257 Willbrook Blvd""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":33.4905,""lon"":-79.116}}",1,60,1
+walldorff_brew_pub-amber_waves,0,0,245750169600,"{""name"":""Amber Waves"",""abv"":4.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A clean crisp ale with a beautiful reddish caramel color and a superb balance of hops and malts."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,45,1
+cervecera_del_pacfico,0,0,244497055744,"{""name"":""Cervecera del Pacfico"",""city"":""Mazatln"",""state"":""Sinaloa"",""code"":"""",""country"":""Mexico"",""phone"":""52-1-28-71-6011"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Calz.Gabriel Leyva y Melchor Ocampo""]}",1,53,1
+taylor_s_restaurant_and_brewery-pale_ale,0,0,245110669315,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
+main_street_brewing-brown_ale,0,0,244882341888,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,62,1
+edelweissbrauerei_farny-alt_durrener_weisse,0,0,244633501696,"{""name"":""Alt-Dürrener-Weiße"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+blue_cat_brew_pub-red_toad_amber_ale,0,0,244370243584,"{""name"":""Red Toad Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
+barley_island_brewing-rust_belt_porter,0,0,244366376961,"{""name"":""Rust Belt Porter"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+monte_carlo_casino_and_brewpub,0,0,244882079744,"{""name"":""Monte Carlo Casino and Brewpub"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89109"",""country"":""United States"",""phone"":""1-702-730-7438"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.1286,""lon"":-115.171}}",1,61,1
+remington_watson_smith_brewing,0,0,245005746177,"{""name"":""Remington Watson Smith Brewing"",""city"":""Waukesha"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0117,""lon"":-88.2315}}",1,60,1
+weissbierbrauerei_hopf,0,0,245750169601,"{""name"":""Weissbierbrauerei Hopf"",""city"":""Miesbach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8025-/-2959-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schtzenstrae 8-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.794,""lon"":11.8311}}",1,45,1
+commonwealth_brewing_1,0,0,244497121280,"{""name"":""Commonwealth Brewing #1"",""city"":""Boston"",""state"":""Massachusetts"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.3584,""lon"":-71.0598}}",1,53,1
+the_bruery-autumn_maple,0,0,245110734848,"{""name"":""Autumn Maple"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with 17 lbs. of yams per barrel (in other words, a lot of yams!), this autumn seasonal is a different take on the “pumpkin” beer style. Brewed with cinnamon, nutmeg, allspice, vanilla, molasses, and maple syrup, and fermented with our traditional Belgian yeast strain, this bold and spicy beer is perfect on a cold autumn evening."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,29,1
+maritime_pacific_brewing-salmon_bay_e_s_b,0,0,244882341889,"{""name"":""Salmon Bay E.S.B."",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+eel_river_brewing-triple_exultation_old_ale,0,0,244633501697,"{""name"":""Triple Exultation Old Ale"",""abv"":9.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,63,1
+blue_ridge_brewing,0,0,244370243585,"{""name"":""Blue Ridge Brewing"",""city"":""Greenville"",""state"":""South Carolina"",""code"":""29601"",""country"":""United States"",""phone"":""1-864-232-4677"",""website"":""http://www.blueridgebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Born in the foothills of the Blue Ridge Mountains, Greenville's Brew-Pub continues to pay homage to one simple creed, to provide our customers the very best we can! We're as proud of Chef Rich's House-Made Menu as we are of Jay's Freshly Crafted Brews!"",""address"":[""217 North Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.8531,""lon"":-82.3983}}",1,32,1
+black_sheep_brewery-riggwelter_yorkshire_ale,0,0,244366376962,"{""name"":""Riggwelter Yorkshire Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_sheep_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+512_brewing_company,0,0,244366573568,"{""name"":""(512) Brewing Company"",""city"":""Austin"",""state"":""Texas"",""code"":""78745"",""country"":""United States"",""phone"":""512.707.2337"",""website"":""http://512brewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(512) Brewing Company is a microbrewery located in the heart of Austin that brews for the community using as many local, domestic and organic ingredients as possible."",""address"":[""407 Radam, F200""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2234,""lon"":-97.7697}}",1,25,1
+monteith_s_brewing_co-monteith_s_celtic_beer,0,0,244882079745,"{""name"":""Monteith's Celtic Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""monteith_s_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Monteith’s Celtic Beer is considered an ‘Irish-style ale’ in the heritage of beers of a burnt-red colour traditionally brewed in the Emerald Isle.\r\n\r\nMonteith’s Celtic Beer has a dry roasted malt flavour characteristic of this style of brewing. This malty characteristic and crisp dryness is derived from malts of the roasted chocolate malt style. The hop character is medium to allow the chocolate malts to show through.\r\n\r\nMonteith’s brewers have been able to develop traditional ale fermentation characters while allowing the interesting roasted malt notes to come through in the aroma."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
+rogue_ales-jittery_frog,0,0,245005811712,"{""name"":""Jittery Frog"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""This special coffee stout includes NAFTA approved, organic, shade grown coffee beans from Costa Rica, Indonesia, and Ethiopia roasted by the brewmaster at local coffee roaster Red Twig in Edmonds, Wa. Hints of your morning cup are evident in the aroma, flavor and finish of this breakfast beer (but not just for breakfast). \r\nNo Chemicals, Additives or Preservatives.""}",1,60,1
+white_oak_cider,0,0,245750169602,"{""name"":""White Oak Cider"",""city"":""Newberg"",""state"":""Oregon"",""code"":""97132"",""country"":""United States"",""phone"":""1-503-538-0349"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""18452 NE Ribbon Ridge Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.3498,""lon"":-123.073}}",1,45,1
+coors_brewing_golden_brewery-harvest_moon_pumpkin,0,0,244497121281,"{""name"":""Harvest Moon Pumpkin"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This amber-colored, naturally pumpkin flavored ale is brewed only in the autumn and combines the flavor of vine-ripened pumpkin and spices. If you're in the mood for something unique and different to go along with the change of season, autumn is the perfect time to try Blue Moon™ Pumpkin Ale. Available mid-September through December."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,53,1
+the_livery-555_ipa,0,0,245110734849,"{""name"":""555 IPA"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""A true North American IPA! All North American malts, Northwest Mt. Hood hops, and American Ale yeast all blend for a perfectly balanced bitter ale."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,29,1
+midnight_sun_brewing_co-gluttony,0,0,244882407424,"{""name"":""Gluttony"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""GLUTTONY Triple IPA overindulges the palate with profound malt, powerful hops and abundant body. Its deep decadent golden orange color presents an appetizing invitation for extravagant enjoyment. Its aroma entices with citrus, pine and alcohol while the flavor provides a smorgasbord of sweet malt, fresh tangerine/grapefruit and a resinous hop character that lingers well beyond the finish. \r\n\r\nGLUTTONY...More than a mouthful."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,62,1
+egan_brewing-enkel_biter,0,0,244633567232,"{""name"":""Enkel Biter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+boston_beer_company-longshot_hazelnut_brown,0,0,244370243586,"{""name"":""Longshot Hazelnut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+bootleggers_steakhouse_and_brewery-voluptuous_blonde,0,0,244366442496,"{""name"":""Voluptuous Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+abhi_brewery,0,0,244366573569,"{""name"":""Abhi Brewery"",""city"":"""",""state"":"""",""code"":"""",""country"":""India"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-09-27 00:35:48"",""description"":"""",""address"":[]}",1,25,1
+monteith_s_brewing_co-monteith_s_summer_ale,0,0,244882079746,"{""name"":""Monteith's Summer Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""monteith_s_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Monteith’s Summer Ale is a refreshingly different beer. The opportunity to rediscover some flavour highlights of beer styles enjoyed on summer days past, and bring them back to life.\r\n\r\nAt the end of last century, in England, Europe and the Americas and in New Zealand, there was still an adherence to brew with barley, wholesome grains, hops and other traditional brewing spices.\r\n\r\nMonteith’s Summer Ale is a bright gold beer with great body from four different malts. Spiced with a single hop variety and a touch of history - a little Rata honey. Subtle, but enough to make all the difference. The result is a truly refreshing herbal spiced beer brewed for the Summer Season — a splendid thirst quencher.\r\n\r\nMonteith’s Summer Ale enjoyed ice-cold with a simple range of fruits, perhaps refreshing wedge of orange or lime. Alternatively, match with summer salads and stir-frys to complement the light flavours."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,61,1
+rothaus_brauerei-dunkles,0,0,245005811713,"{""name"":""Dunkles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+wild_duck_brewing-imperial_sasquatch,0,0,245750235136,"{""name"":""Imperial Sasquatch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_duck_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+copper_kettle_brewery-potbelly_porter,0,0,244497186816,"{""name"":""Potbelly Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Porter has a deep dark color and a light creamy head. The aroma and flavor lingers of burnt grains and roasted coffe. We hope you enjoy this special brew."",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
+the_lost_abbey-serpents_stout,0,0,245110800384,"{""name"":""Serpents Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""The history of the bible and religion is indeed the struggle of good vs. evil. Our Serpent’s Stout recognizes the evil of the dark side that we all struggle with. This is a massively thick and opaque beer that begs the saints to join the sinners in their path to a black existence. 10.5% ABV and available in 750 ml bottles and on draft at select locations."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,29,1
+midnight_sun_brewing_co-oak_aged_imperial_chocolate_pumpkin_porter,0,0,244882407425,"{""name"":""Oak-Aged Imperial Chocolate Pumpkin Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This version is even lovelier than the original. Share with your sweetie."",""style"":""Porter"",""category"":""Irish Ale""}",1,62,1
+elysian_brewery_public_house-the_immortal_ipa,0,0,244633567233,"{""name"":""The Immortal IPA"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
+boulevard_brewing_company-bouldevard_zon,0,0,244370243587,"{""name"":""Bouldevard ZŌN"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard’s summer seasonal is our interpretation of a classic Belgian witbier. ZŌN (Flemish for “sun”) combines the subtle flavors of coriander and orange peel with other traditional ingredients to create a delightful, refreshing summertime brew. Available from May through August, in bottles and draught."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
+brasserie_de_la_senne-zinnebir,0,0,244366442497,"{""name"":""Zinnebir"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
+abita_brewing_company-christmas_ale,0,0,244366639104,"{""name"":""Christmas Ale"",""abv"":5.5,""ibu"":38.0,""srm"":35.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-12-19 09:11:43"",""description"":""Abita Christmas Ale is an American style Brown Ale. It is hopped with Willamette, Cascade, and Columbus hops and has a good hop flavor and aroma."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_pale_ale,0,0,244882145280,"{""name"":""Nøgne Ø Pale Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing light and hoppy ale. Probably our best allrounder. Recommended serving temperature 8°C/45°F. Ideal with barbequed or smoked meat dishes."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
+saint_arnold_brewing-divine_reserve_9,0,0,245005811714,"{""name"":""Divine Reserve 9"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Important: let this beer warm to at least 50° before enjoying. This beer is black with some ruby highlights. The nose is full of pumpkin pie spices and some alcohol. There are notes of nutmeg, caraway and vanilla. The taste starts with chocolate malt with a hint of spice and rolls into a warm spicy alcohol taste which has the effect of creating the balance that usually comes from the hop bitter. There is some hop bitter on the finish, but not much. Overall, this beer finishes relatively dry for such a big beer. As it warms, the spices move forward in the taste and the chocolate moves to the finish. The pumpkin provides a pleasant undertone and a nice mouthfeel. The spices will probably fade some over time; they mellowed considerably while still in the fermenter."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,60,1
+york_brewery-yorkshire_terrier_premium_cask_bitter,0,0,245750235137,"{""name"":""Yorkshire Terrier Premium Cask Bitter"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""york_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,45,1
+coronado_brewing_company-islandweizen,0,0,244497186817,"{""name"":""Islandweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Coronado 'Islandweizen' is our version of an American-styled Hefeweizen or unfiltered wheat beer. It's lightly hopped with Nobel Tettnang and Saaz hops to create a great full-bodied beer. This refreshing beer can be enjoyed with a slice of lemon."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
+the_round_barn_winery_brewery-round_barn_cocoa_stout,0,0,245110865920,"{""name"":""Round Barn Cocoa Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Cocoa Stout boasts a beautiful black body and tan head with notes of roasted barley, coffee, and bittersweet chocolate. Enjoy with dessert ‹ especially good in a float with vanilla ice cream. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience. Contains lactose (milk sugar)."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,29,1
+minneapolis_town_hall_brewery-hope_king_scotch_ale,0,0,244882472960,"{""name"":""Hope & King Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hope and King is a full-body brew and is rich in malt complexity. Brewed with both English and American barley and many, many specialty malts this deeply colored ale has hints of roasted chocolate, caramel and raisins with very little hop presence. Our interpretation of the classic ale that originated in Glasgow, Scotland."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,62,1
+empyrean_brewing_company-solar_flare_summer_ale,0,0,244633632768,"{""name"":""Solar Flare Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+brasserie_de_tahiti,0,0,244370309120,"{""name"":""Brasserie de Tahiti"",""city"":""Tahiti"",""state"":"""",""code"":"""",""country"":""French Polynesia"",""phone"":""689-467600"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""BP 597""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-17.6797,""lon"":-149.407}}",1,32,1
+brasserie_de_vervifontaine-biere_du_lion,0,0,244366442498,"{""name"":""Bière du Lion"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_vervifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+abita_brewing_company-honey_rye_ale,0,0,244366639105,"{""name"":""Honey Rye Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:54:55"",""description"":""This beer is not very bitter which allows the flavors of the rye and honey to come through. The result is a full bodied, sweet, and malty beer."",""style"":""Specialty Honey Lager or Ale"",""category"":""Other Style""}",1,25,1
+o_hanlon_s_brewing_company_ltd,0,0,244882145281,"{""name"":""O'Hanlon's Brewing Company Ltd."",""city"":""Exeter"",""state"":""Devon"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01404)-822412"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Great Barton Farm""]}",1,61,1
+scharer_s_little_brewery-scharer_s_lager,0,0,245005877248,"{""name"":""Scharer's Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scharer_s_little_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional German-style lager, fermented at 7-9°C and lagered at 4°C for 4-6 weeks. The storage produces a soft, natural carbonation. Full-bodied with high bitterness and hop flavour and a dry finish. Hoppy aromatic nose. Available on draught or in 780 mL champagne-style bottles. Can be difficult to acquire."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,60,1
+courthouse_pub-canadian_light,0,0,244497252352,"{""name"":""Canadian Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
+the_st_louis_brewrey,0,0,245110865921,"{""name"":""The St. Louis Brewrey"",""city"":""St. Louis"",""state"":""MO"",""code"":""63103"",""country"":""United States"",""phone"":""314-241-2337"",""website"":""http://http://www.schlafly.com"",""type"":""brewery"",""updated"":""2011-02-10 07:49:03"",""description"":""The Schlafly Tap Room first opened its doors in 1991 and proudly holds the distinction of being the first new brewpub in Missouri since Prohibition."",""address"":[""2100 Locust Street""]}",1,29,1
+new_albanian_brewing-solidarity,0,0,244882472961,"{""name"":""Solidarity"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_albanian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
+engine_house_9-tacoma_brew,0,0,244633632769,"{""name"":""Tacoma Brew"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+brauerei_gasthof_zur_krone-kellerpils,0,0,244487290880,"{""name"":""Kellerpils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+brasserie_des_cimes,0,0,244366508032,"{""name"":""Brasserie des Cimes"",""city"":""Aix les Bains"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-04.79.88.16.80"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""152 Avenue St Simond""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7075,""lon"":5.9153}}",1,24,1
+agassiz_brewing,0,0,244366704640,"{""name"":""Agassiz Brewing"",""city"":""Winnipeg"",""state"":""Manitoba"",""code"":""0"",""country"":""Canada"",""phone"":""1-204-233-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 42008""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.7652,""lon"":-97.1539}}",1,25,1
+oasis_brewery_annex-brown_ale,0,0,244882210816,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oasis_brewery_annex"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,61,1
+scottish_newcastle_breweries-newcastle_brown_ale,0,0,245005877249,"{""name"":""Newcastle Brown Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scottish_newcastle_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,60,1
+daleside_brewery-morocco_ale,0,0,244497252353,"{""name"":""Morocco Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+three_floyds_brewing-alpha_klaus_xmas_porter,0,0,245110865922,"{""name"":""Alpha Klaus Xmas Porter"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,29,1
+new_glarus_brewing_company-staghorn_oktoberfest,0,0,244882472962,"{""name"":""Staghorn Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,62,1
+erie_brewing_company-sunshie_wit,0,0,244633632770,"{""name"":""Sunshie Wit"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hot, Hazy summer days call for a craft beer that refreshes. Have no fear – Sunshine Wit is here! Sunshine Wit is a refreshingly smart-assed ale that will satisfy, especially when the mercury is rising. Add a slice of orange for an extra blast of flavor! Sunshine Wit is a “white ale” or “wit” – a hazy yellow wheat beer with a subtle citrus flavor and remarkable drinkability at 4.0% alcohol by volume. Let sunshine wit help you chill out on the hottest, humid, heat-stricken days of summer."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,63,1
+brauerei_im_fchschen,0,0,244487356416,"{""name"":""Brauerei im Fchschen"",""city"":""Düsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-211-/-13747-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ratinger Strasse 28""]}",1,32,1
+brasserie_des_gants-gouyasse_goliath,0,0,244366508033,"{""name"":""Gouyasse / Goliath"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_gants"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+alpine_beer_company-duet,0,0,244366704641,"{""name"":""Duet"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpine_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A West Coast IPA. Our original single IPA made with Simcoe and Amarillo hops “in harmony.” 1.065 OG 45 IBU 7%ABV"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
+odell_brewing-odell_ipa,0,0,244882210817,"{""name"":""Odell IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We took the traditional IPA, originally shipped from England to India in the 1700's, and made it bolder and more flavorful - American Style. We've added new varieties of highly aromatic American hops to create a distinctive bitterness profile and an incredible hop character."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
+south_county_brewing_co-south_county_munich_dunkel_lager,0,0,245122924544,"{""name"":""South County Munich Dunkel Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_county_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp and smooth. This beer is deep amber in color. Toasty, malty flavor. Full-bodied with a clean finish.""}",1,60,1
+de_dochter_van_de_korenaar-embrasse,0,0,244628979712,"{""name"":""embrasse"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_dochter_van_de_korenaar"",""updated"":""2010-07-22 20:00:20"",""description"":""pure-malt dark ale.\r\nrich and intense. good mix between imperial stout (but not as intense) and quadrupel. The beer has real balance and a luxurious mouthfeel"",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,53,1
+thunderhead_brewery-autumn_strong_lager,0,0,245110931456,"{""name"":""Autumn Strong Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,29,1
+new_holland_brewing_company-night_tripper,0,0,244882538496,"{""name"":""Night Tripper"",""abv"":10.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Night Tripper is an Imperial Stout for a Fat Tuesday release. Dark, mysterious and poetic, Night Tripper's abundance of roasted malts, combined with flaked barley create a rich, roasty beer with deeply intense and lush flavors. Night Tripper's layered, nuanced tones invite intrigue and reward a curious palate."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,62,1
+f_x_matt_brewing-saranac_nut_brown_ale,0,0,244633632771,"{""name"":""Saranac Nut Brown Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Nut Brown Ale's soft mellow malt character is rich and smooth with a medium body. Look for hints of toasted malt flavor, slight hop bitterness and amber brown color."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
+brauhaus_sion-kolsch,0,0,244487356417,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sion"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+brasserie_ellezelloise-la_quintine_blonde,0,0,244483686400,"{""name"":""La Quintine Blonde"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+amerisports_brew_pub,0,0,244366770176,"{""name"":""Amerisports Brew Pub"",""city"":""Kansas City"",""state"":""Missouri"",""code"":""64161"",""country"":""United States"",""phone"":""1-816-414-7000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8201 NE Birmingham Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1551,""lon"":-94.482}}",1,25,1
+odell_brewing,0,0,244882210818,"{""name"":""Odell Brewing"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":""80524"",""country"":""United States"",""phone"":""1-888-887-2797"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""800 East Lincoln Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5894,""lon"":-105.063}}",1,61,1
+speakeasy_ales_and_lagers-prohibition_pale_ale,0,0,245122990080,"{""name"":""Prohibition Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+denver_chophouse_and_brewery,0,0,244629045248,"{""name"":""Denver ChopHouse and Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-296-0800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1735 19th Street #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7553,""lon"":-104.997}}",1,53,1
+thunderhead_brewery_2-modern_monks_belgian_blonde,0,0,245110931457,"{""name"":""Modern Monks Belgian Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
+niagara_falls_brewing-apple_ale,0,0,244882538497,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,62,1
+fitzpatrick_s_brewing-hawk_rye,0,0,244633698304,"{""name"":""Hawk Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+brauhaus_sternen-oktoberfest,0,0,244487356418,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,32,1
+brasserie_lefebvre-abbaye_de_floreffe_double,0,0,244483686401,"{""name"":""Abbaye de Floreffe Double"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_lefebvre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+asahi_breweries-asahi_super_dry,0,0,244366770177,"{""name"":""Asahi Super Dry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asahi_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+ohio_brewing,0,0,244882210819,"{""name"":""Ohio Brewing"",""city"":""Niles"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.1828,""lon"":-80.7654}}",1,61,1
+springfield_brewing,0,0,245123055616,"{""name"":""Springfield Brewing"",""city"":""Springfield"",""state"":""Missouri"",""code"":""65806"",""country"":""United States"",""phone"":""1-417-832-8277"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""305 South Market Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.2079,""lon"":-93.2955}}",1,60,1
+aksarben_brewing_bop-harvest_brown,0,0,244366966784,"{""name"":""Harvest Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
+dick_s_brewing,0,0,244629110784,"{""name"":""Dick's Brewing"",""city"":""Centralia"",""state"":""Washington"",""code"":""98531"",""country"":""United States"",""phone"":""1-800-586-7760"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5945 Prather Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.7713,""lon"":-123.007}}",1,53,1
+timmermans-timmermans_gueuze,0,0,245110996992,"{""name"":""Timmermans Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,29,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_saison,0,0,244882538498,"{""name"":""Nøgne Ø Saison"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""One of our most refreshing brews, made for those hot summer days, but satisfying year 'round. Recommended serving temperature 8°C/45°F. Goes well with seafood, particularly oysters."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,62,1
+florida_beer_company,0,0,244633698305,"{""name"":""Florida Beer Company"",""city"":""Melbourne"",""state"":""Florida"",""code"":""32901"",""country"":""United States"",""phone"":""321-728-3412"",""website"":""http://www.floridabeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2500 S. Harbor City Blvd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.0707,""lon"":-80.6012}}",1,63,1
+brauhaus_sternen-weizentrumpf,0,0,244487421952,"{""name"":""Weizentrumpf"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
+brauerei_beck-beck_s_light,0,0,244483751936,"{""name"":""Beck's Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-12-20 16:12:12"",""description"":"""",""style"":""European Low-Alcohol Lager"",""category"":""German Lager""}",1,24,1
+avery_brewing_company-the_beast_grand_cru,0,0,244366770178,"{""name"":""The Beast Grand Cru"",""abv"":14.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Beast is a seducer - accommodating, complicated, powerful, dark and created to last the ages. With a deep burgundy color and aromas of honey, nutmeg, mandarin orange and pineapple, this massive and challenging brew has flavors akin to a beautiful Carribean rum. Dates, plums, raisins and molasses are dominant in a rich vinous texture. Cellarable for 10+ years."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,25,1
+okanagan_spring_brewery,0,0,244882276352,"{""name"":""Okanagan Spring Brewery"",""city"":""Vernon"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-800-663-7037"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2801 - 27A Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.2613,""lon"":-119.277}}",1,61,1
+storm_brewing-highland_scottish_ale,0,0,245123055617,"{""name"":""Highland Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""While hugely popular in Scotland, this style of beer escapes most North Americans. Designed and brewed by the Scottish punk rocker David “Malty” Macanulty, this creamy, nutty, malty, dark ale is true to its origins. David drives James crazy over this beer, insisting on rigid fermentation temperatures, traditional mild hops for bittering, and even some weird caramelizing ritual as the kettle is being filled. The beer continues to undergo subtle evolutionary changes because the stubborn Scottish bastard will never be satisfied."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,60,1
+anheuser_busch-michelob_irish_red,0,0,244367032320,"{""name"":""Michelob Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Born of Irish tradition, this all-malt ale uses kilned and toasted malts to produce its all-natural, signature red shade. A beer with exceptional balance, Irish Red displays an initial sweetness that fades to a clean, dry finish."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,26,1
+dix_barbecue_brewery,0,0,244629110785,"{""name"":""Dix Barbecue & Brewery"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-682-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""871 Beatty Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2766,""lon"":-123.115}}",1,53,1
+tollemache_and_cobbold_brewery,0,0,245110996993,"{""name"":""Tollemache and Cobbold Brewery"",""city"":""Ipswich"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.0593,""lon"":1.1557}}",1,29,1
+oldenberg_brewery-nut_brown_ale,0,0,244882604032,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oldenberg_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,62,1
+flying_bison_brewing-bird_of_prey_ipa,0,0,244633698306,"{""name"":""Bird of Prey IPA"",""abv"":8.26,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our true English style IPA. Bready English Malt gives this beer a firm backbone to hang truckloads of East Kent Golding Hops on. Available on draft at the brewery and select “Beer Geek Bars” Feb. March April (if it lasts that long)."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,63,1
+brew_kettle_taproom_smokehouse_bop,0,0,244487421953,"{""name"":""Brew Kettle Taproom & Smokehouse BOP"",""city"":""Strongsville"",""state"":""Ohio"",""code"":""44136"",""country"":""United States"",""phone"":""1-440-239-8788"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8377 Pearl Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.347,""lon"":-81.8226}}",1,32,1
+brauerei_beck-haacke_beck,0,0,244483751937,"{""name"":""Haacke-Beck"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+back_road_brewery-maple_city_gold,0,0,244366770179,"{""name"":""Maple City Gold"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""No, there is no maple flavor here, just a great beer with a good name. LaPorte, Indiana is known as the \""Maple City\"" because of its trees. This German style Oktoberfest lager beer has a golden copper color and intense malty flavor. We make this beer 4 times a year, but it is hard to find because it goes so fast. Give it a try and you may find it worthy of the gold.... or at least another round"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,25,1
+olde_peninsula_brewpub_and_restaurant-double_cream_oatmeal_stout,0,0,244882276353,"{""name"":""Double Cream Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
+sturgeon_bay_brewing,0,0,245123055618,"{""name"":""Sturgeon Bay Brewing"",""city"":""Sturgeon Bay"",""state"":""Wisconsin"",""code"":""54235"",""country"":""United States"",""phone"":""1-920-746-7611"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8342,""lon"":-87.377}}",1,60,1
+appleton_brewing-adler_brau_pumpkin_spice,0,0,244367032321,"{""name"":""Adler Bräu Pumpkin Spice"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+dubuque_brewing_and_bottling-star_big_muddy_brown,0,0,244629110786,"{""name"":""Star Big Muddy Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dubuque_brewing_and_bottling"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
+tooth_s-sheaf_stout,0,0,245111062528,"{""name"":""Sheaf Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tooth_s"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,29,1
+otter_creek_brewing_wolaver_s_organic_ales-otter_creek_russian_imperial_stout,0,0,244882669568,"{""name"":""Otter Creek Russian Imperial Stout"",""abv"":10.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The style was first brewed in England for the Russian Czar and it is the king of stouts. Plenty of big malt flavors- chocolate and roasted- and high alcohol with lower carbonation and mild hops. \r\nWe brewed this beer with double the malts and four times the hops of regular stouts!\r\n\r\nOtter Creek Russian Imperial Stout clocks in around 10% ABV- a beer to be savored responsibly. True to style, this beer will last for years so you may want to stock up on a few bottles for your cellar while it's available.\r\n\r\nRussian Imperial Stouts pair well with creamy cheeses such as camembert (we recommend Vermont-made!), decadent chocolate desserts, or a hearty meal."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,62,1
+flying_fish_brewing_company-exit_11_hoppy_american_wheat,0,0,244633763840,"{""name"":""Exit 11 - Hoppy American Wheat"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Exit 11 Hoppy American Wheat Ale is the second in their wildly popular Exit Series of Big Bottle Beers. Exit 11 is a confluence of styles and ingredients, just as Exit 11 is the point in New Jersey where the Garden State Parkway, the New Jersey Turnpike and several other highways come together.\r\n\r\n“Exit 11 is the point on the Turnpike where the Garden State Parkway branches off and takes hundreds of thousands of travelers to the renowned Jersey Shore,” says Flying Fish Founder Gene Muller. “Our Exit 11 Wheat Ale is a fresh, citrus-y summer beer perfect for beachgoers and those who only wish they were headed ‘downa shore’.”\r\n\r\nExit 11 is an American-style wheat beer brewed with English ale yeast and three Pacific Northwest hops, Columbus, Palisade and Amarillo. It is brewed with 50% Belgian pale malt and 50% white wheat, and is an ideal summer thirst quencher, with its bouquet of tangerines and apricots. Exit 11 is available only during this one-time release, and only until it sells out across New Jersey, Pennsylvania and Delaware."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,63,1
+brewer_s_art-resurrection,0,0,244487421954,"{""name"":""Resurrection"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewer_s_art"",""updated"":""2010-07-22 20:00:20"",""description"":""During the fermentation of the first batch of this Abbey-style dubbel, the yeast \""died\"" and was \""resurrected\"" by brewer Chris Cashell. Made with five types of barley malt and lots of sugar, this beer is quite flavorful, without being too sweet."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,32,1
+brauerei_beck-oktoberfest,0,0,244483751938,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
+baltika_breweries,0,0,244366835712,"{""name"":""Baltika Breweries"",""city"":""St. Petersburg"",""state"":"""",""code"":""194292"",""country"":""Russia"",""phone"":""(812)325-93-25"",""website"":""http://baltikabeer.com/"",""type"":""brewery"",""updated"":""2011-02-15 19:35:41"",""description"":""* The leader on the Russian beer market\n* One of the leading European producers of beer\n* The Baltika brand is Europe's second largest in terms of sales\n* The Company accounts for more than 80% of all Russian beer exports\n* Product is exported to 42 countries\n* 10 breweries: 2 factories in St. Petersburg and factories in Rostov-on-Don, Tula, Samara, Khabarovsk, Yaroslavl, Voronezh, Chelyabinsk, and Krasnoyarsk.\n* Around 12,000 employees"",""address"":[""6 Verkhny per., d. 3""]}",1,25,1
+olde_peninsula_brewpub_and_restaurant-midnight_stout,0,0,244882276354,"{""name"":""Midnight Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
+sullivan_s_black_forest_brew_haus_grill-sherwood_forest_ipa,0,0,245123055619,"{""name"":""Sherwood Forest IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,60,1
+arcadia_brewing-imperial_stout,0,0,244367097856,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
+duck_rabbit_craft_brewery,0,0,244629176320,"{""name"":""Duck-Rabbit Craft Brewery"",""city"":""Farmville"",""state"":""North Carolina"",""code"":""27828"",""country"":""United States"",""phone"":""(252) 753-7745"",""website"":""http://www.duckrabbitbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4519 W. Pine Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6003,""lon"":-77.5971}}",1,53,1
+utenos_alus,0,0,245111062529,"{""name"":""Utenos Alus"",""city"":""Utena"",""state"":"""",""code"":"""",""country"":""Lithuania"",""phone"":""370-39-69-023"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Pramons gatv 12""]}",1,29,1
+otto_s_pub_and_brewery-red_mo_ale,0,0,244882669569,"{""name"":""Red Mo Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American red ale brewed with Northern Brewer for the bittering and Liberty in the hopback. Very malty and crisp, this ale has all the fun without the AMD. ABV 5.0%"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+founders_brewing-founders_kentucky_breakfast,0,0,244633763841,"{""name"":""Founders Kentucky Breakfast"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A bit of backwoods pleasure without the banjo. This stout is brewed with a hint of coffee and vanilla then aged in oak bourbon barrels. Our process ensures that strong bourbon undertones come through in the finish in every batch we brew. We recommend decanting at room temperature and best enjoyed in a brandy snifter."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,63,1
+brooklyn_brewery-black_chocolate_stout,0,0,244487487488,"{""name"":""Black Chocolate Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+brauerei_fssla-gold_pils,0,0,244483817472,"{""name"":""Gold-Pils"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+biddy_early_brewery,0,0,244366835713,"{""name"":""Biddy Early Brewery"",""city"":""Ennis"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353-065-6836742"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Inagh""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.3293,""lon"":-96.6253}}",1,25,1
+pacific_rim_brewing-vashon_old_stock_ale,0,0,245005877248,"{""name"":""Vashon Old Stock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+the_alchemist,0,0,245123121152,"{""name"":""The Alchemist"",""city"":""Waterbury"",""state"":""Vermont"",""code"":""5676"",""country"":""United States"",""phone"":""(802) 244-4120"",""website"":""http://www.alchemistbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Alchemist is a 7 barrel brew pub specializing in hand-crafted beer and casual pub fare. All of our ales are brewed in our basement brewery, which was designed and installed by our brewer and co-proprietor John Kimmich. We use only the finest imported malts and domestic hops available to bring you the tastiest and finest selection of beers in Vermont!"",""address"":[""23 South Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.3372,""lon"":-72.756}}",1,60,1
+arcadia_brewing-sky_high_rye,0,0,244367097857,"{""name"":""Sky High Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+egan_brewing-irish_ale,0,0,244629176321,"{""name"":""Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,53,1
+water_street_brewery-pale_ale,0,0,245747744768,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
+otto_s_pub_and_brewery,0,0,244882735104,"{""name"":""Otto's Pub and Brewery"",""city"":""State College"",""state"":""Pennsylvania"",""code"":""16803"",""country"":""United States"",""phone"":""814-867-6886"",""website"":""http://www.ottospubandbrewery.com/index.php"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Otto's typically offers a selection of 9-11 beers on draft. These include seasonal offerings as well as some of our favorite year-round ales and lagers including our special cask-conditioned ales. All of our beers are brewed on-premises at Otto's for the utmost freshness and quality control. They are made with the finest ingredients available, all of our skill, and a true love for the craft of brewing. Enjoy!"",""address"":[""2105 N. Atherton St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.8098,""lon"":-77.9101}}",1,62,1
+founders_hill_brewing-blackburn_doppelbock,0,0,244633829376,"{""name"":""Blackburn Doppelbock"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
+brouwerij_bavik_de_brabandere-witte_ezel,0,0,244487487489,"{""name"":""Witte Ezel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+brauerei_fssla-lagerbier,0,0,244483817473,"{""name"":""Lagerbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+big_rock_brewery-albino_rhino_discontinued,0,0,244366835714,"{""name"":""Albino Rhino (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+panther_brewing_company,0,0,245005942784,"{""name"":""Panther Brewing Company"",""city"":""Utica"",""state"":""New York"",""code"":""13502"",""country"":""United States"",""phone"":""1-800-568-2553"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Utica NY 13502""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.1467,""lon"":-75.1779}}",1,61,1
+the_round_barn_winery_brewery-round_barn_amber_ale,0,0,245123121153,"{""name"":""Round Barn Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Amber Ale is a deep, copper ale with rich notes of caramel balanced with a hop finish, making it a great all-around beer that pairs well with roasted meats or a favorite sandwich. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,60,1
+arthur_guinness_son-guinness_250th_anniversary_stout,0,0,244367163392,"{""name"":""Guinness 250th Anniversary Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-07-22 20:00:20"",""description"":""To mark the 250 year anniversary of the signing of the lease on St. Jame's Gate Brewery by Arthur Guinness, we introduce a special commemorative stout. This premium recipe provides a refreshing taste, which underlies the complex flavor of stout."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
+egan_brewing-thyme_of_the_saison,0,0,244629176322,"{""name"":""Thyme of the Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+water_street_lake_country-bavarian_weiss_beer,0,0,245747810304,"{""name"":""Bavarian Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,29,1
+pennichuck_brewing_company-bagpiper_s_scottish_ale,0,0,245006139392,"{""name"":""Bagpiper's Scottish Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,62,1
+fratellos_restaurant_and_brewery-rye,0,0,244633829377,"{""name"":""Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+brouwerij_de_landtsheer-malheur_black_chocolate_2003,0,0,244487487490,"{""name"":""Malheur Black Chocolate 2003"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+brauerei_gasthof_zur_krone,0,0,244483817474,"{""name"":""Brauerei & Gasthof zur Krone"",""city"":""Tettnang"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7542-/-7452"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brenplatz 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6715,""lon"":9.5888}}",1,24,1
+big_sky_brewing,0,0,244366901248,"{""name"":""Big Sky Brewing"",""city"":""Missoula"",""state"":""Montana"",""code"":""59808"",""country"":""United States"",""phone"":""1-800-559-2774"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5417 Trumpeter Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.9223,""lon"":-114.073}}",1,25,1
+paulaner-hacker_pschorr_dunkel_weisse,0,0,245005942785,"{""name"":""Hacker-Pschorr Dunkel Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+tommyknocker_brewery_and_pub-pick_axe_pale_ale,0,0,245123121154,"{""name"":""Pick Axe Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Pick Axe Pale Ale is a classic American Pale Ale which uses premium hops and barley to impart a full bodied characteristic that dances on your tongue and titillates your palate."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+backcountry_brewery-peak_one_porter,0,0,244367163393,"{""name"":""Peak One Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backcountry_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+fox_river_brewing_1-trolleycar_stout,0,0,244629176323,"{""name"":""Trolleycar Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
+weinkeller_brewery_berwyn-dusseldorfer_doppelbock,0,0,245747810305,"{""name"":""Dusseldorfer Doppelbock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,29,1
+pennichuck_brewing_company-saint_florian_s_doppelbock,0,0,245006204928,"{""name"":""Saint Florian's Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,62,1
+glen_ellyn_sports_brew-red,0,0,244633894912,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
+brouwerij_t_ij,0,0,244487553024,"{""name"":""Brouwerij 't IJ"",""city"":""Amsterdam"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-020-3201786"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Funenkade 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.3666,""lon"":4.9263}}",1,32,1
+brewdog_ltd-dogma,0,0,244483883008,"{""name"":""Dogma"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Dogma is an innovative, enigmatic ale brewed with guarana, poppy seeds and kola nut all blended together with Scottish heather honey. A conspiracy of transcontinental ingredients infused with some devastatingly BrewDog imaginative thinking.\r\n\r\nThe flavours, intricacies and nuances of this beer are best enjoyed while musing over some obscure 17th Century philosophical meanderings, such as:\r\n\r\n\""If we disbelieve everything because we cannot certainly know all things we will do much, what as wisely as he who would not use his wings but sit still and perish because he had no wings to fly.\""\r\nJohn Locke.\r\n\r\nThis beer is not cool. You may think it is, but that is just a beautiful lie fabricated by clowns and gypsies."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,24,1
+boston_beer_works-boston_red,0,0,244366901249,"{""name"":""Boston Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
+plzesk_prazdroj_pivovar_radegast-premium,0,0,245006008320,"{""name"":""Premium"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""plzesk_prazdroj_pivovar_radegast"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+tongerlo-tongerlo_dubbel_bruin,0,0,245123121155,"{""name"":""Tongerlo Dubbel Bruin"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""DOUBLE BROWN 6°\r\nRed brown beer with a smooth gentle aroma, a full flavour and a slightly roasted aftertaste."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,60,1
+bandana_brewery-mankato_gold,0,0,244367228928,"{""name"":""Mankato Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+free_state_brewing,0,0,244629241856,"{""name"":""Free State Brewing"",""city"":""Lawrence"",""state"":""Kansas"",""code"":""66044"",""country"":""United States"",""phone"":""1-785-843-4555"",""website"":""http://freestatebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""636 Massachusetts""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9718,""lon"":-95.2357}}",1,53,1
+weyerbacher_brewing_company-prophecy,0,0,245747810306,"{""name"":""Prophecy"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Prophecy is our third ale to be aged in bourbon barrels. We've taken our Merry Monks' Ale and carefully aged it in bourbon barrels. The result is a fabulous unique ale, softened with hints of vanilla and oak, with an intriguing finish to it. Prophecy is a limited release so when it's here, be sure to grab a case or two to lay away before its gone. 9.3% ABV."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,29,1
+pleasanton_main_street_brewery-honey_wheat,0,0,245006204929,"{""name"":""Honey Wheat"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
+gordon_biersch_brewing-bock,0,0,244633894913,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
+bube_s_brewery-bube_s_kiwi_strawberry_wheat,0,0,244487553025,"{""name"":""Bube's Kiwi-Strawberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The perfect thirst quenching summertime ale. The subtle flavor of kiwi and strawberry blend with traditional German wheat and hops. Great for a hot summer day."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,32,1
+brewery_belle_vue,0,0,244483883009,"{""name"":""Brewery Belle-Vue"",""city"":""Molenbeek"",""state"":""Brussel"",""code"":"""",""country"":""Belgium"",""phone"":""32-024-12-44-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Delaunoystraat 58/60""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.8527,""lon"":4.3311}}",1,24,1
+brasserie_clarysse,0,0,244366901250,"{""name"":""Brasserie Clarysse"",""city"":""Oudenaarde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-055-31-17-21"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Krekelput 16-18""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8431,""lon"":3.6077}}",1,25,1
+prescott_brewing_company-manzanita_red,0,0,245006008321,"{""name"":""Manzanita Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,61,1
+traquair_house_brewery,0,0,245123186688,"{""name"":""Traquair House Brewery"",""city"":""Innerleithen"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01896)-830323"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Innerleithen EH44 6PW""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.619,""lon"":-3.0636}}",1,60,1
+barley_creek_brewing-antler_brown_ale,0,0,244367228929,"{""name"":""Antler Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional American style brown ale has medium body with a sweet Carastan maltiness. A rich deep chocolate color, our Antler Brown Ale is mildly hopped with Mt. Hood hops. Check out the Antler tap handle... locally grown! This has been our most popular beer over the years... a very easy drinking brew."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
+fuller_smith_turner_pbc-london_porter,0,0,244629241857,"{""name"":""London Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
+wychwood_brewery_company_ltd-duchy_originals_organic_english_ale,0,0,245747875840,"{""name"":""Duchy Originals Organic English Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,29,1
+pripps_ringnes_bryggerier-d_carnegie_and_company_porter,0,0,245006204930,"{""name"":""D. Carnegie and Company Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pripps_ringnes_bryggerier"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
+gordon_biersch_brewing-gordon_biersch_marzen,0,0,244633894914,"{""name"":""Gordon Biersch Marzen"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+capital_brewery-capital_wisconsin_amber,0,0,244487618560,"{""name"":""Capital Wisconsin Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
+brooklyn_brewery-local_2,0,0,244483883010,"{""name"":""Local 2"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,24,1
+brasserie_d_achouffe-chouffe_bok,0,0,244366901251,"{""name"":""Chouffe-Bok"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-thomas_kemper_belgian_white,0,0,245006008322,"{""name"":""Thomas Kemper Belgian White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+valley_brewing_company-hitman_gold,0,0,245123186689,"{""name"":""Hitman Gold"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hitman Gold is an American Pale Ale. The flavor is smooth but aggressively hopped with Simcoe Hops. The beer is best described as a “mini-IPA”. The beer is inspired by the famous wrestler Bret The Hitman Hart, who also is the artist who designed and drew the logo."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,60,1
+bavaria,0,0,244367228930,"{""name"":""Bavaria"",""city"":""Barranquilla"",""state"":"""",""code"":"""",""country"":""Colombia"",""phone"":"""",""website"":""http://www.bavaria.com.co"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Fundada en abril de 1889 Cervecería Águila tiene una capacidad de producción de 3.234.000 hectolitros de cerveza al año, con los cuales atiende los departamentos del Sucre, Magdalena, Atlántico, Bolívar, Guajira, Cesar y la Isla de San Andrés. Produce y distribuye las marcas Águila, Club Colombia, Costeñita, además de cerveza en barril; Agua Brisa en diferentes presentaciones y Pony Malta. Esta planta tiene su origen en la Cervecería Barranquilla que empieza operaciones el 10 de abril de 1913 y años más tarde, en 1933, se une a la Cervecería Bolívar, convirtiéndose en la Cervecería Barranquilla y Bolívar S.A. El 3 de marzo de 1967 la compañía tomó el nombre de Cervecería Águila S.A. En diciembre de 2002 se fusionó con Bavaria S.A. convirtiéndose en una planta estratégica para el proceso de exportaciones de la compañía. Desde octubre de 2005, Bavaria es parte de SABMiller, segunda cervecera mundial en volumen, con operaciones en cuatro continentes y una producción que supera los 170 millones de hectolitros de cerveza anuales en más de 170 marcas."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":10.9639,""lon"":-74.7964}}",1,26,1
+glenwood_canyon_brewing_company,0,0,244629241858,"{""name"":""Glenwood Canyon Brewing Company"",""city"":""Glenwood Springs"",""state"":""Colorado"",""code"":""81601"",""country"":""United States"",""phone"":""1-970-945-1276"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""402 Seventh Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.5476,""lon"":-107.323}}",1,53,1
+yards_brewing-yards_philadelphia_pale_ale,0,0,245747875841,"{""name"":""Yards Philadelphia Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Not to be boastful, but we honestly believe that all other ales pale in comparison to this one. Brewed with pilsner malt, Philadelphia Pale Ale is crisp and hoppy, bursting with citrus flavors and aromas.\r\n\r\nPhiladelphia Pale Ale was named one of the best Pale Ales in the country by the New York Times."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,29,1
+pyramid_alehouse_brewery_and_restaurant_seattle-krystal_weizen,0,0,245006204931,"{""name"":""Krystal Weizen"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
+great_lakes_brewing-burning_river_pale_ale,0,0,244759068672,"{""name"":""Burning River Pale Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An assertively hopped American Pale Ale with citrusy and piney Cascade hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
+clipper_city_brewing_co-peg_leg_stout,0,0,244487618561,"{""name"":""Peg Leg Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry Imperial stout with rich black color and aromas of roasted coffee, molasses, dark chocolate, toffee and caramel. Rich, powerful, and lingering."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,32,1
+brouwerij_het_anker-gouden_carolus_tripel,0,0,244483948544,"{""name"":""Gouden Carolus Tripel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+brasserie_de_saint_sylvestre-gavroche_french_red_ale,0,0,244366966784,"{""name"":""Gavroche French Red Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_saint_sylvestre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-weizenberry,0,0,245006008323,"{""name"":""Weizenberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,61,1
+valley_forge_brewing,0,0,245123186690,"{""name"":""Valley Forge Brewing"",""city"":""Wayne"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.0439,""lon"":-75.3881}}",1,60,1
+baxter_brewing,0,0,244367228931,"{""name"":""Baxter Brewing"",""city"":""Lewiston"",""state"":""ME"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Planned to begin brewing in fall 2010."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.1004,""lon"":-70.2148}}",1,26,1
+goose_island_beer_company_clybourn-smooth_oatmeal_stout,0,0,244629241859,"{""name"":""Smooth Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
+aass_brewery,0,0,244367425536,"{""name"":""Aass Brewery"",""city"":""Drammen"",""state"":"""",""code"":"""",""country"":""Norway"",""phone"":""47-32-26-60-00"",""website"":""http://www.aass.no"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Aass Brewery was established in 1834 and is the oldest brewery in Norway today. It is located in the city of Drammen, approximately 25 miles south of our capital, Oslo. You will spot it at the banks of the Drammen River at the very same place as it has been since 1834. The annual production of beer is aprox. 10 mill liter (85 000 barrels), and together with the production of 18 mill liters of soft drinks and mineralwater it gives employment to approximately 150 people. You may wonder how we got our name ? It was a young fellow with the name Poul Lauritz Aass that bought the brewery in 1860. Since then it has been in the same family, and is today run by the 4th generation of Aass. (By the way - A real Norwegian viking would pronounce it Ouse) The brewery is proud of its history. To us the quality of what we produce has always been and always will be the main issue. In 1516, Duke Wilhelm of Bavaria established a law admitting only malted barley, hops yeast, and water as ingredients in the production of beer. The law is known as the purity law and Aass Brewery is still loyal to Duke Wilhelm of Bavaria. In Norway the brewery is known for outstanding quality and large number of different beer types."",""address"":[""Ole Steensgt. 10 Postboks 1530""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":59.7451,""lon"":10.2135}}",1,27,1
+rogue_ales-american_amber_ale,0,0,245006270464,"{""name"":""American Amber Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Tawny amber in color with a coffee aroma and tight head. A delicate roasted malt accent, generous use of hops and a smooth finish. American Amber, originally known as Ashland Amber (created at Rogues original brewpub in Ashland, Oregon which was destroyed by flooding several years ago), is created from Northwest Harrington and Klages, 95-115 and 135-165 Crystal Malts. Kent Golding and Cascade Hops. American Amber is available in a 22-ounce bottle, 12-ounce 6-pack (new for 2005), and on draft."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
+greene_king-wexford_irish_cream_ale,0,0,244759134208,"{""name"":""Wexford Irish Cream Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":""Based on a traditional Irish recipe from county Wexford that dates back to 1810, we use only the best ingredients to ensure that our Wexford Ale has a smooth mellow creaminess we believe you will enjoy."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,63,1
+clipper_city_brewing_co-winter_storm,0,0,244487618562,"{""name"":""Winter Storm"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our \""winter warmer\"" ale, brewed with copious helpings of English malts and US and English hops, a ruddy hued \""Imperial ESB\"" in style. Full malty flavors dancing with powerful hop aromas and a lingering, firm hop bitterness. Seasonally available from mid October to February.\r\n\r\nGold Medal, International Pale Ale Category- World Beer Cup"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,32,1
+brouwerij_huyghe-delirium_noel,0,0,244483948545,"{""name"":""Delirium Noël"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,24,1
+brasserie_du_bocq,0,0,244366966785,"{""name"":""Brasserie du Bocq"",""city"":""Purnode"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-083-61-07-80"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de la Brasserie 4""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3114,""lon"":4.9435}}",1,25,1
+ramapo_valley_brewery,0,0,245006073856,"{""name"":""Ramapo Valley Brewery"",""city"":""Hillburn"",""state"":""New York"",""code"":""10931"",""country"":""United States"",""phone"":""1-845-369-7827"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""143 Highway 59 Building 6""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.1151,""lon"":-74.147}}",1,61,1
+voodoo_brewing_co_llc-gran_met,0,0,245752266752,"{""name"":""Gran Met"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Gran Met (Grand Master) is an Ale made from our Propriatery yeast from a small brewery in Belgium. We use Cane and Beet sugar, along with German Pilsner Malt to create the unique flavor of this age old style. We also use a unique fermentation process of slowly adding the sugars to the fermentation during fermentation. This allows the yeast to more slowly ferment the beer without overloading the yeast. This process allows for a more clean, tight flavor profile.10% alc by vol. \r\n\r\nBottle Conditioned and Refermented."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,60,1
+beach_brewing-red_rock,0,0,244367294464,"{""name"":""Red Rock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
+gottberg_brew_pub-pioneer_pale_ale_discontinued,0,0,244629307392,"{""name"":""Pioneer Pale Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+abita_brewing_company-strawberry_harvest_lager,0,0,244367425537,"{""name"":""Strawberry Harvest Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
+rogue_ales-morimoto_imperial_pilsner,0,0,245006270465,"{""name"":""Morimoto Imperial Pilsner"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Pilsner, part of the Morimoto Signature Series, was launched in September 2003. The beer was selected by internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \r\n\r\nBrewed with four ingredients: 100% French Pilsner Malt, 100% Sterling Hops, Free Range Coastal Water and Czech Pilsner Yeast. Imperial Pilsner is golden in color with a dry hop floral aroma and intense hop bitterness supported by a big malty backbone. Available in a swing-top 750 mil ceramic bottle and 13.2 gallon sankey kegs.\r\nTo learn more about the Chef, visit Morimotos web page.""}",1,62,1
+grupo_modelo-corona_light,0,0,244759134209,"{""name"":""Corona Light"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-12-20 16:15:31"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,63,1
+coniston_brewing-old_man_ale,0,0,244487684096,"{""name"":""Old Man Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coniston_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+brouwerij_van_eecke-het_kapittel_abt,0,0,244484014080,"{""name"":""Het Kapittel Abt"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_eecke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+brauerei_und_altbierkche_pinkus_mller-organic_ur_pils,0,0,244484276224,"{""name"":""Organic Ur Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+red_kettle_brewing,0,0,245006073857,"{""name"":""Red Kettle Brewing"",""city"":""Encinitas"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.037,""lon"":-117.292}}",1,61,1
+warwick_valley_wine_co-doc_s_hard_apple_cider,0,0,245752332288,"{""name"":""Doc's Hard Apple Cider"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warwick_valley_wine_co"",""updated"":""2010-12-20 16:23:00"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,60,1
+bison_brewing-organic_barley_wine_ale_2005,0,0,244367294465,"{""name"":""Organic Barley Wine Ale 2005"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+great_dane_pub_and_brewing_1-crop_circle_wheat,0,0,244755529728,"{""name"":""Crop Circle Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
+alaskan_brewing-alaskan_white_ale,0,0,244367491072,"{""name"":""Alaskan White Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Alaskan White Ale has a soft, slightly sweet base with the unique spice aroma of coriander and crisp, citrus finish of orange peel. A light and effervescent body combined with the smooth palate creates a complex and delicate beer that is deliciously refreshing in any season."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,27,1
+rogue_ales-old_crustacean_barleywine_2005,0,0,245006270466,"{""name"":""Old Crustacean Barleywine 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+hanssens_artisanal-oudbeitje,0,0,244759199744,"{""name"":""Oudbeitje"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hanssens_artisanal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,63,1
+cugino_brewing_company-beer,0,0,244487684097,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cugino_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
+browar_okocim-okocim_porter,0,0,244484014081,"{""name"":""Okocim Porter"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_okocim"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+breckenridge_bbq_of_omaha-india_pale_ale,0,0,244484341760,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+rock_bottom_restaurant_brewery_milwaukee-pilsner,0,0,245006073858,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+wynkoop_brewing-railyard_ale,0,0,245752332289,"{""name"":""Railyard Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship brew is a smooth, amber beer that combines the malty goodness of an Octoberfest lager with the slight fruitiness of an ale. Hearty but refreshing."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,60,1
+bootleggers_steakhouse_and_brewery-bourbon_street_stout,0,0,244367294466,"{""name"":""Bourbon Street Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
+great_northern_tavern_and_brewery-empire_builder_stout,0,0,244755595264,"{""name"":""Empire Builder Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_northern_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
+american_river_brewing-oatmeal_stout,0,0,244367556608,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""american_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
+rogue_ales-red_fox,0,0,245006336000,"{""name"":""Red Fox"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
+harpoon_brewery_boston-harpoon_celtic_ale,0,0,244759199745,"{""name"":""Harpoon Celtic Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,63,1
+de_proef_brouwerij-andelot_cuvee_diabolique,0,0,244619739136,"{""name"":""Andelot Cuvee Diabolique"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+c_b_potts_of_cheyenne-big_horn_big_red_ale,0,0,244484079616,"{""name"":""Big Horn Big Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
+breckenridge_brewery-summer_bright_ale,0,0,244484407296,"{""name"":""Summer Bright Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+sam_choy_s_breakfast_lunch_crab_big_aloha_brewery-bumbucha_stout,0,0,245006073859,"{""name"":""Bumbucha Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sam_choy_s_breakfast_lunch_crab_big_aloha_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,61,1
+zea_rotisserie_and_brewery-abby_road_belgian_ale,0,0,245752332290,"{""name"":""Abby Road Belgian Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,60,1
+boulevard_brewing_company-boulevard_maibock,0,0,244367360000,"{""name"":""Boulevard Maibock"",""abv"":5.95,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First introduced in 2008, Boulevard Maibock is a new, limited-release seasonal brew. A welcome sign of Spring, this beer is a traditional German lager, lighter in color than other bocks. Boulevard’s Maibock is a distinctive, refreshing take on this springtime classic."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,26,1
+great_waters_brewing_company-brown_trout_brown,0,0,244755595265,"{""name"":""Brown Trout Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
+andechser_klosterbrauerei-doppelbock_dunkel,0,0,244367556609,"{""name"":""Doppelbock Dunkel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""andechser_klosterbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
+salt_lake_brewing_squatters-black_forest_schwarzbier,0,0,245006336001,"{""name"":""Black Forest Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salt_lake_brewing_squatters"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,62,1
+hereford_hops_restaurant_and_brewpub_1-whitetail_ale,0,0,244759199746,"{""name"":""Whitetail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
+dick_s_brewing-silk_lady,0,0,244619804672,"{""name"":""Silk Lady"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
+captain_lawrence_brewing_company-captain_s_reserve_imperial_ipa,0,0,244484079617,"{""name"":""Captain's Reserve Imperial IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is a salute to the ingenuity and creativity of the American craft brewers. A uniquely American style of beer, the Double or Imperial IPA, has become the calling card of many craft brewers who aren't afraid to push the limits of what hops can add to a beer. This beer is big and hoppy - not for the faint of heart! Be prepared to experience sensory overload as you savor this Imperial IPA."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,24,1
+brewery_ommegang-hennepin_farmhouse_ale,0,0,244484407297,"{""name"":""Hennepin Farmhouse Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+sarah_hughes_brewery,0,0,245006073860,"{""name"":""Sarah Hughes Brewery"",""city"":""Dudley"",""state"":""West Midlands"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dudley DY3 1JE""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.5435,""lon"":-2.1156}}",1,61,1
+brasserie_des_franches_montagnes,0,0,244367360001,"{""name"":""Brasserie des Franches-Montagnes"",""city"":""Saignelgier"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-32-951-26-26"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chemin des Buissons 8""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.2543,""lon"":7.0026}}",1,26,1
+green_flash_brewing-green_flash_imperial_india_pale_ale,0,0,244755660800,"{""name"":""Green Flash Imperial India Pale Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,53,1
+anheuser_busch-bud_extra,0,0,244367622144,"{""name"":""Bud Extra"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally known as \""B to the E\""""}",1,27,1
+schooner_s_grille_brewery,0,0,245006336002,"{""name"":""Schooner's Grille & Brewery"",""city"":""Antioch"",""state"":""California"",""code"":""94531"",""country"":""United States"",""phone"":""1-925-776-1800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4250 Lone Tree Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.9669,""lon"":-121.783}}",1,62,1
+hoppin_frog_brewery-hoppin_to_heaven_ipa,0,0,244759265280,"{""name"":""Hoppin' To Heaven IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Raise your glass to the heavens in a toast to HOPS – the spice of beer! This classic American I.P.A. features the finest American hops to add a spicy, assertive, and citrusy character to its full-bodied, rich malt taste"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
+double_mountain_brewery_taproom-double_mountain_altbier,0,0,244619804673,"{""name"":""Double Mountain Altbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""This special German-style ale is still made faithfully in Dusseldorf, just down the road from Cologne. Our interpretation is light brown in color and cleanly malty, with a crisp hoppy bitterness in the finish. \r\nBrewed with organic Pilsner and Munich malt; Chocolate and wheat malt, and imported Spalt hops."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,32,1
+carolina_beer_company,0,0,244484079618,"{""name"":""Carolina Beer Company"",""city"":""Mooresville"",""state"":""North Carolina"",""code"":""28115"",""country"":""United States"",""phone"":""(704) 799-2337"",""website"":""http://www.carolinabeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""110 Barley Park Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6231,""lon"":-80.8011}}",1,24,1
+bricktown_brewery-laughing_ass,0,0,244484407298,"{""name"":""Laughing Ass"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+sequoia_brewing_conoabt,0,0,245006139392,"{""name"":""Sequoia Brewing Conoabt"",""city"":""Fresno"",""state"":""California"",""code"":""93728"",""country"":""United States"",""phone"":""1-559-264-5521"",""website"":""http://www.sequoiabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""777 East Olive Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.7582,""lon"":-119.802}}",1,61,1
+brasserie_dubuisson-scaldis_bush_amber_12,0,0,244367360002,"{""name"":""Scaldis / Bush Amber 12%"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+hansa_bryggeri-premium,0,0,244755660801,"{""name"":""Premium"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hansa_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+appalachian_brewing_company-ipa_series_simcoe,0,0,244367622145,"{""name"":""IPA Series (Simcoe)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,27,1
+shipyard_brewing_portland-export_ale,0,0,245006336003,"{""name"":""Export Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+hubcap_brewery_and_kitchen-rainbow_trout_stout,0,0,244759265281,"{""name"":""Rainbow Trout Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hubcap_brewery_and_kitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
+dragonmead_microbrewery-broken_paddle,0,0,244619870208,"{""name"":""Broken Paddle"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If you like your beer on the bitter side then this one's for you. This American Style IPA uses Pale Ale, Munich, and Caramunich malt blest with Cascade, Chinook, Willamette and Centennial (dry hopped) hops to create a brew that is fit for the crazy American hop addicts."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,32,1
+chelsea_brewing_company-checker_cab_blonde_ale,0,0,244484145152,"{""name"":""Checker Cab Blonde Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+brouwerij_de_landtsheer-malheur_12,0,0,244484472832,"{""name"":""Malheur 12"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+sly_fox_brewhouse_and_eatery_royersford-sly_fox_christmas_ale,0,0,245123252224,"{""name"":""Sly Fox Christmas Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty, full-bodied red ale is made with traditional mulling spices: Ginger, Clove, All Spice, Cinnamon & Nutmeg. If this one doesn't get you into the Christmas spirit, you truly are a Scrooge."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,61,1
+brasserie_lefebvre-saison_1900,0,0,244484603904,"{""name"":""Saison 1900"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_lefebvre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+highland_brewing_company-oatmeal_porter,0,0,244755726336,"{""name"":""Oatmeal Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A unique Highland creation, this robust beer is black in color, very malty with hints of chocolate-roasted flavor and a well balanced hop character.\r\n\r\nIBU: 32\r\nAlcohol content: 5.8% by volume\r\nHops: Chinook, Willamette and Cascade\r\n\r\nCalories per 12 oz. 191.16\r\nCarbs per 12 oz. 19.42"",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
+appalachian_brewing_company-volks_weizenbock,0,0,244367622146,"{""name"":""Volks Weizenbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Volks Weizenbock combines the strong malty component of a bock bier with the tangy, spiciness of the Hefe Weizen. This beer is brewed 1 1/2 times stronger than our Hefe Weizen and is aged commensurately longer for extra smoothness! \r\nVolks Weizenbock is \""The Peoples Beer\""!"",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,27,1
+allagash_brewing-grand_cru,0,0,244364279808,"{""name"":""Grand Cru"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+sierra_nevada_brewing_co-harvest_ale_2007,0,0,245006336004,"{""name"":""Harvest Ale 2007"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,62,1
+indian_wells_brewing-desert_pale_ale,0,0,244759265282,"{""name"":""Desert Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
+empyrean_brewing_company-summer_common,0,0,244619870209,"{""name"":""Summer Common"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+clipper_city_brewing_co-hang_ten,0,0,244484145153,"{""name"":""Hang Ten"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Hang Ten is the Heavy Seas wheat beer you’ve been waiting for. A classic German-style weizen bock, slightly cloudy and bursting with flavor. Hang on and surf the Heavy Seas wave! Seasonally available in July while supplies last."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,24,1
+california_cider_company-ace_fermented_honey_cider,0,0,244484472833,"{""name"":""Ace Fermented Honey Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""california_cider_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+south_australian_brewing,0,0,245123252225,"{""name"":""South Australian Brewing"",""city"":""Adelaide"",""state"":""South Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(09)-8354-8666"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""107 Port Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-34.9111,""lon"":138.575}}",1,61,1
+brasserie_mcauslan,0,0,244484669440,"{""name"":""Brasserie McAuslan"",""city"":""Montreal"",""state"":""Quebec"",""code"":""H4C 2G"",""country"":""Canada"",""phone"":""1-514-939-3060"",""website"":""http://www.mcauslan.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5080 Rue St-Ambroise""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.4682,""lon"":-73.5913}}",1,26,1
+hornsby_s_pubdrafts_ltd,0,0,244755726337,"{""name"":""Hornsby's Pubdrafts Ltd."",""city"":""Modesto"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 Yosemite Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.6345,""lon"":-120.982}}",1,53,1
+back_road_brewery-back_road_american_pale_ale,0,0,244367687680,"{""name"":""Back Road American Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If you are looking for a straight shooting quaffable beer with plenty of hops, this is it. Straw colored from plump North American 2-row malted barley and deliciously hopped with Cascades from the USA, any patriot can enjoy this beer. Cascade hops have a pleasant taste and fresh smell best described as florally or mildly citrusy. A nice balance is struck between the malt and hops. So how about it Yank? Put that capitalism to work and buy some today!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+appleton_brewing-adler_brau_bucky_brau_barleywine,0,0,244364345344,"{""name"":""Adler Bräu Bucky Brau Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+spoetzl_brewery-shiner_bock,0,0,245123645440,"{""name"":""Shiner Bock"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
+jacob_leinenkugel_brewing_company-red_lager,0,0,244759330816,"{""name"":""Red Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+faultline_brewing_2-stout,0,0,244619870210,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+court_avenue_brewing-black_hawk_stout,0,0,244484145154,"{""name"":""Black Hawk Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
+captain_lawrence_brewing_company-nor_easter,0,0,244484472834,"{""name"":""Nor' Easter"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a truly unique brew, combining some unusual elements to create a powerful, yet flavorful brew. I brewed a similar beer to this one back in 1998, while I was home brewing out in California. Only this time around I decided to age it in bourbon barrels to add a new element to the already rich sensory profile. The combination of dark malt, elderberries and bourbon barrels makes for an interesting tasting experience. This is a sippin’ beer, so sit back by the fire and enjoy. 12% alcohol by volume."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,25,1
+southern_tier_brewing_co-iniquity_imperial_black_ale,0,0,245123317760,"{""name"":""Iniquity Imperial Black Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The hexagram talisman has been used around the world for centuries to invoke magic and good luck. The six–point star is also the customary symbol of the brewer, representing the essential aspects of purity: water, hops, grain, malt, yeast, and of course, the brewer. Wishes of good fortune often collaborate with the brewer’s creativity to yield dramatic results. We carefully chose the name for this Imperial India Black Ale, Iniquity – a word opposing goodness. Why? This beer is contrary to what one may expect from an IPA; this is an ale as black as night. It is the antithesis of Unearthly. Some may consider it an immoral act to blacken an ale. We suggest they don’t rely on conventional standards. Allow the darkness to consume you. Cheers!""}",1,61,1
+brasserie_pietra-ambree_chestnut_beer,0,0,244484669441,"{""name"":""Ambrée / Chestnut Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_pietra"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+joshua_huddy_s_brew_pub_and_grill-porter,0,0,244755726338,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joshua_huddy_s_brew_pub_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,53,1
+bamberger_mahr_s_bru-pilsner,0,0,244367687681,"{""name"":""Pilsner"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+barley_s_brewing_1-j_scott_francis_esb,0,0,244364410880,"{""name"":""J. Scott Francis ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+st_francis_abbey_brewery,0,0,245123710976,"{""name"":""St. Francis Abbey Brewery"",""city"":""Kilkenny"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":""http://www.diageo.ie/Company/Brewing/KilKenny/CompanyBrewingKilkenny"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.6538,""lon"":-7.248}}",1,62,1
+jarre_creek_ranch_brewing,0,0,244759330817,"{""name"":""Jarre Creek Ranch Brewing"",""city"":""Castle Rock"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.3722,""lon"":-104.856}}",1,63,1
+fitzpatrick_s_brewing,0,0,244619935744,"{""name"":""Fitzpatrick's Brewing"",""city"":""Iowa City"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.6611,""lon"":-91.5302}}",1,32,1
+court_avenue_brewing-esb,0,0,244484210688,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+cat_s_paw_home_brew-monkeyboy_ale,0,0,244484472835,"{""name"":""MonkeyBoy Ale"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cat_s_paw_home_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Made for Wedding"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,25,1
+southern_tier_brewing_co-oak_aged_unearthly_imperial_pale_ale,0,0,245123317761,"{""name"":""Oak Aged Unearthly Imperial Pale Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,61,1
+brauerei_aying_franz_inselkammer_kg-jahrhundert_bier,0,0,244484669442,"{""name"":""Jahrhundert-Bier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+jw_lees_and_co_brewers_ltd,0,0,244755726339,"{""name"":""JW Lees and Co (Brewers) Ltd."",""city"":""Manchester"",""state"":""Manchester"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0161)-6432487"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Middleton Junction""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.5412,""lon"":-2.1734}}",1,53,1
+barley_john_s_brewpub,0,0,244367687682,"{""name"":""Barley John's Brewpub"",""city"":""New Brighton"",""state"":""Minnesota"",""code"":""55112"",""country"":""United States"",""phone"":""1-651-636-4670"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""781 Old Highway 8 SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.036,""lon"":-93.1984}}",1,27,1
+barrel_house_brewing_co-redlegg_ale,0,0,244364410881,"{""name"":""RedLegg Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barrel_house_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""In the old days, runners who made it to third base were rewarded with a mug of beer! This is the way the game was meant to be played; pitchers throwing side- armed and a half barrel on the field. Our Red Legg Ale is an American Amber Ale with a rich, malty flavor, slightly sweet on the finish. An All-Star in any line- up!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
+staatliches_hofbrauhaus_in_munchen-hofbrau_oktoberfestbier,0,0,245123710977,"{""name"":""Hofbräu Oktoberfestbier"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""Hofbräu brews a rich, full-bodied beer which goes down ideally with traditional Bavarian cuisine. With its deliciously bitter taste and alcoholic content of 6.3% volume, Hofbräu Oktoberfestbier is as special as the Beer Festival itself.\r\n\r\nType: Bottom-fermented, light festive beer"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,62,1
+jolly_pumpkin_artisan_ales-madrugada_obscura,0,0,244759330818,"{""name"":""Madrugada Obscura"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian inspired stout that is as dark as a moonless midnight, brimming of roasted malts and bitter hops. It will keep you good company in all places, be thay light or dark."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
+fort_collins_brewery-the_kidd_lager,0,0,244619935745,"{""name"":""The Kidd Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fort_collins_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,32,1
+de_leyerth_brouwerijen-urthel_hibernius_quentum_ale,0,0,244616593408,"{""name"":""Urthel Hibernius Quentum Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+cedar_brewing-ribleymeister_light,0,0,244484538368,"{""name"":""Ribleymeister Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+st_austell_brewery,0,0,245123383296,"{""name"":""St. Austell Brewery"",""city"":""St. Austell"",""state"":""Cornwall"",""code"":""PL25 4BY"",""country"":""United Kingdom"",""phone"":""0845 2411122"",""website"":""http://www.staustellbrewery.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""63 Trevarthian Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3416,""lon"":-4.7883}}",1,61,1
+brauerei_grieskirchen_ag-jorger_weisse_hell,0,0,244484669443,"{""name"":""Jörger Weiße Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_grieskirchen_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,26,1
+kaiserdom_privatbrauerei_bamberg-meranier_schwarzbier,0,0,244755791872,"{""name"":""Meranier Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,53,1
+baron_brewing_company-baron_helles_bock,0,0,244367687683,"{""name"":""Baron Helles Bock"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Helles-Bock is similar to a traditional Maibock. Bocks are traditionally brewed in the winter / early spring months and are served during the spring / early summer months. The Helles Bock has a copper golden color with a brilliant white head. The body showcases a clean sweet maltiness that is offset by just enough hops to balance it. Very smooth and easy, drinkable yet deceptive at 6.4%.\r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,27,1
+basil_t_s_brew_pub_and_italian_grill,0,0,244364410882,"{""name"":""Basil T's Brew Pub and Italian Grill"",""city"":""Toms River"",""state"":""New Jersey"",""code"":""8753"",""country"":""United States"",""phone"":""1-732-244-7566"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1171 Hooper Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.9767,""lon"":-74.1829}}",1,20,1
+stadsbrouwerij_de_hemel-nieuw_ligt_grand_cru_2006,0,0,245123710978,"{""name"":""Nieuw Ligt Grand Cru 2006"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stadsbrouwerij_de_hemel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+jt_whitney_s_brewpub_and_eatery-badger_red_ale,0,0,244759396352,"{""name"":""Badger Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
+glacier_brewhouse-black_rye_bock,0,0,244620001280,"{""name"":""Black Rye Bock"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glacier_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark lager combines the characteristics of three winter beer styles. All three of these styles traditionally come from the colder harsher areas of Europe. The styles are (1) Black Beer (aka schwartzbier) originating from the former East Germany); (2) Rye Beer which at one time was only made in hardier areas of Eastern and Baltic Europe; and (3) Bock Beer which is widely known as a higher alcohol lager of Northern Germany. Our Black Rye Bock has a distinctive bitter chocolate palate and black color reminiscent of a black beer. The spiciness from the rye malt shines through in the flavor. The high alcohol balanced with malty sweetness rounds out this cold season bock. Smooth drinking with a punch makes this lager a perfect quaffer for our Arctic winter. 6.2% alcohol by volume."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,32,1
+de_proef_brouwerij-flemish_primitive_wild_ale_pig_nun,0,0,244616658944,"{""name"":""Flemish Primitive Wild Ale (Pig Nun)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+central_city_brewing_company,0,0,244484538369,"{""name"":""Central City Brewing Company"",""city"":""Surrey"",""state"":""British Columbia"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":""http://www.centralcitybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13450 - 102 Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.1873,""lon"":-122.85}}",1,25,1
+steamworks-sour_cherry_ale,0,0,245123383297,"{""name"":""Sour Cherry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""An intriguing fruit beer brewed with fresh sour cherries.\r\n\r\nOur Sour Cherry Ale is inspired by the centuries old Belgian tradition of brewing beer with cherries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Montmorency cherries from a local orchard in the Fraser Valley. The result is a most intriguing beer with an elegant cherry perfume, a tart, fruity flavour, and a subtle almondy finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,61,1
+brauhaus_johann_albrecht_dsseldorf,0,0,244484734976,"{""name"":""Brauhaus Johann Albrecht - Dsseldorf"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-570129"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Niederkasseler Strae 104""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2404,""lon"":6.7516}}",1,26,1
+kessler_brewing-wild_west_beer,0,0,244755791873,"{""name"":""Wild West Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kessler_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+beach_chalet_brewery-essex_s_o_b,0,0,244367753216,"{""name"":""Essex S.O.B."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+bell_s_brewery_inc-lager_beer,0,0,244364476416,"{""name"":""Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""As refreshingly crisp as a morning swim in a Great Lake, this brew is crafted with Pils and Munich malts. The pronounced hop character of this golden lager sparks thoughts of sandy beaches and rocky islands."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
+stone_brewing_co-levitation_ale,0,0,245123776512,"{""name"":""Levitation Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,62,1
+keihan_uji_kotsu-busby_stout,0,0,244759396353,"{""name"":""Busby Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keihan_uji_kotsu"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
+golden_gate_park_brewery-four_sheets_cream_ale,0,0,244620001281,"{""name"":""Four Sheets Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
+dempsey_s_restaurant_brewery-spring_bock,0,0,244616658945,"{""name"":""Spring Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
+cigar_city_brewing-guava_grove_ale,0,0,244484538370,"{""name"":""Guava Grove Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Guava Grove is a Saison which is fermented with guava. The guava adds sweetness and acidity to the prodigious fruity esters imparted by the warm fermentation temperatures of the Belgian yeast strain."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,25,1
+stone_brewing_co-4th_anniversary_ipa,0,0,245123383298,"{""name"":""4th Anniversary IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,61,1
+brewdog_ltd-77_lager,0,0,244484734977,"{""name"":""77 Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A Lager that actually tastes of something?\r\n\r\nYou have to be kidding, right?\r\n\r\n77 lager is made with 100% malt and whole leaf hops.\r\n\r\nIt contains no preservatives, additives, cheap substitutes or any other junk.\r\n\r\nMaybe we are crazy. So what?\r\n\r\nTaste 77 Lager and we are pretty sure you will agree that the fine line between genius and insanity has just become a little more blurred."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,26,1
+lakefront_brewery-beer_line_2000,0,0,244755791874,"{""name"":""Beer Line 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+belize_brewing,0,0,244367753217,"{""name"":""Belize Brewing"",""city"":""Belize City"",""state"":"""",""code"":"""",""country"":""Belize"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 1068""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":17.4977,""lon"":-88.1867}}",1,27,1
+bersaglier,0,0,244364476417,"{""name"":""Bersaglier"",""city"":""San Martin"",""state"":""Buenos Aires"",""code"":""1650"",""country"":""Argentina"",""phone"":""(54)-011-4713-6557"",""website"":""http://www.bersaglier.com.ar/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Calle 92 N� 101""]}",1,20,1
+stoudt_s_brewery-smooth_hoperator,0,0,245123776513,"{""name"":""Smooth Hoperator"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,62,1
+kleinbrouwerij_de_glazen_toren-canaster_winter_scotch,0,0,244759396354,"{""name"":""Canaster Winter Scotch"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kleinbrouwerij_de_glazen_toren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+goose_island_beer_company_fulton_street-matilda,0,0,244620001282,"{""name"":""Matilda"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+dixon_s_downtown_grill-uncle_dunkel,0,0,244616724480,"{""name"":""Uncle Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+costal_extreme_brewing_company-newport_storm_hurricane_amber_ale,0,0,244484603904,"{""name"":""Newport Storm Hurricane Amber Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""costal_extreme_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The first offering from the Coastal Extreme Brewing Company blends some of the world's finest ingredients into a delightful beer. In producing our amber ale, we selected the highest quality European and American malts and hops. This ale has a malt character which is delicately balanced with its hop profile so that consumers of all levels enjoy drinking it. Hurricane Amber Ale is a full flavored beer which clearly has more taste than other domestic and imported light beers while at the same time does not overpower the drinker with heavy body or excessive bitterness. So find yourself a cold 'Hurricane' and ENJOY!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
+stone_brewing_co-stone_pale_ale,0,0,245123448832,"{""name"":""Stone Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship ale, Stone Pale Ale is our Southern California interpretation of the classic British pale ale style. Deep amber in color, Stone Pale Ale is robust and full flavored. A delicate hop aroma is complemented by a rich maltiness. This is an ale for those who have learned to appreciate distinctive flavor. Stone Pale Ale is great by itself, or with food that requires a beer of character."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,61,1
+brouwerij_bosteels-deus_brut_des_flandres,0,0,244484734978,"{""name"":""Deus Brut des Flandres"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bosteels"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+liefmans_breweries,0,0,244755857408,"{""name"":""Liefmans Breweries"",""city"":""Dentergem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-63-36-81"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wontergemstraat 42""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9649,""lon"":3.422}}",1,53,1
+bent_river_brewing-pale_ale,0,0,244367753218,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bent_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+big_time_brewing-prime_time_pale_ale,0,0,244364476418,"{""name"":""Prime Time Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
+the_livery-the_livery_hefe_weizen,0,0,245123842048,"{""name"":""The Livery Hefe Weizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""A lightly hopped, refreshing, Bavarian style wheat ale that has hints of banana and clove in the finish. Available May until October."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,62,1
+left_hand_brewing_company,0,0,244759461888,"{""name"":""Left Hand Brewing Company"",""city"":""Longmont"",""state"":""Colorado"",""code"":""80501"",""country"":""United States"",""phone"":""1-303-772-0258"",""website"":""http://www.lefthandbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1265 Boston Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1587,""lon"":-105.113}}",1,63,1
+gordon_biersch_brewing-dunkles,0,0,244620066816,"{""name"":""Dunkles"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+dreher_srgyrak_zrt-dreher_classic,0,0,244616724481,"{""name"":""Dreher Classic"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dreher_srgyrak_zrt"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,24,1
+dixon_s_downtown_grill-platte_valley_pale_ale,0,0,244616986624,"{""name"":""Platte Valley Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+stone_brewing_co-sublimely_self_righteous_ale,0,0,245123448833,"{""name"":""Sublimely Self-Righteous Ale"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brace yourself, bereaved fans of Stone 11th Anniversary Ale, for your joyous new day has finally come! It’s like your first crush–you know, the one who broke your heart when she/he decided to go to the junior prom with what’s-their-name–has suddenly come back to you to go for a cruise down the main drag on Friday night. It’s like…it’s like finding that long lost gold watch, given to you by your father, who got it from his father, who got it from his father. It’s like when your best buddy in the world, Sam the family dog, finally sauntered up the front porch steps one sunny afternoon after having been on a six-week runaway. Yes, it’s just like that.\r\n\r\nAnd it’s like this: A brilliantly hopped double IPA–providing a wake up call of floral and citrus aromas–backed up by a deliciously smooth and dark roasted maltiness. You get the best of both worlds with this black double IPA.""}",1,61,1
+brouwerij_rodenbach-alexander,0,0,244484800512,"{""name"":""Alexander"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_rodenbach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+lion_brewery_ceylon_ltd-imperial_premium_malt_pilsner,0,0,244878409728,"{""name"":""Imperial Premium Malt Pilsner"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_ceylon_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Lion Imperial Lager, from Sri Lanka, is brewed using the finest natural ingredients - delivering a rich smooth taste and refreshment. Enjoy its bite.""}",1,53,1
+bierbrouwerij_bavaria-holland_beer,0,0,244367753219,"{""name"":""Holland Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+birrificia_le_baladin-super,0,0,244364476419,"{""name"":""Super"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+three_needs_brewery_and_taproom-peat_smoked_altbier,0,0,245123842049,"{""name"":""Peat Smoked Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_needs_brewery_and_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,62,1
+lwenbru_zrich-lowen_weisse,0,0,244882735104,"{""name"":""Löwen Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lwenbru_zrich"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,63,1
+granville_island_brewing-brockton_black_lager,0,0,244747010048,"{""name"":""Brockton Black Lager"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,32,1
+dux_de_lux,0,0,244616724482,"{""name"":""Dux de Lux"",""city"":""Queenstown"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""03 442 9688"",""website"":""http://www.thedux.co.nz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 Church Street PO Box 684""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-45.0331,""lon"":168.661}}",1,24,1
+dragonmead_microbrewery-dubbel_dragon,0,0,244617052160,"{""name"":""Dubbel Dragon"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Dubbel style Belgian beer is created in the great Belgian tradition. Pale Malt, Caramel and Special B Malts impart a unique sweetness to this beer. The traditional Belgian yeast fully ferments the Belgian Candi Sugar to give a satisfying taste that is twice what a Belgian pale delivers."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,25,1
+taiwan_tobacco_and_wine_monopoly_board,0,0,245123514368,"{""name"":""Taiwan Tobacco and Wine Monopoly Board"",""city"":""Taipei"",""state"":"""",""code"":"""",""country"":""Taiwan, Province of China"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Taipei""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":25.026,""lon"":121.472}}",1,61,1
+brown_street_brewery-aussie_lager,0,0,244484800513,"{""name"":""Aussie Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+lost_coast_brewery-dunkel_hefeweizen,0,0,244878475264,"{""name"":""Dunkel Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+big_horn_brewing_the_ram_2-schaumbergfest,0,0,244367753220,"{""name"":""Schaumbergfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_horn_brewing_the_ram_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,27,1
+black_creek_historic_brewery,0,0,244364541952,"{""name"":""Black Creek Historic Brewery"",""city"":""Toronto"",""state"":""Ontario"",""code"":""M3J 2P3"",""country"":""Canada"",""phone"":""416 736-1733"",""website"":""http://www.blackcreekbrewery.ca/"",""type"":""brewery"",""updated"":""2011-06-08 07:07:47"",""description"":""Black Creek Historic Brewery recreates the techniques, tools and recipes used by brewers in 1860s Ontario. Our Brewmasters do everything by hand on a small scale. It's a great place to learn about beer because, unlike a modern commercial brewery, you can see every step in the process for yourself. And, no one else has a Brewmaster ready to welcome visitors in period costume.\n\nIn the 1860s there were 155 registered breweries in Ontario, and countless smaller operations. Black Creek Historic Brewery is the first in this province to replicate the brewing processes of that era, when there was no electricity or refrigeration, no stainless steel tanks or bottling plants.\n\nThe equipment at Black Creek Historic Brewery is made mainly of wood and copper, and the beer ferments the way it was done in the old days, with wooden barrels to age the beer. Malted barley is shoveled by hand into the wort tun where it is boiled into a mash. After filtering the solids through a linen cloth, the sugary liquid is boiled and hops are added, both for flavouring and as a natural preservative. Once the boiling is complete, the beer is put in barrels where the yeast is added. A short time later, the beer is ready!\n\nVisitors can sample the beer at cellar temperature, the way it was enjoyed in the past, or drink a chilled pint in the pub, the way many people prefer it today. Either way, you"",""address"":[""Black Creek Pioneer Village"",""1000 Murray Ross Parkway""]}",1,20,1
+troegs_brewing-oatmeal_stout,0,0,245123842050,"{""name"":""Oatmeal Stout"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Oatmeal Stout is our interpretation of the classic dry stout style. Dark and creamy with hints of chocolate and black currants, our Oatmeal Stout includes a healthy dose of Centennial and Chinook hops creating a unique stout perfect for the late Fall and Winter."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,62,1
+marzoni_s_brick_oven_brewing_co-stone_mason_stout,0,0,244882800640,"{""name"":""Stone Mason Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Creamy and Dark with a Dry Roasted Finish"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
+great_dane_pub_and_brewing_2-black_earth_porter,0,0,244747075584,"{""name"":""Black Earth Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,32,1
+finnegans-irish_amber,0,0,244616790016,"{""name"":""Irish Amber"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""finnegans"",""updated"":""2010-12-03 17:58:29"",""description"":""Finnegans Irish Amber is brewed with potatoes and three varieties of imported two-row malts. The beer is pale amber in color but light in body. A gentle hop bitterness compliments its complex malt character. \n\nFinnegans is currently available on tap and in liquor stores throughout the state of Minnesota. Finnegans is unique in that 100% of the profits are donated to The Finnegans Community Fund which disburses grants to help the working poor and at-risk youth throughout Minnesota. "",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,24,1
+dragonmead_microbrewery-excalibur_barleywine,0,0,244617052161,"{""name"":""Excalibur Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+the_bruery-black_orchard,0,0,245123514369,"{""name"":""Black Orchard"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Black Orchard is an unfiltered, bottle conditioned Belgian-style black wheat beer, or “black wit”, if you will. This dark but surprisingly light bodied beer is very drinkable while still having character and complexity. Chamomile is added for its floral aroma, while the coriander and citrus peel give the characteristics of a traditional witbier.""}",1,61,1
+21st_amendment_brewery_cafe-general_pippo_s_porter,0,0,244364607488,"{""name"":""General Pippo's Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep toffee color with rich roasty and subtle hop aroma. Chocolate flavors dominate the palate and interact with back-end sweetness."",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
+bull_bush_pub_brewery-portsmouth_pale,0,0,244484866048,"{""name"":""Portsmouth Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+main_street_station_casino_brewery_and_hotel-hibernator_doppelbock,0,0,244878540800,"{""name"":""Hibernator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_station_casino_brewery_and_hotel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,53,1
+big_river_brewing-vienna_lager,0,0,244367753221,"{""name"":""Vienna Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+blue_point_brewing-sour_cherry_imperial_stout,0,0,244364541953,"{""name"":""Sour Cherry Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-12-20 15:37:54"",""description"":""An extremely complex version of the classic Russian beer style. Roasted, black, and chocolate malts deliver multi-layered coffee and sherry notes in a surprisingly smooth package. The beer is then matured with just a kiss of real sour red cherries."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,20,1
+tyranena_brewing-bitter_woman_ipa,0,0,245123907584,"{""name"":""Bitter Woman IPA"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Lest we forget Aunt Cal, an early resident of Lake Mills. Local history remembers her for blindly running into a hitching post and saying, \""Excuse me, Dr. Dodge!\"" It was said that she was an old sweetheart of the famous American poet, Henry Wadsworth Longfellow. And she still had the love letters to prove it! Sadly, Aunt Cal never wed. We brewed our Bitter Woman IPA the way we imagine Aunt Cal may have been, very fruity and intensely bitter. So lift up a pint of Bitter Woman IPA and toast Aunt Cal and the bitter woman you know. Cheers!\r\n\r\nBitter Woman IPA is our Wisconsin variation of an India Pale Ale. This beer is intensely bitter with a mighty hop flavor and aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,62,1
+metropolitan_brewing-dynamo_copper_lager,0,0,244882800641,"{""name"":""Dynamo Copper Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""metropolitan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""If malt and hops are the two poles of brewing, this beer is the gently spinning sweet spot between them. First, you’ll notice the spicy aromas of Perle and Hallertau hops. Then - wipe the foam off the tip of your nose - dive into the toasty flavors of Vienna and Munich malts. Dynamo starts strong and finishes crisp and smooth. The balanced flavors, aromas, and even the coppery-red tones of this beer go great with everything. Fear no pairing. The best time to enjoy Dynamo is when you’re thirsty.\r\n\r\nDynamo Copper Lager goes great with pizza, neighborhood block parties, spring rolls, first dates, football games, whiskey, tapas, the Sunday newspaper, late-night burritos, veggie omelets, business lunches, grilled mushrooms, pretzels, political debate, corn-on-the-cob, classic sci-fi flicks, mixed greens, campfires, salmon, billiards, cherry pie, rock shows, pumpernickel, salsa, grand openings, peanuts, sewing bees, extra sharp cheddar cheese, and holidays.""}",1,63,1
+great_dane_pub_and_brewing_2,0,0,244747141120,"{""name"":""Great Dane Pub and Brewing #2"",""city"":""Fitchburg"",""state"":""Wisconsin"",""code"":""53711"",""country"":""United States"",""phone"":""1-608-442-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2980 Cahill Main""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0177,""lon"":-89.4232}}",1,32,1
+fox_river_brewing_1-golden_ale,0,0,244616790017,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
+duclaw-snake_oil,0,0,244617052162,"{""name"":""Snake Oil"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""Just like the miracle cure-alls of old, Professor Wagner’s Imperial Pilsner possesses no verifiable medicinal qualities whatsoever. And yet, taken internally, this golden elixir is guaranteed to cure what ails you. Snake Oil is a crisp, Medium-bodied lager with a complex maltiness and heavy hop presence – well-rounded and refreshing.""}",1,25,1
+the_church_brew_works-church_brew_oktoberfest,0,0,245123514370,"{""name"":""Church Brew Oktoberfest"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Oktoberfest is a light amber colored beer. It is malty in both flavor and aroma making it a delicate beer which is very drinkable. The hop bitterness is kept low to accentuate the maltiness. Notice the crisp clean character and enjoy. We brewed three batches of this beer so that we can bottle some of it in order to enhance our bottle beer selection."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,61,1
+aberdeen_brewing,0,0,244364673024,"{""name"":""Aberdeen Brewing"",""city"":""Valparaiso"",""state"":""Indiana"",""code"":"""",""country"":""United States"",""phone"":""(219) 548-3300"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""210 Aberdeen Dr.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4392,""lon"":-87.1078}}",1,21,1
+caldera_brewing-pilot_rock_porter,0,0,244484866049,"{""name"":""Pilot Rock Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, creamy, chocolate laden porter."",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+martini_brauerei-kasseler_premium_pils,0,0,244878540801,"{""name"":""Kasseler Premium Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+big_rock_brewery-buzzard_breath_discontinued,0,0,244367818752,"{""name"":""Buzzard Breath (discontinued)"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+boston_beer_company-samuel_adams_summer_ale,0,0,244364541954,"{""name"":""Samuel Adams Summer Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""right and citrusy, brewed with mysterious grains of paradise.\r\nSamuel Adams® Summer Ale is an American wheat ale. This summer seasonal uses malted wheat as well as lemon zest and grains of paradise, a rare pepper from Africa first used as a brewing spice in the 13th Century to create a crisp and spicy flavor and body. The ale fermentation imparts a background tropical fruit note reminiscent of mangos and peaches. All of these come together to create a quenching, clean finishing beer perfect for those warm Summer days"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,20,1
+uehara_shuzou_co_ltd_echigo_beer_pub,0,0,245123907585,"{""name"":""Uehara Shuzou Co. Ltd. / Echigo Beer Pub"",""city"":"""",""state"":"""",""code"":"" 953-0076"",""country"":""Japan"",""phone"":""+81 0256-72-0640"",""website"":""http://www.echigo-beer.jp/"",""type"":""brewery"",""updated"":""2011-07-23 20:36:03"",""description"":"""",""address"":[""Niigata-ken Nishikanbara-gun""]}",1,62,1
+michigan_brewing-sunset_amber_lager,0,0,244882866176,"{""name"":""Sunset Amber Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing, crisp and clean amber colored lager. Made in a Vienna-style with distinct caramel malt flavor and aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+greenshields_brewery_and_pub,0,0,244747141121,"{""name"":""Greenshields Brewery and Pub"",""city"":""Raleigh"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.7721,""lon"":-78.6386}}",1,32,1
+full_sail_brewing_1-old_boardhead_2006,0,0,244616790018,"{""name"":""Old Boardhead 2006"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+fifty_fifty_brewing_co-donner_party_porter,0,0,244617117696,"{""name"":""Donner Party Porter"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Sustenance to get you through those long, cold winters, the Donner Party Porter is another of FiftyFifty's flagship beers. Reminiscent of dark chocolate, espresso, and dark dried fruits with a long complex finish, this beer is good for one of those nights where you've dug yourself into a snow bank because the ski trip didn't go quite as planned. Deep brown with mahogany highlights, the hops and malt are very well balanced leaving one to contemplate the myriad of flavors as the beer warms. Moderate to slightly heavy, this beer is heaven in a glass."",""style"":""Porter"",""category"":""Irish Ale""}",1,25,1
+thirsty_dog_brewing-12_dogs_christmas_ale,0,0,245123579904,"{""name"":""12 Dogs Christmas Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Spiced for the holidays with honey, cinnamon, ginger, nutmeg and Santa's secret recipe.""}",1,61,1
+abita_brewing_company,0,0,244364738560,"{""name"":""Abita Brewing Company"",""city"":""Abita Springs"",""state"":""Louisiana"",""code"":""70420"",""country"":""United States"",""phone"":""800-737-2311"",""website"":""http://www.abita.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founded in 1986, the Abita Brewing Company is nestled in the piney woods 30 miles north of New Orleans. In its first year, the brewery produced 1,500 barrels of beer. We had no idea what we started. Customers loved our beer! By 1994, we outgrew the original site (now our 100 seat brew pub) and were forced to move up the road to a larger facility to keep up with demand. Today, we brew over 62,000 barrels of beer and 3,000 barrels of root beer, and we're still growing! But don't let our growth fool you. Our lagers and ales are still brewed in small batches, hand-crafted by a team of dedicated workers with only the highest ideals of quality. This pride, along with our brewing process, is what creates our great brews. Abita uses only the finest ingredients British and American barley, German yeast, European and Washington State hops and the pure artesian water of Abita Springs. In Abita, we are blessed with the purest of water. Drawn from our deep wells, our pristine water is not altered in any way. Abita Beer has no preservatives, additives or stabilizers and is cold filtered. The result is beer that is the finest and freshest tasting as proven by our loyal customers and great chefs of the south who use Abita Beer in their recipes. We're proud of our brewery and the beers we make. Try Abita Beer today and taste a bit of the South!"",""address"":[""PO Box 1510""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.5049,""lon"":-89.944}}",1,21,1
+cambridge_brewing-tall_tale_pale_ale,0,0,244484931584,"{""name"":""Tall Tale Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Big and bold, our Pale Ale distinguishes itself by its huge, fresh hop aroma and flavor. A combination of Cascade and Centennial hops, both in the kettle and during an extensive dry-hopped conditioning time, gives this beer its nectarious flavor."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+michigan_brewing-sebewaing_beer,0,0,244878540802,"{""name"":""Sebewaing Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A commemorative brew styled after the Sebewaing Brewing Company's signature beer. The Sebewaing Brewing Company brewed from 1880 until 1965. This brew was commissioned for the town of Sebewaing's 150th anniversary celebration."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+brasserie_la_binchoise-reserve_speciale_speciale_noel,0,0,244485128192,"{""name"":""Reserve Speciale / Spéciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_binchoise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+boulder_beer_company-hazed_infused_dry_hopped_ale,0,0,244364607488,"{""name"":""Hazed & Infused Dry-Hopped Ale"",""abv"":4.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
+upstream_brewing_company_at_legacy-espresso_stout,0,0,245123907586,"{""name"":""Espresso Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,62,1
+mickey_finn_s_brewery,0,0,244882866177,"{""name"":""Mickey Finn's Brewery"",""city"":""Libertyville"",""state"":""Illinois"",""code"":""60048"",""country"":""United States"",""phone"":""1-847-362-6688"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""412 North Milwaukee Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2872,""lon"":-87.9538}}",1,63,1
+hair_of_the_dog_brewing-adam,0,0,244747206656,"{""name"":""Adam"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,32,1
+gatz_brauhaus,0,0,244616855552,"{""name"":""Gatz Brauhaus"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2249,""lon"":6.7757}}",1,24,1
+fitger_s_brewhouse_brewery_and_grill-xxx_english_ale,0,0,244617117697,"{""name"":""XXX English Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+thunderhead_brewery,0,0,245123579905,"{""name"":""Thunderhead Brewery"",""city"":""Kearney"",""state"":""Nebraska"",""code"":""68847"",""country"":""United States"",""phone"":""1-308-237-1558"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""18 East 21st Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.6966,""lon"":-99.0815}}",1,61,1
+appalachian_brewing_company-rauchbock,0,0,244364738561,"{""name"":""Rauchbock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This smoked bock is made with the finest smoked malt from Bamberg, Germany. The malts are kilned over aged beechwood chips which gives this deep copper ale a mellow smoky flavor.""}",1,21,1
+chimay_abbaye_notre_dame_de_scourmont-chimay_triple_chimay_white,0,0,244484931585,"{""name"":""Chimay Triple (Chimay White)"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""Named Cinq Cents in 75 cl (25.4 fl.oz.) bottles, this beer with its typical golden colour, its slightly hazy appearance and its fine head is especially characterised by its aroma which results from an agreeable combination of fresh hops and yeast. \r\n\r\nThe beer's flavour, as sensed in the mouth, comes from the smell of hops: above all it is the fruity notes of muscat and raisins that give this beer a particularly attractive aroma. \r\n\r\nThe aroma complements the touch of bitterness. There is no acidity, but an after-bitterness which melts in the mouth.\r\n\r\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,26,1
+microbrouwerij_achilles,0,0,244878606336,"{""name"":""Microbrouwerij Achilles"",""city"":""Itegem"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dulft 9A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1028,""lon"":4.7269}}",1,53,1
+brauhaus_sternen,0,0,244485193728,"{""name"":""Brauhaus Sternen"",""city"":""Frauenfeld"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-052-728-99-09"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hohenzornstrasse 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5585,""lon"":8.9006}}",1,27,1
+brasserie_du_bocq-blanche_de_namur,0,0,244364607489,"{""name"":""Blanche de Namur"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bocq"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+upstream_brewing_old_market-india_pale_ale,0,0,245123973120,"{""name"":""India Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our India Pale Ale is a full-bodied, golden-colored ale that is exceptionally refreshing. The “Double” refers to the beer’s huge hop character and malt base that give this beer its great complexity."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,62,1
+middle_ages_brewing-tenth_anniversery_ale,0,0,244882866178,"{""name"":""Tenth Anniversery Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the style of an American Double IPA in celebration of our 10th anniversary. This beer is golden in color, has medium to full body, intense hop bitterness, flavor and aroma. Ten additions of American hops are made throughout the brewing process."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,63,1
+hair_of_the_dog_brewing-blue_dot_double_india_pale_ale,0,0,244747206657,"{""name"":""Blue Dot Double India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,32,1
+goose_island_beer_company_clybourn-christmas_ale,0,0,244616921088,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+flyers_restraunt_and_brewery-first_flight_amber_ale,0,0,244617183232,"{""name"":""First Flight Amber Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first beer brewed right here at Flyers. This ale has brownish red hues with a mild maltiness balanced by an herbal hop character without being bitter."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
+timmermans-timmermans_lambicus_blanche,0,0,245123579906,"{""name"":""Timmermans lambicus Blanche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+appleton_brewing-adler_brau_holiday_ale,0,0,244364738562,"{""name"":""Adler Bräu Holiday Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
+cigar_city_brewing-maduro_oatmeal_brown_ale,0,0,244484997120,"{""name"":""Maduro Oatmeal Brown Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Maduro is a Northern English-style brown ale with some American affectations. It is unlike the typical American Brown Ale, as it doesn’t have the big hop character common in American-brewed Brown Ales. And Maduro is higher in alcohol than the common English brown ale. Maduro also has oats, in the malt bill which imparts a silky body and aids in making the roasted, toasted and chocolate components mesh together in Maduro's complex malt profile. The end result is a remarkably full flavored yet approachable and sessionable brown ale that pairs well with cigars."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
+milwaukee_ale_house-downtown_lites_honey_ale,0,0,244878606337,"{""name"":""Downtown Lites Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,53,1
+brick_brewing-waterloo_dark,0,0,244485259264,"{""name"":""Waterloo Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brick_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+brasserie_fantme-speciale_noel,0,0,244482048000,"{""name"":""Speciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+van_honsebrouch,0,0,245123973121,"{""name"":""Van Honsebrouch"",""city"":""Ingelmunster"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.9205,""lon"":3.2541}}",1,62,1
+midnight_sun_brewing_co-pluto_belgian_style_golden_strong_ale,0,0,244882931712,"{""name"":""Pluto - Belgian-style Golden Strong Ale"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""P9 = 9th [non-] planet from The [Midnight] Sun\r\n\r\nNamed after the ruler of the underworld, PLUTO was re-classified as a non-planet in AUG 2006. Here we celebrate our “Fallen Planet” by creating a Belgian-style Golden Strong Ale, aged in French oak Chardonnay barrels with Brettanomyces. Appropriately, the devil’s in the details. \r\n\r\nLOGISTICS LOG: \r\ndesigned to represent the \""Fallen Planet\"" with a Belgian beer style that includes beers traditionally named after the devil. primary fermentation and aging in stainless steel. phenomenal funk flavors realized with aging in oak barrels affected with Brettanomyces. bottle-conditioning achieved with secondary fermentation. devil-may-care data continues to develop.\r\n\r\nAvailability:\r\nAK - draft and 22-oz bottles (limited release begins 08/29/2008)"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,63,1
+harvey_son_lewes-christmas_ale,0,0,244747272192,"{""name"":""Christmas Ale"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+gordon_biersch_brewing-czech_lager,0,0,244616921089,"{""name"":""Czech Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+flying_dog_brewery-classic_pale_ale,0,0,244617248768,"{""name"":""Classic Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Doggie Style Pale Ale \r\nMeet the Alpha of the pack ... Flying Dog Classic Pale Ale is brilliant amber in color and dry hopped with buckets full of Cascades for an unrivaled hop flavor and aroma. This is a true representation of an American-style pale ale, using the finest ingredients. Flying Dog Classic Pale Ale is a multi-award winning product and is consistently ranked as one of the best pale ales in the U.S. This is what craft beer is all about."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+tooth_s,0,0,245123645440,"{""name"":""Tooth's"",""city"":""Sydney"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-33.8671,""lon"":151.207}}",1,61,1
+ballast_point_brewing-dorado_double_ipa,0,0,244364804096,"{""name"":""Dorado Double IPA"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,21,1
+cooperstown_brewing_company-pride_of_milford_special_ale,0,0,244484997121,"{""name"":""Pride of Milford Special Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Pride of Milford\"" is a very special ale with a tapestry of complex flavors and aromas. It is brewed with five malts and fermented with the Ringwood yeast at a higher temperature which gives this beer a uniqueness all its own. \""Pride\"" has a distinctive reddish copper color. It is strong and rich beer. When \""Pride\"" was first brewed in December 1999, many thought the flavor and aromas of this beer had fruit overtones. No fruit or adjunct flavoring is added to this beer. The unique flavor comes from our special brewing process.""}",1,26,1
+monte_carlo_casino_and_brewpub-jackpot_pale,0,0,244878606338,"{""name"":""Jackpot Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""monte_carlo_casino_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+broughton_ales,0,0,244485259265,"{""name"":""Broughton Ales"",""city"":""The Borders"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01899)-830345"",""website"":""http://www.broughtonales.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Broughton""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.6145,""lon"":-3.4107}}",1,27,1
+brasserie_la_choulette,0,0,244482113536,"{""name"":""Brasserie La Choulette"",""city"":""Hordain"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.27.35.72.44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 rue des Ecoles""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.2601,""lon"":3.3125}}",1,20,1
+walldorff_brew_pub-state_street_oatmeal_stout,0,0,245752397824,"{""name"":""State Street Oatmeal Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark rich full-bodied stout with a dense creamy head. Full of character and very satisfying."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,62,1
+mikkeller-simcoe_single_hop_ipa,0,0,244882931713,"{""name"":""Simcoe Single Hop IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mikkeller"",""updated"":""2010-07-22 20:00:20"",""description"":""The first in a new series of single hop IPA's from Mikkeller. Brewed with Simcoe, known for many great US micro-brews. An extremely fresh-hopped IPA."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
+hoffbrau_steaks_brewery_2-red_lager,0,0,244747272193,"{""name"":""Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
+great_dane_pub_and_brewing_1-old_scratch_barleywine_1996,0,0,244743602176,"{""name"":""Old Scratch Barleywine 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+founders_brewing-founders_pale_ale,0,0,244617248769,"{""name"":""Founders Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A testament to Cascade hops in a bottle. Our medium-bodied, Pale Ale has a distinctive floral hop aroma and refreshing citrus flavor. Founders Pale Ale has a slight malty sweetness with a balanced hop finish. A perfect beer to enjoy while mowing the lawn, boating, grilling with friends or just taking it easy."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+umpqua_brewing-summer_wheat,0,0,245123645441,"{""name"":""Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""umpqua_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,61,1
+beck_s-beck_s,0,0,244364804097,"{""name"":""Beck´s"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beck_s"",""updated"":""2010-07-22 20:00:20"",""description"":""German Pilsner beer, with quite a bit of hops taste."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,21,1
+corner_pub-porter,0,0,244484997122,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""corner_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+moosejaw_pizza_dells_brewing_company-blonde_bock,0,0,244878671872,"{""name"":""Blonde Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,53,1
+cameron_s_brewing,0,0,244485259266,"{""name"":""Cameron's Brewing"",""city"":""Oakville"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-905-849-8282"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1165 Invicta Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.4745,""lon"":-79.6775}}",1,27,1
+brauerei_gasthof_zur_krone-kronenbier,0,0,244482179072,"{""name"":""Kronenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+weyerbacher_brewing_company-unfiltered_double_simcoe_ipa,0,0,245752397825,"{""name"":""Unfiltered Double Simcoe IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""In 750ml corked ’n’ caged bottles this will be and unfiltered, fully bottle conditioned version of the super popular Double Simcoe. Expect Cask taste in a bottle, with more pronounced hoppy flavor and aroma due to being unfiltered. Also, carbonation will be a bit higher as is usual in our cork n cage series in keeping with tradition. It all comes together to form a uniquely great experience for hopheads."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,62,1
+milagro_brewery_and_grill-silver,0,0,244882997248,"{""name"":""Silver"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milagro_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+512_brewing_company-512_bruin,0,0,244365131776,"{""name"":""(512) Bruin"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At once cuddly and ferocious, (512) BRUIN combines a smooth, rich maltiness and mahogany color with a solid hop backbone and stealthy 7.6% alcohol. Made with Organic 2 Row and Munich malts, plus Chocolate and Crystal malts, domestic hops, and a touch of molasses, this brew has notes of raisins, dark sugars, and cocoa, and pairs perfectly with food and the crisp fall air."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,22,1
+hopworks_urban_brewery-survival_stout,0,0,244747272194,"{""name"":""Survival Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer of the Ancients! Barley (Egyptian), Wheat (Mesopotamian), Oats (Egyptian), Amaranth (Aztec), Quinoa (Incan), Spelt (Mesopotamian), and Kamut (Egyptian) sustain the soul with a nutrients cultivated through the millennia. Finished with 15 pounds of cold-pressed Stumptown Hairbender espresso. Unlock the mystery entombed in darkness."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,32,1
+great_lakes_brewing-ohio_city_oatmeal_stout,0,0,244743667712,"{""name"":""Ohio City Oatmeal Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth and creamy medium-bodied stout with soft malty notes and dry finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
+four_peaks_brewing-hefeweizen,0,0,244617248770,"{""name"":""Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a Bavarian ale which uses 51% wheat malt in the recipe. Very low bitterness. It is unfiltered so the characteristic cloudiness is achieved. The haze comes from suspended yeast. Hefe-Weizen literally means \""yeast-wheat.\"" The aroma is reminiscent of cloves and banana and is put out by the yeast. While some of this aroma carries over to the flavor, the dominant flavor is the malty wheat. \r\n\r\nAlcohol content approximately 5.0% by volume (ALWAYS ON TAP!!)"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,25,1
+victory_brewing-hard_times_lager,0,0,245123645442,"{""name"":""Hard Times Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+bell_s_brewery_inc-hell_hath_no_fury_ale,0,0,244364804098,"{""name"":""Hell Hath No Fury Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A brew that gives you either sympathy for the devil or the courage to face him. Goes especially well with your favorite lost my girl/truck/dog/trailer song."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,21,1
+court_avenue_brewing-pointer_brown_ale,0,0,244484997123,"{""name"":""Pointer Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
+ninkasi_brewing,0,0,244878671873,"{""name"":""Ninkasi Brewing"",""city"":""Eugene"",""state"":""Oregon"",""code"":""97402"",""country"":""United States"",""phone"":""877-7-NINKASI"",""website"":""http://www.ninkasibrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""272 Van Buren St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0569,""lon"":-123.11}}",1,53,1
+capital_city_brewing_company-irish_red_ale,0,0,244485259267,"{""name"":""Irish Red Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Just in time for St. Patrick’s day, this Irish style red ale definitely has a big malt profile. This beer is the antithesis of our Amber Waves ale. It has a low hop bitterness and aroma, this allows the caramel malt flavors to dominate. It has a medium body, and is very easy going down."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,27,1
+brauerei_leibinger-edel_pils,0,0,244482179073,"{""name"":""Edel-Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_leibinger"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+widmer_brothers_brewing-widmer_w_08,0,0,245752528896,"{""name"":""Widmer W'08"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Our Brewmasters' Release - The three different red, caramelized, and dark wheat malts give this beer an intense red color that runs as deep as the flavor. The toasted grain flavors blend perfectly with the subtle spiciness of the hops just as the entirety fades to a smooth quick finish. 2007 Great American Beer Festival Silver Medal Award Winner.\""\r\n-Widmer Brothers Brewing Company"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,62,1
+mogollon_brewing_company-wapiti_amber_ale,0,0,244882997249,"{""name"":""Wapiti Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our flagship ale. The label for this beer is adorned with the majestic Wapiti (aka elk). Wapiti are abundant in northern Arizona. They are large and beautiful creatures, which is why we chose this animal to represent this beer. Wapiti Amber Ale is hand crafted with mountain pure water, two row malted barley, yeast and Yakima Valley hops. Our brewers use traditional methods to create this full-bodied amber ale with a distinct hoppy aroma. Wapiti Amber Ale should be enjoyed cool, not cold, to best experience the complex character and flowery aroma. Serve at 43-47 deg F."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
+abita_brewing_company-abita_jockamo_ipa,0,0,244365197312,"{""name"":""Abita Jockamo IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,22,1
+humboldt_brewing,0,0,244747337728,"{""name"":""Humboldt Brewing"",""city"":""Arcata"",""state"":""California"",""code"":""95521"",""country"":""United States"",""phone"":""1-707-826-2739"",""website"":""http://www.humboldtbrews.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""856 10th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.87,""lon"":-124.087}}",1,32,1
+greenshields_brewery_and_pub-amber,0,0,244743667713,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
+fox_river_brewing_1-nut_brown_ale,0,0,244617314304,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
+warsteiner_brauerei-warsteiner_premium_dunkel,0,0,245752397824,"{""name"":""Warsteiner Premium Dunkel"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,61,1
+bellows_brew_crew-red,0,0,244364869632,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
+crabby_larry_s_brewpub_steak_crab_house-golden_treasure,0,0,244485062656,"{""name"":""Golden Treasure"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""For those who enjoy a clean, crisp, refreshing beer this medium copper colored brew is perfect. With its low level of hop bitterness and slightly sweet flavor it is one of our lightest ales. We use the lightest grains with Kent Goldings and Liberty hops. This beer is an excellent choice for the not so brave."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,26,1
+north_country_brewery-amber_waves_of_grain,0,0,244878671874,"{""name"":""Amber Waves of Grain"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber-colored beer, lightly hopped, with a nice malty finish; go ahead, salute your brew."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,53,1
+carmel_brewing,0,0,244485324800,"{""name"":""Carmel Brewing"",""city"":""Salinas"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.6777,""lon"":-121.656}}",1,27,1
+brewdog_ltd-hardcore_ipa,0,0,244482244608,"{""name"":""Hardcore IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""This little bottle has a grandiloquent story to tell.\r\n\r\n2,204 malted Maris Otter grains gave all they had to offer the world to provide the robustly delicate toffee malt canvas for the ensuing epic.\r\n\r\n6 Hop Cones willingly sacrificed themselves in fiery cauldron that is our brew kettle to ensure your mouth is left feeling punished and puckering for more.\r\n\r\n9,900,000,000 yeast cells frantically fermented their little hearts out as the sugars were magically turned into alcohol in the dark depths of our fermentation tanks.\r\n\r\nThis explicit ale has more hops and bitterness that any other beer brewed in the UK. This is an extreme beer rollercoaster for freaks, gypsies and international chess superstars."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,20,1
+wild_river_brewing_and_pizza_cave_junction-dark,0,0,245752528897,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,62,1
+moylan_s_brewery_restaurant-imperial_stout,0,0,244883062784,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
+aksarben_brewing_bop-heater,0,0,244365328384,"{""name"":""Heater"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+lost_coast_brewery-indica_india_pale_ale,0,0,244869955584,"{""name"":""Indica India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
+half_moon_bay_brewing-pillar_point_pale_ale,0,0,244743733248,"{""name"":""Pillar Point Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,24,1
+freeminer_brewery-trafalgar_ipa,0,0,244617314305,"{""name"":""Trafalgar IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""freeminer_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
+big_buck_brewery-raspberry_wheat,0,0,244364869633,"{""name"":""Raspberry Wheat"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American wheat beer made with malted barley and malted wheat. Lightly flavored with pure fruit to impart a subtle raspberry nose, a delicate fruit flavor and a slight pink hue."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,21,1
+crescent_city_brewhouse-pilsner,0,0,244485128192,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+o_grady_s_brewery_and_pub_1-blacksmith_bitter_ale,0,0,244878671875,"{""name"":""Blacksmith Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+carolina_brewery-stout,0,0,244485324801,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
+brouwerij_de_smedt-affligem_tripel,0,0,244482244609,"{""name"":""Affligem Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_smedt"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+new_glarus_brewing_company-fat_squirrel_nut_brown_ale,0,0,244883062785,"{""name"":""Fat Squirrel Nut Brown Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""One deceptively spring like winter day, Brewmaster Dan walked home from the brewery, sat down to dinner and said, \""Boy, there are some fat squirrels out there. They're running all over the place. I think I should brew a Fat Squirrel Nut Brown Ale.\"" Deb agreed and so another beer legend was born. \r\n\r\n100% Wisconsin malt of six different varieties impart the natural toasted color to this bottle conditioned unfiltered ale. Clean hazelnut notes result from these carefully chosen barley malts. Hops from Slovenia, Bavaria and the Pacific Northwest give Fat Squirrel its backbone. \r\n\r\nWhen the going gets tough, remember to relax a moment and enjoy the \""Fat Squirrel\"" in your neighborhood."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
+alaskan_brewing-breakup_bock,0,0,244365328385,"{""name"":""Breakup Bock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,22,1
+lwenbru_munich-premium_lager,0,0,244870021120,"{""name"":""Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lwenbru_munich"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+hanssens_artisanal-oude_gueuze,0,0,244743733249,"{""name"":""Oude Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hanssens_artisanal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,24,1
+gaslight_brewery,0,0,244617314306,"{""name"":""Gaslight Brewery"",""city"":""South Orange"",""state"":""New Jersey"",""code"":""7079"",""country"":""United States"",""phone"":""1-973-762-7077"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""15 South Orange Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7465,""lon"":-74.2594}}",1,25,1
+big_time_brewing,0,0,244364935168,"{""name"":""Big Time Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98105"",""country"":""United States"",""phone"":""1-206-545-4509"",""website"":""http://www.bigtimebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Big Time's brewery is a 14 barrel JV Northwest system consisting of a gas fired brew kettle, an infusion mash tun with mixer, a hot liquor back, a wort cooler, (5) 14 barrel fermenters, a diatomaceous earth filter, a bright beer tank, and (12) 7 bbl serving tanks. We sell most of our beer at the pub but do wholesale a limited number of kegs to a few Seattle area taverns. We currently brew approximately 1,500 barrels of beer per year"",""address"":[""4133 University Way NE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6576,""lon"":-122.313}}",1,21,1
+dark_horse_brewing_co-double_crooked_tree_i_p_a,0,0,244485128193,"{""name"":""Double Crooked Tree I.P.A."",""abv"":13.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From their website:\r\n\""Have you read the description for the regular Crooked Tree yet? Well this beer is almost the same just double. We actually took the Crooked Tree recipe and doubled all of the ingredients except the water, just the way a DOUBLE should be made. Big hops balanced with tons of malt give this beer a huge body. Although this beer is as cool as \""the Fonz\"" when first purchased, it gets really mellow and smooth with some age. After a year or two stored in a cool dark place you'll notice the heavy caramel and malt flavors are trying to sneak past the hops, they’re just not fast enough. This beer is hugely delicious so it will need your undivided attention (the chores can wait....trust us).\"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,26,1
+portland_brewing-zig_zag_lager,0,0,245002731520,"{""name"":""Zig Zag Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+cervejaria_de_macau,0,0,244485390336,"{""name"":""Cervejaria de Macau"",""city"":""Macao"",""state"":"""",""code"":"""",""country"":""Macao"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unit 1-B, Blk. A, Edf. Ind. Fei Tong""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":19.7219,""lon"":-101.225}}",1,27,1
+brouwerij_sterkens-poorter,0,0,244482310144,"{""name"":""Poorter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+new_glarus_brewing_company-zwickel,0,0,244883128320,"{""name"":""Zwickel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+alesmith_brewing-x_extra_pale_ale,0,0,244365328386,"{""name"":""X Extra Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+magic_hat-hocus_pocus,0,0,244870021121,"{""name"":""Hocus Pocus"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Our take on a classic summer ale. A toast to weeds, rays, and summer haze. A light, crisp ale for mowing lawns, hitting lazy fly balls, and communing with nature, Hocus Pocus is offered up as a summer sacrifice to clodless days.\r\n\r\nIts malty sweetness finishes tart and crisp and is best apprediated with a wedge of orange."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,32,1
+harvest_moon_brewery_cafe,0,0,244743733250,"{""name"":""Harvest Moon Brewery / Cafe"",""city"":""New Brunswick"",""state"":""New Jersey"",""code"":""8901"",""country"":""United States"",""phone"":""1-732-249-6666"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""392 George Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4962,""lon"":-74.4441}}",1,24,1
+golden_valley_brewery_and_pub-tannen_bomb,0,0,244617314307,"{""name"":""Tannen Bomb"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+bj_s_restaurant_and_brewery-tatonka_stout,0,0,244364935169,"{""name"":""Tatonka Stout"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,21,1
+dark_horse_brewing_co-too_cream_stout,0,0,244617379840,"{""name"":""Too Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is made with milk sugar (lactose) which gives this beer a nice creamy mouth feel which mingles with hints of chocolate and roasty flavors."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,26,1
+privat_brauerei_schmucker_ober_mossau_kg,0,0,245002731521,"{""name"":""Privat-Brauerei Schmucker Ober-Mossau KG"",""city"":""Mossautal"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.6747,""lon"":8.925}}",1,53,1
+coopers_brewery-coopers_premium_light,0,0,244485390337,"{""name"":""Coopers Premium Light"",""abv"":2.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coopers Premium Light is brewed using malted barley and no sugar. Coopers has used traditional lager brewing techniques to produce a full-flavoured light beer. The light has a fresh aroma with clean floral hop notes, excellent head and colour presentation."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,27,1
+brouwerij_van_steenberge-steenbrugge_tripel_blond,0,0,244482310145,"{""name"":""Steenbrugge Tripel Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+new_holland_brewing_company-cabin_fever,0,0,244883193856,"{""name"":""Cabin Fever"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Robust in character yet smooth in delivery, Cabin Fever is a roasty brown ale and a hearty, comforting companion for long, mind-bending winters. Its rye, roast and raisin notes play off a subtle caramel sweetness and culminate in a dry finish. Excellent with roasts, stews, caramelized onions and snowfall."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
+america_s_brewing-honey_wheat_ale,0,0,244365393920,"{""name"":""Honey Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
+marine_pub_brewhouse,0,0,244870021122,"{""name"":""Marine Pub & Brewhouse"",""city"":""Burnaby"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-435-2245"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5820 Marine Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2055,""lon"":-122.978}}",1,32,1
+heavenly_daze_brewery_and_grill-derailer_esb,0,0,244743733251,"{""name"":""Derailer ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+gottberg_brew_pub-stuvenbrau_maibock,0,0,244617379840,"{""name"":""Stüvenbräu Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,25,1
+blue_cat_brew_pub-arkham_stout,0,0,244364935170,"{""name"":""Arkham Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+de_struise_brouwers,0,0,244617445376,"{""name"":""De Struise Brouwers"",""city"":""Woesten"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":""http://www.struisebrouwers.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Woesten""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.9229,""lon"":2.7518}}",1,26,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-imperial_hefeweizen,0,0,245002797056,"{""name"":""Imperial Hefeweizen"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+coors_brewing_golden_brewery-coors_original,0,0,244485390338,"{""name"":""Coors Original"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coors beer, first introduced by Adolph Coors in April, 1874, is brewed in the Rockies for a uniquely crisp, clean and drinkable \""Mile High Taste.\""\r\n\r\nDuring World War II, Coors aided the war effort by setting aside half its beer for sale to the military. When the service men and women returned home to states outside of Coors' original 11-state marketing region, they spread the word about the beer's taste and quality -- which became known as the \""Coors Mystique.\""\r\n\r\nPrior to its national expansion in the 1980s, Coors' limited distribution left consumers in the eastern U.S. wanting a taste of the Rocky Mountains' finest beer. President Gerald Ford was known to take several cases of Coors on his Air Force One during return trips to the White House.\r\n\r\nIn September 1893, Coors competed for the first time at the Chicago World's Fair and won awards for brilliancy, flavor, chemical analysis and commercial flavor. The award-winning legacy of the brew continues and in recent years Coors beer has won a number of honors at beer festivals."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,27,1
+burgerbrau_wolnzach,0,0,244482310146,"{""name"":""Bürgerbräu Wolnzach"",""city"":""Wolnzach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8442-/-955514"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Brunnen 2""]}",1,20,1
+new_jersey_beer_company,0,0,244883193857,"{""name"":""New Jersey Beer Company"",""city"":""North Bergen"",""state"":""NJ"",""code"":""07047"",""country"":""United States"",""phone"":"""",""website"":""http://www.njbeerco.com"",""type"":""brewery"",""updated"":""2010-11-17 14:11:59"",""description"":""New Jersey Beer Co. is dedicated to crafting quality beer for all; from the occasional beer drinker to the beer aficionado. We believe that good products come from good people, and strive to do our very best for our community and our customers. We believe we can provide happiness through doing what we love, and that a good beer can make the good times great."",""address"":[""4201 Tonnelle Avenue""]}",1,63,1
+anheuser_busch,0,0,244365393921,"{""name"":""Anheuser-Busch"",""city"":""Saint Louis"",""state"":""Missouri"",""code"":""63118"",""country"":""United States"",""phone"":""1-800-342-5283"",""website"":""http://www.anheuser-busch.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Anheuser-Busch operates 12 breweries in the United States, 14 in China and one in the United Kingdom. Anheuser-Busch's operations and resources are focused on adding to life's enjoyment not only through the responsible consumption of beer by adults, but through theme park entertainment and packaging. In the United States, the company holds a 48.5 percent share of U.S. beer sales. Worldwide, Anheuser-Busch's beer sales volume was 128.4 million barrels in 2007. The St. Louis-based company's subsidiaries include one of the largest U.S. manufacturers of aluminum beverage containers and one of the world's largest recyclers of aluminum beverage cans. Anheuser-Busch also has interests in malt production, rice milling, real estate development, turf farming, metalized and paper label printing, bottle production and transportation services."",""address"":[""One Busch Place""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5983,""lon"":-90.209}}",1,22,1
+maritime_pacific_brewing-yo_ho_ho_christmas_ale_2001,0,0,244870021123,"{""name"":""Yo Ho Ho Christmas Ale 2001"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+heller_bru_trum-schlenkerla_helles_lagerbier,0,0,244743798784,"{""name"":""Schlenkerla Helles Lagerbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+great_bear_brewing,0,0,244744126464,"{""name"":""Great Bear Brewing"",""city"":""Wasilla"",""state"":""Alaska"",""code"":""99654"",""country"":""United States"",""phone"":""1-907-373-4782"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""238 North Boundary Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":61.5816,""lon"":-149.439}}",1,25,1
+boon_rawd_brewery-singha_gold,0,0,244365000704,"{""name"":""Singha Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boon_rawd_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+512_brewing_company-512_pale,0,0,244365656064,"{""name"":""(512) Pale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""With Organic 2-row malted barley, (512) Pale is a copper colored American Pale Ale that balances earthy hop bitterness and hop flavor with a rich malty body."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+delafield_brewhaus-hopfenteufel_alt_bier,0,0,244617445377,"{""name"":""Hopfenteufel Alt Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
+raccoon_lodge_and_brewpub_cascade_brewing-cascade_apricot_ale,0,0,245002797057,"{""name"":""Cascade Apricot Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Features the intense aroma of fresh-picked, slow ripened Northwest apricots warmed by the summer sun. Based on a Belgian Tripel, this beer went through 16 months lactic fermentation and aging in French oak wine barrels."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,53,1
+crane_river_brewpub_and_cafe-weizen,0,0,244485455872,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+central_waters_brewing_company-satin_solstice_imperial_stout,0,0,244482375680,"{""name"":""Satin Solstice Imperial Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This smooth, creamy stout and a crackling fireplace are the perfect answer to a wintery evening in Wisconsin. The rich coffee flavor compliments the \""warm, fuzzy feeling\"" you get from the abundant alcohol. Enjoy in moderation."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,20,1
+nicolet_brewing-winter_fest_beer,0,0,244883259392,"{""name"":""Winter Fest Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,63,1
+appleton_brewing-adler_brau_cherry_creek_cherry_flavored_lager,0,0,244365459456,"{""name"":""Adler Bräu Cherry Creek Cherry Flavored Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+mercury_brewing_company-ipswich_dark_ale,0,0,244870086656,"{""name"":""Ipswich Dark Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich in color and bold in taste, our U.S. style Brown Ale combines roasted malt with two additions of specialty selected hops to produce a well-balanced ale with a satisfying finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,32,1
+high_point_wheat_beer_company-ramstein_winter_wheat,0,0,244743798785,"{""name"":""Ramstein Winter Wheat"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_point_wheat_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Also referred to as a Doppelbock, this is the strongest beer made by High Point. Rich creamy head with bouquet of wheat malt, black current, clove, and apple. Deep full flavors of caramel and chocolate malt balance with hops for a smooth warming character. The finish is smooth and malty leading to a subtle alcohol and dark caramel finish. The wonderful balance of this beer provides a complex profile that hides the 9.5% alcohol content. The perfect companion for a cold winter night."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,24,1
+great_divide_brewing-great_divide_dunkel_weiss,0,0,244744192000,"{""name"":""Great Divide Dunkel Weiss"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Think of it as a hefeweizen’s older brother. A hearty mix of wheat and dark German barley malts gives it a medium body and muddy brown hue, while our proprietary yeast strain provides the signature notes of banana and clove. If you like wheat beers, come to the Dunkel side. You won’t be disappointed. Just don’t put any lemon in it.""}",1,25,1
+boon_rawd_brewery,0,0,244365000705,"{""name"":""Boon Rawd Brewery"",""city"":""Bangkok"",""state"":"""",""code"":"""",""country"":""Thailand"",""phone"":""66-(662)-669-2050"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""999 Samsen Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":13.7783,""lon"":100.509}}",1,21,1
+abita_brewing_company-abita_amber,0,0,244365721600,"{""name"":""Abita Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:46:53"",""description"":""Abita Amber is a Munich style lager. It has a smooth, malty, slightly caramel flavor and a rich amber color."",""style"":""Vienna-Style Lager"",""category"":""German Lager""}",1,23,1
+delafield_brewhaus-pewaukee_porter,0,0,244617445378,"{""name"":""Pewaukee Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+raccoon_lodge_and_brewpub_cascade_brewing,0,0,245002862592,"{""name"":""Raccoon Lodge and Brewpub / Cascade Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97225"",""country"":""United States"",""phone"":""(503) 296-0110"",""website"":""http://www.raclodge.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7424 SW Beaverton-Hillsdale Hwy""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.4856,""lon"":-122.754}}",1,53,1
+denver_chophouse_and_brewery-oatmeal_stout,0,0,244617904128,"{""name"":""Oatmeal Stout"",""abv"":6.54,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
+cerveceria_bucanero-fuerte,0,0,244482375681,"{""name"":""Fuerte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cerveceria_bucanero"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
+north_coast_brewing_company-old_stock_ale_2007,0,0,244883259393,"{""name"":""Old Stock Ale 2007"",""abv"":11.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,63,1
+appleton_brewing-adler_brau_weiss,0,0,244365459457,"{""name"":""Adler Bräu Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,22,1
+midnight_sun_brewing_co-cosmic_black_witbier,0,0,244870086657,"{""name"":""Cosmic Black Witbier"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Close your eyes. The delicate aroma, flavor, texture of this beer whisper “witbier”. Now open your eyes. The color is deceiving. You take another sip. Yes, witbier … but black as night. It is something quite peculiar—BuT it is brilliant—something shimmering and [not so] white."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
+highland_brewing_company-cattail_peak,0,0,244743864320,"{""name"":""Cattail Peak"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An invigorating wheat beer with 100% organic grains, a hint of rye and the tang and hue of organic hibiscus, this refreshing brew is as cool as the breeze that blows down from Mount Mitchell to Cattail Peak. Enjoy this delicious creation when the hottest summer day demands the best of the Blue Ridge."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
+green_mill_brewing_saint_paul-big_island_porter,0,0,244744192001,"{""name"":""Big Island Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,25,1
+boulder_beer_company-killer_penguin,0,0,244365000706,"{""name"":""Killer Penguin"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,21,1
+aksarben_brewing_bop-brout,0,0,244365721601,"{""name"":""Brout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+dockside_brewing-johnston_pilsener,0,0,244617510912,"{""name"":""Johnston Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+ridgeway_brewing-warm_welcome_nut_browned_ale,0,0,245002862593,"{""name"":""Warm Welcome Nut Browned Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
+deschutes_brewery-cinder_cone_red,0,0,244617969664,"{""name"":""Cinder Cone Red"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Cinder Cone Red's diverse selection of hops and barley captivates thirsty palates with its toffee-like flavor, intense citrus aroma and defined bitterness.\r\n\r\nLocated on the northern slope of Mt. Bachelor, the Cinder Cone was also known as \""Red Hill\"" due to its reddish color that is revealed as the seasons change, the weather warms and the snow melts. It's spring. Time to get outside."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,27,1
+cervejaria_kaiser_brasil-xingu,0,0,244482375682,"{""name"":""Xingu"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_kaiser_brasil"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,20,1
+oak_creek_brewery-oak_creek_micro_light,0,0,244883259394,"{""name"":""Oak Creek Micro Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,63,1
+barley_s_casino_brewing_company,0,0,244365524992,"{""name"":""Barley's Casino & Brewing Company"",""city"":""Henderson"",""state"":""Nevada"",""code"":""89014"",""country"":""United States"",""phone"":""1-702-458-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4500 East Sunset Road #30""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.0721,""lon"":-115.075}}",1,22,1
+minocqua_brewing_company-pale_ale,0,0,244870152192,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber-colored ale with a pronounced floral aroma and a flavor contributed by Cascade hops. Hop lovers will savor this bold version of an American classic."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
+hook_ladder_brewing_company-hook_ladder_golden_ale,0,0,244743864321,"{""name"":""Hook & Ladder Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_ladder_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A crisp, clean American Ale. Perfect for extinguishing your fiery thirst or when you crave an ice-cold beer. A great step up in flavor from the macro-produced American and imported beers."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
+green_mill_brewing_saint_paul-grand_marais_pale_ale,0,0,244744192002,"{""name"":""Grand Marais Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+brasserie_brouwerij_cantillon,0,0,244365066240,"{""name"":""Brasserie-Brouwerij Cantillon"",""city"":""Anderlecht"",""state"":""Brussel"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)2-521-49-28"",""website"":""http://www.cantillon.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Gheudestraat 56""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8416,""lon"":4.3355}}",1,21,1
+allentown_brew_works-steelgaarden_wit,0,0,244365787136,"{""name"":""Steelgaarden Wit"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered Belgian Style beer is brewed with special yeast that lends a unique refreshing flavor to the beer. Brewed with Chamomile, Curacao Orange peel and Coriander to create a smooth citrus finish. Usually enjoyed with a slice of lemon."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,23,1
+dogfish_head_craft_brewery-burton_baton,0,0,244617510913,"{""name"":""Burton Baton"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+route_66_brewery-imperial_pale_ale,0,0,245002862594,"{""name"":""Imperial Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,53,1
+endehouse_brewery_and_restaurant-dunkelweiss,0,0,244617969665,"{""name"":""Dunkelweiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""endehouse_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+chama_river_brewing,0,0,244482441216,"{""name"":""Chama River Brewing"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":""87109"",""country"":""United States"",""phone"":""1-505-342-1800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4939 Pan American Freeway NE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.14,""lon"":-106.6}}",1,20,1
+oasis_brewery_annex,0,0,244883324928,"{""name"":""Oasis Brewery Annex"",""city"":""Boulder"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.015,""lon"":-105.271}}",1,63,1
+big_river_brewing-extra_special_bitter,0,0,244365524993,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+minocqua_brewing_company-red_ale,0,0,244870217728,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Deserving of its name, this red/amber colored ale is sure to knock you off your feet. Crystal and caramel malts contribute to a balance of sweetness and smoothness."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
+hook_norton_brewery-old_hooky,0,0,244743864322,"{""name"":""Old Hooky"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+gulpener_bierbrouwerij-dort,0,0,244744257536,"{""name"":""Dort"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gulpener_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,25,1
+brasserie_d_ecaussinnes-ultrabrune,0,0,244365066241,"{""name"":""Ultrabrune"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_ecaussinnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+amstel_brouwerij,0,0,244365787137,"{""name"":""Amstel Brouwerij"",""city"":""Amsterdam"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""800-022-9885"",""website"":""http://www.amstel.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Antwoordnummer 7181""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.3738,""lon"":4.8909}}",1,23,1
+eddie_mcstiff_s_brewpub-chestnut_brown_ale,0,0,244617576448,"{""name"":""Chestnut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eddie_mcstiff_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
+rush_river_brewing,0,0,245002928128,"{""name"":""Rush River Brewing"",""city"":""River Falls"",""state"":""Wisconsin"",""code"":""54022"",""country"":""United States"",""phone"":""1-715-426-2054"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""990 Antler Court""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.8902,""lon"":-92.6378}}",1,53,1
+f_x_matt_brewing-saranac_lager,0,0,244618035200,"{""name"":""Saranac Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A simple well-made Classic American Lager brewed with only choice ingredients. It is extremely mellow refreshingly smooth, glass after glass."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+chicago_brewing,0,0,244482441217,"{""name"":""Chicago Brewing"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89117"",""country"":""United States"",""phone"":""1-702-254-3333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2201 South Fort Apache Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.1476,""lon"":-115.298}}",1,20,1
+orlando_brewing,0,0,244883324929,"{""name"":""Orlando Brewing"",""city"":""Orlando"",""state"":""Florida"",""code"":""32806"",""country"":""United States"",""phone"":""(407) 872-1117"",""website"":""http://www.orlandobrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""They have a wide variety of beers made on premises, with more than a dozen on tap. Bar is is in an industrial area and is kinda bare, but it's got good beer, and good people, and that's what counts. Try the 'Monk-in-the-trunk' stay the hell away from the Winter Park beer. Bottles, and kegs available as well."",""address"":[""1301 Atlanta Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.5265,""lon"":-81.3827}}",1,63,1
+bj_s_restaurant_and_brewery-jeremiah_red,0,0,244365524994,"{""name"":""Jeremiah Red"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,22,1
+mohrenbrauerei_august_huber-spezial,0,0,244870217729,"{""name"":""Spezial"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mohrenbrauerei_august_huber"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+hops_haven_brew_haus-triple_h,0,0,244743929856,"{""name"":""Triple \""H\"""",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,24,1
+hacker_pschorr_bru,0,0,244744257537,"{""name"":""Hacker-Pschorr Bru"",""city"":""Mnchen"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.1391,""lon"":11.5802}}",1,25,1
+brasserie_de_brunehaut-abbaye_de_saint_martin_brune,0,0,244365066242,"{""name"":""Abbaye de Saint-Martin Brune"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""Abbaye Saint-Martin Brune was named World's Best Abbey (Dark) Beer @ the 2009 World Beer Awards (London). Aroma of caramel and liquorice. Less sweet than most traditional Dark Abbey Ales. Many people prefer this double at room temperature. It is especially popular when paired with dessert.\r\nAbbye St. Martin Ales are pure Belgium."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,21,1
+atlanta_brewing_company-red_brick_double_chocolate_oatmeal_porter,0,0,244365852672,"{""name"":""Red Brick Double Chocolate Oatmeal Porter"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atlanta_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter brewed with lots of chocolate malt and roasted barley. This gives the beer its nearly black color and coffee and dark chocolate flavors. These flavors are then tempered with the use of flaked oats which provide an almost creamy texture to the beer. The 7.7% abv is deceptive but is not completely unnoticed."",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
+egan_brewing-cinco_de_mayo_cerveza_jalapeno,0,0,244617576449,"{""name"":""Cinco de Mayo Cerveza Jalapeño"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+s_a_damm-estrella_levante_especial,0,0,245002928129,"{""name"":""Estrella Levante Especial"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2011-07-14 08:53:33"",""description"":"""",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,53,1
+faultline_brewing_1-pilsner,0,0,244618035201,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+cooper_s_cave_ale_company-pathfinder_s_porter,0,0,244482441218,"{""name"":""Pathfinder's Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pathfinder's Porter is a robust, dark and hoppy ale originally brewed for street urchins of London. Our version does the job for the Glens Falls urchins of today."",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
+oskar_blues_grill_and_brew-dale_s_pale_ale,0,0,244883324930,"{""name"":""Dale's Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Dale's Pale Ale is our flagship beer and America's first hand-canned craft beer. It's an assertive but deftly balanced beer (somewhere between an American pale ale and an India Pale Ale) brewed with hefty amounts of European malts and American hops.\r\n\r\nIt features a merengue-like head, a copper color, and a hoppy nose, thanks to a big post-boil addition of Centennial hops. To complement its hoppy first impression, Dale's also sports a rich middle of malts and hops, and a bracing finish. Dale's is 6.5% alcohol by volume, and features 65 International Bittering Units.\r\n\r\nWe think of it as the perfect, everyday beer for hopheads like us. Dale's Pale Ale's rich flavor has helped us make many new fans, and its numerous honors have helped us kick huge holes in the misconceptions regarding cans."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
+boston_beer_company-samuel_adams_old_fezziwig_ale,0,0,244365590528,"{""name"":""Samuel Adams Old Fezziwig Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Spicy and Bold, a big Christmas cookie of a beer.\r\nSamuel Adams® Old Fezziwig® Ale is the Christmas cookie of beer. Bursting with spices of the season and a remarkably full body, it helps those long winter nights pass much quicker. The full body hits the palate first with a depth of malt character ranging from sweeter toffee and caramel notes to the more dark, roasty chocolate notes. Then come the spices in full force. Cinnamon, ginger and orange peel dance on the tongue bringing with them the celebratory spirit that goes hand in hand with the season.""}",1,22,1
+moosejaw_pizza_dells_brewing_company-light_ale,0,0,244870217730,"{""name"":""Light Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+ithaca_beer_company-partly_sunny,0,0,244743929857,"{""name"":""Partly Sunny"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Partly Sunny is hazy-straw colored wheat beer with coriander, and generous amounts of lemon zest. It's a light refreshing beer with a subtle spicy start and a smooth citrus finish."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
+half_moon_bay_brewing,0,0,244744257538,"{""name"":""Half Moon Bay Brewing"",""city"":""Princeton by the Sea"",""state"":""California"",""code"":""94019"",""country"":""United States"",""phone"":""1-650-728-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""390 Capistrano Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.4903,""lon"":-122.435}}",1,25,1
+brasserie_de_l_abbaye_val_dieu-grand_cru,0,0,244365131776,"{""name"":""Grand Cru"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+atwater_block_brewing-hell,0,0,244365852673,"{""name"":""Hell"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Atwater Block beers are brewed using traditional German methods to create a distinctly fresh and flavorful character. Our classic Helles (German for Pale) is a crisp lager that is sure to please."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
+einbecker_brauhaus_ag-ur_bock_hell,0,0,244617576450,"{""name"":""Ur-Bock Hell"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""einbecker_brauhaus_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
+saint_louis_brewery_schlafy_tap_room-schlafly_esb,0,0,245002928130,"{""name"":""Schlafly ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+512_brewing_company-512_whiskey_barrel_aged_double_pecan_porter,0,0,244375617536,"{""name"":""(512) Whiskey Barrel Aged Double Pecan Porter"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first barrel project is in kegs and on it’s way to beer bars around Austin. This is a bigger, bolder version of our mainstay Pecan Porter, with a richer finish. Two months on recently emptied Jack Daniels select barrels imparted a wonderful vanilla character from the oak and a pleasant amount of whiskey nose and flavor. All in all, I’m really proud of the hard work and effort put into this beer. Our first attempt at brewing it and our first attempt at managing barrels has paid off for everyone! Seek out this beer, but don’t put it off. There is a very limited number of kegs available and it might go fast…"",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
+firehouse_brewery_restaurant,0,0,244618100736,"{""name"":""Firehouse Brewery & Restaurant"",""city"":""Red Oak"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.0117,""lon"":-95.2272}}",1,27,1
+coors_brewing_golden_brewery-rising_moon_spring_ale,0,0,244482506752,"{""name"":""Rising Moon Spring Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed only in spring. Has a crisp taste, thanks to the kieffer lime leaves and lime added in. Has a light amber color and absolutely delicious!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
+pelican_pub_brewery,0,0,245006401536,"{""name"":""Pelican Pub & Brewery"",""city"":""Pacific City"",""state"":""Oregon"",""code"":""97135"",""country"":""United States"",""phone"":""1-503-965-7007"",""website"":""http://www.pelicanbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33180 Cape Kiwanda Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.2152,""lon"":-123.97}}",1,63,1
+brasserie_brouwerij_cantillon-kriek_lambic,0,0,244365590529,"{""name"":""Kriek-Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,22,1
+moylan_s_brewery_restaurant-old_blarney_barleywine,0,0,244870283264,"{""name"":""Old Blarney Barleywine"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+jennings_brewery-sneck_lifter,0,0,244743929858,"{""name"":""Sneck Lifter"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jennings_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark beer with a reddish tinge derived from the use of coloured malts, full of complex flavours, which create an intriguing beer of great character.\r\n\r\nIn Northern English dialect sneck means door latch and a sneck lifter was a man’s last sixpence which enabled him to lift the latch of a pub door and buy himself a pint, hoping to meet friends there who might treat him to one or two more."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,24,1
+heavenly_daze_brewery_and_grill-backpacker_ipa,0,0,244744323072,"{""name"":""Backpacker IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
+breckenridge_brewery-trademark_english_pale,0,0,244482637824,"{""name"":""Trademark English Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
+back_road_brewery-back_road_ale,0,0,244365852674,"{""name"":""Back Road Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Back Road Brewery's flagship beer, and first original recipe of 1997, is also our house beer. This mildly hopped copper colored brew has a rich smooth taste. Hop varieties such as Styrian Goldings and English Fuggles are used to balance the beers maltiness. A technique called dry hopping is used after fermentation to add fresh herbal aroma. It is a great session beer and was made to satisfy a wide variety of palates. Drink and enjoy LaPorte County's first production craft beer."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+ellersick_brewing_big_e_ales,0,0,244617641984,"{""name"":""Ellersick Brewing Big E Ales"",""city"":""Lynnwood"",""state"":""Washington"",""code"":""98036"",""country"":""United States"",""phone"":""425-672-7051"",""website"":""http://www.ellersickbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mission Statement: Dedicated to serving our clients on a personal level. We specialize in unusually cool dispensing methods. To make sure your quality brew takes on an impressive experience. Please view our product page for innovate systems and amazing Ales. Call today for a personal evaluation of your beer enhanced production, home remedy, or beer emergency!"",""address"":[""5030 208th ST SW Ste. A""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8099,""lon"":-122.302}}",1,26,1
+scuttlebutt_brewing-homeport_blonde,0,0,245002928131,"{""name"":""Homeport Blonde"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+abbaye_notre_dame_du_st_remy-rochefort_10,0,0,244375617537,"{""name"":""Rochefort 10"",""abv"":11.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_notre_dame_du_st_remy"",""updated"":""2010-07-22 20:00:20"",""description"":""Reddish-brown colour, with a very compact head and an aroma of figs, feels like honey in the mouth. The alcohol profile is a major component in the flavour of this rich ale. It is very similar to 6 and 8, but has much more of everything. Some may find the high alcohol content to be disagreeable."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,46,1
+flatlander_s_restaurant_brewery-bockbier,0,0,244618100737,"{""name"":""Bockbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
+coronado_brewing_company-idiot_ipa,0,0,244482506753,"{""name"":""Idiot IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The CBC Idiot IPA is an all natural India Pale Ale. A big beer with an 8.5% ABV and brewed with over 3 lbs of hops per barrell. Watch out, this unfiltered \""San Diego IPA\"" has been known to reduce even the most intelligent to a blithering \""idiot\""."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
+pete_s_brewing-wicked_springfest,0,0,245006401537,"{""name"":""Wicked Springfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,63,1
+brasserie_dubuisson-scaldis_noel_bush_noel,0,0,244365656064,"{""name"":""Scaldis Noël / Bush Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+moylan_s_brewery_restaurant,0,0,244870283265,"{""name"":""Moylan's Brewery & Restaurant"",""city"":""Novato"",""state"":""California"",""code"":""94945"",""country"":""United States"",""phone"":""1-415-898-4677"",""website"":""http://www.moylans.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""15 Rowland Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.0941,""lon"":-122.557}}",1,32,1
+john_harvard_s_brewhouse_wilmington-winterfest_lager,0,0,244743995392,"{""name"":""Winterfest Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
+hereford_hops_restaurant_and_brewpub_1,0,0,244744323073,"{""name"":""Hereford & Hops Restaurant and Brewpub #1"",""city"":""Escanaba"",""state"":""Michigan"",""code"":""49829"",""country"":""United States"",""phone"":""1-906-789-1945"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""624 Ludington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7458,""lon"":-87.056}}",1,25,1
+brewery_creek_brewing-belgian_wheat,0,0,244482703360,"{""name"":""Belgian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+back_road_brewery-english_mild,0,0,244365918208,"{""name"":""English Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,23,1
+elysian_brewery_public_house-bete_blanche,0,0,244617641985,"{""name"":""Bête Blanche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+skagit_river_brewing-trumpeter,0,0,245002993664,"{""name"":""Trumpeter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
+aldaris-luksusa,0,0,244375617538,"{""name"":""Luksusa"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aldaris"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+flying_bison_brewing-buffalo_lager,0,0,244618100738,"{""name"":""Buffalo Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Light bodied golden beer, very balanced flavor with soft, clean finish. Available bottles at your favorite store and at an increasing # of bars."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+crabby_larry_s_brewpub_steak_crab_house-pale_ale,0,0,244482572288,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
+pike_pub_and_brewery-auld_acquaintance_spiced_ale,0,0,245006467072,"{""name"":""Auld Acquaintance Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+brouwerij_abdij_der_trappisten_van_westmalle-westmalle_trappist_tripel,0,0,244482965504,"{""name"":""Westmalle Trappist Tripel"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_der_trappisten_van_westmalle"",""updated"":""2010-07-22 20:00:20"",""description"":""Was first brewed in 1934 and the recipe has not changed since 1956. It is made with pale candy sugar and has a very pale color produced from a mash of light pilsener malts. Styrian Goldings hops are used along with some German varieties and the classic Saaz pilsener hop. After a long secondary fermentation, the Tripel Westmalle is bottled with a dose of sugar and yeast. This beer holds up well in the bottle over time and seems to soften with age."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,22,1
+northwoods_brewpub_grill,0,0,244870283266,"{""name"":""Northwoods Brewpub Grill"",""city"":""Eau Claire"",""state"":""Wisconsin"",""code"":""54701"",""country"":""United States"",""phone"":""1-715-552-0510"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3560 Oakwood Mall Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.7776,""lon"":-91.4433}}",1,32,1
+jolly_pumpkin_artisan_ales-bam_biere,0,0,244743995393,"{""name"":""Bam Bière"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisan farmhouse ale that is golden, naturally cloudy, bottle conditioned and dry hopped for a perfectly refreshing balance of spicy malts, hops and yeast."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,24,1
+hereford_hops_steakhouse_and_brewpub_3-christmas_ale,0,0,244744323074,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+brewery_creek_brewing-dunkel_doppel_weizen_bock,0,0,244482703361,"{""name"":""Dunkel Doppel Weizen Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,21,1
+barley_island_brewing-blind_tiger_pale_ale,0,0,244365983744,"{""name"":""Blind Tiger Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+engine_house_9-belgian_white,0,0,244617707520,"{""name"":""Belgian White"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+skol_breweries,0,0,245002993665,"{""name"":""Skol Breweries"",""city"":""Maharashtra"",""state"":"""",""code"":"""",""country"":""India"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Uran""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":18.88,""lon"":72.94}}",1,53,1
+alesmith_brewing-lil_devil,0,0,244375683072,"{""name"":""Lil Devil"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+golden_valley_brewery_and_pub,0,0,244618100739,"{""name"":""Golden Valley Brewery and Pub"",""city"":""McMinnville"",""state"":""Oregon"",""code"":""97128"",""country"":""United States"",""phone"":""1-503-472-2739"",""website"":""http://www.goldenvalleybrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""980 NE Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.2104,""lon"":-123.189}}",1,27,1
+de_halve_maan-brugse_zot,0,0,244614889472,"{""name"":""Brugse Zot"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""Brugse Zot is a goldenblond beer with a rich froth and a fruity flavouring. The beer is brewed with four different kinds of malt and two aromatic varieties of hop which give the beer its unique taste.\r\nWith an alcochol degrees proof of 6 % Vol it is a well balanced, easy drinking beer with character.\r\nBrugse Zot is a natural beer born out of a selection of only the best ingredients. Thanks to the refermentation in the bottle, the beer has a longer natural life."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,20,1
+pinehurst_village_brewery-double_eagle_brown_ale,0,0,245006467073,"{""name"":""Double Eagle Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
+brouwerij_artois,0,0,244483031040,"{""name"":""Brouwerij Artois"",""city"":""Leuven"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-016-24-71-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vaartstraat 94""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8853,""lon"":4.7008}}",1,22,1
+o_hara_s_brewpub_and_restaurant-quarry_rock_red,0,0,244870283267,"{""name"":""Quarry Rock Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_hara_s_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
+jw_lees_and_co_brewers_ltd-harvest_ale_1998,0,0,244744060928,"{""name"":""Harvest Ale 1998"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,24,1
+highland_brewing_company-st_terese_s_pale_ale,0,0,244744323075,"{""name"":""St.Terese's Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden pale having a slightly malty body balanced by an assertive American hop flavor. This pale ale displays a delicate hop nose due to the process of dry hopping. A crisp and refreshing beer perfect for any occasion.\r\n\r\nIBU: 24\r\nAlcohol content: 5.2% by volume\r\nHops: Chinook and Cascade\r\n\r\nCalories per 12 oz. 170.1\r\nCarbs per 12 oz. 15.65"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+brooklyn_brewery-saison_de_brooklyn,0,0,244482768896,"{""name"":""Saison De Brooklyn"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The second beer of the Brewmaster's reserve line, Saison de Brooklyn is brewed in the style produced by old farmhouse breweries in Belgium and France. Well-hopped and fermented to a crisp dryness, Saisons were brewed in the spring to sustain farmers through the summer. Saison de Brooklyn is boldly hoppy, dry and flinty, with a bright spicy, citric aroma and pillowy white head. This beer has remarkable versatility with food, complementing spicy dishes particularly well."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,21,1
+bayern_brewing-hefeweizen,0,0,244365983745,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayern_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
+f_x_matt_brewing-saranac_single_malt,0,0,244617707521,"{""name"":""Saranac Single Malt"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We use 100% Scottish Maris Otter Malt. Traditionally used in the distilling industry. The combination of the Scottish Malt and slow aging process produces a unique brew as distinctive as single malt whiskey with a flavor than any other beer."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,26,1
+spring_house_brewing_company-goofy_foot_summer_wheat,0,0,245120368640,"{""name"":""Goofy Foot Summer Wheat"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is lighter style and dry to the palate and with the distinct flavor of wheat makes for a perfect thirst-quenching beer. It is the ideal drink for beer drinker who appreciates tradition and personality in their beer, but also seeks a lighter, refreshing style, perfect for the summer months."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,53,1
+amherst_brewing_company-amherst_esb,0,0,244375683073,"{""name"":""Amherst ESB"",""abv"":5.35,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber in color, medium body with very hoppy aroma and bitter finish. Dry hopped with Oregon Goldings"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,46,1
+granite_city_food_brewery_omaha-broad_axe_stout,0,0,244744978432,"{""name"":""Broad Axe Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,27,1
+dock_street_beer-bubbly_wit,0,0,244615020544,"{""name"":""Bubbly Wit"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""A swanky interpretation of a double strength wheat beer, fermented solely by champagne yeast. Notes of tart citrus and white grape soothe the pallet in this sparkling ale."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,20,1
+pleasanton_main_street_brewery,0,0,245006532608,"{""name"":""Pleasanton Main Street Brewery"",""city"":""Pleasanton"",""state"":""California"",""code"":""94566"",""country"":""United States"",""phone"":""1-925-462-8218"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""830 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.6645,""lon"":-121.873}}",1,63,1
+brouwerij_de_keersmaeker-mort_subite_gueuze_lambic,0,0,244483031041,"{""name"":""Mort Subite Gueuze Lambic"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_keersmaeker"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,22,1
+olde_main_brewing-off_kil_ter_scottish_ale,0,0,244870348800,"{""name"":""Off KIL Ter Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_japanese_classic_ale,0,0,244744060929,"{""name"":""Hitachino Nest Japanese Classic Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,24,1
+hops_haven_brew_haus-port_washington_old_port_porter,0,0,244744388608,"{""name"":""Port Washington Old Port Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,25,1
+brouwerij_lindemans-peche_pecheresse,0,0,244482768897,"{""name"":""Pêche / Pecheresse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,21,1
+beamish_crawford,0,0,244365983746,"{""name"":""Beamish & Crawford"",""city"":""Cork"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353-21-911100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""South Main Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.897,""lon"":-8.4769}}",1,23,1
+fitger_s_brewhouse_brewery_and_grill-big_boat_oatmeal_stout,0,0,244617773056,"{""name"":""Big Boat Oatmeal Stout"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
+st_john_brewers,0,0,245120434176,"{""name"":""St John Brewers"",""city"":""St. John"",""state"":""Virgin Islands"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.stjohnbrewers.com/index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":18.3368,""lon"":-64.7281}}",1,53,1
+anacortes_brewing,0,0,244375748608,"{""name"":""Anacortes Brewing"",""city"":""Anacortes"",""state"":""Washington"",""code"":""98221"",""country"":""United States"",""phone"":""360-588-1720"",""website"":""http://www.anacortesrockfish.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our brewers focus on high quality ingredients, a carefully controlled process and delicate handling to provide one of the best beers you will find in the industry. We operate a seven barrel brewery designed and installed by Sound Brewing Systems of Seattle with vessels fabricated by Ripley Stainless in British Columbia. Our brewery features a cold room specially designed for lagering to provide our beers with a traditional character and complexity."",""address"":[""320 Commercial Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.5193,""lon"":-122.613}}",1,46,1
+gray_brewing-bower_city_pale_ale,0,0,244744978433,"{""name"":""Bower City Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+dogfish_head_craft_brewery-punkin_ale,0,0,244615020545,"{""name"":""Punkin Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A full-bodied brown ale with smooth hints of pumpkin and brown sugar. Perfect to warm-up with, as the season cools."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,20,1
+raccoon_river_brewing-barnstormer_pale_ale,0,0,245006532609,"{""name"":""Barnstormer Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,63,1
+brouwerij_liefmans-lucifer,0,0,244483096576,"{""name"":""Lucifer"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+onopa_brewing-oatmeal_stout,0,0,244870348801,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+klosterbru_bamberg-bockbier,0,0,244744060930,"{""name"":""Bockbier"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,24,1
+icobes_b_v_b_a,0,0,244744454144,"{""name"":""ICOBES b.v.b.a."",""city"":""Evergem"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)9-/-253-61-82"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Durmakker 23""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1007,""lon"":3.6934}}",1,25,1
+capital_brewery-capital_maibock,0,0,244482768898,"{""name"":""Capital Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,21,1
+bibiana_brewing-hop_stuffed_pale_ale,0,0,244366049280,"{""name"":""Hop-Stuffed Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bibiana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+flossmoor_station_brewery-panama_limited_red_ale,0,0,244617773057,"{""name"":""Panama Limited Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+staatliches_hofbrauhaus_in_munchen,0,0,245120499712,"{""name"":""Staatliches Hofbräuhaus in München"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-92105-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofbräuallee 1""]}",1,53,1
+angelic_brewing-london_porter,0,0,244375748609,"{""name"":""London Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""angelic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
+great_dane_pub_and_brewing_2-coffee_ale,0,0,244745043968,"{""name"":""Coffee Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+dortmunder_actien_brauerei_dab-hansa_pils,0,0,244615086080,"{""name"":""Hansa Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,20,1
+rahr_sons_brewing_company-iron_thistle,0,0,245006532610,"{""name"":""Iron Thistle"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Break out the bagpipes with your lederhosen! We’re proud to present our Iron Thistle Scotch Ale – Rahr’s first National Grand Champion winner. This dark, Scottish ale has a bold taste dominated by a smooth, sweet maltiness balanced with a low, hoppy bitterness. So don your kilts and enjoy. Here’s to your health – Slàinte! Prosit!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,63,1
+brouwerij_van_steenberge-head_trip,0,0,244483096577,"{""name"":""Head Trip"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweet with some\r\ntropical flavors, some banana, a hint of clove."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,22,1
+oskar_blues_grill_and_brew-mama_s_little_yella_pils,0,0,244870348802,"{""name"":""Mama's Little Yella Pils"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Mama’s Little Yella Pils - Our upcoming new canned good is a small-batch version of the beer that made Pilsen, Czechoslovakia famous. Mama’s is made with hearty amounts of pale malt, German specialty malts, and a blend of traditional (Saaz) and 21st century Bavarian hops. Our first canned lager, it’s also fermented at cool temperatures with a German yeast.\r\n\r\nThis tasteful reality Czech is the perfect antidote for the watered-down versions of pilsner clogging America’s shelves. And Mama’s gentle hopping (about 35 IBUs) and low ABV (just 5.3%) mean we’re finally honoring consumer requests for a delicious but less-challenging beer. (Hey, we like a good low-dose session beer, too.) Look for our Gold Metal Winner on US shelves in March.\r\n\r\nSadly, the Feds rejected our “Take Two and Call Us in the Morning” line on the can."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,32,1
+labatt_ontario_breweries-genuine_lager,0,0,244744060931,"{""name"":""Genuine Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally introduced in 1992, Genuine Lager has evolved into a truly definitive Canadian Lager. Balancing a blend of quality aromatic and bittering hops with its medium body, Genuine Lager is a smooth, refreshing and easy-drinking beer with a subtle hop aroma and a hint of malty sweetness."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
+industrias_la_constancia_ilc-premier,0,0,244744454145,"{""name"":""Premier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+carlsberg_sverige_ab-falcon_lagrad_gammelbrygd,0,0,244482834432,"{""name"":""Falcon Lagrad Gammelbrygd"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_sverige_ab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
+big_boss_brewing_company-angry_angel,0,0,244366049281,"{""name"":""Angry Angel"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_boss_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Kölsch is a refreshingly pale German style Ale. It is cold fermented and cold conditioned to achieve a beautiful balance between biscuit malt flavors and floral hop notes. It is light bodied and finishes somewhat dry to enhance it's easy drinking nature.""}",1,23,1
+frederic_robinson_ltd-double_hop_premium_ale,0,0,244617773058,"{""name"":""Double Hop Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederic_robinson_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+standing_stone_brewing_company-standing_stone_amber_ale,0,0,245120565248,"{""name"":""Standing Stone Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A light copper-colored ale with moderate hoppiness which exhibits a spicy hint of fruit, notable maltiness and a medium body."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,53,1
+australian_brewing_corporation,0,0,244375748610,"{""name"":""Australian Brewing Corporation"",""city"":""Little River"",""state"":""Victoria"",""code"":""3211"",""country"":""Australia"",""phone"":""+61 (03) 5283 1161"",""website"":""http://www.australianbrewingcorporation.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""229-255 Old Melbourne Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-37.968,""lon"":144.525}}",1,46,1
+heavenly_daze_brewery_and_grill-daze_scottish_ale,0,0,244745043969,"{""name"":""Daze Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+dubuque_brewing_and_bottling-champions_clubhouse_classic,0,0,244615086081,"{""name"":""Champions Clubhouse Classic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dubuque_brewing_and_bottling"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,20,1
+red_lodge_ales-bent_nail_ipa,0,0,245006532611,"{""name"":""Bent Nail IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_lodge_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,63,1
+budjovick_budvar,0,0,244483096578,"{""name"":""Budjovick Budvar"",""city"":""esk Budjovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-387-705-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Karoliny Svtl 4""]}",1,22,1
+penn_brewery,0,0,244993556480,"{""name"":""Penn Brewery"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15212"",""country"":""United States"",""phone"":""412-237-9400"",""website"":""http://www.pennbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Pennsylvania Brewing Company, founded in 1986 by Tom Pastorius to brew authentic German beers, was the first craft brewer in Pennsylvania and a pioneer in the microbrewery movement. The brewery and its restaurant are located in the former Eberhardt and Ober Brewery in the historic Deutschtown section of Pittsburgh's North Side, where beer has been made since 1848. The buildings are listed on the National Register of Historic Sites. Penn Brewery is an authentic German brewery in every detail; from its solid copper brewhouse imported from Germany, fermentation and aging tanks, filtration equipment, kegging and bottling equipment to its imported ingredients, recipes, methods and German brewmaster. All beers are made in accordance with the German beer purity law called the Reinheitsgebot which means that only the four classic ingredients are used in our beer: malted barley (and/or wheat), hops, water and yeast. Adjuncts such as corn and rice are never used. Preservatives and stabilizers are never used. High gravity brewing is never done. Just real, honest, all natural beer made the way it's made in Germany!"",""address"":[""800 Vinial St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4569,""lon"":-79.9915}}",1,32,1
+alaskan_brewing,0,0,244376076288,"{""name"":""Alaskan Brewing"",""city"":""Juneau"",""state"":""Alaska"",""code"":""99801"",""country"":""United States"",""phone"":""1-907-780-5866"",""website"":""http://www.alaskanbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The popularity of our beers has led to heroic efforts to keep up with the demand. We claim the unofficial record for production on a 10 barrel brewing system, with a whopping 42 batches in a single week. The addition of a new, 100-barrel brewhouse in 1995, and a Sankey-type keg system installed the following year, finally made it possible for us to serve the entire Pacific Northwest and later the Desert Southwest. Brewing beer in Alaska isn't easy. In the coastal community of Juneau, without road connections to the lower 48 states, everything arrives and leaves by water or air, and the weather always has the last word. We have learned to coordinate shipments for barges that couldn't dock in high winds, ferries that broke down, airplanes that overheaded, and trucks delayed by spring thaws that turned the roads to mush. We learned which suppliers were willing to airlift supplies and spare parts on short notice (at $1 per pound). We mastered wiring, plumbing, waste disposal and air quality control. We discovered that, if you had to, you could pour concrete in January by thawing the ground with heaters. Ah, but it all seems worthwhile if you can go home to a dinner of king crab or fresh halibut."",""address"":[""5429 Shaune Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":58.3573,""lon"":-134.49}}",1,47,1
+lancaster_brewing_co-shoo_fly_porter,0,0,244744126464,"{""name"":""Shoo-Fly Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Lancaster Brewing Company’s newest release is their limited series of Shoo-Fly Porter. From the heart of Pennsylvania Dutch Country comes a delicious porter made with Lancaster County molasses, eight different malts and grains, and four different styles of hops. This beer has a deep, rich, brown color, medium to full body, and finishes with a smooth mouth feel."",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+ithaca_beer_company-cascazilla,0,0,244744454146,"{""name"":""Cascazilla"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The name CascaZilla is a play on both the name of our local Cascadilla Gorge and the monster amounts of Cascade hops in this beer. This red ale gets its distinctive color from a healthy portion of caramel malt, which also lends some body and sweetness to the beer. The predominant flavor and aroma of this beer, however, is brought to you by the fresh American hops. If you haven't done so yet, treat yourself to Ithaca Beer's new monstrously hoppy Red Ale."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
+cervejaria_sudbrack-eisenbahn_dourada,0,0,244482834433,"{""name"":""Eisenbahn Dourada"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+big_horn_brewing_the_ram_2,0,0,244366114816,"{""name"":""Big Horn Brewing @ The RAM 2"",""city"":""Wheeling"",""state"":""Illinois"",""code"":""60090"",""country"":""United States"",""phone"":""1-847-520-1222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""700 North Milwaukee Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1511,""lon"":-87.9144}}",1,23,1
+front_street_brewery-cherry_ale,0,0,244617838592,"{""name"":""Cherry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,26,1
+standing_stone_brewing_company-standing_stone_hefeweizen,0,0,245120565249,"{""name"":""Standing Stone Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This unfiltered wheat ale has very low bitterness. A Bavarian hefeweizen yeast is used which imparts a banana and clove aroma."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
+ballast_point_brewing-big_eye_ipa,0,0,244375814144,"{""name"":""Big Eye IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""ndia Pale Ale is a style of beer that was developed in England during the period of the British Empire. It is derived from bitter ales but contains even more alcohol and hops. This helped preserve the beer on its long sea journey around Cape Hope to India.\r\n\r\nBritish troops returning from India brought their love of this beer back with them so breweries began brewing it for the home market as well. Sadly, the style had mostly died out in England by the late twentieth century.\r\n\r\nAmerican home brewers began to brew I.P.A. because of their love for the intense hoppiness of the style. In time American I.P.A.s became much more aggressively bitter and hoppy than their historical predecessors.\r\n\r\nBig Eye I.P.A. is our version of this wonderful style. American Centennial hops are used exclusively to bitter, flavor, finish, and dry hop the Big Eye. Its full hop flavor is guaranteed to please the palate of the true hop head."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
+heineken_switzerland-original_ittinger_klosterbrau,0,0,244745043970,"{""name"":""Original Ittinger Klosterbräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_switzerland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+dunedin_brewery,0,0,244615151616,"{""name"":""Dunedin Brewery"",""city"":""Dunedin"",""state"":"""",""code"":""34698"",""country"":""United States"",""phone"":""727 736 0606"",""website"":""http://www.dunedinbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""From their webpage - Fermenting since 1996 and still going strong, we handcraft all of our ales for your enjoyment from our Piper's Pale Ale to our Apricot Wheat. Located on the west coast of Florida in the Scottish heritage town of Dunedin, Florida we work hard to produce quality ales for our thirsty friends all over Florida. With 9 ales brewed year round and 5 or more seasonal offerings throughout the year there is sure to be be an ale to fit your taste!"",""address"":[""937 Douglas Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.014,""lon"":-82.7876}}",1,20,1
+redhook_ale_brewery-blonde_ale,0,0,245006598144,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+caledonian_brewing-golden_promise_traditional_scottish_ale,0,0,244483162112,"{""name"":""Golden Promise Traditional Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caledonian_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+port_brewing_company,0,0,244993556481,"{""name"":""Port Brewing Company"",""city"":""San Marcos"",""state"":""California"",""code"":""92069"",""country"":""United States"",""phone"":""(760) 891-0272"",""website"":""http://www.portbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We officially opened on May 5th 2006. Now we will be able to make up to 5000 barrels of beer enabling you more chances to drink your favorite Port Brewed beers at home and around town. More impressive is our oak barrel room where we age our barrel aged specialty beers. Come check out our tasting bar on Fridays and Saturdays where you can get bottles, jugs & merchandise to go while you sample what we've been brewing!"",""address"":[""155 Mata Way Suite 104""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.1406,""lon"":-117.15}}",1,32,1
+ali_i_brewing-pau_hana_porter,0,0,244376076289,"{""name"":""Pau Hana Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
+little_creatures_brewery,0,0,244867072000,"{""name"":""Little Creatures Brewery"",""city"":""Fremantle"",""state"":""WA"",""code"":""6160"",""country"":""Australia"",""phone"":""+61 8 9430 5155"",""website"":""http://www.littlecreatures.com.au/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""40 Mews Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-32.0597,""lon"":115.745}}",1,24,1
+ithaca_beer_company-pale_ale,0,0,244744519680,"{""name"":""Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Made with generous amounts of west coast hops, our Pale Ale boasts a fragrant aroma and a pleasant hop bite. It has a deep golden color, and nicely balances the bitterness of the hops with the sweetness of the malt. Whether you know hops or not, our Pale Ale will appeal to all those looking for a refreshing, well balanced ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+charles_wells_ltd,0,0,244482834434,"{""name"":""Charles Wells Ltd."",""city"":""Bedford"",""state"":""Bedford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01234)-272766"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Havelock Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.1321,""lon"":-0.4815}}",1,21,1
+brasserie_d_ecaussinnes-ultra_ambree,0,0,244366114817,"{""name"":""Ultra Ambrée"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_ecaussinnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+goose_island_beer_company_clybourn-smooth_india_pale_ale,0,0,244617838593,"{""name"":""Smooth India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+standing_stone_brewing_company-standing_stone_saison,0,0,245120565250,"{""name"":""Standing Stone Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian \""seasonal\"" ale brewed during winter for the spring and summer months. This is a crisp, refreshing beer with hints of spice and fruit."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,53,1
+bass_brewers-ale,0,0,244375814145,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bass_brewers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+highland_brewing_company-gaelic_ale,0,0,244745109504,"{""name"":""Gaelic Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep amber colored American ale, featuring a rich malty body. Cascade and Willamette hops add a complex hop flavor and aroma. This ale is exceptionally balanced between malty sweetness and delicate hop bitterness.\r\n\r\nIBU: 32\r\nAlcohol content: 5.8% by volume\r\nHops: Chinook, Willamette and Cascade\r\n\r\nCalories per 12 oz. 172.5\r\nCarbs per 12 oz. 17.86"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,27,1
+egan_brewing-rye_i_oughta,0,0,244615151617,"{""name"":""Rye I Oughta...!"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
+ridgeway_brewing-seriously_bad_elf,0,0,245006598145,"{""name"":""Seriously Bad Elf"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+capital_brewery-capital_rustic_ale,0,0,244483162113,"{""name"":""Capital Rustic Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+port_washington_brewing-pier_96_lager,0,0,244993622016,"{""name"":""Pier 96 Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
+america_s_brewing-hemp_ale,0,0,244376141824,"{""name"":""Hemp Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+long_trail_brewing_co-belgian_white,0,0,244867137536,"{""name"":""Belgian White"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Belgian White Ale is modeled after the original Belgian Witbiers brewed in monasteries during the early 14th century. The soft notes of citrus and spice are topped with a light, fluffy head that finishes clean and crisp. This all natural ale is our latest seasonal brew, perfect for lounging lake-side or celebrating at trail's end."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,24,1
+jack_russell_brewing,0,0,244744519681,"{""name"":""Jack Russell Brewing"",""city"":""Camino"",""state"":""California"",""code"":""95709"",""country"":""United States"",""phone"":""1-877-457-2725"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2380 Larsen Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.7563,""lon"":-120.679}}",1,25,1
+coach_s_norman,0,0,244482899968,"{""name"":""Coach's Norman"",""city"":""Norman"",""state"":""Oklahoma"",""code"":""73069"",""country"":""United States"",""phone"":""1-405-360-5726"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 West Main""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.2205,""lon"":-97.4439}}",1,21,1
+brauerei_aying_franz_inselkammer_kg-oktober_fest_marzen,0,0,244483293184,"{""name"":""Oktober Fest - Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,23,1
+goose_island_beer_company_fulton_street-oktoberfest,0,0,244617838594,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,26,1
+steamworks-heroica_oatmeal_stout,0,0,245120565251,"{""name"":""Heroica Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""There are some things in life that require a certain sense of bravado: these might include ordering a quadruple espresso, deciding to sleep without a nightlight, or choosing to live in a region of the continent that is gradually sinking into the Pacific Ocean. If you're no longer scared of the dark, then there's no reason to be afraid of our stout. A generous portion of rolled oats and lots of black roasted barley give this beer a warm, roasted nose, and a distinct dryness that succumbs to waves of lingering satisfaction."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,53,1
+bbc_brewing_co_llc-hoppy_hefe,0,0,244375814146,"{""name"":""Hoppy Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""It is a nice example of a Hefeweizen."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
+hoppin_frog_brewery-frog_s_hollow_double_pumpkin_ale,0,0,244745109505,"{""name"":""Frog's Hollow Double Pumpkin Ale"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""There's a Place just south they call Frog's Hollow, with cauldrons afire in Fall, and they only speak in whispers of the name. There's a brewery they say who has the secret, of spices picked just right. With a crying shout, they'll knock it out, and hand you this Frog's delight."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,27,1
+elysian_brewery_public_house-bifrost_winter_ale,0,0,244615151618,"{""name"":""BiFröst Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
+rock_bottom_restaurant_brewery_denver,0,0,245006598146,"{""name"":""Rock Bottom Restaurant & Brewery - Denver"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-534-7616"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1001 16th Street #A-100""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7472,""lon"":-104.995}}",1,63,1
+celis_brewery-pale_rider,0,0,244483227648,"{""name"":""Pale Rider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh-weisse_hefe_weizen,0,0,244993622017,"{""name"":""Weisse Hefe-Weizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
+anchor_brewing-old_foghorn_2006,0,0,244376141825,"{""name"":""Old Foghorn 2006"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+magic_hat-odd_notion_summer_08,0,0,244867203072,"{""name"":""Odd Notion Summer 08"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A stupendous Midland Mild Ale whose epic malt infused acts of sweet caramel sensations leave all who pour it speechless. Its roasted notes of sun soaked grain are appearing in the Summer Variety Show in a not to be missed engagement. Brewed with Belgian Candi Sugar.""}",1,24,1
+jolly_pumpkin_artisan_ales-bam_noire,0,0,244744519682,"{""name"":""Bam Noire"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, smooth, delicious. Aromas of worn leather and cool autumn nights. Notes of sweet plum and toasted raisin, hints of coffee and cacao. Lingering tart and refreshing finish. Only available for a few short months. Not to be missed."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,25,1
+cold_spring_brewing,0,0,244482899969,"{""name"":""Cold Spring Brewing"",""city"":""Cold Spring"",""state"":""Minnesota"",""code"":""56320"",""country"":""United States"",""phone"":""1-320-685-8686"",""website"":""http://www.coldspringbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Cold Spring Brewery in Cold Spring is on the original Red River trail. Used by the pioneering trail blazers, trappers and settlers to replenish water supplies from the pure cold spring which the town is named today. The spring is one of the purest sources of water in North America. The spring comes from an underground prehistoric glacial lake filtered through granite over hundreds of years. There are certain pure elements in the water that are absolutely perfect for brewing world class beers. The brewery has been modernized and rebuilt over the past several years, and is now a state-of-the-art brewery and beverage product development and production facility."",""address"":[""219 Red River Avenue North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4582,""lon"":-94.4291}}",1,21,1
+brauerei_schwelm-pils,0,0,244483358720,"{""name"":""Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schwelm"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+gordon_biersch_brewing-blonde_bock,0,0,244617904128,"{""name"":""Blonde Bock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
+steamworks-pilsner,0,0,245120565252,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Pilsner is a true beer drinker's beer inspired by the first golden lagers brewed in the Czech town of Pilsn. This full-bodied lager is hopped with copious amounts of Sterling hops, lending it a refreshing, citrusy finish."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,53,1
+bell_s_brewery_inc-special_double_cream_stout,0,0,244375879680,"{""name"":""Special Double Cream Stout"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweeter and smoother than Kalamazoo Stout. A beer for special winter occasions. Great with chocolate desserts."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,46,1
+issaquah_brewhouse-farm_frog,0,0,244745109506,"{""name"":""Farm Frog"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+emery_pub-amber,0,0,244615217152,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emery_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
+rock_bottom_restaurant_brewery_minneapolis-st_paul_pilsner,0,0,245006663680,"{""name"":""St. Paul Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+city_brewing_company_llc-lager_beer,0,0,244483227649,"{""name"":""Lager Beer"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
+reaperale-mortality_stout,0,0,244993687552,"{""name"":""Mortality Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""reaperale"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+appalachian_brewing_company-dom_blonde_kolsch,0,0,244376141826,"{""name"":""Dom Blonde Kölsch"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The first in a series of two new specialty beers coming this year! This Kölsch-styled ale is clean, crisp, and delicately balanced. It has very subtle pear flavors and aromas. The subdued maltiness leads to a pleasantly refreshing finish. A fantastic summer brew!\r\n\r\nThe Kölner Dom (Cologne Cathedral), is one of the best-known architectural monuments in Germany and has been Cologne's most famous landmark since its completion in the late 19th century. True Kölsch can only be brewed if the brewery has a view of this famous cathedral, thus its’ appearance on our tap markers.""}",1,47,1
+marin_brewing-point_reyes_porter,0,0,244867203073,"{""name"":""Point Reyes Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+jt_whitney_s_brewpub_and_eatery-raspy_raspberry_weiss,0,0,244744519683,"{""name"":""Raspy Raspberry Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,25,1
+courage_brewery,0,0,244482899970,"{""name"":""Courage Brewery"",""city"":""Tadcaster"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01937)-832091"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tadcaster LS24 9SA""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.8846,""lon"":-1.2652}}",1,21,1
+brouwerij_bavik_de_brabandere-petrus_oud_bruin,0,0,244483358721,"{""name"":""Petrus Oud Bruin"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+grupo_modelo-corona_extra,0,0,244744585216,"{""name"":""Corona Extra"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+sturgeon_bay_brewing-last_stop_stout,0,0,245120630784,"{""name"":""Last Stop Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,53,1
+bierbrouwerij_de_koningshoeven-tilburg_s_dutch_brown_ale,0,0,244375879681,"{""name"":""Tilburg's Dutch Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,46,1
+jacob_leinenkugel_brewing_company-leinenkugel_s_berry_weiss,0,0,244745175040,"{""name"":""Leinenkugel's Berry Weiss"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
+f_x_matt_brewing-saranac_bock,0,0,244615217153,"{""name"":""Saranac Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Bock is not from the bottom of the barrel! It is a rich malty beer brewed with traditional German ingredients and aged for months to give it a smooth malty character. Look for a rich full-bodied beer."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,20,1
+rogue_ales-kells_irish_style_lager,0,0,245006663681,"{""name"":""Kells Irish Style Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1998 the McAleese Brothers, owners of Kells Irish Pubs in Portland, OR, Seattle, WA, and San Francisco, CA, wanted to make an American beer that would float Guinness. \r\n\r\nGerard and Patrick McAleese asked John Maier to create a beer with a green apple bite flavor profile. It took four batches to get it just right. John used acidulated malts imported from Europe to get the crisp, lemony/apple flavor the McAleese Brothers wanted. The bottle label reflects the McAleese family heritage, puctures the Kells Irish Pub logo, and a traditional Irish flutist. \r\n\r\nThe first Kells Irish Pub opened in Seattle in October 1983 in Post Alley, above the historic Pike Place Market. The restaurant will remind you of the Old Country with its warm, cozy atmosphere and traditional surroundings. Theres also a patio outside thats a great place to feel the breeze from the Puget Sound and the buzz from the Market. Kells has Seattles largest selection of Single Malt Scotch. \r\n\r\nThe Kells Irish Pub in Portland is a local landmark and has been named the #1 Irish Entertainment venue in America. Sit by the fire, belly up to the bar, check out the cigar room, and dont miss the St. Patricks Day Festival, the largest Irish Fest in Oregon. \r\n\r\nThe Pub in San Francisco is next to the historic North Beach neighborhood and reflects the Old World charm and hospitality the McAleese family brought with them from Ireland. \r\n\r\nKells Irish Lager has won world-wide acclaim by winning 8 medals from the World Beer Championship and a Gold Medal at the Australian International Beer Awards. \r\n\r\nKells Irish Lager is brewed with 7 ingredients: Great Western Pale, Crystal, Wheat and Acidulated Malts; Sterling Hops; Free Range COastal Water and Czech Pilsner Yeast."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+clner_hofbrau_frh-kolsch,0,0,244483227650,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clner_hofbrau_frh"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+richbrau_brewing_company-old_nick_pale_ale,0,0,244993687553,"{""name"":""Old Nick Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our pale ale is located toward the lighter side of the beer spectrum and we hope it will serve as a stepping stone into the more flavorful world of craft beer. Amber, caramel, fruity, hoppy and bitter."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
+arcadia_brewing,0,0,244376207360,"{""name"":""Arcadia Brewing"",""city"":""Battle Creek"",""state"":""Michigan"",""code"":""49017"",""country"":""United States"",""phone"":""1-269-963-9690"",""website"":""http://www.arcadiaales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""103 West Michigan Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.322,""lon"":-85.1851}}",1,47,1
+mckenzie_brew_house-light_lager,0,0,244867203074,"{""name"":""Light Lager"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
+karl_strauss_brewery_gardens_sorrento_mesa-downtown_after_dark,0,0,244744585216,"{""name"":""Downtown After Dark"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
+crescent_city_brewhouse-weiss_beer,0,0,244482899971,"{""name"":""Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
+brouwerij_de_landtsheer-malheur_10,0,0,244483424256,"{""name"":""Malheur 10"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+harpoon_brewery_boston-harpoon_winter_warmer,0,0,244744650752,"{""name"":""Harpoon Winter Warmer"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Winter Warmer was Harpoon’s first seasonal beer. It was designed to be enjoyed during the holiday season. \r\n\r\nWhen you bring a glass of this dark copper ale to your lips to take your first sip you will notice the aroma of cinnamon. There is no aromatic hop added that might overpower the distinct spice scent. The medium body of this beer is formed from caramel and pale malts. These create enough body to support the spices without making the beer excessively rich. Bittering hops are added to counter the sweetness of the malt and spice. The finish of the beer is a blend of cinnamon and nutmeg. The combination of these two spices results in a balanced, pumpkin-pie flavor. \r\n\r\nThe overall character is a smooth, medium bodied ale spiced with cinnamon and nutmeg"",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,26,1
+alaskan_brewing-alaskan_smoked_porter,0,0,244375027712,"{""name"":""Alaskan Smoked Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Smoked Beer. Known as \""rauchbier\"" in Germany, smoke-flavored beers were virtually unknown in the U.S. until Alaskan Smoked Porter was developed in 1988.\r\n\r\nThe dark, robust body and pronounced smoky flavor of this limited edition beer make it an adventuresome taste experience. Alaskan Smoked porter is produced in limited \""vintages\"" each year and unlike most beers, may be aged in the bottle much like fine wine.\r\n\r\nWater, five types of malt, 2 varieties of hops and yeast with no adjuncts, no preservatives and no pasteurization. Our glacier-fed water originates in the 1,500 square-mile Juneau Ice Field. Prior to brewing, selected malts are smoked in small batches under carefully controlled conditions in a commercial food smoker using local alder wood."",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
+tempo,0,0,245120630785,"{""name"":""Tempo"",""city"":"""",""state"":"""",""code"":"""",""country"":""Israel"",""phone"":"""",""website"":""http://www.tempo.co.il/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,53,1
+bison_brewing-red_oak_ale,0,0,244375879682,"{""name"":""Red Oak Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+jasper_ridge_brewery-red_earth_pale_ale,0,0,244745240576,"{""name"":""Red Earth Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+flossmoor_station_brewery-imperial_eclipse_stout,0,0,244615217154,"{""name"":""Imperial Eclipse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
+roost_brewery-esb,0,0,245006729216,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+cold_spring_brewing-hefe_weiss,0,0,244483227651,"{""name"":""Hefe Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cold_spring_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
+ridgeway_brewing-ivanhoe,0,0,244993687554,"{""name"":""Ivanhoe"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
+avery_brewing_company-dugana_ipa,0,0,244376207361,"{""name"":""DuganA IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Lupulin Rapture Incarnate! As fervent devotees of hops, we found ourselves on a quest to create a transcendental IPA capable of quenching our voracious lupulin desires. Our mantra became \""unity of bitterness, hop flavor and aroma.\"" Enlightened, duganA IPA was born: A brutally bitter, dank, piney and resinous ale designed for those seeking a divine hop experience."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,47,1
+midnight_sun_brewing_co-arctic_rhino_coffee_porter,0,0,244867268608,"{""name"":""Arctic Rhino Coffee Porter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by local artist & roaster Michael Allen's eccentricly-named blend of coffee beans, Midnight Sun's brewers designed a beer recipe and infusion process that perfectly captures the alluring aroma, satisfying flavor and curious legend of Allen's Arctic Rhino Coffee. \r\n\r\nArctic Rhino Coffee Porter combines two quintessential Pacific Northwest favorites: coffee and ale. The result is wonderfully romantic and robust--a duel-fueled porter that melds charismatic dark malt with freshly roasted coffee beans. The (un)rest is up to you."",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+lakefront_brewery-riverwest_stein_beer,0,0,244744585217,"{""name"":""Riverwest Stein Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Delicious"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+dick_s_brewing-barley_wine_ale,0,0,244615282688,"{""name"":""Barley Wine Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+brouwerij_duvel_moortgat,0,0,244483424257,"{""name"":""Brouwerij Duvel Moortgat"",""city"":""Breendonk"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""oday, the Duvel Moortgat group, founded in 1871, is an independent producer of authentic speciality beers and premium brands. Around the world, the group is considered to be the leading producer of blond, bottle conditioned, high fermentation beers, a dominant position owed largely to the success of its best-selling product Duvel. A niche player, Duvel Moortgat occupies a leading position in the strategic segments of speciality beers and premium brands like Duvel, Maredsous, Bel Pils and Vedett. The group markets Steendonk white beer in a joint venture with the Palm brewery. Duvel Moortgat has also entered the market of natural fruit juices with a 70% participation in the quality juice producer Freya. Today, the group's beers are exported to over 40 countries. Duvel Moortgat has also taken a firm foothold in Central Europe, thanks to a 50% participation in the Czech Bernard brewery, renowned for its premium Pilsners. The group has launched itself into the market of artisan premium beers through the acquisition of the American Ommegang brewery. Duvel Moortgat has also been listed on the Brussels Euronext stock exchange since 1999."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2206,""lon"":4.3997}}",1,23,1
+hida_takayama_brewing_agricultural_company,0,0,244744650753,"{""name"":""Hida Takayama Brewing Agricultural Company"",""city"":""Takayama"",""state"":""Chubu"",""code"":"""",""country"":""Japan"",""phone"":""81-0577-35-0365"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""999 Matsumoto-cho""]}",1,26,1
+allagash_brewing-double_ale,0,0,244375093248,"{""name"":""Double Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+titletown_brewing-toasted_oats_molasses_brown_ale,0,0,245120630786,"{""name"":""Toasted Oats & Molasses Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,53,1
+boston_beer_company-samuel_adams_coastal_wheat,0,0,244375945216,"{""name"":""Samuel Adams Coastal Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""For our take on the classic hefeweizen style our search for unique ingredients led us to the Eureka and Lisbon varieties of lemon grown in three different regions of California. These particular lemons added the perfect balance of citrus tartness and sweetness to accent the taste of the beer. The spiciness of the Hallertau Mittelfruh and Spalt Spalter hops balance out the slightly sweet character of our brewery’s own signature wheat malt, resulting in a crisp and refreshing wheat beer with a subtle lemon aroma and flavor."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
+jobber_s_canyon_restaurant_brewery-porter,0,0,244745240577,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jobber_s_canyon_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,27,1
+fuller_smith_turner_pbc-1845_celebration_ale,0,0,244615217155,"{""name"":""1845 Celebration Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+russian_river_brewing-pliny_the_elder,0,0,245006729217,"{""name"":""Pliny the Elder"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true leader in the hop-wars of the west coast, Pliny the Elder hits you over the head with hoppy bitterness and manages to smooth the rough edges out enough to become an enjoyable brew."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,63,1
+crane_river_brewpub_and_cafe-carhenge_wheat,0,0,244483293184,"{""name"":""Carhenge Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+rio_salado_brewing,0,0,244993687555,"{""name"":""Rio Salado Brewing"",""city"":""Tempe"",""state"":""Arizona"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.4148,""lon"":-111.909}}",1,32,1
+bavarian_barbarian_brewing_company-2x4_india_pale_ale,0,0,244376207362,"{""name"":""2x4 India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""2x4 India Pale Ale (7% ABV, 65 IBUs) sports Columbus, Nugget and Amarillo hops for a spicy, citrusy blend in both flavor and aroma. Backed by golden pale malts and a kick from flaked rye, the hops are pleasantly robust with just the right touch of bitterness at the end."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,47,1
+miller_brewing-milwaukees_best,0,0,244867268609,"{""name"":""Milwaukees Best"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,24,1
+marin_brewing-triple_dipsea_belgian,0,0,244867530752,"{""name"":""Triple Dipsea Belgian"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+dick_s_brewing-ipa,0,0,244615348224,"{""name"":""IPA"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,21,1
+brouwerij_st_bernardus-grotten_flemish_ale,0,0,244483489792,"{""name"":""Grotten Flemish Ale"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,23,1
+highland_brewing_company-black_mountain_bitter,0,0,244744716288,"{""name"":""Black Mountain Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A style of Pale Ale, Black Mountain Bitter will be lightly hopped with traditional British hop varieties to balance the malt sweetness yet encourage it to tend toward the dry side. We recently received our organic certification from Clemson University after undergoing a rigid inspection and two-month compliance process. Although this represents a big step for Highland, the idea of an all organic product is consistent with our corporate ethos and embrace of natural traditional brewing methods."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,26,1
+amherst_brewing_company-two_sisters_imperial_stout,0,0,244375158784,"{""name"":""Two Sisters Imperial Stout"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, rich, hearty, smooth and chocolaty. The two siloettes on the logo are Marina and Kshusha adopted from Russia by Amherst Brewing Company's owners, John and Terrie."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
+traquair_house_brewery-jacobite_ale,0,0,245120630787,"{""name"":""Jacobite Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traquair_house_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+boston_beer_company-samuel_adams_octoberfest,0,0,244375945217,"{""name"":""Samuel Adams OctoberFest"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The first thing you notice when pouring a glass of this seasonal beer is the color. Samuel Adams® Octoberfest has a rich, deep golden amber hue which itself is reflective of the season. Samuel Adams® Octoberfest is a malt lover's dream, masterfully blending together five roasts of barley to create a delicious harmony of sweet flavors including caramel and toffee. The beer is kept from being overly sweet by the elegant bitterness imparted by the German Noble hops. Samuel Adams® Octoberfest provides a wonderful transition from the lighter beers of summer to the winter's heartier brews."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,46,1
+kross_brewing-brueghel_blonde,0,0,244745240578,"{""name"":""Brueghel Blonde"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kross_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,27,1
+goose_island_beer_company_clybourn-barleywine,0,0,244615282688,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+smuttynose_brewing_co-old_brown_dog_ale,0,0,245123973120,"{""name"":""Old Brown Dog Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Brown Dog has been cited as a classic example of the “American Brown Ale” style of beer. Compared to a typical English Brown Ale, Old Brown Dog is fuller-bodied and more strongly hopped.\r\n\r\nOld Brown Dog has been around for many years. It was first brewed in 1988 at the Northampton Brewery. In 1989 it won a silver medal in its category (American Brown Ale) at the Great American Beer Festival in Denver."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,63,1
+amicas_pizza_microbrews_and_more-loyal_duke_scotch_ale,0,0,244376272896,"{""name"":""Loyal Duke Scotch Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amicas_pizza_microbrews_and_more"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,48,1
+de_proef_brouwerij-flemish_primitive_wild_ale_demon_fish,0,0,244615741440,"{""name"":""Flemish Primitive Wild Ale (Demon Fish)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+salopian_brewery-entire_butt_english_porter,0,0,244993753088,"{""name"":""Entire Butt English Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salopian_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,32,1
+beermann_s_beerwerks_brewpub,0,0,244376207363,"{""name"":""Beermann's Beerwerks BrewPub"",""city"":""Lincoln"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8916,""lon"":-121.293}}",1,47,1
+milwaukee_ale_house-session_ale,0,0,244867268610,"{""name"":""Session Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,24,1
+marzoni_s_brick_oven_brewing_co-highway_22_wheat,0,0,244867596288,"{""name"":""Highway 22 Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Light-Bodied, Pleasantly Tart, American-Style Wheat"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,25,1
+el_ahram_company-stella,0,0,244615348225,"{""name"":""stella"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""el_ahram_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Stella is the most famous brand of beer in Egypt. It has been manufactured in Egypt since the 19th century and so many Egyptian, and actually many experienced travelers, prefer it to any other kind of beer. One will not find a single bar in Egypt that doesn’t sell Stella or even have the Stella logo on the bar or shop. Stella can even be found in many bars in Europe""}",1,21,1
+cambridge_brewing-wheaten_ale,0,0,244483489793,"{""name"":""Wheaten Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
+iron_hill_brewery_newark-pig_iron_porter,0,0,244744781824,"{""name"":""Pig Iron Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_newark"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+appleton_brewing-adler_brau_fox_classic_river_ale,0,0,244375158785,"{""name"":""Adler Bräu Fox Classic River Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+victory_brewing-sunrise_weissbier,0,0,245751480320,"{""name"":""Sunrise Weissbier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""As invigorating as the morning rays of the summer sun, Sunrise Weissbier satisfies when the heat is on, too. This unfiltered, Bavarian style ale is true to its origins with all ingredients except for the water having been imported from Germany. It remains unfiltered to feature the tangy, fruity flavors of its unique yeast. The imported German malt contributes greatly to add a crisp, citric snap that makes this beer a superb summertime refresher."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,53,1
+boston_beer_works-fenway_american_pale_ale,0,0,244376010752,"{""name"":""Fenway American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+kulmbacher_brauerei_ag-reichelbrau_eisbock,0,0,244745240579,"{""name"":""Reichelbräu Eisbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
+govnor_s_public_house-shamrock_stout,0,0,244741963776,"{""name"":""Shamrock Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
+spaten_franziskaner_brau-franziskaner_hefe_weissbier_hell_franziskaner_club_weiss,0,0,245124038656,"{""name"":""Franziskaner Hefe-Weissbier Hell / Franziskaner Club-Weiss"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,63,1
+appalachian_brewing_company-celtic_knot_irish_red,0,0,244376338432,"{""name"":""Celtic Knot Irish Red"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This wonderful red ale has a perfect balance of hops and malt. The clean finish will leave your palate begging for more."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+deschutes_brewery-inversion_ipa,0,0,244615806976,"{""name"":""Inversion IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""After several months of experimentation, energy and obsession, Deschutes Brewery’s brewers have triumphed once again. Inversion I.P.A.'s trio of American hops delivers an over-the-top nose with hints of orange and grapefruit. Inversion is then dry-hopped for seven days resulting in an added hoppy kick. To balance the hop character, Deschutes’ brewers used crystal and caraston malts that weave throughout the beer providing soft, complex caramel flavors. \r\n\r\nJust like clear days up on the mountain, Inversion I.P.A. will deliver a path to higher ground. Inversion I.P.A. is a phenomenal NW-style I.P.A., beckoning all beer drinkers and enticing I.P.A. lovers to invert their world and find clarity above the routine of the everyday."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,22,1
+sandlot_brewery_at_coors_field-barleywine,0,0,244993818624,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sandlot_brewery_at_coors_field"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+black_toad_brewing_company,0,0,244376207364,"{""name"":""Black Toad Brewing Company"",""city"":""Chicago"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chicago IL 60612""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8817,""lon"":-87.6926}}",1,47,1
+mogollon_brewing_company,0,0,244867334144,"{""name"":""Mogollon Brewing Company"",""city"":""Flagstaff"",""state"":""Arizona"",""code"":""86001"",""country"":""United States"",""phone"":"""",""website"":""http://www.mogbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mogollon Brewing Company, LLC, and High Spirits Distillery is a small, 20 bbl micro brewery and distillery. Our beers and spirits are hand crafted from the finest ingredients available and we use pure mountain water. The artwork found on our labels is the embodiment of, and is inspired by, Northern Arizona wildlife. Mogollon Brewing takes its name from the Mogollon Plateau which sits at 7000 feet above sea level. We are now located at 4366 Huntington Drive in Flagstaff, AZ. This is a brand new 4500 square foot building designed and built specifically for brewing beer and distilling spirits."",""address"":[""4366 Huntington Dr""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.2156,""lon"":-111.59}}",1,24,1
+mckenzie_brew_house-abbey_8,0,0,244867596289,"{""name"":""Abbey 8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+elk_creek_cafe_and_aleworks-brookie_brown_ale,0,0,244615348226,"{""name"":""Brookie Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Proof that all dark beers, like trout, are not created equal. Chocolate and caramel malt flavors are at the heart of this very accessible and drinkable brown ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,21,1
+catamount_brewing,0,0,244483489794,"{""name"":""Catamount Brewing"",""city"":""White River Junction"",""state"":""Vermont"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.649,""lon"":-72.3193}}",1,23,1
+iron_springs_pub_brewery-casey_jones_imperial_ipa,0,0,244744781825,"{""name"":""Casey Jones Imperial IPA"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,26,1
+atlanta_brewing_company,0,0,244375158786,"{""name"":""Atlanta Brewing Company"",""city"":""Atlanta"",""state"":""Georgia"",""code"":""30318"",""country"":""United States"",""phone"":""404-355-5558"",""website"":""http://www.atlantabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2323 Defoor Hills Rd NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.818,""lon"":-84.4353}}",1,44,1
+water_street_lake_country,0,0,245751480321,"{""name"":""Water Street Lake Country"",""city"":""Delafield"",""state"":""Wisconsin"",""code"":""53018"",""country"":""United States"",""phone"":""1-262-646-7878"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3191 Golf Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0525,""lon"":-88.3663}}",1,53,1
+brasserie_de_blaugies-moneuse_speciale_noel,0,0,244376010753,"{""name"":""Moneuse Speciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_blaugies"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+la_jolla_brew_house-wheat,0,0,244745306112,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
+granville_island_brewing_company-hefeweizen,0,0,244742029312,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
+st_francis_abbey_brewery-smithwick_s,0,0,245124038657,"{""name"":""Smithwick's"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_francis_abbey_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,63,1
+arcadia_brewing-arcadia_esb,0,0,244376338433,"{""name"":""Arcadia ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+diamond_bear_brewing_co-southern_blonde,0,0,244615872512,"{""name"":""Southern Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_bear_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+schlossbru-weizen,0,0,244993818625,"{""name"":""Weizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,32,1
+brasserie_brouwerij_cantillon-vigneronne,0,0,244376207365,"{""name"":""Vigneronne"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":""The name Vigneronne Cantillon was given in 1987. This name reminds us that, while it belongs to the beer patrimony, the spontaneous fermentation, the ageing in the barrels for several years and the addition of grapes make it a distant cousin of certain white wines.\r\n\r\nIn spite of its success, the Vigneronne represents less than 5% of the total production of the Cantillon brewery. In order to obtain grapes which are as mature as possible, we buy them at the end of the season. Every year, 1000 kilos of white italian grapes are delivered at the Cantillon brewery in the beginning of October."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,47,1
+moon_river_brewing_company-wild_wacky_wit,0,0,244867334145,"{""name"":""Wild Wacky Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Wit (white) beer is an old style Belgian wheat-ale, spiced with Curacao bitter orange peel and corriander. Light and exotic... A party in your mouth!"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,24,1
+michigan_brewing-celis_white,0,0,244867661824,"{""name"":""Celis White"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional Belgian Whitbierre is the multiple gold medal winning Pierre Celis original. White and cloudy in appearance, brewed with wheat and seasoned with orange peel and coriander. A refreshing unfiltered ale that is both sweet and tart."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,25,1
+f_x_matt_brewing-saranac_scotch_ale,0,0,244615413760,"{""name"":""Saranac Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Scotch Ale is a full-bodied, malty sweet ale. True to Scottish brewing tradition, this malty flavor and deep copper brown color are a result of Scottish two row malt and roasted barley."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,21,1
+cherryland_brewing-apple_bach,0,0,244483555328,"{""name"":""Apple Bach"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
+iron_springs_pub_brewery-chazz_cat_rye,0,0,244744847360,"{""name"":""Chazz Cat Rye"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+barfer_das_kleine_brauhaus,0,0,244375224320,"{""name"":""Barfer - das kleine Brauhaus"",""city"":""Ulm"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)731-/-6021110"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lautenberg 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3979,""lon"":9.9899}}",1,44,1
+wdi_bru_huus-ur_pils,0,0,245751480322,"{""name"":""Ur-Pils"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,53,1
+brasserie_grain_d_orge-belzebuth,0,0,244493123584,"{""name"":""Belzebuth"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_grain_d_orge"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer of top fermentation, Belzebuth represents the achievement of a more than one hundred year-old know-how, the one of the Brewery Grain d'Orge. Under its copper colour, it hides a strong character for the lovers of sensations. It owes its strength to the subtle mixture of pure malts, hops and yeasts especially selected by our Master-Brewer.\r\n\r\nAt one time this beer was 15%. After the name change it was lowered to 13%."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,46,1
+lancaster_brewing_co-rare_rooster_summer_rye_ale,0,0,244745306113,"{""name"":""Rare Rooster Summer Rye Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Extra Pale Ale with a subtle Rye flavor, this beer Pours a light orange-amber color with a thin light beige head. A refreshing summer beer.\r\n\r\nAvailable at the Brewery from April - September"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+green_bay_brewing-hinterland_weizen_bier,0,0,244742094848,"{""name"":""Hinterland Weizen Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
+stieglbrauerei_zu_salzburg_gmbh-stiegl_goldbrau,0,0,245124038658,"{""name"":""Stiegl Goldbräu"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""This wonderfully refreshing beer specialty from Stiegl, Austria’s largest privately owned brewery is brewed in strict adherence with the 1516 purity law of only using water, malt and hops. Stiegl-Goldbräu is an Austrian styled beer with its own distinctive Salzburg lager flavor. The 12o original gravity is unparalleled in its even taste and ability to refresh. It is mildly hopped is golden in color has a great head with a superb finish. Stiegl-Goldbräu is considered by many connoisseurs to be the world’s finest beer."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,63,1
+arthur_guinness_son-harp_lager,0,0,244376403968,"{""name"":""Harp Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-07-22 20:00:20"",""description"":""The best selling premium irish import lager in the world today. This rich, golden pilsner style lager, with a smooth, refreshing hoppy taste, is brewed the irish way, using only the finest barley and pure spring water from the Cooley Mountains of Dundalk, Ireland."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+diebels_privatbrauerei,0,0,244615872513,"{""name"":""Diebels Privatbrauerei"",""city"":""Issum"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2835-/-30-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brauerei-Diebels-Strae 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.5331,""lon"":6.4213}}",1,22,1
+sherlock_s_home-gold_crown_lager,0,0,244993818626,"{""name"":""Gold Crown Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+brasserie_de_silly-la_divine_tripel_amber,0,0,244376272896,"{""name"":""La Divine Tripel Amber"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+new_belgium_brewing-new_belgium_trippel_belgian_style_ale,0,0,244867334146,"{""name"":""New Belgium Trippel Belgian Style Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Trippel Belgian Style Ale (pronounced triple) opens with a bold blast of hops that slowly gives way to the fruity esters implied by our Belgian yeast strain. The Three Graces hand-painted on the label are Zeus’s daughters Aglaia (splendor), Euphrosyne (mirth) and Thalia (good cheer). In the Belgian tradition of brewing singles, doubles and triples, Trippel is the strongest with the longest fermentation. Remarkably smooth and complex, our bottle-conditioned Trippel is spiced with a trace of coriander."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,24,1
+mudshark_brewing-full_moon_belgian_white_ale,0,0,244867661825,"{""name"":""Full Moon Belgian White Ale"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgium Wheat Ale, Spiced With Orange Reel & Coriander, Strong & Smooth"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,25,1
+fish_brewing_company_fish_tail_brewpub-whistling_pig_hefeweizen,0,0,244615413761,"{""name"":""Whistling Pig Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+coast_range_brewing,0,0,244483555329,"{""name"":""Coast Range Brewing"",""city"":""Gilroy"",""state"":""California"",""code"":""95020"",""country"":""United States"",""phone"":""1-408-842-1000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7050 Monterey Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.0013,""lon"":-121.566}}",1,23,1
+klosterbrauerei_weltenburg-barock_dunkel,0,0,244744847361,"{""name"":""Barock-Dunkel"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+barley_john_s_brewpub-dark_knight,0,0,244375224321,"{""name"":""Dark Knight"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+widmer_brothers_brewing,0,0,245751545856,"{""name"":""Widmer Brothers Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97227"",""country"":""United States"",""phone"":""1-503-281-2437"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""929 North Russell Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5408,""lon"":-122.676}}",1,53,1
+brauerei_spezial-rauchbier_weissbier,0,0,244493123585,"{""name"":""Rauchbier Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+left_coast_brewing-pale,0,0,244745371648,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+hansa_bryggeri-fatol,0,0,244742094849,"{""name"":""Fatøl"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hansa_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+stone_brewing_co-ruination_ipa,0,0,245124038659,"{""name"":""Ruination IPA"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,63,1
+barley_island_brewing-whose_ear_red_ale,0,0,244376403969,"{""name"":""Whose Ear? Red Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+dix_barbecue_brewery-tropical_lager,0,0,244615872514,"{""name"":""Tropical Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
+sierra_nevada_brewing_co-celebration_ale,0,0,244993884160,"{""name"":""Celebration Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nThe long, cold nights of winter are a little brighter with Celebration® Ale. Wonderfully robust and rich, Celebration® Ale is dry-hopped for a lively, intense aroma. Brewed especially for the holidays, it is perfect for a festive gathering or for a quiet evening at home. \r\n\r\n"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,32,1
+amherst_brewing_company-massatucky_brown,0,0,244374306816,"{""name"":""Massatucky Brown"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light brown medium bodied ale. Smooth, malty and slightly roasted flavor."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
+brewery_at_martha_s_vineyard-extra_stout,0,0,244493647872,"{""name"":""Extra Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_at_martha_s_vineyard"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
+new_holland_brewing_company-sundog,0,0,244867399680,"{""name"":""Sundog"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sundog is an amber ale as deep as the copper glow of a Lake Michigan sunset. Its biscuit malt give Sundog a toasty character and a subtle malty sweetness. Sundog brings out the best in grilled foods, caramelized onions, nutty cheese, barbecue, or your favorite pizza."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
+new_belgium_brewing-frambozen,0,0,244867727360,"{""name"":""Frambozen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,25,1
+flyers_restraunt_and_brewery-afterburner_ipa,0,0,244615413762,"{""name"":""Afterburner IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover's delight! Our I.P.A. is loaded with Ahtanum, Tohmahawk, Palisade, East Kent, Goldings and finished with the ever popular Cascades, balanced with generous amounts of floor malted crisp Maris Otter barley."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,21,1
+coniston_brewing,0,0,244483555330,"{""name"":""Coniston Brewing"",""city"":""Coniston"",""state"":""Cumbria"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01539)-441133"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Coppermines Road""]}",1,23,1
+kona_brewing-lilikoi_wheat_ale,0,0,244744912896,"{""name"":""Lilikoi Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,26,1
+bbc_brewing_co_llc-american_pale_ale,0,0,244375224322,"{""name"":""American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+abita_brewing_company-fall_fest,0,0,244374765568,"{""name"":""Fall Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abita Fall Fest is an Octoberfest lager available September-November. It is brewed with German Hersbrucker hops and pale, crystal and chocolate malts.\r\n\r\nThe result is a full-bodied, malty beer with a strong hop character and a beautiful amber color.\r\n\r\nCelebrate the season with Abita Fall Fest and your favorite German food"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,43,1
+wye_valley_brewery,0,0,245751611392,"{""name"":""Wye Valley Brewery"",""city"":""Stoke Lacy"",""state"":""Hereford and Worcester"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01885)-490505"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stoke Lacy HR7 4HG""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.1496,""lon"":-2.5507}}",1,53,1
+breckenridge_bbq_of_omaha-avalanche_amber,0,0,244493189120,"{""name"":""Avalanche Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
+liberty_steakhouse_and_brewery-liberty_pale_ale,0,0,244745371649,"{""name"":""Liberty Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This copper-colored ale has an intense bitterness and a floral hop aroma. Hops added during aging contribute to its distinct dryness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+hereford_hops_steakhouse_and_brewpub_3-esb,0,0,244742094850,"{""name"":""ESB"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+stout_brothers_public_house,0,0,245124104192,"{""name"":""Stout Brothers Public House"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0389,""lon"":-87.9065}}",1,63,1
+barley_s_casino_brewing_company-sublimator_doppelbock,0,0,244376403970,"{""name"":""Sublimator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_casino_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,48,1
+dogfish_head_craft_brewery-festina_peche,0,0,244615938048,"{""name"":""Festina Pêche"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing neo-BerlinerWeisse fermented with honest-to-goodness peaches to (get this!) 4.5% abv! Because extreme beers don't have to be extremely boozy! Available in 4-pack and draft during the sweaty months.""}",1,22,1
+sierra_nevada_brewing_co-celebration_ale_1992,0,0,244993884161,"{""name"":""Celebration Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,32,1
+anderson_valley_brewing-barney_flats_oatmeal_stout,0,0,244374372352,"{""name"":""Barney Flats Oatmeal Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With its deep, dark brown-black color, thick, full-bodied, velvety-smooth mouth feel, mocha character, and, strong yet subtle hop bite, Barney Flats Oatmeal Stout is one of the thickest, richest, and most complex stouts on the market today. In 1990, it became our first gold medal winner, at the Great American Beer Festival. Barney Flats was judged so superior to the other stouts that no other medals were even awarded in its catagory. Try it and see why Stewart Kallen described it as, \""Slippery, creamy, dark, and sweet as a Pacific May morning,\"" in his book, The 50 Greatest Beers in the World\r\n\r\nBarney Flats Oatmeal Stout Most recently won the Silver Medal at the 2004 World Beer Cup® and the Bronze Medal at the 2004 GABF , as well as several other medals . Click the blue ribbon to see the entire list.\r\n\r\nAs with all of our products, Barney Flats Oatmeal Stout is never sterile filtered nor heat pasteurized, and should be stored in refrigeration. However, to fully enjoy its rich and complex flavor, it should be served between 40° and 45°F"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
+brewery_corsendonk,0,0,244493713408,"{""name"":""Brewery Corsendonk"",""city"":""Oud-Turnhout"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Steenweg op Mol 118""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.3144,""lon"":4.989}}",1,47,1
+new_holland_brewing_company-zoomer,0,0,244867399681,"{""name"":""Zoomer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing wheat ale, Zoomer is brewed to quench your summer thirst. American-grown wheat provides Zoomer's straw color and its soft, clean body. With subtle, yet flavorful hints of citrus fruit in its finish, Zoomer is the perfect companion to all things summer. Food pairings include artisan cheeses, fresh greens, fish and chicken."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,24,1
+new_river_brewing-pale_ale,0,0,244867727361,"{""name"":""Pale Ale"",""abv"":5.52,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+four_peaks_brewing-alt_ball_and_chain,0,0,244615479296,"{""name"":""Alt Ball and Chain"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer was brewed in honor of our brewer Melissa's wedding to fellow brewer Derek Osbourne of B.J.'s in Chandler. The Alt Ball and Chain is a German Altbier. These beers are generally full-bodied with sweet malt flavor. The crispness, dry finish, and moderate hop aroma make an alt a great beer for summertime enjoyment. Our Alt has been lagering in our cellar for two weeks and contains 5.2% abv."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,21,1
+coopers_brewery-coopers_original_pale_ale,0,0,244483620864,"{""name"":""Coopers Original Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Guaranteed to turn heads, this is the beer that inspired a new generation of ale drinkers. With its fruity character, and robust flavour, Coopers Pale Ale is perfect for every occasion. \r\n\r\nNaturally fermented in the 'Burton-on-Trent' style, a secondary fermentation creates the trademark sediment that gives 'Pale' its fine cloudy appearance. This cloudy residue can be stirred through the beer by tipping or rolling the bottle before drinking. \r\n\r\nPale Ale has no additives or preservatives."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,23,1
+liberty_steakhouse_and_brewery-miss_liberty_lager,0,0,244744912897,"{""name"":""Miss Liberty Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is an all-malt lager, brewed with a subtle blend of German hops. Cool fermentation, followed by extended aging, produces a delicate and mild flavor."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+belize_brewing-belikin_stout,0,0,244375289856,"{""name"":""Belikin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belize_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
+adnams_co-adnams_fisherman,0,0,244374831104,"{""name"":""Adnams Fisherman"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The Winter seasonal from Adnams, Fisherman is described as an old ale. If your local pub has the good sense to serve cask beer, look for Fisherman on draught from January through March.\r\n\r\nClean and refreshing yet dark and mysterious, Fisherman is a deep coppery red, conjuring roasted nuts and dark chocolate, with a lingering taste of liquorice and dried fruits."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+broad_ripple_brewing-red,0,0,244493189121,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
+long_trail_brewing_co-long_trail_hefeweizen,0,0,244868251648,"{""name"":""Long Trail Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Here is our \""Wheat Beer with Yeast\"", or Hefeweizen. Beers brewed with a high proportion of wheat yield a crisp and refreshing flavor profile, while the addition of our special yeast adds a blend of complex citrus and spice flavors."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
+hoepfner_privatbrauerei,0,0,244742160384,"{""name"":""Hoepfner Privatbrauerei"",""city"":""Karlsruhe"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)721-/-6183-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Haid-und-Neu-Strae 18""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.0125,""lon"":8.4264}}",1,20,1
+strangford_lough_brewing_company_ltd-st_patrick_s_ale,0,0,245124104193,"{""name"":""St Patrick's Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep copper coloured traditional Irish Ale with highly developed and complex flavours. St Patrick’s Ale/Dark is brewed with four malts and two hops, carefully married together to complement eachother producing a satisfying full flavour, ending with a Styrian late hop for a truly brilliant finish."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,63,1
+bayerische_staatsbrauerei_weihenstephan-hefe_weissbier,0,0,244376469504,"{""name"":""Hefe Weissbier"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
+dogfish_head_craft_brewery-red_white,0,0,244615938049,"{""name"":""Red & White"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, belgian-style Wit brewed with coriander and orange peel and fermented with Pinot Noir juice. After fermentation a fraction of the batch is aged in Oregon Pinot Noir barrels, and another fraction is aged on oak staves. The beer is blended together before packaging.\r\n\r\nThis has been one of our most popular Limited Edition beers at both our Rehoboth Beach, DE brewpub and at festivals. It successfully marries the refreshing citrusy qualities of a Belgian-style white beer with the robust complexity of a bold red wine."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,22,1
+skagit_river_brewing-dutch_girl_lager,0,0,244993949696,"{""name"":""Dutch Girl Lager"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+appalachian_brewing_company-peregrine_pilsner,0,0,244374372353,"{""name"":""Peregrine Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Czechoslovakian style Pilsner is golden in color and hopped with a bunch of genuine Czechoslovakian Saaz hops. These hops provide a special floral aroma and a delightfully hoppy finish.\r\nPeregrine Falcons were recently reintroduced to the Harrisburg area as well as other large cities in Pennsylvania. This Falcon is one of the fastest birds, reaching speeds in excess of 200 miles per hour. Its unique ability to rid urban areas of its nemesis, the pigeon, has cities throughout the region clamoring for the Peregrine as a permanent resident."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,42,1
+brewery_ommegang,0,0,244493713409,"{""name"":""Brewery Ommegang"",""city"":""Cooperstown"",""state"":""New York"",""code"":""13326"",""country"":""United States"",""phone"":""1-800-544-1809"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""656 County Highway 33""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6818,""lon"":-74.9255}}",1,47,1
+northwoods_brewpub_grill-bandit_brown,0,0,244867399682,"{""name"":""Bandit Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,24,1
+new_road_brewhouse-peckiomen_pils,0,0,244867792896,"{""name"":""Peckiomen Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_road_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+fratellos_restaurant_and_brewery-what_the_helles_bock,0,0,244615544832,"{""name"":""What the Helles Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
+copper_eagle_brewing-copper_wheat,0,0,244483620865,"{""name"":""Copper Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+long_trail_brewing_co-hibernator,0,0,244867858432,"{""name"":""Hibernator"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust and malty brew will take the bite from a cold winter night."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,26,1
+big_ridge_brewing,0,0,244375289857,"{""name"":""Big Ridge Brewing"",""city"":""Surrey"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-574-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""15133 Highway 10""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.1049,""lon"":-122.69}}",1,44,1
+alameda_brewhouse-irvington_porter,0,0,244374896640,"{""name"":""Irvington Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alameda_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+brouwerij_de_landtsheer,0,0,244493189122,"{""name"":""Brouwerij De Landtsheer"",""city"":""Buggenhout"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-33-39-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mandekenstraat 179""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0228,""lon"":4.1572}}",1,46,1
+meantime_brewing_company_limited,0,0,244868317184,"{""name"":""Meantime Brewing Company Limited"",""city"":""Greenwich"",""state"":""London"",""code"":""SE7 8RX"",""country"":""United Kingdom"",""phone"":""44-(020)-8293-1111"",""website"":""http://www.meantimebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2 Penhall Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4899,""lon"":0.038}}",1,27,1
+hofbru_kaltenhausen_salzachtal-edelweiss_hefetrub,0,0,244742160385,"{""name"":""Edelweiss Hefetrüb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbru_kaltenhausen_salzachtal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
+summit_brewing,0,0,245124104194,"{""name"":""Summit Brewing"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55102"",""country"":""United States"",""phone"":""1-651-265-7800"",""website"":""http://www.summitbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""910 Montreal Circle""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9139,""lon"":-93.1396}}",1,63,1
+bell_s_brewery_inc-amber_ale,0,0,244376469505,"{""name"":""Amber Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer is made from mostly pale malt with some Munich and caramel malts. This gives it a slightly sweet flavor that is balanced by a melange of American hops. The result is a deep copper color and rich flavor."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+drake_s_brewing,0,0,244616003584,"{""name"":""Drake's Brewing"",""city"":""San Leandro"",""state"":""California"",""code"":""94577"",""country"":""United States"",""phone"":""1-510-562-0866"",""website"":""http://drinkdrakes.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1933 Davis Street #177""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7176,""lon"":-122.182}}",1,22,1
+skagit_river_brewing,0,0,244994015232,"{""name"":""Skagit River Brewing"",""city"":""Mount Vernon"",""state"":""Washington"",""code"":""98273"",""country"":""United States"",""phone"":""1-360-336-2884"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""404 South Third Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.4192,""lon"":-122.335}}",1,32,1
+appleton_brewing-adler_brau_marquette_pilsner,0,0,244374437888,"{""name"":""Adler Bräu Marquette Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+bridgeport_brewing-bridgeport_india_pale_ale,0,0,244493778944,"{""name"":""Bridgeport India Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our award-winning IPA sparkles with effervescence, the result of natural-conditioning, a process where the beer is double-fermented in each bottle, keg or cask. Brewed with a blend of five hop varieties, BridgePort IPA presents a floral, citrusy aroma and full hop flavor, while downplaying the bitterness. The beer pours smooth in the glass, emitting its signature golden glow."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+orchard_street_brewery,0,0,244867465216,"{""name"":""Orchard Street Brewery"",""city"":""Bellingham"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.7596,""lon"":-122.488}}",1,24,1
+olde_peninsula_brewpub_and_restaurant,0,0,244867792897,"{""name"":""Olde Peninsula Brewpub and Restaurant"",""city"":""Kalamazoo"",""state"":""Michigan"",""code"":""49007"",""country"":""United States"",""phone"":""1-269-343-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 East Michigan Avenue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.2936,""lon"":-85.5778}}",1,25,1
+frstliche_brauerei_thurn_und_taxis_regensburg-schierlinger_roggen,0,0,244615544833,"{""name"":""Schierlinger Roggen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frstliche_brauerei_thurn_und_taxis_regensburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+duclaw-hellrazer,0,0,244616331264,"{""name"":""Hellrazer"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""From the first sip this American-style India Pale Ale gets in your face with an unruly hop bitterness, big floral flavors and aroma, and just enough malt character to keep you from giving in and acting up."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
+mad_river_brewing-steelhead_extra_stout,0,0,244867923968,"{""name"":""Steelhead Extra Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,26,1
+birra_moretti-birra_moretti_la_rossa,0,0,244375289858,"{""name"":""Birra Moretti La Rossa"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birra_moretti"",""updated"":""2010-07-22 20:00:20"",""description"":""Birra Moretti La Rossa is a double boch beer produced using high quality 100% malted barley, giving it a rich sweet taste and an intense fragrance of roasted malt. The amber color that characterizes the beer, comes from the kind of malt used in the recipe (malt is dried, roasted barley). Another key ingredient is hops, the variety used is particularly aromatic, giving a characteristic bitter aftertaste and a delicate fragrance to the beer. The Master Brewers advise a service temperature between 10° and 12° C."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,44,1
+allguer_brauhaus_ag_kempten-winterfestival,0,0,244374896641,"{""name"":""Winterfestival"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,43,1
+brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_blond_5,0,0,244493254656,"{""name"":""Achel Blond 5°"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,46,1
+middle_ages_brewing-dragonslayer,0,0,244868317185,"{""name"":""Dragonslayer"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the style of a Russian Imperial Stout. Strong, chocolatety and aggressively hopped with finest English hops."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,27,1
+hoffbrau_steaks_brewery_1-windmill_wheat_ale,0,0,244742160386,"{""name"":""Windmill Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
+the_narragansett_brewing_company,0,0,245124169728,"{""name"":""The Narragansett Brewing Company"",""city"":""Providence"",""state"":""Rhode Island"",""code"":""2903"",""country"":""United States"",""phone"":""401.437.8970"",""website"":""http://www.narragansettbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Famous New England Brand, went defunct in the 1980's but has been revived in 2005, with a tasty lager. Locally available in New England"",""address"":[""60 Ship Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.819,""lon"":-71.4097}}",1,63,1
+big_boss_brewing_company,0,0,244376469506,"{""name"":""Big Boss Brewing Company"",""city"":""Raleigh"",""state"":""North Carolina"",""code"":""27604"",""country"":""United States"",""phone"":""919-834-0045"",""website"":""http://www.bigbossbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1249-A Wicker Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.8104,""lon"":-78.6179}}",1,48,1
+east_end_brewing_company,0,0,244616003585,"{""name"":""East End Brewing Company"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15208"",""country"":""United States"",""phone"":""412-537-2337"",""website"":""http://www.eastendbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6923 Susquehanna St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4553,""lon"":-79.9043}}",1,22,1
+stoudt_s_brewery-abbey_triple,0,0,245111848960,"{""name"":""Abbey Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Triple is a strong, full-bodied Belgian abbey-style ale. The authentic Belgian yeast strain used in fermentation contributes to a rich array of spicy, phenolic, and fruit-like flavors and noticeable alcoholic warmth. This unfiltered ale has an irresistible pale orange-colored hazy glow."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,32,1
+augustiner_brau_munchen-edelstoff,0,0,244374437889,"{""name"":""Edelstoff"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+brouwerij_de_dolle_brouwers-dulle_teve_mad_bitch,0,0,244493778945,"{""name"":""Dulle Teve / Mad Bitch"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+oskar_blues_grill_and_brew-ten_fidy,0,0,244867465217,"{""name"":""Ten Fidy"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Ten FIDY Imperial Stout - Now (11-21-07) available in cans, our winter seasonal beer is immensely viscous and loaded with neck-deep flavors of chocolate, malt, coffee, cocoa and oats.\r\n\r\nIt's the beer equivalent of decadently rich milkshake made with malted-milk balls and Heaven’s best chocolate ice cream. Ten FIDY is about 10% ABV and is made with enormous amounts of two-row malts, chocolate malts, roasted barley, flaked oats and hops. Its huge-but-comforting flavors hide a whopping 98 IBUs that are deftly tucked underneath the beer’s mountains of malty goodness.\r\n\r\nTen FIDY is the ultimate Rocky Mountain winter warmer, and further proof of the creative muscle of our beloved brewing staff. Look for fourpacks of Ten FIDY in select beer stores in Colorado. Out of state? We hope to send a few cases to a few of our other states in early '08."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,24,1
+on_tap_bistro_brewery-golden_triangle_triple,0,0,244867792898,"{""name"":""Golden Triangle Triple"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+full_sail_brewing_1-session_premium_lager,0,0,244615544834,"{""name"":""Session Premium Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+elk_creek_cafe_and_aleworks,0,0,244616331265,"{""name"":""Elk Creek Cafe and Aleworks"",""city"":""Millheim"",""state"":""Pennsylvania"",""code"":""16854"",""country"":""United States"",""phone"":""(814) 349-8850"",""website"":""http://www.elkcreekcafe.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Head Brewer Tim Yarrington makes beers that people want to drink. With over 12 years brewing experience under his belt, founding the brewery operations at Long Valley Pub & Brewery in New Jersey and resurrecting Time Square Brewery in Manhatten, Brewer Tim brings a good sense of what beers people enjoy drinking to Elk Creek Aleworks. Winning Gold and Bronze medals for his Porter and Bitter at the prestigous Great American Beer Festival attests to the fact that his peers also think he makes great beer. Drawing inspiration primarily from traditional English ale brewing, Tim makes balanced beers, giving both malt and hops prominence in every pint. In addition to our rotating selection of seasonal brews, we offer six outstanding House Standards year 'round. Without doubt, there's a pint for you!"",""address"":[""100 West Main Street PO Box 432""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8911,""lon"":-77.477}}",1,23,1
+marquette_harbor_brewery_and_restaurant-canadian_blonde_ale,0,0,244867923969,"{""name"":""Canadian Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marquette_harbor_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+birrificia_le_baladin-noel,0,0,244375289859,"{""name"":""Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,44,1
+anheuser_busch-michelob_pale_ale,0,0,244374896642,"{""name"":""Michelob Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
+brouwerij_duysters,0,0,244493254657,"{""name"":""Brouwerij Duysters"",""city"":""Diest"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-013-77-10-07"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Michel Theysstraat 58A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9882,""lon"":5.0554}}",1,46,1
+middle_ages_brewing-im_paled_ale,0,0,244868382720,"{""name"":""Im Paled Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A complex and artistically balanced multi-layered IPA (India Pale Ale) with an intense finish of cascade hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,27,1
+abita_brewing_company-andygator,0,0,244373454848,"{""name"":""Andygator"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Andygator is a fearsome beast...much too big for any little bottle. Don't let his toothy grin, slightly sweet flavor and subtle fruit aroma fool you: this cold-blooded creature is a Helles Doppelbock that can sneak up on you. Sip, don't gulp and taste the wild of Abita Andygator"",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,40,1
+hoppin_frog_brewery-outta_kilter_wee_heavy_scotch_red_ale,0,0,244742225920,"{""name"":""Outta Kilter Wee-Heavy Scotch Red Ale"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich, malty flavors of caramelized and toasted grains dominate this strong Scotch ale. A hint of rye adds a crisp, Scotch-like, old-world beer character, reminiscent of a simpler life from centuries ago. “It is a wee bit heavy”"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,20,1
+thirsty_dog_brewing,0,0,245124169729,"{""name"":""Thirsty Dog Brewing"",""city"":""Akron"",""state"":""Ohio"",""code"":""44311"",""country"":""United States"",""phone"":""330-252-2739"",""website"":""http://www.thirstydog.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Here at the Thirsty Dog Brewing Company, full flavor, delicate balance, texture & aroma combine to make beer an infinitely complex experience, and one that can be thoroughly enjoyable. Each of our beers are meticulously hand crafted in small batches using the finest ingredients. High quality malted barley is the source of the beer's sweetness & body. Select American & European hops are used to balance the malt sweetness, and , at times, add special flavors & aromas to the beer. Our careful selection of ingredients, along with specially designed recipes & brewing processes, give Thirsty Dog beers their unique flavor profiles that can be hard to find in today's mass market. one size fits all society. Our microbrewed beers are far more diverse in range and character then the small spectrum of mass-marketed beers offered to the American public by the large national breweries. Enjoy the diversity, Unleash the flavor today., Welcome to Thirsty Dog Brewing Company, and welcome to great beer!"",""address"":[""529 Grant St. Suite B""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.0689,""lon"":-81.5172}}",1,63,1
+big_hole_brewing,0,0,244376469507,"{""name"":""Big Hole Brewing"",""city"":""Belgrade"",""state"":""Montana"",""code"":""59714"",""country"":""United States"",""phone"":""1-800-793-6656"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""401 East Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7736,""lon"":-111.172}}",1,48,1
+edelweissbrauerei_farny-hofgutsbier,0,0,244616134656,"{""name"":""Hofgutsbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+sudwerk_privatbrauerei_hbsch,0,0,245111848961,"{""name"":""Sudwerk Privatbrauerei Hbsch"",""city"":""Davis"",""state"":""California"",""code"":""95616"",""country"":""United States"",""phone"":""1-530-756-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2001 Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5472,""lon"":-121.726}}",1,32,1
+augustiner_brau_munchen-maximator,0,0,244374503424,"{""name"":""Maximator"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,42,1
+cape_ann_brewing,0,0,244493844480,"{""name"":""Cape Ann Brewing"",""city"":""Gloucester"",""state"":""Massachusetts"",""code"":""1930"",""country"":""United States"",""phone"":""1-866-233-7636"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""27 Commercial Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6102,""lon"":-70.6664}}",1,47,1
+oskar_blues_grill_and_brew,0,0,244867465218,"{""name"":""Oskar Blues Grill and Brew"",""city"":""Lyons"",""state"":""Colorado"",""code"":""80540"",""country"":""United States"",""phone"":""1-303-823-6685"",""website"":""http://www.oskarblues.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""303 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2246,""lon"":-105.268}}",1,24,1
+orkney_brewery-dark_island,0,0,244867858432,"{""name"":""Dark Island"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Island is an iconic beer: a standard-bearer for traditional Scottish ales. In cask, this beer has twice won CAMRA’s Champion Beer of Scotland.\r\nOn the nose, this dark beer offers bitter chocolate, figs, toffee and hints of fruit.\r\n\r\nOn the palate, this resolves into beautiful, silky-smooth, coffee-and-chocolate flavours, followed by figs, dates and dried fruits, with a very appealing, lingering aftertaste of fruits and hop bitterness."",""style"":""Scottish-Style Light Ale"",""category"":""British Ale""}",1,25,1
+goose_island_beer_company_clybourn-blonde_ale,0,0,244615610368,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+ettaler_klosterbetriebe_abteilung_brauerei_destillerie-kloster_edel_hell,0,0,244616396800,"{""name"":""Kloster Edel-Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ettaler_klosterbetriebe_abteilung_brauerei_destillerie"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+marzoni_s_brick_oven_brewing_co,0,0,244867923970,"{""name"":""Marzoni's Brick Oven & Brewing Co"",""city"":""Duncansville"",""state"":""Pennsylvania"",""code"":""16635"",""country"":""United States"",""phone"":""814-695-2931"",""website"":""http://www.marzonis.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Marzoni's beers are brewed on premise, utilizing the finest ingredients available. Beers brewed at Marzoni's are dispensed directly from our chilled serving tanks to the tap stations on the bar for the freshest beer around! On any given day, there are at least 8 beers on tap, not to mention house-brewed root beer. Brewery tours are available!"",""address"":[""165 Patchway Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.4234,""lon"":-78.4339}}",1,26,1
+blue_cat_brew_pub-big_bad_dog_old_english_ale,0,0,244375289860,"{""name"":""Big Bad Dog Old English Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,44,1
+appalachian_brewing_company-water_gap_wheat,0,0,244374896643,"{""name"":""Water Gap Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This light refreshing wheat beer is sure to delight. Our special yeast and blend of malted and unmalted wheat provide the haze in our unfiltered style ale. This beer is traditionally served with a lemon slice on the side. \r\nThere are many water gaps along the Appalachian Trail. These water gaps were established where large rivers cut through the Appalachian Mountain Range. The Susquehanna River creates one of the more visually appealing water gaps just north of Harrisburg in the area at the Dauphin Narrows."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,43,1
+brouwerij_het_anker-grand_cru_of_the_emperor,0,0,244493320192,"{""name"":""Grand Cru of the Emperor"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+midnight_sun_brewing_co-greed,0,0,244868382721,"{""name"":""Greed"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With a summer release in mind, GREED Belgian-style Single was created miserly—relatively speaking—with one type of malt and two varieties of hops. At 5% ABV and 30 IBUs, Greed is the lightest in our series of 2007 Deadly Sin Beers. However, the Belgian yeast used in fermentation and conditioning contributes an earthy, somewhat spicy flavor and a crisp finish. We invite you to be greedy before it’s gone. \r\n\r\nGREED...Less [for you] is More [for me]."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,27,1
+alaskan_brewing-alaskan_stout,0,0,244373520384,"{""name"":""Alaskan Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Oatmeal Stout. The origins of Oatmeal Stout go back hundreds of years when oats were added to Stouts to promote a healthier image than other beers available during that time period.\r\n\r\nThe unique blend of the oats and malts in Alaskan Stout produce a balanced, smooth beer with hints of coffee and caramel.\r\n\r\nAlaskan Stout is made from glacier-fed water and a generous belnd of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the from the more than 90 inches of rainfall Juneau receives each year."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,40,1
+inbev-jupiler,0,0,244742225921,"{""name"":""Jupiler"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""inbev"",""updated"":""2010-07-22 20:00:20"",""description"":""Jupiler is the most famous and most popular beer in Belgium. This delicious lager is brewed with the finest ingredients (malt, maize, water, hop, yeast), using undisputed craftsmanship, ensuring an outstanding beer quality. Jupiler offers refreshment on a wide variety of occasions, thanks to its digestibility and accessible taste. Jupiler (5,2 % ABV) is ideally served at a temperature of 3°C. The low-alcoholic variant Jupiler N.A. (0.5%) should be served at 1-2°C.\r\n\r\nJupiler has an outspoken image of masculinity, courage and adventure. Furthermore, Jupiler understands men like no other brand and shares their best moments. This combination of male bonding, self-confidence and self-relativation, speaks to all men and makes Jupiler an ally on their road through life.\r\n\r\nJupiler is the official sponsor of the highest Belgian football division, the Jupiler League, and also supports the Belgian national football team. Just like football, Jupiler is all about competence and ruggedness, effort and effort reward, team spirit and... festivity!"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,20,1
+three_floyds_brewing-behemoth_barley_wine,0,0,245124235264,"{""name"":""Behemoth Barley Wine"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,63,1
+big_time_brewing-scarlet_fire_ipa,0,0,244376535040,"{""name"":""Scarlet Fire IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+efes_moscow_brewery,0,0,244616134657,"{""name"":""Efes Moscow Brewery"",""city"":""Moskva"",""state"":""Moskva"",""code"":"""",""country"":""Russia"",""phone"":""7-(095)-797-98-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Podolskikh Kursantov, 15 B""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.7558,""lon"":37.6176}}",1,22,1
+t_bonz_gill_grill_and_brewery-cooper_river_red,0,0,245111914496,"{""name"":""Cooper River Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
+bierbrouwerij_de_koningshoeven-la_trappe_enkel_la_trappe_blond,0,0,244374503425,"{""name"":""La Trappe Enkel / La Trappe Blond"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,42,1
+21st_amendment_brewery_cafe,0,0,244373782528,"{""name"":""21st Amendment Brewery Cafe"",""city"":""San Francisco"",""state"":""California"",""code"":""94107"",""country"":""United States"",""phone"":""1-415-369-0900"",""website"":""http://www.21st-amendment.com/"",""type"":""brewery"",""updated"":""2010-10-24 13:54:07"",""description"":""The 21st Amendment Brewery offers a variety of award winning house made brews and American grilled cuisine in a comfortable loft like setting. Join us before and after Giants baseball games in our outdoor beer garden. A great location for functions and parties in our semi-private Brewers Loft. See you soon at the 21A!"",""address"":[""563 Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7825,""lon"":-122.393}}",1,41,1
+carlton_and_united_breweries,0,0,244493844481,"{""name"":""Carlton and United Breweries"",""city"":""Melbourne"",""state"":""Victoria"",""code"":"""",""country"":""Australia"",""phone"":""61-(03)-9342-5511"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""77 Southbank Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-37.8231,""lon"":144.967}}",1,47,1
+oy_sinebrychoff_ab-porter_iv,0,0,244867530752,"{""name"":""Porter IV"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oy_sinebrychoff_ab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
+pacific_rim_brewing-rat_city_ipa,0,0,244990803968,"{""name"":""Rat City IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
+gottberg_brew_pub-fire_in_the_hole,0,0,244615610369,"{""name"":""Fire in the Hole!"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+faultline_brewing_2,0,0,244616462336,"{""name"":""Faultline Brewing #2"",""city"":""Walnut Creek"",""state"":""California"",""code"":""94596"",""country"":""United States"",""phone"":""1-925-938-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.8855,""lon"":-122.033}}",1,23,1
+mendocino_brewing_hopland-frolic_shipwreck_1850_ale,0,0,244867989504,"{""name"":""Frolic Shipwreck 1850 Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,26,1
+boulder_beer_company-mojo_risin_double_ipa,0,0,244375355392,"{""name"":""Mojo Risin' Double IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,44,1
+arcobrau_grafliches_brauhaus-bavarian_dark_wheat_beer,0,0,244374962176,"{""name"":""Bavarian Dark Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcobrau_grafliches_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+brouwerij_rodenbach-grand_cru,0,0,244493385728,"{""name"":""Grand Cru"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_rodenbach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+midnight_sun_brewing_co-saturn_belgian_style_fresh_hop_ipa,0,0,244868382722,"{""name"":""Saturn - Belgian-style Fresh Hop IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""In tribute to its namesake god of agriculture, SATURN celebrates a bountiful Pacific Northwest hop harvest. Ample malt sets the stage for this end-of-season party. Fresh Cascade and Centennial hops from Yakima Valley mingle with Belgian yeasts to impart abundant spice and earthiness."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,27,1
+alpirsbacher_klosterbru-spezial,0,0,244373520385,"{""name"":""Spezial"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpirsbacher_klosterbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+iron_hill_brewery_wilmingon-iron_hill_belgian_tripel,0,0,244742225922,"{""name"":""Iron Hill Belgian Tripel"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional Belgian-style golden ale, complex aroma and flavor of plums, spice and bananas with a refreshing balanced bitterness.""}",1,20,1
+timmermans-timmermans_forest_fruit,0,0,245124235265,"{""name"":""Timmermans Forest Fruit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,63,1
+bj_s_restaurant_and_brewery-nit_wit,0,0,244376535041,"{""name"":""Nit Wit"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,48,1
+elysian_brewery_public_house-whoville_weizenbock,0,0,244616134658,"{""name"":""Whoville Weizenbock"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,22,1
+tailgate_beer,0,0,245111980032,"{""name"":""Tailgate Beer"",""city"":""San Diego"",""state"":""California"",""code"":""92155"",""country"":""United States"",""phone"":""619.466.2337"",""website"":""http://www.tailgatebeer.com/indexmain.php"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6648 Reservoir Ln""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7732,""lon"":-117.055}}",1,32,1
+bierbrouwerij_de_koningshoeven-la_trappe_tripel,0,0,244374503426,"{""name"":""La Trappe Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,42,1
+adnams_co-adnams_explorer,0,0,244373848064,"{""name"":""Adnams Explorer"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden bitter suffused with the aromas of a grapefruit grove. The massive citrus attack will burst on your palate allowing all the flavours of the imported New World hops to deliver their fruity bitterness."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,41,1
+cervecera_cuauhtmoc_moctezuma-carta_blanca,0,0,244493910016,"{""name"":""Carta Blanca"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+penn_brewery-penn_dark,0,0,244990476288,"{""name"":""Penn Dark"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Munich and various roasted malts give it a very malty, rich flavor with a hint of burnt flavor. 100% imported Hallertau hops, moderate bitterness and aroma.""}",1,24,1
+port_brewing_company-old_viscosity,0,0,244990869504,"{""name"":""Old Viscosity"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Not your Dad's Wimpy 30 Weight is how our original label used to describe this massive chewy and thick beer. Code named by our brewers-\""The Big Black Nasty,\"" this is monstrous dark ale is brewed to no particular style. Thick and sludgy like oil from the crankcase of a wheat threshing combine, Old Viscosity blurs the boundaries of Porter, Stout, Old Ale and Barleywines.\r\n\r\nA blended beer that mixes old and new brewing traditions into one finished beer, Old Viscosity starts out with 80% of the packaged beer produced from a stainless steel fermentation. It then joins another 20% Barrel Aged Old Viscosity (from a previous batch) that has been aging in bourbon barrels. The blend of the two beers yields an incredibly rich and luscious ale that reveals chocolate and cocoa notes melded to silky body of burnt wood, vanilla and ash.\r\n\r\nMalts- Two Row, Wheat, Domestic and English Crystal, Carafa III and Chocolate Malts\r\nHops- German Magnum \r\nYeast- White Labs California Ale and Proprietary Yeast Strains\r\n\r\nOriginal Gravity- 1.092\r\nTerminal Gravity- 1.014\r\n10.5 % ABV\r\n\r\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold."",""style"":""Old Ale"",""category"":""British Ale""}",1,25,1
+gottberg_brew_pub-irish_porter_discontinued,0,0,244615610370,"{""name"":""Irish Porter (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
+firehouse_brewery_restaurant-lemon_wheat,0,0,244616462337,"{""name"":""Lemon Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
+mercury_brewing_company-ipswich_porter,0,0,244867989505,"{""name"":""Ipswich Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named due to it's popularity with London railroad porters, it's known for its dark, rich, and roasty notes."",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+brasserie_d_achouffe-houblon,0,0,244375355393,"{""name"":""Houblon"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+ateck_pivovar,0,0,244374962177,"{""name"":""ateck Pivovar"",""city"":""atec"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-415-710-781"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ikovo nmst 81""]}",1,43,1
+brouwerij_st_bernardus-st_bernardus_tripel,0,0,244493385729,"{""name"":""St. Bernardus Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer, with high fermentation, has a pale amber colour and a flowery, fruity taste with a harmonious balance between sweet and sour (8% alcohol content). \r\nThis beer has a thick and vivid froth and strikes by its balanced taste with a delicate bitterness."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
+millrose_brewing,0,0,244868448256,"{""name"":""Millrose Brewing"",""city"":""South Barrington"",""state"":""Illinois"",""code"":""60010"",""country"":""United States"",""phone"":""1-847-382-7673"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""45 South Barrington Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.0855,""lon"":-88.1411}}",1,27,1
+anheuser_busch-shock_top,0,0,244373585920,"{""name"":""Shock Top"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Shock Top is an unfiltered Belgian-style wheat ale (also known as a “White” or “Wit” beer due to its appearance) that is naturally cloudy with a billowy white foam head, light golden hue and slight taste of orange citrus peel and coriander."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,40,1
+ithaca_beer_company,0,0,244742291456,"{""name"":""Ithaca Beer Company"",""city"":""Ithaca"",""state"":""New York"",""code"":""14850"",""country"":""United States"",""phone"":""1-607-273-0766"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 Elmira Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.4145,""lon"":-76.5315}}",1,20,1
+titletown_brewing-princess_of_darkness_porter,0,0,245124235266,"{""name"":""Princess of Darkness Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,63,1
+boston_beer_company-hard_core_crisp_apple_cider,0,0,244376535042,"{""name"":""Hard Core Crisp Apple Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+fifty_fifty_brewing_co-manifesto_pale_ale,0,0,244616200192,"{""name"":""Manifesto Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We at FiftyFifty believe that beer is good. Especially this beer. Manifesto is one of FiftyFifty's flagship beers. This beer is a delight for those who take pleasure in craft beers and are looking for something that they can enjoy a few pints of. Manifesto has a restrained malt backbone of flavor with mild biscuit and caramel notes, and the hop character is light to moderate with mild earthiness evolving to a slightly more moderate citrus/piney finish. This is a beer of principle."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+the_blind_bat_brewery_llc-old_walt_smoked_wit,0,0,245111980033,"{""name"":""Old Walt Smoked Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""A smoked wit, you say? \r\nYup. \r\n\r\nResearching smoked beers led me to a world of smoked wheat beers, particularly a smoked wheat beer popular in Poland about 100 years ago. (I'll list that one as one of the Blind Bat beers when I'm happy with the test batches and am ready to offer it to the public.) I didn't find anything about smoked wit beers, but decided to experiment a bit (a wit is a wheat beer). I like it, and hope you will too. \r\n\r\nPictured on the label is Long Island's old Walt Whitman, enjoying a smoke and a book in what is purported to be his favorite spot in his native West Hills. Long Island's springtime is awakening all around him."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,32,1
+bierbrouwerij_de_koningshoeven-quadrupel,0,0,244374503427,"{""name"":""Quadrupel"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+aksarben_brewing_bop-bourbon_imperial_stout,0,0,244373913600,"{""name"":""Bourbon Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aksarben_brewing_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+coopers_brewery-dark_ale,0,0,244493910017,"{""name"":""Dark Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark brew full of promise. Coopers Dark Ale is a journey in taste, starting fresh and creamy, and finishing with a lingering coffee flavour. \r\n\r\nConditioned and naturally brewed using the top fermentation method, Coopers 'Dark' is made using roasted and chocolate malts, giving it a rich dark colour and unique flavour. \r\n\r\nCoopers Dark Ale has no additives and no preservatives."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,47,1
+pete_s_brewing-pete_s_wicked_wanderlust_cream_ale,0,0,244990541824,"{""name"":""Pete's Wicked Wanderlust Cream Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pete’s winter seasonal Wanderlust Cream Ale, is a velvety smooth brew offering endless fascination. Pete’s Wicked Wanderlust Cream Ale is a light amber brew with a rhapsody of Cluster hops and select Munich and wheat malts. The rich, creamy taste invites you on a journey of wonderment and intrigue. Sit back. Enjoy the ride."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,24,1
+raccoon_lodge_and_brewpub_cascade_brewing-cascade_cuvee_du_jongleur,0,0,244990869505,"{""name"":""Cascade Cuvée Du Jongleur"",""abv"":8.41,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A careful blending of select barrels of Flanders Reds and soured Belgian Triples aged in oak for up to 18 months. Then blended with fresh 25° Plato Blond Quadruppel. Hand-bottled, corked and then aged allowing lactic fermentation.""}",1,25,1
+gottberg_brew_pub-model_a_tor_doppelbock,0,0,244615675904,"{""name"":""Model-A-Tor Doppelbock"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
+firestone_walker_brewing_company-double_barrel_ale,0,0,244616527872,"{""name"":""Double Barrel Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firestone_walker_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A British Pale Ale never tasted so fresh. We challenge our good friends across the pond to match this one. Can’t be done. We’ve honored the traditions of the great British Pale brewers of Burton-on-Trent using our patented Firestone Union oak barrels. You’re left with a mild blend of vanilla and toasted oak flavor touched with an elegant hint of English noble hops. DBA is the flagship of our company and wildly popular."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,23,1
+mickey_finn_s_brewery-porter,0,0,244867989506,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+brasserie_d_achouffe,0,0,244375355394,"{""name"":""Brasserie D'Achouffe"",""city"":""Houffalize-Achouffe"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-061-28-81-47"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue du Village 32""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.1507,""lon"":5.7442}}",1,44,1
+backcountry_brewery-old_smoky,0,0,244374962178,"{""name"":""Old Smoky"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backcountry_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
+brouwerij_st_feuillien-triple,0,0,244493385730,"{""name"":""Triple"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_feuillien"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+milwaukee_ale_house-rye_i_oughta,0,0,244868448257,"{""name"":""Rye I Oughta"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+avery_brewing_company-maharaja_the,0,0,244373585921,"{""name"":""Maharaja, The"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""From Website:\r\nMaharaja is derived from the sanskrit words mahat, - \""great\"" and rajan - \""king\"". Much like its namesake, this imperial IPA is regal, intense and mighty. With hops and malts as his servants, he rules both with a heavy hand. The Maharaja flaunts his authority over a deranged amount of hops: tangy, vibrant and pungent along with an insane amount of malted barley - fashioning a dark amber hue and exquisite malt essence.\r\n\r\nThis newest Avery Dictator completes the \""Dictator Series\"" joining the likes of The Kaiser & The Czar. Be aware that The Maharaja is a limited release only available for the summer. Welcome to his kingdom!\r\n\r\nAvailability:\r\n * 22 oz. bottles\r\n * 5.17 gallon keg\r\n * 15.5 gallon keg\r\n * Available March through August\r\n\r\nABV:\r\n * 10.5% (2008)\r\n * 9.78% (2007)"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,40,1
+jobber_s_canyon_restaurant_brewery,0,0,244742291457,"{""name"":""Jobber's Canyon Restaurant & Brewery"",""city"":""Omaha"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.254,""lon"":-95.9993}}",1,20,1
+trailhead_brewing_company-missouri_brown_dark_ale,0,0,245124235267,"{""name"":""Missouri Brown Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,63,1
+brauerei_aying_franz_inselkammer_kg-ur_weisse,0,0,244493975552,"{""name"":""Ur-Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
+flossmoor_station_brewery-roundhouse_raspberry_wheat_ale,0,0,244616200193,"{""name"":""Roundhouse Raspberry Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,22,1
+the_church_brew_works-blast_furnace_oatmeal_stout,0,0,245111980034,"{""name"":""Blast Furnace Oatmeal Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Stouts have typically been a staple beverage in the UK. There are many variations of stouts available. You can find dry stouts, milk stouts, Imperial stouts, American stouts, and even stouts made with oats.\r\n\r\nAt the Church Brew Works we have crafted delicious Toasted Oatmeal Stout. The oats were blended with the best barley malt we have – and we didn’t stop there. To give this beer a wonderful roasted flavor, we added unmalted, very darkly roasted barley. The roasted barley is mixed with a generous portion of chocolate colored malt giving the Blast Furnace Stout a beautiful ruby hue.\r\n\r\nWe used our finest hops unsparingly to create a delicately balanced bitterness with a rich roastiness and fresh hop aroma. The Fuggles and East Kent Goldings hops were added with heavy hands at two different times. This unbridled addition grants a full hop flavor to our heavenly drink.\r\n\r\nA typical oatmeal stout is a bit lower in alcohol than most other stouts as does the Blast Furnace Stout. Ours, though not typical, does have a welcome medium body. As you drink this beer, notice the rich, creamy brown head. Drink it slowly and savor the flavors. We don’t think you will be disappointed. Beer is not just for breakfast anymore."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,32,1
+big_bang_brewery_closed,0,0,244374568960,"{""name"":""Big Bang Brewery (Closed)"",""city"":""San Francisco"",""state"":""California"",""code"":""94107"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""650 Fifth Street #403""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7756,""lon"":-122.398}}",1,42,1
+alpine_beer_company-pure_hoppiness,0,0,244373979136,"{""name"":""Pure Hoppiness"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpine_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A West Coast Double IPA\r\nSo mega-hopped it will take you to hop heaven. We’ve used hops in the boil, more hops in the giant hopback, and added to that, an incredible amount of dry-hopping for that cutting-edge “hop bite.” Once you’ve tasted this unique beer, all others pale in comparison. 1.072 OG Classified IBU 8%ABV"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,41,1
+coors_brewing_golden_brewery,0,0,244493910018,"{""name"":""Coors Brewing - Golden Brewery"",""city"":""Golden"",""state"":""Colorado"",""code"":""80401"",""country"":""United States"",""phone"":""1-866-812-2337"",""website"":""http://www.coors.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1873, as the United States approached its centennial year, its people were busy building a new kind of nation. It was thirsty work. And that's where Coors Brewing Company came in. When we began in that same year, we were a small, family-owned brewery, located at the foot of the Rocky Mountains. We were busy creating the same kind of crisp, refreshing beer we're known for today. While hundreds of such family-owned breweries have come and gone in the years since, we believe the reasons for our success are simple. We've never compromised on quality in producing our award-winning brews and we've never lost sight of our rich Rocky Mountain heritage. Just as important, we've always believed in doing well by doing good. We treat our employees with respect, we support the local communities where we do business, and we strive to protect the environment. That's just how we do business."",""address"":[""311 Tenth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7599,""lon"":-105.219}}",1,47,1
+port_brewing_company-amigo_lager,0,0,244990541825,"{""name"":""Amigo Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Because everyone needs a friend. It seems only natural that with San Diego being one of the closest cities to the Mexican Border that you would find a beer like Amigo. Brewed in the San Diego Lager style, this all malt lager is a refreshing way to start or finish a drinking session. The product of a true lager fermentation, this beer is crisp and lighter in body than most ales of similar strength making it a friendly choice for any occasion.\r\n\r\nMalts- Pilsner and Two Row\r\nHops- German Magnum and Czech Saaz\r\nYeast- White Labs German Lager \r\n\r\nOriginal Gravity- 1.048\r\nTerminal Gravity- 1.010\r\n5.0% ABV\r\n\r\nDraft- Available in Southern California and Arizona"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
+raccoon_lodge_and_brewpub_cascade_brewing-cascade_sang_royal,0,0,244990869506,"{""name"":""Cascade Sang Royal"",""abv"":8.87,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Northwest style sour red is a bottled version of our popular Mouton Rouge. This blend of barrels, with up to 16 months of oak barrel lactic fermentation and oak barrel aging, features dark fruit, sour, oak and funk flavors that sweep over your taste buds like an incoming tide.""}",1,25,1
+great_divide_brewing-denver_pale_ale_dpa,0,0,244742356992,"{""name"":""Denver Pale Ale / DPA"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Historically Great Divide’s flagship beer, DPA’s record speaks for itself. By continually garnering national and international recognition, DPA has risen to become one of the most award-winning English-style pale ales in the world.\r\n\r\nSporting a brilliant copper hue and an assertive floral hop aroma, DPA is known for its smooth, malty middle, which is expertly complemented with hearty and complex hop flavor. DPA’s extraordinary hop finish is marked by crisp yet moderate hop bitterness. Its well-balanced profile makes DPA the perfect beer to accompany a hearty mountain picnic or a night on the town. For those who seek beers characterized by excitement, flavor and distinction, Denver Pale Ale is the natural choice."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
+flyers_restraunt_and_brewery-humbles_blond_ale,0,0,244616527873,"{""name"":""Humbles Blond Ale"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer in body and color, Humbles has proven to be our most popular offering."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,23,1
+middle_ages_brewing-syracuse_pale_ale,0,0,244868055040,"{""name"":""Syracuse Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Sparkling golden ale with a complexity of malt and hop flavor brewed in a similar style to a turn of the century Canadian ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+brasserie_de_silenrieux-joseph_spelt_ale,0,0,244375355395,"{""name"":""Joseph Spelt Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silenrieux"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+barley_john_s_brewpub-little_barley_bitter,0,0,244374962179,"{""name"":""Little Barley Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+brouwerij_van_steenberge,0,0,244493451264,"{""name"":""Brouwerij Van Steenberge"",""city"":""Ertvelde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-09-344-50-71"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lindenlaan 25""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1766,""lon"":3.7462}}",1,46,1
+mishawaka_brewing-lake_effect_pale_ale,0,0,244868448258,"{""name"":""Lake Effect Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+avery_brewing_company-salvation,0,0,244373585922,"{""name"":""Salvation"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
+kaiserdom_privatbrauerei_bamberg-kellerbier,0,0,244742291458,"{""name"":""Kellerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+unibroue-16,0,0,245124300800,"{""name"":""16"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,63,1
+brauhaus_am_waldschlosschen-waldschlosschen_dunkel,0,0,244494041088,"{""name"":""Waldschlösschen Dunkel"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_am_waldschlosschen"",""updated"":""2010-07-22 20:00:20"",""description"":""dark, bottom-fermented, more on the sweet side, made of 100% barley malt according to ther description, very good to meat"",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,48,1
+four_peaks_brewing,0,0,244616200194,"{""name"":""Four Peaks Brewing"",""city"":""Tempe"",""state"":""Arizona"",""code"":""85281"",""country"":""United States"",""phone"":""1-480-303-9967"",""website"":""http://www.fourpeaks.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1340 East Eighth Street #103""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.4194,""lon"":-111.916}}",1,22,1
+thirsty_dog_brewing-hoppus_maximus,0,0,245112045568,"{""name"":""Hoppus Maximus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The complex charactor of American hops and amber colored caramel malts make it crisp & refreshing."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,32,1
+black_toad_brewing_company-dark_ale,0,0,244374568961,"{""name"":""Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_toad_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
+anchor_brewing-wheat,0,0,244373979137,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
+copper_dragon_brewing-saison,0,0,244493975552,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_dragon_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+rail_house_restaurant_and_brewpub-scottish_ale,0,0,244990607360,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+raccoon_river_brewing-stonecutter_stout,0,0,244990869507,"{""name"":""Stonecutter Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
+great_lakes_brewing-barrel_select_pils,0,0,244742422528,"{""name"":""Barrel Select Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+golden_valley_brewery_and_pub-dundee_porter,0,0,244616527874,"{""name"":""Dundee Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
+midnight_sun_brewing_co-fahrwasser_fairway_pilsner,0,0,244868055041,"{""name"":""Fahrwasser Fairway Pilsner"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Reid is our onsite go-to beer guy who handles the bulk of our to-go beer sales. Reid is a full-time UAA student who manages to sell beer at MSBC, run a side welding business, keep the golf discs flying all year-round & create music with his band, Bushwood. He wrote and performed his song \""No 9 to 5\"", which resonates his idea of a fairway to heaven.\r\n\r\nFAHRWASSER means \""fair water\"" or \""fairway\"". This inspired pilsner breaks par with every sip.\r\n\r\nAvailability:\r\nAK - draft and 22-oz bottles (limited release begins 05/15/2009)"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,26,1
+brasserie_de_silly,0,0,244375355396,"{""name"":""Brasserie de Silly"",""city"":""Silly"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-068-55-16-95"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Ville Basse 141""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.6493,""lon"":3.9242}}",1,44,1
+bell_s_brewery_inc-consecrator_doppelbock_beer,0,0,244374962180,"{""name"":""Consecrator Doppelbock Beer"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional dopplebock fermented with a Bohemian lager yeast. Reddish brown in color, with a mild hop profile, Consecrator is a well balanced, full bodied beer with hints of caramel and molasses in its smooth, malty finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,43,1
+adnams_co-broadside_ale,0,0,244357988352,"{""name"":""Broadside Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich fruitcake aromas – almonds, zest and conserved fruit. A wonderful balance of malt and hop flavours. A beer to savour and rich in flavour."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,1,1
+budjovick_mansk_pivovar,0,0,244493451265,"{""name"":""Budjovick Mansk Pivovar"",""city"":""esk Budjovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-038-866-201"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lidick 51""]}",1,46,1
+molson_breweries_of_canada-red_jack,0,0,244868513792,"{""name"":""Red Jack"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,27,1
+barley_john_s_brewpub-stockyard_ipa,0,0,244373585923,"{""name"":""Stockyard IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
+laconner_brewing-pseudo_lambic_framboise,0,0,244742356992,"{""name"":""Pseudo Lambic Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,20,1
+unibroue,0,0,245124300801,"{""name"":""Unibroue"",""city"":""Chambly"",""state"":""Quebec"",""code"":"""",""country"":""Canada"",""phone"":""1-450-658-7658"",""website"":""http://www.unibroue.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""There is more to certain beers than simple refreshment. Unibroue has raised the standards of conventional beer in by brewing craftsman beers for savouring. Of incomparable quality and a taste, the beers at Unibroue are entirely natural, contain no chemical additives or preservatives, and are made with first quality ingredients. Rediscover beer with Unibroue. You will never taste beer the same way again!"",""address"":[""80 Des Carrires""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4416,""lon"":-73.2595}}",1,63,1
+brausttte_der_steirerbrau_aktiengesellschaft-gosser,0,0,244494041089,"{""name"":""Gösser"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brausttte_der_steirerbrau_aktiengesellschaft"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+fuller_smith_turner_pbc-india_pale_ale,0,0,244616265728,"{""name"":""India Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+thirsty_dog_brewing-spiced_pumpkin_ale,0,0,245112045569,"{""name"":""Spiced Pumpkin Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with summer's harvest of pumpkin, squash, honey, ginger, and love of great beers."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,32,1
+blucreek_brewing_company-altbier,0,0,244374634496,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blucreek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
+anheuser_busch-beach_bum_blonde_ale,0,0,244374044672,"{""name"":""Beach Bum Blonde Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Beach Bum Blonde Ale is a traditional American \r\nblonde ale with a slightly spicy hop note and balanced malty flavor."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,41,1
+dark_horse_brewing_co-crooked_tree_ipa,0,0,244493975553,"{""name"":""Crooked Tree IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by West Coast I.P.A.'s, but brewed with Michigan style. The Crooked Tree is heavily dry hopped to give it a big aroma of pine and citrus. The flavors are big, yet very balanced between fresh hops and malt. Often described as \""grapefruit\"" our hops give this beer an excellent fruit flavor that finishes dry, crisp, and clean. It will pour a nice deep copper color with a bit of haziness. Because of our almost patented \""Intense Transfer Methods\"" our Crooked Tree has won several medals in the India Pale Ale category."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+randy_s_fun_hunters_brewery_restaurant_and_banquet_center-amber_lager,0,0,244990607361,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
+real_ale_brewing_company-firemans_4,0,0,244990935040,"{""name"":""Firemans #4"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Smooth blend of malt, citrus and fruit"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,25,1
+great_waters_brewing_company-old_bastard,0,0,244742422529,"{""name"":""Old Bastard"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
+gordon_biersch_brewing,0,0,244616527875,"{""name"":""Gordon Biersch Brewing"",""city"":""San Jose"",""state"":""California"",""code"":""95112"",""country"":""United States"",""phone"":""1-408-278-1008"",""website"":""http://www.gordonbiersch.com/brewery"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""357 East Taylor Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.3526,""lon"":-121.893}}",1,23,1
+new_holland_brewing_company-blue_goat,0,0,244868055042,"{""name"":""Blue Goat"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Chestnut in color with a nutty malt profile from its signature Munich malt. A muted hop presence and smooth caramelized body culminate in a clean, dry finish. Excellent choice for hearty meals with dark flavors and sauces. Grilled meats, musty cheeses or pecan pie.""}",1,26,1
+brasserie_lefebvre,0,0,244492140544,"{""name"":""Brasserie Lefebvre"",""city"":""Quenast"",""state"":""Brabant Wallon"",""code"":"""",""country"":""Belgium"",""phone"":""32-067-67-07-66"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chemin du Croly 52""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.6746,""lon"":4.1509}}",1,44,1
+bierbrouwerij_st_christoffel,0,0,244375027712,"{""name"":""Bierbrouwerij St.Christoffel"",""city"":""Roermond"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-71.51.56.085"",""website"":""http://www.christoffelbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Beerbrewery St. Christoffel is a relatively young brewery, founded in 1986. Our brewery is situated in the former coalmining-town Roermond in Dutch Limburg and named after the patronsaint of Roermond: Saint Christoffel. The brewery started very small and was at first situated behind a house. In 1995 the brewery moved to her present facility. With moving there, the brewingcapacity greatly enhanced due to new brewing-, fermenting- and lagerfacilities. Christoffel brews according to the German Reinheitsgebot von 1516: which means the brewingprocess takes place in a completely natural way. Around the year 1990, Christoffel Blond was awarded 3 years in a row with the Dutch title: Best Beer from the Netherlands."",""address"":[""Metaalweg 10""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1684,""lon"":6.0515}}",1,43,1
+aktienbrauerei_kaufbeuren,0,0,244358053888,"{""name"":""Aktienbrauerei Kaufbeuren"",""city"":""Kaufbeuren"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8341-/-430430"",""website"":""http://www.aktien-brauerei.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hohe Buchleuthe 3""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8781,""lon"":10.6161}}",1,1,1
+caldera_brewing-dark_lager,0,0,244493451266,"{""name"":""Dark Lager"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A German-style Munich Duenkle. Dark and smooth. Release date: February 1."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+moose_s_tooth_pub_and_pizzeria-wild_country_raspberry_wheat,0,0,244868513793,"{""name"":""Wild Country Raspberry Wheat"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with wheat and barley malts and flavored with pureed raspberries, this pink-hued, slightly tart ale gives a clean sip."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
+bayerische_staatsbrauerei_weihenstephan-korbinian,0,0,244373651456,"{""name"":""Korbinian"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,40,1
+lewis_clark_brewing_company,0,0,244742356993,"{""name"":""Lewis & Clark Brewing Company"",""city"":""Helena"",""state"":""Montana"",""code"":""59601"",""country"":""United States"",""phone"":""(406) 442-5960"",""website"":""http://lewisandclarkbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""939 Getchell Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.5977,""lon"":-112.037}}",1,20,1
+union_barrel_works-round_boy_stout,0,0,245124300802,"{""name"":""Round Boy Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A nutritious st our that has a distinct, smooth and firm body. Specialty malts create a hint of nuttiness, coffee, chocolate, and roasted flavors."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,63,1
+breckenridge_brewery-hefe_proper_ale,0,0,244494106624,"{""name"":""Hefe Proper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+gilde_brauerei-lindener_spezial,0,0,244616265729,"{""name"":""Lindener Spezial"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gilde_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+thunderhead_brewery_2-grand_cru,0,0,245112111104,"{""name"":""Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+boston_beer_company-samuel_adams_boston_ale,0,0,244374634497,"{""name"":""Samuel Adams Boston Ale"",""abv"":4.94,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, refined version of a classic ale.\r\nSamuel Adams® Boston Ale was first brewed to celebrate the opening of our Boston Brewery. Like Samuel Adams Boston Lager®, it was an old family recipe that was rescued by Jim Koch from his father's attic. Samuel Adams® Boston Ale, a Stock Ale, has a complex, caramel malt character balanced with distinct spicy and herbal hop notes. Our proprietary ale yeast imparts a variety of fruit and ester notes in both the nose and flavor which are indicative of the style."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
+anheuser_busch-green_valley_wild_hop_lager,0,0,244374044673,"{""name"":""Green Valley Wild Hop Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
+de_proef_brouwerij-slaapmutske_triple_nightcap,0,0,244626620416,"{""name"":""Slaapmutske Triple Nightcap"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+redfish_new_orleans_brewhouse-angry_monk,0,0,244990607362,"{""name"":""Angry Monk"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redfish_new_orleans_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+richbrau_brewing_company-richbrau_abbey_style_ale,0,0,244990935041,"{""name"":""Richbrau Abbey-Style Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This recipe is meant to replicate a Belgian Abbey-style ale. Tart from the Belgian yeast but malty and sweet from the addition of rock candy sugar. Reddish brown in color."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,25,1
+hereford_hops_steakhouse_and_brewpub_3-hefeweizen,0,0,244742422530,"{""name"":""Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+granville_island_brewing_company-english_bay_pale_ale,0,0,244743208960,"{""name"":""English Bay Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+north_coast_brewing_company,0,0,244868120576,"{""name"":""North Coast Brewing Company"",""city"":""Fort Bragg"",""state"":""California"",""code"":""95437"",""country"":""United States"",""phone"":""1-707-964-2739"",""website"":""http://www.northcoastbrewing.com/home.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""455 North Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.4466,""lon"":-123.806}}",1,26,1
+brauerei_gss,0,0,244492140545,"{""name"":""Brauerei Gss"",""city"":""Leoben-Gss"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-38-42/20-90-58-"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brauhausgasse 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.3625,""lon"":15.0947}}",1,44,1
+big_buck_brewery-buck_naked,0,0,244375027713,"{""name"":""Buck Naked"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_buck_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American-style \""light beer\"". Formulated to appeal to those who prefer a lighter tasting brew."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,43,1
+alvinne_picobrouwerij-podge_belgian_imperial_stout,0,0,244358053889,"{""name"":""Podge Belgian Imperial Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alvinne_picobrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
+canadian_brewery,0,0,244493516800,"{""name"":""Canadian Brewery"",""city"":""Saskatoon"",""state"":""Saskatchewan"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.1344,""lon"":-106.648}}",1,46,1
+pabst_brewing_company-st_ides,0,0,244868513794,"{""name"":""St Ides"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""St. Ides High Gravity Premium Malt Liquor is the brand of choice with the new generation of malt liquor drinkers. With its high quality, high strength flavor, St. Ides compliments the lifestyle of the fast paced, urban, edgy malt liquor drinker of today.""}",1,27,1
+big_time_brewing-old_rip_oatmeal_stout,0,0,244373651457,"{""name"":""Old Rip Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
+long_valley_pub_brewery-oatmeal_stout,0,0,244865171456,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
+victory_brewing-victory_lager,0,0,245752528896,"{""name"":""Victory Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Perfectly balanced, this authentic version of a German helles-style lager satisfies gloriously. Lean, German malts and fine European hops offer subtle harmony."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+brewmasters_restaurant_and_brewery_south-oatmeal_stout,0,0,244494106625,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+alaskan_brewing-alaskan_summer_ale,0,0,244357660672,"{""name"":""Alaskan Summer Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Based on the traditional style of Kölsch beer brewed in Cologne, Germany.\r\n\r\nAlaskan Summer Ale balances a softly malted palate with the clean freshness of Hallertauer hops. In the tradition of the style, neither overpowers the other. Both hops and malt come together to refresh and renew the palate. The straw-gold color and easy drinkability are an enjoyable way to celebrate summer.\r\n\r\nAlaskan Summer Ale is made from glacier-fed water and a generous blend of European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall Juneau receives each year.""}",1,0,1
+gordon_biersch_brewing-gordon_biersch_schwarzbier,0,0,244616265730,"{""name"":""Gordon Biersch Schwarzbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,22,1
+tied_house_cafe_brewery_san_jose-amber_light,0,0,245112111105,"{""name"":""Amber Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,32,1
+brasserie_de_blaugies,0,0,244374634498,"{""name"":""Brasserie de Blaugies"",""city"":""Blaugies"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-065-65-03-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de la Frontire, 435""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.3693,""lon"":3.827}}",1,42,1
+appalachian_brewing_company-wildflower_honey_wheat,0,0,244374044674,"{""name"":""Wildflower Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This American wheat beer is infused with 20% wildflower honey resulting in a light, semi-sweet refreshing beverage. This beer represents the next evolution of Sophie’s Sparkling Ale as we have added the wheat base, essentially combining two of our most popular beers. This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
+delafield_brewhaus-oats_and_barley_stout,0,0,244626620417,"{""name"":""Oats and Barley Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
+rogue_ales-dead_guy_ale,0,0,244990607363,"{""name"":""Dead Guy Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Gratefully dedicated to the Rogue in each of us. In the early 1990s Dead Guy Ale was created as a private tap sticker to celebrate the Mayan Day of the Dead (November 1st, All Souls Day) for Casa U Betcha in Portland, Oregon. The Dead Guy design proved popular and was incorporated into a bottled product a few years later with Maierbock as the elixir. Strangely, the association with the Grateful Dead is pure coincidence.\r\n\r\nDead Guy is a German-style Maibock made with Rogues proprietary \""PacMan\"" ale yeast. It is deep honey in color with a malty aroma, rich hearty flavor and a well balanced finish. Dead Guy is created from Northwest Harrington, Klages, Maier Munich and Carastan malts, along with Perle and Saaz Hops. Dead Guy Ale is available in 22-ounce bottles, 12-ounce 6-pack, and on draft."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,24,1
+ridgeway_brewing-very_bad_elf_special_reserve_ale,0,0,244991000576,"{""name"":""Very Bad Elf Special Reserve Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+hoffbrau_steaks_brewery_1-yellow_rose_cream_ale,0,0,244742488064,"{""name"":""Yellow Rose Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+great_dane_pub_and_brewing_2-old_glory_american_pale_ale,0,0,244743274496,"{""name"":""Old Glory American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+o_gara_s_bar_grill-cork_brown_ale,0,0,244868120577,"{""name"":""Cork Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+brauerei_schtzengarten-st_galler_landbier,0,0,244492140546,"{""name"":""St. Galler Landbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schtzengarten"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+brauhaus_am_waldschlosschen,0,0,244491812864,"{""name"":""Brauhaus am Waldschlösschen"",""city"":""Dresden"",""state"":""Sachsen"",""code"":""1099"",""country"":""Germany"",""phone"":""+49 351 - 652 39 00"",""website"":""http://www.waldschloesschen.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""traditional brew house, founded 1836, make their beer and just sell it in house"",""address"":[""Am Brauhaus 8b""]}",1,43,1
+angelic_brewing-shakedown_nut_brown,0,0,244358053890,"{""name"":""Shakedown Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""angelic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
+capital_brewery-capital_dark_doppelbock,0,0,244493516801,"{""name"":""Capital Dark Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,46,1
+palm_breweries,0,0,244991590400,"{""name"":""Palm Breweries"",""city"":""Steenhuffel"",""state"":""Brabant"",""code"":""1840"",""country"":""Belgium"",""phone"":""+32 (0)52 31 74 11"",""website"":""http://www.palmbreweries.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brouwerij Palm is the brewery of the top-fermented beers from Brabant; in the rural settings of Steenhuffel between Antwerp and Brussels. The duchy of Brabant has a tradition of using all the best ingredients nature has to offer. The Brabant draught horse once was Belgium's most important export product. To emphasise how proud they are of their region of Brabant, Brouwerij Palm uses the Brabant draught horse as a logo for its top-fermented beer Special Palm."",""address"":[""Steenhuffeldorp 3""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9953,""lon"":4.2835}}",1,27,1
+birrificia_le_baladin,0,0,244373651458,"{""name"":""Birrificia Le Baladin"",""city"":""Piozzo"",""state"":"""",""code"":""0"",""country"":""Italy"",""phone"":""39-0173-795431"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Piazza V Luglio, 15""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.5153,""lon"":7.8922}}",1,40,1
+maritime_pacific_brewing-firkin_ipa,0,0,244865236992,"{""name"":""Firkin IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
+wachusetts_brewing_company-green_monsta_ale,0,0,245752594432,"{""name"":""Green Monsta Ale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wachusetts_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A BIG PALE ALE with an awsome balance of Belgian malts with Fuggles and East Kent Golding hops."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,63,1
+breznak,0,0,244494172160,"{""name"":""Breznak"",""city"":"""",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":"""",""website"":""http://drinksunion.qbizm.cz/de/pages/vyrobky_p_breznak.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,48,1
+allentown_brew_works-pumpkin_ale,0,0,244357726208,"{""name"":""Pumpkin Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Holiday beer is made with real pumpkins, cloves, ginger, all-spice, nutmeg and cinnamon. This light copper colored winter ale will tantalize your taste buds. Pumkin pie in a glass!"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,0,1
+grand_teton_brewing_2-old_faithful_ale,0,0,244742750208,"{""name"":""Old Faithful Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_teton_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""ur Old Faithful Ale is a Pale Golden Ale with a crisp body and light malt sweetness. We cold condition this ale to give it a pleasantly smooth character and dry palate. The Willamette and imported UK Goldings hops give this beer a light floral hop aroma, making it exceptionally easy to drink."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+traquair_house_brewery-bear_ale,0,0,245112111106,"{""name"":""Bear Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traquair_house_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+brasserie_de_l_abbaye_des_rocs-brune,0,0,244374700032,"{""name"":""Brune"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+appleton_brewing-adler_brau_tailgate_amber,0,0,244374110208,"{""name"":""Adler Bräu Tailgate Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
+dix_barbecue_brewery-game_day,0,0,244626685952,"{""name"":""Game Day"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+roy_pitz_brewing_company,0,0,244990672896,"{""name"":""Roy Pitz Brewing Company"",""city"":""Chambersburg"",""state"":""Pennsylvania"",""code"":""17201"",""country"":""United States"",""phone"":""717-496-8753"",""website"":""http://roypitz.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""140 North Third Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.939,""lon"":-77.6566}}",1,24,1
+rogue_ales-honey_cream_ale,0,0,244991000577,"{""name"":""Honey Cream Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Honey Cream Ale is fermented warm like traditional cream ales but features an added twist--wildflower honey from Oregon. Honey imparts a dry, refreshing character to the beer because it ferments almost completely. The honey comes from a beekeeper in Blodgett, a tiny town 20 miles east of Newport.\r\n\r\nRogues Honey Cream Ale is a light, smooth, medium bodied ale, with a creamy head, hints of honey and a crisp light finish. Brewed with two-row Harrington, Klages and Munich malts and Crystal hops. Discontined for distribution in late 2005, available on tap only at Rogue Ales Public Houses."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,25,1
+hoppin_frog_brewery-gulden_fraug_belgian_ale,0,0,244742488065,"{""name"":""Gulden Fraug Belgian Ale"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Smooth malt flavors of this golden Belgian-style abbey ale are complimented by traditional imported ingredients. A slightly spicy and complex flavor makes this European celebration-style beer unique and refreshing"",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,21,1
+great_dane_pub_and_brewing_2-old_scratch_barleywine_1997,0,0,244743340032,"{""name"":""Old Scratch Barleywine 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+orlio_organic-orlio_common_ale,0,0,244868186112,"{""name"":""Orlio Common Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlio_organic"",""updated"":""2010-07-22 20:00:20"",""description"":""A light to medium bodied deep golden ale that starts with an elegantly creamy malt complexity and ends with a firm but understated hop finish that balances the initial sweetness with a touch of bitterness.""}",1,26,1
+brauhaus_johann_albrecht_konstanz-herbstbeer,0,0,244492206080,"{""name"":""Herbstbeer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,44,1
+brewer_s_art-ozzy,0,0,244491812865,"{""name"":""Ozzy"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewer_s_art"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewer's Art's answer to the Belgian \""devil\"" beers (i.e. Lucifer, Duvel, etc.). Both rich and dry, this beer is all too easy to consume in large quantities. Hopped with Styrian Goldings."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,43,1
+arcadia_brewing-london_porter,0,0,244358053891,"{""name"":""London Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+carver_brewing_co-iron_horse_oatmeal_stout,0,0,244493516802,"{""name"":""Iron Horse Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""One of these beers is available all of the time. Our heartiest beers emphasize roasted malts and the generous use of hops. Creamy, smooth and always nitrogenated, these beers are nearly a meal or a dessert in themselves."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,46,1
+pennichuck_brewing_company-backdraft_chocolate_porter,0,0,244991655936,"{""name"":""BackDraft Chocolate Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,27,1
+blue_ridge_brewing-colonel_paris_pale_ale,0,0,244373716992,"{""name"":""Colonel Paris Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic American pale ale with a taste not unlike fresh citrus follwed by a crisp and spicy bitterness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+marshall_wharf_brewing_company,0,0,244865302528,"{""name"":""Marshall Wharf Brewing Company"",""city"":""Belfast"",""state"":""Maine"",""code"":""4915"",""country"":""United States"",""phone"":""207-338-1707"",""website"":""http://www.marshallwharf.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2 Pinchy Lane""]}",1,20,1
+weinkeller_brewery_berwyn,0,0,245752659968,"{""name"":""Weinkeller Brewery - Berwyn"",""city"":""Berwyn"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8506,""lon"":-87.7937}}",1,63,1
+bridgeport_brewing-black_strap_stout,0,0,244494172161,"{""name"":""Black Strap Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+anheuser_busch-bare_knuckle_stout,0,0,244357791744,"{""name"":""Bare Knuckle Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
+great_northern_tavern_and_brewery,0,0,244742815744,"{""name"":""Great Northern Tavern and Brewery"",""city"":""Keystone"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.6042,""lon"":-105.948}}",1,22,1
+triple_rock_brewery,0,0,245112176640,"{""name"":""Triple Rock Brewery"",""city"":""Berkeley"",""state"":""California"",""code"":""94704"",""country"":""United States"",""phone"":""1-510-843-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1920 Shattuck Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.8734,""lon"":-122.269}}",1,32,1
+brasserie_de_l_abbaye_val_dieu-brune_brown,0,0,244374700033,"{""name"":""Brune / Brown"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+atwater_block_brewing-kolsch,0,0,244374110209,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+dix_barbecue_brewery-ipa,0,0,244626685953,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+saint_arnold_brewing-elissa_ipa,0,0,244990672897,"{""name"":""Elissa IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional India Pale Ale, the Elissa IPA is very hoppy with a properly balanced malty body. Elissa has huge hop additions in the kettle that give it a wonderful bitterness and is then dry-hopped in the fermenter to create the pleasant floral, hoppy nose. Our reverse osmosis water makes the bitter very soft with no harsh notes to it. The maltiness is derived from British Maris Otter malt. Its rich flavor stands up to the hops that would otherwise dominate this beer. The Elissa is an authentic version of an India Pale Ale (IPA) style."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,24,1
+routh_street_brewery_and_grille-oktoberfest,0,0,244991000578,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,25,1
+hops_grillhouse_brewery_cherry_creek-thoroughbred_red,0,0,244742553600,"{""name"":""Thoroughbred Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
+grupo_modelo-modelo_especial,0,0,244743340033,"{""name"":""Modelo especial"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":""Handcrafted with all-natural ingredients, Modelo Especial has built a solid reputation as a classic, thirst-quenching beer. The brand represents the can-package of Grupo Modelo's portfolio and is also available in non-returnable bottles.\r\n\r\nModelo Especial is a must for those looking to capture the flavor of Mexico. Modelo Especial has 145 calories per 12 ounce serving."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,23,1
+otto_s_pub_and_brewery-spring_creek_lager,0,0,244868186113,"{""name"":""Spring Creek Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Vienna-style lager with a smooth malt palate and a dry finish. ABV 5.2%"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+brauhaus_sion,0,0,244492206081,"{""name"":""Brauhaus Sion"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)221-/-2578540"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unter Taschenmacher 5-7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9394,""lon"":6.9594}}",1,44,1
+brewery_creek_brewing-mahogany_ale,0,0,244491878400,"{""name"":""Mahogany Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
+anchor_brewing-our_special_ale_1995,0,0,244358381568,"{""name"":""Our Special Ale 1995"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+atlantic_brewing_company-bar_harbor_blueberry_ale,0,0,244358053892,"{""name"":""Bar Harbor Blueberry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atlantic_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It does have a nice hint of wheat and blueberries to it.""}",1,1,1
+cerveceria_bucanero,0,0,244493582336,"{""name"":""Cerveceria Bucanero"",""city"":""Holguin"",""state"":"""",""code"":"""",""country"":""Cuba"",""phone"":""53-(5324)-46-8226"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Circunvalacin Sur Km. 3 1/2""]}",1,46,1
+pivovar_nchod-primator_double_24_primator_double_bock_beer,0,0,244991655937,"{""name"":""Primátor Double 24% / Primátor Double Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_nchod"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
+brasserie_bnifontaine-castelain_blond_biere_de_garde,0,0,244373716993,"{""name"":""Castelain Blond Biere de Garde"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_bnifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+mcguire_s_irish_pub_and_brewery_pensacola,0,0,244865302529,"{""name"":""McGuire's Irish Pub and Brewery - Pensacola"",""city"":""Pensacola"",""state"":""Florida"",""code"":""32501"",""country"":""United States"",""phone"":""1-850-433-6789"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 East Gregory Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.4181,""lon"":-87.2024}}",1,20,1
+western_reserve_brewing,0,0,245752659969,"{""name"":""Western Reserve Brewing"",""city"":""Cleveland"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,63,1
+abbaye_notre_dame_du_st_remy-rochefort_8,0,0,244358184960,"{""name"":""Rochefort 8"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_notre_dame_du_st_remy"",""updated"":""2010-07-22 20:00:20"",""description"":""Yellowish-brown colour, with a more pronounced aroma, more fruits and a slight amount of Demi-Sec. This variety constitutes the largest proportion of production.""}",1,2,1
+brouwerij_boon-mariage_parfait_1995,0,0,244494237696,"{""name"":""Mariage Parfait 1995"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,48,1
+appalachian_brewing_company-pennypacker_porter,0,0,244357791745,"{""name"":""Pennypacker Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This full-bodied dry cousin of the stout has a slight roast flavor and is dark brown in color with a red hue. This is London’s classic beer style named for the baggage carriers that appreciated it so much.\r\nGovernor Pennypacker was one of Pennsylvania’s more notable politicians. He oversaw the construction and held the lavish ceremonies designating the opening of the Commonwealth’s beautiful Capitol Building"",""style"":""Porter"",""category"":""Irish Ale""}",1,0,1
+greenshields_brewery_and_pub-munich_summer_fest,0,0,244742881280,"{""name"":""Munich Summer Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,22,1
+troegs_brewing-scratch_21_2009_artisan_ale,0,0,245112176641,"{""name"":""Scratch #21 2009 - Artisan Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #21-2009 is an exercise in deconstruction and minimalism. This Belgian Ale has distinct roots in The Mad Elf minus some key components.\r\n \r\nThe cherries? Gone.\r\nThe honey? Gone.\r\nThe chocolate malt? Gone.\r\n\r\nWait, this sounds familiar. It almost sounds like a naked version of The Mad Elf.\r\n \r\nComing in just under 8% ABV, this unfiltered golden beauty shows off the pronounced yeast flavor that made The Mad Elf famous as well as a touch of alcohol and some mellow malt flavors."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,32,1
+brauhaus_brew_hall-scotch_ale,0,0,244491419648,"{""name"":""Scotch Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_brew_hall"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally brewed exclusively for beer shows, this award-winning ale has always been a Brau Brothers favorite! This is not your typical Scotch Ale. Combined with traditional malt\r\nsweetness is a distinct smoke flavor derived from authentic peat-smoked malt. This beer will change your opinion about Scottish ales due to its drinkability. Hop flavor and bitterness are minor, yet balance out this malty beer.\r\n\r\nBrau Scotch Ale is copper to amber in color with an off-white head of tightly laced bubbles. Wide-bowled glassware will allow the sweet and smoky aroma to escape. This ale can be served from 34- 50 degrees Fahrenheit. Lower temps will make it easier to drink while higher temps will enhance both malt and hop flavor. Portion control is important as this beer."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,42,1
+augustiner_brau_munchen-pils,0,0,244374110210,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+dostal_alley,0,0,244626685954,"{""name"":""Dostal Alley"",""city"":""Central City"",""state"":""Colorado"",""code"":""80427"",""country"":""United States"",""phone"":""1-303-582-1610"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Dostal Alley""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.8019,""lon"":-105.514}}",1,47,1
+samuel_smith_old_brewery_tadcaster-winter_welcome_1996_1997,0,0,244990672898,"{""name"":""Winter Welcome 1996-1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+rowland_s_calumet_brewery-calumet_wheat,0,0,244991066112,"{""name"":""Calumet Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+jurupa_valley_brewing-double_chocolate_stout,0,0,244742553601,"{""name"":""Double Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jurupa_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+harmon_brewing_company-puget_brown_porter,0,0,244743405568,"{""name"":""Puget Brown Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our brown porter is brewed with eight different malts to produce a smooth, well balanced, dark beer. A specially roasted barley provides a hint of chocolate. 5.6% ABV"",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
+pacific_beach_brewhouse-blonde,0,0,244868186114,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+breckenridge_brewery-471_ipa,0,0,244492206082,"{""name"":""471 IPA"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppy? Brother, 471 IPA redefines hoppy. 471 is a small batch, limited edition ale that was created by our Brewmaster to separate the weak from the strong. 471 is a double IPA, that combines Pale, Munich, Caramel-30, Carapils and Torrified Wheat malts, with Chinook, Centennial, Simcoe and Fuggles hops. It has a big sweet mouthfeel, followed by more hoppiness than you've ever had at one time. Enjoy."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,44,1
+broad_ripple_brewing-wheat_beer,0,0,244491878401,"{""name"":""Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
+anderson_valley_brewing-winter_solstice_seasonal_ale_2002,0,0,244358381569,"{""name"":""Winter Solstice Seasonal Ale 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+bar_harbor_brewing_company-thunder_hole_ale,0,0,244358119424,"{""name"":""Thunder Hole Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bar_harbor_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
+chelsea_brewing_company-blueberry_wheat,0,0,244493582337,"{""name"":""Blueberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,46,1
+pivovar_velk_popovice-kozel_premium,0,0,244991655938,"{""name"":""Kozel Premium"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_velk_popovice"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+brasserie_de_brunehaut-brasserie_de_brunehaut_bio_biere_blonde_organic,0,0,244373782528,"{""name"":""Brasserie De Brunehaut Bio Bière Blonde (Organic)"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic Belgian blonde ale from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\r\nThis organic blonde ale presents a nice yeasty nose, long-lasting head and a spicy, earthy note on the palate."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
+mckenzie_brew_house-irish_red_ale,0,0,244865368064,"{""name"":""Irish Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+weyerbacher_brewing_company-twelve,0,0,245752659970,"{""name"":""Twelve"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our 12th anniversary brew is a Rye Barleywine. Checking in at 10.2% abv, Twelve is being released in July and through the end of the year. Made from 50% Rye Malt and 50% Barley Malt, this strong ale is extremely viscous. The rye adds a tantalizing note of flavor on the palate with a hint of tartness you've come to expect from Rye. Slightly warm when its young, the beer will age very well, perhap 5 years or more. We're guessing that peak taste will be in the 1 to 2 year old range, with 3 and 4 not far behind. Be sure to lay some down in your collection."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,63,1
+abita_brewing_company-abita_golden,0,0,244358184961,"{""name"":""Abita Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:49:38"",""description"":""Abita Golden is a crisp, clean continental lager. Just four ingredients are all it takes."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+brouwerij_bosteels,0,0,244494237697,"{""name"":""Brouwerij Bosteels"",""city"":""Buggenhout"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-33-22-82"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kerkstraat 92""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0138,""lon"":4.2018}}",1,48,1
+appalachian_brewing_company-zoigl_star_lager,0,0,244357791746,"{""name"":""Zoigl Star Lager"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Zoigl is a golden, unfiltered lager beer which was originally brewed only in the region of Eastern Bavaria, between Franconia and the Czech Republic. For centuries, Zoigl was brewed in brewhouses owned by the town or an association of small brewers. \r\n\r\nThe Zoigl-Star, a six-angular star similar to the Star of David, was the sign of brewers in the middle ages. The star symbolizes the three elements (water, earth, and fire) and the three ingredients (water, malt, and hops) used for brewing. The importance of the yeast was not yet known in the 1400’s."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
+harmon_brewing_company-mt_takhoma_blonde_ale,0,0,244742946816,"{""name"":""Mt. Takhoma Blonde Ale"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""German Pilsner Malt and a touch of flaked wheat are used to produce this light bodied, straw colored ale. Horizon and Glacier hops provide the balance. This beer finishes crisp and dry. Try this with and orange slice. 3.8% ABV"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,22,1
+twin_rivers_brewing-imperial_stout,0,0,245112176642,"{""name"":""Imperial Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+brouwerij_bavik_de_brabandere,0,0,244491485184,"{""name"":""Brouwerij Bavik - De Brabandere"",""city"":""Bavikhove"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-56-71-13-79"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rijksweg 33""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8628,""lon"":3.2992}}",1,42,1
+beach_brewing-magic_brew,0,0,244374175744,"{""name"":""Magic Brew"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
+duneland_brewhouse_pub_and_restaurant,0,0,244626751488,"{""name"":""Duneland Brewhouse Pub and Restaurant"",""city"":""Michigan City"",""state"":""Indiana"",""code"":""46360"",""country"":""United States"",""phone"":""1-219-878-9180"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.7075,""lon"":-86.895}}",1,47,1
+sapporo_breweries_chuo-draft,0,0,244990738432,"{""name"":""Draft"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sapporo_breweries_chuo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,24,1
+rush_river_brewing-the_unforgiven_amber_ale,0,0,244991131648,"{""name"":""The Unforgiven Amber Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rush_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
+jw_lees_and_co_brewers_ltd-manchester_star_ale,0,0,244742553602,"{""name"":""Manchester Star Ale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
+hoppy_brewing_company-liquid_sunshine_blonde_ale,0,0,244743405569,"{""name"":""Liquid Sunshine Blonde Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""s a unique, all-natural style of beer that currently falls under the category of a Specialty Ale. In other words, there is no true category for this beer... Characterized by its distinctive Mount Hood hop aroma and beautiful blonde color, Liquid Sunshine™ is brewed at a low temperature to create a nice light dry finish. Using only the finest 2-row malted barley, wheat, rye, and great northwestern grown hops, this combination results in a clean, crisp, and uniquely refreshing beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\r\nThere’s nothing like it under the sun!!!"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,23,1
+pacific_rim_brewing-puget_porter,0,0,244991262720,"{""name"":""Puget Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,26,1
+breckenridge_brewery,0,0,244492271616,"{""name"":""Breckenridge Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80204"",""country"":""United States"",""phone"":""303-623-2739"",""website"":""http://www.breckbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""471 Kalamath Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7236,""lon"":-105.001}}",1,44,1
+brouwerij_van_steenberge-gulden_draak,0,0,244491943936,"{""name"":""Gulden Draak"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""Gulden Draak is a beer in a class of its own. It is a beer that is rich and glowing, so full of its very own characteristic flavour, that it reminds some who try it of chocolate and others of coffee. In 1998 Gulden Draak was crowned “best beer in the world” by the American Tasting Institute! This beer has won many other awards too. Gulden Draak is named for the golden statue at the top of the clock tower of the Belgian city of Gent. The statue was originally given to the city of Constantinople by the Norse King Sigrid Magnusson in 1111, during the crusades; hence the form of a Viking ship that the beast was given. During a later crusade, Boudewijn IX (Count of Flanders and Emperor of Constantinople) took it back to Flanders with him because it was so beautiful. In 1382, the cities of Brugge and Gent did battle for the statue. Gent won.""}",1,43,1
+appalachian_brewing_company-abbey_roade_belgian_ale,0,0,244358381570,"{""name"":""Abbey Roade Belgian Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abbey Roade is brewed in the tradition of the famous Belgian Abbey-style ales. This wonderful brew is soft and sweet up front. The complex and spicy middle palate is in most part due to the generous addition of dark Belgian candy sugar. This semi-dry ale has notes of ripe plum and pear with a peppery finish. \r\nThe origins of the Abbey-style ale date back to the Middle Ages. Monks residing in monasteries, called Abbeys, brewed beer as a source of nutrition during their frequent and often lengthy fasting periods."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,3,1
+bayerische_staatsbrauerei_weihenstephan-festbier,0,0,244358119425,"{""name"":""Festbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,1,1
+chimay_abbaye_notre_dame_de_scourmont-chimay_premiere_chimay_red,0,0,244493582338,"{""name"":""Chimay Première (Chimay Red)"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""First sold in 75 cl (25.4 fl.oz.) bottles, it is noted for its coppery colour which makes it particularly attractive.\r\n\r\nTopped with a creamy head, it gives off a light, fruity apricot aroma produced by the fermentation. The taste perceived in the mouth is a balance confirming the fruity nuances noticed in the fragrance. \r\n\r\nIts taste, which imparts a silky sensation to the tongue, is made refreshing by a light touch of bitterness. To the palate, the taster perceives a pleasant astringency which complements the flavour qualities of this beer very harmoniously.\r\n\r\nThis top fermented Trappist beer, refermented in the bottle, is not pasteurised."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,46,1
+pivovary_staropramen-staropramen,0,0,244991721472,"{""name"":""Staropramen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovary_staropramen"",""updated"":""2010-07-22 20:00:20"",""description"":""Classic famous czech beer from Praha, one of the best beers of the world"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,27,1
+brasserie_duyck-jenlain_st_druon_de_sebourg,0,0,244490633216,"{""name"":""Jenlain St Druon de Sebourg"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_duyck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+mcmenamins_mill_creek-porter,0,0,244865368065,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
+whitbread_beer_company-mackeson_xxx_stout,0,0,245752725504,"{""name"":""Mackeson XXX Stout"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitbread_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Sweet Stout"",""category"":""British Ale""}",1,63,1
+abita_brewing_company-abita_light_beer,0,0,244358184962,"{""name"":""Abita Light Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:50:18"",""description"":""Uniquely hand-crafted using 100% all natural ingredients: The result is the smoothest, most flavorful light beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,2,1
+brouwerij_st_bernardus,0,0,244494237698,"{""name"":""Brouwerij St. Bernardus"",""city"":""Watou"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-057/38.80.21"",""website"":""http://www.sintbernardus.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Trappistenweg 23""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8425,""lon"":2.6362}}",1,48,1
+august_schell_brewing,0,0,244357857280,"{""name"":""August Schell Brewing"",""city"":""New Ulm"",""state"":""Minnesota"",""code"":""56073"",""country"":""United States"",""phone"":""800-770-5020"",""website"":""http://www.schellsbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The August Schell Brewing Company is a brewing company in New Ulm, Minnesota. It was founded by German immigrants August Schell and Jacob Bernhardt in 1860 and passed into the possession of the Schell family in 1866. It is the second oldest family-owned brewery in America and became the oldest and largest brewery in Minnesota when the company bought the Grain Belt rights in 2002."",""address"":[""1860 Schell Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2896,""lon"":-94.449}}",1,0,1
+harviestoun_brewery-bitter_and_twisted,0,0,244742946817,"{""name"":""Bitter and Twisted"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harviestoun_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+union_barrel_works,0,0,245112242176,"{""name"":""Union Barrel Works"",""city"":""Reamstown"",""state"":""Pennsylvania"",""code"":""17567"",""country"":""United States"",""phone"":""717-335-7837"",""website"":""http://www.unionbarrelworks.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Union Barrel Works is a restaurant and brew pub located in Reamstown, Pennsylvania in an historic building which originally functioned as a hardware store. It later became Reamstown Garment and was a sewing factory. The building itself was built in 1911 and still has the original hardwood maple floors and authentic tin ceiling. Come visit us for a great atmosphere, better food and excellent beer!"",""address"":[""6 N. Reamstown Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2118,""lon"":-76.1232}}",1,32,1
+brouwerij_de_block-satan_gold,0,0,244491485185,"{""name"":""Satan Gold"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_block"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+beamish_crawford-genuine_irish_stout,0,0,244374175745,"{""name"":""Genuine Irish Stout"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beamish_crawford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
+elysian_brewing_tangletown-foster_child_australian_lager,0,0,244626751489,"{""name"":""Foster Child Australian Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewing_tangletown"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+simmerberg_brusttt_und_taferne-weizen,0,0,244990738433,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,24,1
+scuttlebutt_brewing-sequoia_red,0,0,244991131649,"{""name"":""Sequoia Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,25,1
+kleinbrouwerij_de_glazen_toren-ondineke_oilsjtersen_tripel,0,0,244742619136,"{""name"":""Ondineke Oilsjtersen Tripel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kleinbrouwerij_de_glazen_toren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+humboldt_brewing-redwood_amber,0,0,244743471104,"{""name"":""Redwood Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,23,1
+pinnacle_peak_patio_steakhouse_microbrewery,0,0,244991262721,"{""name"":""Pinnacle Peak Patio Steakhouse & Microbrewery"",""city"":""Scottsdale"",""state"":""Arizona"",""code"":""85255"",""country"":""United States"",""phone"":""1-480-563-5133"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10426 East Jomax Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.7268,""lon"":-111.853}}",1,26,1
+broad_ripple_brewing-stout,0,0,244492271617,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
+bulldog_brewing-aztec_amaranth_ale,0,0,244492009472,"{""name"":""Aztec Amaranth Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bulldog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+atwater_block_brewing-alt,0,0,244358381571,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
+bayern_brewing,0,0,244358119426,"{""name"":""Bayern Brewing"",""city"":""Missoula"",""state"":""Montana"",""code"":""59801"",""country"":""United States"",""phone"":""1-406-721-1482"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1507 Montana Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.8726,""lon"":-114.02}}",1,1,1
+courthouse_pub,0,0,244493647872,"{""name"":""Courthouse Pub"",""city"":""Manitowoc"",""state"":""Wisconsin"",""code"":""54220"",""country"":""United States"",""phone"":""1-920-686-1166"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1001 South Eighth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0886,""lon"":-87.6576}}",1,46,1
+pivzavod_baltika-baltika_9,0,0,244991721473,"{""name"":""Baltika #9"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+brauerei_schumacher-alt,0,0,244490633217,"{""name"":""Alt"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_schumacher"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
+mcmullen_sons,0,0,244865368066,"{""name"":""McMullen & Sons"",""city"":""Hertford"",""state"":""Hertfordshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01992)-584911"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""26 Old Cross""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.7975,""lon"":-0.0806}}",1,20,1
+yazoo_brewing-esb,0,0,245752725505,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,63,1
+allentown_brew_works-fegley_s_amber_lager,0,0,244358184963,"{""name"":""Fegley's Amber Lager"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber Colored lager with a nice caramel malt flavor backed by a nice dose of Imported Hersbrucker Hops for a nice easy drinking lager."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
+brouwerij_st_feuillien-brune_bruin,0,0,244494237699,"{""name"":""Brune / Bruin"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_feuillien"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+avery_brewing_company-old_jubilation_ale,0,0,244357857281,"{""name"":""Old Jubilation Ale"",""abv"":8.0,""ibu"":30.0,""srm"":0.0,""upc"":7,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-12-19 09:56:02"",""description"":""A winter strong ale with mahogany hue, a hint of hazelnuts and a finish reminiscent of mocha and toffee. No spices, just a perfect blend of five specialty malts."",""style"":""Strong Ale"",""category"":""British Ale""}",1,0,1
+harviestoun_brewery-old_engine_oil,0,0,244742946818,"{""name"":""Old Engine Oil"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harviestoun_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,22,1
+upstream_brewing_company_at_legacy-blackstone_stout,0,0,245112242177,"{""name"":""Blackstone Stout"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,32,1
+brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_trappist_extra,0,0,244491550720,"{""name"":""Achel Trappist Extra"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+bell_s_brewery_inc-best_brown_ale,0,0,244374175746,"{""name"":""Best Brown Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich brown ale perfect for the fall and winter. Plenty of malt character and smooth sweet finish give this brown ale its distinct character."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
+f_x_matt_brewing-saranac_pumpkin_ale,0,0,244626817024,"{""name"":""Saranac Pumpkin Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Pumpkin Ale is brewed with Pumpkin, Cinnamon, Allspice, Cloves, Ginger and Vanilla. Look for a full-body and amber color. We're sure you'll enjoy this special brew!"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,47,1
+ska_brewing_company-modus_hoperandi,0,0,244990738434,"{""name"":""Modus Hoperandi"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,24,1
+sharktooth_brewing-big_kahuna_brown,0,0,244991131650,"{""name"":""Big Kahuna Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
+kona_brewing-black_sand_porter,0,0,244742619137,"{""name"":""Black Sand Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
+independence_brew_pub-belgian_singel,0,0,244743471105,"{""name"":""Belgian Singel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+pyramid_alehouse_brewery_and_restaurant_seattle-5_000_year_ale,0,0,244991328256,"{""name"":""5,000 Year Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+brouwerij_verhaeghe,0,0,244492271618,"{""name"":""Brouwerij Verhaeghe"",""city"":""Vichte"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-056-77-70-32"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Beukenhofstraat 96""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8322,""lon"":3.3884}}",1,44,1
+cedar_brewing-red_rocket_amber_ale,0,0,244492009473,"{""name"":""Red Rocket Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+512_brewing_company-512_ipa,0,0,244358774784,"{""name"":""(512) IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""(512) India Pale Ale is a big, aggressively dry-hopped American IPA with smooth bitterness (~65 IBU) balanced by medium maltiness. Organic 2-row malted barley, loads of hops, and great Austin water create an ale with apricot and vanilla aromatics that lure you in for more."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
+bell_s_brewery_inc-bell_s_cherry_stout,0,0,244358447104,"{""name"":""Bell's Cherry Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich and powerful beer with tart cherry appeal, make this a fine stout."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,3,1
+big_ridge_brewing-old_sullivan_porter,0,0,244358119427,"{""name"":""Old Sullivan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+duclaw-misfit_red,0,0,244626096128,"{""name"":""Misfit Red"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""This medium bodied amber ale has a smooth, malt character with a hint of roasted (dark) malt flavor. This beer has just enough hops to balance and goes well with many foods."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
+pony_express_brewing,0,0,244991721474,"{""name"":""Pony Express Brewing"",""city"":""Olathe"",""state"":""Kansas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8814,""lon"":-94.8191}}",1,27,1
+brauerei_spezial,0,0,244490698752,"{""name"":""Brauerei Spezial"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-24304"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Obere Knigsstrae 10""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.8942,""lon"":10.8855}}",1,40,1
+mendocino_brewing_hopland-red_tail_ale,0,0,244865433600,"{""name"":""Red Tail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
+yuengling_son_brewing-yuengling_lager,0,0,245752791040,"{""name"":""Yuengling Lager"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Traditional Lager is an iconic American lager famous for its rich amber color and medium-bodied flavor. Brewed with roasted caramel malt for a subtle sweetness and a combination of cluster and cascade hops, this true original promises a well balanced taste with very distinct character. Its exceptional flavor and smooth finish is prevalently enjoyed by consumers with even the most discerning tastes. Our flagship brand, Yuengling Traditional Lager is an American favorite delivering consistent quality and refreshment that never disappoints. In fact, it's so widely known and unique in its class, in some areas you can ask for it simply by the name \""Lager.\"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,63,1
+amherst_brewing_company-patriots_pilsner,0,0,244358250496,"{""name"":""Patriots Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional European Pilsner light in body and color. This brew possesses mild hoppy flavors and a crisp clean finish. It is made with traditional European hops: Hallertau and Saaz."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,2,1
+bube_s_brewery-bube_s_india_pale_ale_ipa,0,0,244494303232,"{""name"":""Bube's India Pale Ale (IPA)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bube's rendition of this classic style is made with fine 2-row malted barley and West Coast hops. A wonderful malt finish with a delicate citrus aroma, reminiscent of its Old-World cousin."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+basil_t_s_brew_pub_and_italian_grill-bad_seed_pumpkin_ale,0,0,244357857282,"{""name"":""Bad Seed Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""basil_t_s_brew_pub_and_italian_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+abita_brewing_company-restoration_pale_ale,0,0,244358578176,"{""name"":""Restoration Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abita Restoration Pale Ale was created after the back-to-back hurricanes devastated Louisiana. With your help, the abita Brewing Company raised over $500,000 for hurricane relief. This brilliant, golden pale ale has a rich body, mild bitterness and a snappy, fresh citrus hop flavor and aroma. Cold filtered and brewed in small batches using no additives or preservatives, the Abita Company is proud to be Louisiana True."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
+heineken_international-heineken,0,0,244742946819,"{""name"":""Heineken"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
+victory_brewing-v_12,0,0,245748203520,"{""name"":""V-12"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Heady with a aromatic fruity start and taste, this amber ale features hints of pear and apricot in its well-nuanced flavor. The initial impression of fruitiness concludes in a refreshing dryness that begs you to sip again. Be fore- warned, this ale is immense as it registers 12% abv."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,32,1
+caldera_brewing-dry_hop_orange,0,0,244491550721,"{""name"":""Dry Hop Orange"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A conundrum in the world of beer. This ale does not fit any conventional beer style. Orange in color only, this beer has hop characteristics of oranges and tangerines.""}",1,42,1
+bell_s_brewery_inc-winter_white_ale,0,0,244374241280,"{""name"":""Winter White Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A Wheat Ale brewed with American Wheat and a proprietary blend of Hefe and classic Belgian-style yeasts. A refreshing winter alternative created from the subtle fusion of two classic flavors."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,41,1
+founders_brewing-founders_black_rye,0,0,244626817025,"{""name"":""Founders Black Rye"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer will surprise you with a big hop flavor and a toasty sweet aroma. Pours black from the chocolate and de-bitterized black rye malts. This ale is medium bodied and is well flavored with hints of toffee, nutty undertones and a dry crisp finish."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,47,1
+sudwerk_privatbrauerei_hbsch-marzen,0,0,245108441088,"{""name"":""Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sudwerk_privatbrauerei_hbsch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
+sierra_nevada_brewing_co,0,0,244991131651,"{""name"":""Sierra Nevada Brewing Co."",""city"":""Chico"",""state"":""California"",""code"":""95928"",""country"":""United States"",""phone"":""1-530-893-3520"",""website"":""http://www.sierranevada.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1075 East 20th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7246,""lon"":-121.816}}",1,25,1
+krogh_s_restaurant_and_brewpub-gold,0,0,244742684672,"{""name"":""Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+iron_city_brewing_co-ic_light,0,0,244743471106,"{""name"":""IC Light"",""abv"":4.15,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""IC Light is an original, not a watered down copy, and brewed to be light from start to finish."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,23,1
+pyramid_alehouse_brewery_and_restaurant_seattle-hefeweizen,0,0,244991328257,"{""name"":""Hefeweizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+browar_warka-warka_strong,0,0,244492271619,"{""name"":""Warka Strong"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_warka"",""updated"":""2010-07-22 20:00:20"",""description"":""European Strong Lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+corner_pub-ipa,0,0,244492009474,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""corner_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+abbaye_de_maredsous-6,0,0,244358840320,"{""name"":""6"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_maredsous"",""updated"":""2010-07-22 20:00:20"",""description"":""Blonde Ales are one of the fastest growing beer styles in Belgium, France and the UK. Moorgat's Maredsous 6 is an easy drinking Blonde with a balance of graininess and aromatic hop."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,5,1
+big_hole_brewing-mythical_white_grand_cru,0,0,244358447105,"{""name"":""Mythical White Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_hole_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+boston_beer_company-samuel_adams_holiday_porter,0,0,244358119428,"{""name"":""Samuel Adams Holiday Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Traditional, British style. Robust and full bodied. Introduced as a member of the Winter Classics Mix Pack in 2004, Samuel Adams® Holiday Porter with its rich malt complexity has become a favorite among our winter seasonal brews. In total, five varieties of malted barley are used in the brewing process including a variety of German malt called Carafa®. The Carafa® gives our Holiday Porter its smooth, roasted malt character. Add generous portions of imported hops to the mix and one has a brew that is both robust and high in drinkability."",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+egan_brewing-raspberry_ginger_mead,0,0,244626227200,"{""name"":""Raspberry Ginger Mead"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+privatbrauerei_bolten,0,0,244991787008,"{""name"":""Privatbrauerei Bolten"",""city"":""Korschenbroich"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2161-/-61790-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rheydter-Strae 138""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.1833,""lon"":6.4993}}",1,27,1
+brauhaus_brew_hall,0,0,244490764288,"{""name"":""Brauhaus Brew Hall"",""city"":""Lucan"",""state"":""Minnesota"",""code"":""56255"",""country"":""United States"",""phone"":""1-507-747-2796"",""website"":""http://www.braubrothersbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We are very excited to introduce Brau Brothers Brewing Company, LLC. We are a locally owned and operated brewery, producing strictly for a local and regional market. We like to stay close to the beer we produce as well as to the people who drink it. Our modest scale allows us to be more flexible, dynamic, and closer to retailers as well as beer drinkers."",""address"":[""111 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.4105,""lon"":-95.4107}}",1,40,1
+mississippi_brewing_co,0,0,244865433601,"{""name"":""Mississippi Brewing Co."",""city"":""Utica"",""state"":""New York"",""code"":""11042"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.687,""lon"":-73.708}}",1,20,1
+yingyi,0,0,91351115366400,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,63,1
+anchor_brewing-old_foghorn_2002,0,0,244358250497,"{""name"":""Old Foghorn 2002"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+bube_s_brewery-bube_s_munich_lager,0,0,244494303233,"{""name"":""Bube's Munich Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+berliner_kindl_brauerei_ag-weisse,0,0,244357857283,"{""name"":""Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""berliner_kindl_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+adnams_co,0,0,244358578177,"{""name"":""Adnams & Co."",""city"":""Southwold"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01502)-727200"",""website"":""http://www.adnams.co.uk"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Adnams is one of England's oldest and most respected breweries, but despite its rich heritage and enduring fame, Adnams is not a company willing to rest on its laurels. Its continued commitment to quality and innovative packaging designs has made it Britain's fastest growing brewery over the last two years. To top it off, Adnams' head brewer was recently chosen as Britain's Brewer of the Year by a panel of his peers. The aggressive team at Adnams is raring to go and keen to make a mark in the U.S."",""address"":[""IP18 6JW""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.3277,""lon"":1.6802}}",1,4,1
+heineken_international,0,0,244743012352,"{""name"":""Heineken International"",""city"":"""",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":"""",""website"":""http://www.heineken.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,22,1
+wdi_bru_huus-hell,0,0,245748203521,"{""name"":""Hell"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+capital_brewery-capital_munich_dark,0,0,244491616256,"{""name"":""Capital Munich Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+bellows_brew_crew-wheat,0,0,244374241281,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
+gasthof_brauerei_zum_frohsinn-dunkel,0,0,244626817026,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+tap_room_brewing_company,0,0,245108506624,"{""name"":""Tap Room Brewing Company"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.taproom21.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.8014,""lon"":-91.2396}}",1,24,1
+siletz_roadhouse_brewery-black_diamond_imperial_porter,0,0,244991197184,"{""name"":""Black Diamond Imperial Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
+left_hand_brewing_company-black_jack_porter,0,0,244742684673,"{""name"":""Black Jack Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
+issaquah_brewhouse-frosty_frog,0,0,244743471107,"{""name"":""Frosty Frog"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+river_horse_brewing_company-belgian_freeze_winter_ale,0,0,244991393792,"{""name"":""Belgian Freeze Winter Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As the days grow shorter and frost becomes snow, our Belgian Freeze winter ale is the perfect remedy to loosen the spirits. This deep amber tonic is brewed with lots of roasted caramel malt for body and warmth to bring in the holidays and see you through the spring."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,26,1
+bube_s_brewery-bube_s_brown_ale,0,0,244492337152,"{""name"":""Bube's Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Another one of our first recipes, which we have improved with experience. This ale is pleasantly malty with nutty and toffee like undertones. East Kent Golding hops were used to compliment this English style ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
+cricket_hill-circket_hill_american_ale,0,0,244492075008,"{""name"":""Circket Hill American Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American Ale is a favorite everywhere - an amber ale with a wonderful balance of caramel sweetness and hop flavor. The aroma has a slight note of citrus and rock candy. There is not an imported Ale on the market that tastes this fresh!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+ale_asylum,0,0,244358840321,"{""name"":""Ale Asylum"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53704"",""country"":""United States"",""phone"":""6086633926"",""website"":""http://www.aleasylum.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""HOURS OF OPERATION:"",""address"":[""3698 Kinsman Blvd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.1257,""lon"":-89.3253}}",1,5,1
+big_ridge_brewing-brotherhood_black_tan,0,0,244358447106,"{""name"":""Brotherhood Black & Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
+boulevard_brewing_company-boulevard_pale_ale,0,0,244358184960,"{""name"":""Boulevard Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard Pale Ale is a smooth, fruity, well-balanced beer with year-round appeal. A variety of caramel malts impart a rich flavor and amber color, while liberal use of whole hops adds zest and aroma. Pale Ale is the first beer we brewed, and continues to be a perennial favorite."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+egan_brewing-sod_off_baldrick,0,0,244626227201,"{""name"":""Sod Off, Baldrick"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+rail_house_restaurant_and_brewpub-pilsner_discontinued,0,0,244991787009,"{""name"":""Pilsner (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,27,1
+brouwerij_bockor,0,0,244490764289,"{""name"":""Brouwerij Bockor"",""city"":""Bellegem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-056-21-51-71"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kwabrugstraat 5""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7767,""lon"":3.2785}}",1,40,1
+mogollon_brewing_company-apache_trout_stout,0,0,244865433602,"{""name"":""Apache Trout Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""From Arizona’s high country comes Apache Trout Stout, a robust, full bodied, top fermented ale. Our brewers use mountain pure water, select roasted barley, hops and yeast to create this traditional style. Savor the balanced, roasted malt flavor and the lingering sweetness that makes this dry stout a cool weather treat."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,20,1
+ali_i_brewing-macadamia_nut_brown_ale,0,0,244359364608,"{""name"":""Macadamia Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+barley_island_brewing,0,0,244358250498,"{""name"":""Barley Island Brewing"",""city"":""Noblesville"",""state"":""Indiana"",""code"":""46060"",""country"":""United States"",""phone"":""1-317-770-5280"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""639 Conner Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0453,""lon"":-86.0155}}",1,2,1
+cains-dark_mild,0,0,244494368768,"{""name"":""Dark Mild"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:19:48"",""description"":""This is a smooth, full flavoured, truly dark mild with a rich creamy head. It has a full body and distinctive roasted malt taste, balanced by its fresh hop character. Complex flavours and aromas are achieved by blending deeply roasted malt and adding a selected blend of English hops, including dry hops, to the cask conditioned beer."",""style"":""English-Style Dark Mild Ale"",""category"":""British Ale""}",1,48,1
+big_boss_brewing_company-hell_s_belle,0,0,244357857284,"{""name"":""Hell's Belle"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_boss_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This style originated in Belgium to compete with the pilsners from Czechoslovakia, Germany, and Poland. It is a fruity ale with very strong carbonation, with complex, spicy flavors like cloves."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,0,1
+alesmith_brewing-ipa,0,0,244358578178,"{""name"":""IPA"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
+hoffbrau_steaks_brewery_1-black_rock_bock,0,0,244743012353,"{""name"":""Black Rock Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,22,1
+whitbread_beer_company-ale,0,0,245748269056,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitbread_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,32,1
+capital_city_brewing_company,0,0,244491616257,"{""name"":""Capital City Brewing Company"",""city"":""Washington"",""state"":""District of Columbia"",""code"":""20005"",""country"":""United States"",""phone"":""202.628.2222"",""website"":""http://www.capcitybrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Washington DC's first brewpub since prohibition, Capitol City Brewing Co. opened its doors in 1992. Our first location still stands in Downtown DC, at 11th and H St., NW. Our company policy is to bring the fine craft of brewing to every person who lives and visits our region, as well as treating them to a wonderful meal and a great experience."",""address"":[""1100 New York Ave, NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.8999,""lon"":-77.0272}}",1,42,1
+big_time_brewing-slam_dunkelweizen,0,0,244374306816,"{""name"":""Slam Dunkelweizen"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+george_gale_company-conquest_ale,0,0,244626817027,"{""name"":""Conquest Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,47,1
+taylor_brewing,0,0,245108506625,"{""name"":""Taylor Brewing"",""city"":""Lombard"",""state"":""Illinois"",""code"":""60148"",""country"":""United States"",""phone"":""1-630-990-8700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""717 East Butterfield Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8358,""lon"":-88.0091}}",1,24,1
+siletz_roadhouse_brewery-spruce_ale,0,0,244991197185,"{""name"":""Spruce Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+little_apple_brewing-blarney_stone_stout,0,0,244865695744,"{""name"":""Blarney Stone Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+jj_bitting_brewing-cali_steam_locomotive,0,0,244743536640,"{""name"":""Cali \""Steam\"" Locomotive"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+rock_bottom_restaurant_brewery_chicago,0,0,244991459328,"{""name"":""Rock Bottom Restaurant & Brewery - Chicago"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60610"",""country"":""United States"",""phone"":""1-312-755-9339"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 West Grand Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.8915,""lon"":-87.6284}}",1,26,1
+cambridge_brewing-charles_river_porter,0,0,244492402688,"{""name"":""Charles River Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Charles River Porter\r\n\r\nDeep and dark, full-bodied and robust, our Porter is crammed full of rich, roasted malt character. With underlying notes of fruitness, caramel and toffee, it finishes with a strong hop presence"",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
+dark_horse_brewing_co-plead_the_5th_imperial_stout,0,0,244492075009,"{""name"":""Plead the 5th Imperial Stout"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""It's big and full bodied with lots of roasted malts and balanced with heavy hops to put this imperial in a league of its own."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,43,1
+amherst_brewing_company-graduation_ale,0,0,244358840322,"{""name"":""Graduation Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden pale ale, slightly hoppy. Brewed each May for the upcoming graduates. It took you four hard years to graduate so we made this one easy to drink. Congratulations!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
+big_rock_brewery-grasshopper,0,0,244358447107,"{""name"":""Grasshopper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,3,1
+brauerei_gasthof_zur_krone-see_weizen_bio_hefeweizen,0,0,244474380288,"{""name"":""See-Weizen Bio-Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
+egan_brewing-steinworthy_oktoberfest,0,0,244626227202,"{""name"":""Steinworthy Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,46,1
+rail_house_restaurant_and_brewpub-stout_discontinued,0,0,244991787010,"{""name"":""Stout (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,27,1
+brouwerij_de_smedt,0,0,244490764290,"{""name"":""Brouwerij De Smedt"",""city"":""Opwijk"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-35-99-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ringlaan 18""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.971,""lon"":4.191}}",1,40,1
+molson_breweries_of_canada-molson_canadian,0,0,244865499136,"{""name"":""Molson Canadian"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":""Molson beers are imported directly from Canada. Crystal-clear, pure Canadian water, the finest Canadian prairie grains and select European hops give Molson a brewing heritage that dates back to 1786.\r\n\r\nMolson Canadian is Molson Brewing Company's flagship brand. Starting with crystal clear water, malted barley and the finest hops, Molson Canadian is slowly fermented to produce a smooth, refreshing beer with a genuine taste. Clean and clear, crisp and cold, Molson Canadian is a classic lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
+allentown_brew_works-pig_pen_pilsener,0,0,244359364609,"{""name"":""Pig Pen Pilsener"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp Clean and refreshing Golden Lager brewed with German Malt and Hops for an authentic flavor. Pig Pen Pils is a great introduction into the world of Craft Brewed beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,7,1
+big_sky_brewing-powder_hound_winter_ale,0,0,244358250499,"{""name"":""Powder Hound Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Two words describe Montana winters... Cold, dark, and snowy. And we wouldn't have it any other way, because it's the only time of year for Powder Hound, our Northern Rockies Winter Ale. Rich malt taste and an avalanche of hops will make you want to say these three words- \""I'll have another Powder Hound!\"" \r\n\r\nSince Powder Hound is our own creation, it does not fit neatly into a style. Some folks would call it an \""Old Ale\"" and others might call it a \""Winter Warmer\"". Regardless of what you call it, Powder Hound satisfies, with the fine, hand-selected British hops fully complementing the smooth malt notes. After a day on the snow, enjoy a Powder Hound Winter Ale. Available November through March."",""style"":""Old Ale"",""category"":""British Ale""}",1,2,1
+capitol_city_brewing_4-prohibition_porter,0,0,244494368769,"{""name"":""Prohibition Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capitol_city_brewing_4"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+bison_brewing-bison_chocolate_stout,0,0,244357922816,"{""name"":""Bison Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This richly textured, roasty dry stout has a boost of bitter and charismatic flavor from the addition of cocoa powder in the mash. We blend five unique organic malts to create Bison's most award winning beer.\"" from http://bisonbrew.com/chocolate-stout.asp\r\n\r\nAnd I concur. This is a relatively mild stout, with a malty rich flavor. Adding this to my list of preferred beers.""}",1,0,1
+anchor_brewing-our_special_ale_1994,0,0,244358643712,"{""name"":""Our Special Ale 1994"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+hook_ladder_brewing_company-hook_ladder_lighter,0,0,244743012354,"{""name"":""Hook & Ladder Lighter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_ladder_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The right choice when you desire a flavorful beer with a 'lighter' body. Only 94 calories!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,22,1
+abita_brewing_company-s_o_s,0,0,244359102464,"{""name"":""S.O.S"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:48:20"",""description"":""Save Our Shores (S.O.S) is an unfiltered weizen pils and has a brilliant golden color. A Charitable Pilsner"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
+cervecera_cuauhtmoc_moctezuma-cerveza_sol,0,0,244491681792,"{""name"":""Cerveza Sol"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
+brasserie_la_caracole-nostradamus,0,0,244491026432,"{""name"":""Nostradamus"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+gold_coast_brewery-golden_harvest_weizenbier,0,0,244626882560,"{""name"":""Golden Harvest Weizenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gold_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
+the_lost_abbey-lost_and_found_abbey_ale,0,0,245108572160,"{""name"":""Lost and Found Abbey Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""Lost and Found- Modeled after the great Trappist and Monastic beers that inspired the founding of our brewery. A richly deep garnet colored ale created from a blend of Domestic and imported malts. As part of our commitment to interesting brewing endeavors, Chef Vince created a special raisin puree for this beer. Malts, raisins and a fantastic yeast strain working in harmony produce a beer of amazing complexity and depth. Available in 750ml bottles and on draft at select inspired locations."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,24,1
+slab_city_brewing-holiday_ale,0,0,244991197186,"{""name"":""Holiday Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+magnolia_pub_and_brewery-cole_porter,0,0,244865695745,"{""name"":""Cole Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
+lagunitas_brewing_company-maximus_ale,0,0,244743536641,"{""name"":""Maximus Ale"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
+russian_river_brewing-parking_violation,0,0,244991459329,"{""name"":""Parking Violation"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Wouldn't it suck to have a job where nobody likes you? And, regardless of your name, people always call you Rita, as in \""Lovely Rita?\"" Sometimes people just shorten it to the simpler \""meter maid.\"" The funny thing about that is the Webster dictionary defines a \""meter maid\"" as \""a female member of a police department who is assigned to write tickets for parking violations.\"" You have to wonder how the male \""meter maids\"" feel about that! Parking Violation is an American style pale ale using lots of American hops, lots of quarters, and several trips back and forth to the parking lot. So, remember to drink responsibly and feed your meter."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+central_waters_brewing_company-happy_heron_pale_ale,0,0,244492402689,"{""name"":""Happy Heron Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This crisp, zesty American pale is characterized by the sharp bitterness missing in many domestic pale ales. The clean finish and slight fruity notes help make our flagship brew a delightful treat."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+dark_horse_brewing_co-three_guy_off_the_scale_barley_wine,0,0,244492075010,"{""name"":""Three Guy Off The Scale Barley Wine"",""abv"":15.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A barley wine style ale brewed to 15% alc with hints of raisin, chocolate, carmel, sherry, cherry, and alcohol, just to name a few and this beer will only get better with age."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,43,1
+appalachian_brewing_company-sophie_s_sparkling_ale,0,0,244358840323,"{""name"":""Sophie's Sparkling Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Braggart Mead styled ale is light and refreshing with an essence of orange blossoms, pear, and honey in the aroma and a balanced fruity and clean finish. \r\n\r\nThis style was developed by our Brewmaster to have the perfect carbonation and crispness on our summer’s hot and humid Pennsylvania days.""}",1,5,1
+big_sky_brewing-crystal_ale,0,0,244358447108,"{""name"":""Crystal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+brouwerij_abdij_der_trappisten_van_westmalle,0,0,244474445824,"{""name"":""Brouwerij Abdij der Trappisten van Westmalle"",""city"":""Westmalle"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-033-12-05-35"",""website"":""http://www.trappistwestmalle.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""or more than 200 years the Westmalle Trappists have chosen a life of prayer and work. That is their true vocation, entirely in accordance with the rule of Saint Benedict. Monks, he stipulates, have to provide for themselves. hus there is also a brewery within the abbey. The monks deliberately keep production small, with special care for man and the environment. And because profit is not their motive, they spend the surplus from it on charity work and on people in need."",""address"":[""Antwerpsesteenweg 476""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.2974,""lon"":4.6881}}",1,1,1
+elysian_brewery_public_house-ambrosia_maibock,0,0,244626292736,"{""name"":""Ambrosia Maibock"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
+red_star_brewery_grille-red_star_pilsner,0,0,244991852544,"{""name"":""Red Star Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,27,1
+brouwerij_van_den_bossche,0,0,244490764291,"{""name"":""Brouwerij Van Den Bossche"",""city"":""Sint-Lievens-Esse"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-054-50-04-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St Lievensplein 16""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8564,""lon"":3.8845}}",1,40,1
+moylan_s_brewery_restaurant-irish_dry_stout,0,0,244865499137,"{""name"":""Irish Dry Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
+alpine_beer_company-nelson,0,0,244359364610,"{""name"":""Nelson"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpine_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Golden Rye IPA.\r\nAn outstanding hop from New Zealand, Nelson Sauvin, is generously used throughout the brewing and dry-hopping of this unique beer. European rye is added for a smooth, malty addition to flavor. 1.065 OG 7%ABV"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
+boston_beer_company-samuel_adams_brown_ale,0,0,244358250500,"{""name"":""Samuel Adams Brown Ale"",""abv"":5.35,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""rk in color yet medium bodied. Rich and smooth.\r\nSamuel Adams® Brown Ale is a study in flavor, body, and style. Supported by an interesting blend of malts, it shines with a deep mahogany luster. The roasted malt blend is complex and deep as well, with notes of biscuit, nut and caramel. The hops are imported from Europe; Noble Spalt from Germany and citrusy Goldings, a traditional British ale hop selected from a single farm in East Kent. With moderate hop bitterness, a deep malt body, and a fruity ale fermentation character, Samuel Adams® Brown Ale satisfies the soul and doesn"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
+cervecera_jerome-cerveza_diablo,0,0,244494368770,"{""name"":""Cerveza Diablo"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+blackstone_restaurant_brewery-chaser_pale,0,0,244357922817,"{""name"":""Chaser Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blackstone_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+anheuser_busch-bud_dry,0,0,244358643713,"{""name"":""Bud Dry"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced in 1989 Bud Dry is the first dry-brewed beer produced by an American brewer. It is brewed with select hops, grains and barley malt, which results in a lighter body and less-sweet taste. As with all Anheuser-Busch beers, it is cold-filtered for a smooth draft taste, but then goes through a second cold-filtered finishing process to provide its unique taste."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
+hoppin_frog_brewery-wild_frog_wheat,0,0,244743077888,"{""name"":""Wild Frog Wheat"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional German-style, unfiltered wheat beer, with a lively balanced flavor. Although no fruit or spices were used in the brewing, these flavors are created by fermentation with special yeast from the oldest brewery in the world. Try Wild Frog Wheat with a slice of orange for a crisp, refreshing experience"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,22,1
+ali_i_brewing-kona_coffee_stout,0,0,244359168000,"{""name"":""Kona Coffee Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,6,1
+cheshire_cat_brewery-black_cat_stout,0,0,244491681793,"{""name"":""Black Cat Stout"",""abv"":6.15,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
+brauhaus_brew_hall-brau_light,0,0,244491091968,"{""name"":""Brau Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_brew_hall"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
+goose_island_beer_company_clybourn-kriek,0,0,244626882561,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,47,1
+three_floyds_brewing-munsterfest,0,0,245108572161,"{""name"":""Munsterfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,24,1
+spoetzl_brewery-shiner_kosmos_reserve,0,0,245108768768,"{""name"":""Shiner Kosmos Reserve"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Kosmos Spoetzl knew how to brew great beer. Born in Bavaria, Kosmos’ mastery of German brewing carried him as far as Egypt before he found his way to the small Texas town of Shiner. Our proud brewery still carries his name and commitment to excellence in brewing. This full-flavored, hop-jacked lager is every bit as unique as the man himself and our way of saluting the brewmaster who started it all."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+main_street_brewery-hop_daddy_ipa,0,0,244865761280,"{""name"":""Hop Daddy IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,21,1
+lakefront_brewery-old_3rd_street_xxx_belgian_strong_ale,0,0,244743536642,"{""name"":""Old 3rd Street XXX Belgian Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+abbaye_de_maredsous-10,0,0,244360216576,"{""name"":""10"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_maredsous"",""updated"":""2010-07-22 20:00:20"",""description"":""Moortgat's Maredsous 10 is an orangy-blond big sweet tripel nudging into a barley wine."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,9,1
+sabmiller_india-haywards_2000,0,0,244991459330,"{""name"":""Haywards 2000"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Haywards 2000 H2K is India's only beer with an ABV of 5.5%, whilst the rest of the beers are either less than 5% or greater than 7.5% - 8%\r\n\r\nTaste: Rich, smooth and crisp taste \r\nMalts: Indian malts, 6 row barley \r\nHops: Hop extract from Germany and Indian hops palate \r\nColour: Gold \r\nAvailability: Parts of India \r\nFermentation process: Bottom-fermented \r\nServing temperature: 7 - 9 °C \r\nPackaging: 650 ml and 330 ml glass bottle and 330 ml cans \r\n\r\nhttp://www.sabmiller.in/brands_haywards_2000.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+cervecera_nacional-atlas_lager,0,0,244492468224,"{""name"":""Atlas Lager"",""abv"":3.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_nacional"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+dock_street_beer-dock_street_amber,0,0,244624785408,"{""name"":""Dock Street Amber"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Dock Street Amber is a classic, top fermented ale and is the company flagship beer. \r\n\r\nIt is brewed with American Cascade hops and two row imported pale and caramel malts and then dry hopped. Our traditional brewing process gives this beer its subtle, complex and fruity character and its distinctive hop \""nose.\"" The result is an exceptionally balanced premium full bodied ale that finishes clean and smooth on the palate. It appeals to gourmets and beer aficionados.\r\n\r\nOur goal in brewing the Dock Street Amber was to produce a phenomenal tasting American beer. At the time it was created, most all full-bodied beers were imports.\"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+august_schell_brewing-grain_belt,0,0,244358905856,"{""name"":""Grain Belt"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer has changed hands a bit over its 60+ year history - first brewed by the Grain Belt Brewery in Minneapolis, then by the now-defunct Minnesota Brewing and currently by August Schell Brewing Co. in New Ulm."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+big_time_brewing-black_mulligan_dublin_stout,0,0,244358512640,"{""name"":""Black Mulligan Dublin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
+brouwerij_duvel_moortgat-maredsous_10_tripple,0,0,244474511360,"{""name"":""Maredsous 10 Tripple"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_duvel_moortgat"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1963, the Benedictine abbey of Maredsous entrusted the production and sales of the famed Maredsous beers to Duvel Moortgat. The monks continue to exercise strict control over its recipes and quality standards right up to today.\r\n\r\n \r\n\r\nRegardless of what colour or taste you choose, the Maredsous range has everything to intrigue you. These aromatic, delicate, fruity and velvety beers supplement each other in a perfect harmony as far as both colour and taste experience are concerned.\r\n\r\nThe blonde Maredsous with 6% alcohol content, the brown one with 8% alcohol content and the triple one with 10% alcohol content ripen first for two full months before they depart to their final destination. The specific bottle fermentation, refined by the brewery for its main brand Duvel, also give the Maredsous abbey beers an extra dimension. \t \r\n\r\nAbout Maredsous\r\n\r\nThe triple Maredsous with 10% alcohol content is one of the favourite beers of Michael Jackson, the outstanding beer ’pope’:\r\n\""These beers have long been my favourites. Above all the 10° is an especially tasty beer.\"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,1,1
+faultline_brewing_1-best_bitter,0,0,244626292737,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+richbrau_brewing_company,0,0,244991852545,"{""name"":""Richbrau Brewing Company"",""city"":""Richmond"",""state"":""Virginia"",""code"":""23219"",""country"":""United States"",""phone"":""(804) 644-3018"",""website"":""http://www.richbrau.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1214 East Cary St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.5356,""lon"":-77.4338}}",1,27,1
+brouwerij_van_steenberge-tikka_gold,0,0,244490829824,"{""name"":""Tikka Gold"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+nebraska_brewing_company-porter,0,0,244865499138,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
+anchor_brewing-liberty_ale,0,0,244359430144,"{""name"":""Liberty Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""San Francisco's famouse Liberty Ale was first brewed on the 18th of April, 1975 to celebrate the 200th anniversary of Paul Revere's historic ride. It is virtually handmade by the brewers of Anchor Steam Beer in one of the smallest and most traditional breweries in the world. Liberty Ale is made with the finest barley malt, fresh, whole hops, top fermenting yeast, pure water and the simple natural methods which reflect our exceptional respect for the ancient art of brewing. It is \""dry hopped,\"" a classic ale tradition, and slowly completes its fermentation in sealed vats in our cellars. This unique process creates Liberty Ale's distinctive bouquet and uncommonly delicate, entirely natural carbonation."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+brasserie_de_brunehaut,0,0,244358316032,"{""name"":""Brasserie de Brunehaut"",""city"":""Brunehaut"",""state"":""Hainaut"",""code"":""7623"",""country"":""Belgium"",""phone"":""32-069-34-64-11"",""website"":""http://www.brunehaut.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisanal (non-conglomerate) brewer, Brunehaut employs ancient Belgian brewing recipes, dating from the First Crusade and documented from 1096. Combining top (in-bottle) fermentation with modern production technologies, Brunehaut's signature ales include Dubble and Tripel bottle-conditioned ales, consistent with 1500+-year-old Belgian brewing traditions. Three bio (organic) beers, distributed under the Brunehaut label, use organic gains, grown by the brewers, within ten kilometers of the brewhaus."",""address"":[""Rue de Panneries 17""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.5109,""lon"":3.3883}}",1,2,1
+cervecera_jerome-cerveza_roja,0,0,244494434304,"{""name"":""Cerveza Roja"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
+bobcat_cafe_brewery,0,0,244357922818,"{""name"":""Bobcat Cafe & Brewery"",""city"":""Bristol"",""state"":""Vermont"",""code"":""5443"",""country"":""United States"",""phone"":""(802) 453-3311"",""website"":""http://www.bobcatcafe.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nestled at the foot of the Green Mountains & located right in the heart of Bristol, The Bobcat Cafe & Brewery is just walking distance from the town green, downtown shopping & the Crystal Palace B&B. Established in 2001, this popular, community oriented cafe & brewery features a wide selection of house brewed beers, a diverse menu to meet any taste, carefully selected wines & a full bar."",""address"":[""4 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.1332,""lon"":-73.0784}}",1,0,1
+anheuser_busch-bud_ice,0,0,244358643714,"{""name"":""Bud Ice"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Actually an Ice Lager. Introduced in 1984."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
+illinois_brewing-newmarket_pale_ale,0,0,244743077889,"{""name"":""Newmarket Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""illinois_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+amherst_brewing_company-bankers_gold,0,0,244359168001,"{""name"":""Bankers Gold"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Just another day at the bank. Very light, mild ale with a subtle hop finish. Brewed once a year in early Spring."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,6,1
+circle_v_brewing,0,0,244491681794,"{""name"":""Circle V Brewing"",""city"":""Indianapolis"",""state"":""Indiana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7684,""lon"":-86.158}}",1,42,1
+breckenridge_bbq_of_omaha,0,0,244491157504,"{""name"":""Breckenridge BBQ of Omaha"",""city"":""Omaha"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.254,""lon"":-95.9993}}",1,41,1
+gottberg_brew_pub-old_powerhouse_lager_discontinued,0,0,244626948096,"{""name"":""Old Powerhouse Lager (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+thunder_canyon_brewery,0,0,245108572162,"{""name"":""Thunder Canyon Brewery"",""city"":""Tucson"",""state"":""Arizona"",""code"":""85741"",""country"":""United States"",""phone"":""1-520-797-2652"",""website"":""http://www.thundercanyonbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7401 North La Cholla Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.3407,""lon"":-111.015}}",1,24,1
+stieglbrauerei_zu_salzburg_gmbh-columbus_pils,0,0,245108834304,"{""name"":""Columbus Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,25,1
+maisel_bru-benediktiner_dunkel,0,0,244865761281,"{""name"":""Benediktiner Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maisel_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+lancaster_brewing_co-gold_star_pilsner,0,0,244743536643,"{""name"":""Gold Star Pilsner"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp and refreshing, this classic Bohemian Pilsner brings noble hop flavor and traditional German maltiness into perfect union before another healthy dose of imported hops tips the scales towards a decidedly hoppy finish."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,23,1
+anchor_brewing-old_foghorn_1996,0,0,244360282112,"{""name"":""Old Foghorn 1996"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+sacramento_brewing_company-sacramento_bock,0,0,244991524864,"{""name"":""Sacramento Bock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A stronger German lager brewed with lots and lots of Munich malt for a toasty bready like aroma."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
+charlie_and_jake_s_brewery_and_bbq,0,0,244492468225,"{""name"":""Charlie and Jake's Brewery and BBQ"",""city"":""Melbourne"",""state"":""Florida"",""code"":""32940"",""country"":""United States"",""phone"":""1-321-752-7675"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6300 North Wickham Road #137""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.2126,""lon"":-80.6734}}",1,44,1
+dogfish_head_craft_brewery-aprihop,0,0,244624850944,"{""name"":""Aprihop"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with luscious apricots, finished with whole-leaf hops. A \""fruit beer for hop heads...\"" Ale Street News"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,43,1
+ballast_point_brewing-black_marlin_porter,0,0,244358905857,"{""name"":""Black Marlin Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ballast Point Black Marlin Porter is a rich dark chocolaty Porter with a distinctive American hop character. It is a great beer to go with hearty foods and is surprisingly one of the few beers that goes well with dessert. One of our favorite combinations here at Ballast Point is Black Marlin Porter with apple pie a la mode."",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
+black_creek_historic_brewery-black_creek_porter,0,0,244358512641,"{""name"":""Black Creek Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""black_creek_historic_brewery"",""updated"":""2011-06-08 07:10:06"",""description"":""Porter is a dark-coloured beer developed in the 1750s. Porter has a heavier flavour and aroma and a slightly sweet taste. Its name probably originates in the belief that this strong, nourishing drink was ideal for hard-working porters and labourers. Black Creek Porter is wonderful on its own, or with salty snacks.\n\n"",""style"":""Smoke Beer"",""category"":""Other Style""}",1,3,1
+browar_namyslow_sp_z_o_o,0,0,244474511361,"{""name"":""Browar Namysłów Sp. z o.o."",""city"":""Namysłów"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-(077)-40-39-100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Bolesawa Chrobrego 26""]}",1,1,1
+fifty_fifty_brewing_co-rockslide_ipa,0,0,244626292738,"{""name"":""Rockslide IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""If being in one of the coldest places in the US isn't extreme enough, the contents of this beer may very well redefine your commitment to the pursuit of hops. Rockslide IPA is brewed in the 'West Coast' style with aggressive amounts of American hops such as Amarillo, Centennial and Summit hops. You are greeted with a full frontal assault of citrus/grapefruit/pine hop character, followed up with malt to balance the mouthfeel. This beer is all about hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
+ridgeway_brewing-criminally_bad_elf,0,0,244991852546,"{""name"":""Criminally Bad Elf"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+bube_s_brewery-bube_s_stout,0,0,244490829825,"{""name"":""Bube's Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark full bodied stout is perfect with a meal or as a meal. Rolled oats give this beer an enjoyable mouthfeel while chocolate and roasted malts lend to its distinctive flavor."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
+new_belgium_brewing-big_shot_seasonal_ale,0,0,244865564672,"{""name"":""Big Shot Seasonal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
+allentown_brew_works-rude_elf_s_reserve,0,0,244359757824,"{""name"":""Rude Elf's Reserve"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Our silver medal winning Belgian style Holiday beer brewed with dark Belgian candied sugar and special spices. This brew has a spicy aroma and flavor with a sweet malt taste. At 10.5% alcohol it is sure to warm you up during the Holiday season."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,8,1
+arcadia_brewing-hopmouth_double_ipa,0,0,244359430145,"{""name"":""Hopmouth Double IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The first in our Brew Crew Big Beer Series, Hopmouth Double IPA is a hop lover’s delight! Deep amber hue with a generous white head, Hopmouth showcases a rich, toasty flavor and a sweet caramel notes as a result of the high-quality Maris Otter Malt, imported from the UK. The hops are right up front in the aroma, reminiscent of citrus and pine, while the resin-like flavors linger well after the last sip.\r\n\r\nThis is a BIG beer. True to our original vision, we have achieved a level of balance and drinkability rarely found in this style. Delicious on its own, Hopmouth is also a brilliant pair with many boldly-flavored foods, including many cheeses and desserts."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
+brasserie_de_l_abbaye_des_rocs-montagnarde,0,0,244358316033,"{""name"":""Montagnarde"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+city_brewing_company_llc-winter_porter,0,0,244494434305,"{""name"":""Winter Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+brasserie_de_brunehaut-brasserie_de_brunehaut_bio_biere_blanche_organic,0,0,244357922819,"{""name"":""Brasserie de Brunehaut Bio Bière Blanche (Organic)"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic Belgian 'white beer' from the Hainaut region in the southwest Belgium, near the French border. Top-fermented and bottle-conditioned, this is a clean, refreshing regional 'artisan' beer.\r\nPresents a light hazy yellow colour with citrus and coriander aromas and fairly subtle malt and hops on the palate. The finish is dry and satisfying. Hazy yellow golden colour. Lemon custard, lime zest, and delicate spice melange aromas. Well-balanced, a frothy entry leads to a dryish medium body of nuts, baked oranges, and slightly phenolic mineral flavors. Finishes with a metallic ore dust, salt, and dried lemon fade. This beer is certified as organic."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,0,1
+avery_brewing_company-ale_to_the_chief,0,0,244358643715,"{""name"":""Ale To The Chief"",""abv"":8.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Ale to the Chief! We the Brewers of Avery Brewing Company, in order to form a more perfect ale, require new leadership that can liberate us from our quagmires in foreign lands; embrace environmentally sound energy alternatives to imported oil; heal our ailing healthcare system; free us from tyrannical debt and resurrect the collapsing dollar. We hereby pledge to provide him with an ample amount of our Presidential Pale Ale to support in the struggle for the aforementioned goals! Hail to the New Chief!\"" \r\n\r\nSo reads the label of Ale to the Chief, the latest limited release brew from Avery Brewing Company brewed to bid a fond farewell to our current Commander in Chief and welcome a new administration. Our thought process for this beer was rather simple: take the classic American Pale Ale, use American ingredients like West Coast Cascade hops and the American Ale yeast strain (a first for Avery Brewing) and produce a beer in the Avery tradition with intense, in-your-face flavor. This Presidential Pale Ale has a pungent nose of citrusy, green Cascade hops along with a medium body and a lingering bitter finish. Ale to the Chief! is a limited release brew, get some while it lasts!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,4,1
+jever_brewery,0,0,244743077890,"{""name"":""Jever Brewery"",""city"":""Jever, Germany"",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.jever.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.5757,""lon"":7.9003}}",1,22,1
+aspen_brewing_company,0,0,244359233536,"{""name"":""Aspen Brewing Company"",""city"":""Aspen"",""state"":""Colorado"",""code"":""81611"",""country"":""United States"",""phone"":"""",""website"":""http://aspenbrewingcompany.com"",""type"":""brewery"",""updated"":""2010-11-08 08:40:44"",""description"":"""",""address"":[""555 North Mill Street""]}",1,6,1
+clipper_city_brewing_co-yule_tide,0,0,244491747328,"{""name"":""Yule Tide"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest addition to Baltimore's own Clipper City Brewing Company - Mutiny Fleet is their holiday brew Yule Tide, a Belgian style triple ale, which like the rest of the Mutiny Fleet is distributed in 22 ounce bombers."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,42,1
+breckenridge_brewery-christmas_ale,0,0,244491157505,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
+gray_brewing-irish_style_ale,0,0,244752973824,"{""name"":""Irish Style Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+thunderhead_brewery-black_sheep_espresso_stout,0,0,245108637696,"{""name"":""Black Sheep Espresso Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+sullivan_s_black_forest_brew_haus_grill-38_special_bitter,0,0,245108899840,"{""name"":"".38 Special Bitter"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Don't let the name scare you, this is an easy drinker, slightly sweet and bitter."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,25,1
+marshall_brewing_company-sundown_wheat,0,0,244865826816,"{""name"":""Sundown Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marshall_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,21,1
+lanchester_brewing,0,0,244743602176,"{""name"":""Lanchester Brewing"",""city"":""Durham"",""state"":""Durham"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Durham DH7 0NT""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.8229,""lon"":-1.7457}}",1,23,1
+appalachian_brewing_company-grinnin_grizzly_spiced_ale,0,0,244360282113,"{""name"":""Grinnin' Grizzly Spiced Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This amber ale is dosed with cinnamon, nutmeg, ginger, and fresh orange zest. It is well balanced with low hop flavor and nice hint of the spices in the finish. This spiced ale is not overbearing; rather it is smooth and very drinkable."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+saint_louis_brewery_schlafy_tap_room-schlafly_hefeweizen,0,0,244991524865,"{""name"":""Schlafly Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+crabby_larry_s_brewpub_steak_crab_house-anne_bonny_irish_stout,0,0,244492468226,"{""name"":""Anne Bonny Irish Stout"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""How about trying a glass of traditional Irish stout. Our stout however is not particularly dry and has overtones of dark chocolate and toffee. The infused nitrogen gives a wonderful cascading effect in the glass and a rich, creamy head. Particularly tasty when paired with our oysters on the half shell.""}",1,44,1
+dux_de_lux-ginger_tom,0,0,244624850945,"{""name"":""Ginger Tom"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dux_de_lux"",""updated"":""2010-07-22 20:00:20"",""description"":""An old fashioned style ginger beer brewed naturally with honey, malt, lemon and fresh root ginger, leaving you with a refreshing crisp zesty flavour."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,43,1
+ballast_point_brewing-calico_amber_ale,0,0,244358905858,"{""name"":""Calico Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Calico Amber Ale was inspired by the beers of England. In England most of the beer is some kind of \""bitter\"". Bitter is a style that became popular in the late 1800's. The most famous examples are brewed in Burton on Trent. This hard water gives these beer a pleasantly dry bitter finish, hence the name \""bitter.\"" A brewery usually brews several bitters of various alcohol strengths. The lowest in alcohol (and usually flavor) is called \""bitter\"" or \""ordinary bitter.\"" A step up in alcohol and hop character gives us \""best bitter\"" or \""special bitter.\"" Finally a beer is made that is full of hop aroma and flavor, has a maltiness to match, and a generous amount of alcohol is called an \""extra special bitter\"" or E.S.B.\r\n\r\nAlthough inspired by the British Ales Ballast Point Calico Amber Ale uses distinctive American hops, which give not only the crisp bitterness to balance the malt, but also a hint of floral aroma. We brew Calico Amber Ale with 100% malt and use 4 different malts to give it a rich complexity. The blend of crystal malts give it flavors including toffee and caramel. A blend of American Cascade and Centennial hops provide a counterpoint to the malt. Finally our proprietary yeast provides a fruity background and a Madeira like richness that rounds out this gold medal winning ale."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
+boulevard_brewing_company-nut_cracker_ale,0,0,244358512642,"{""name"":""Nut Cracker Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Nutcracker Ale is Boulevard’s holiday gift for real beer lovers. This hearty, warming brew is a classic winter ale, deep amber in color, with hints of molasses balanced by the “spiciness” of freshly harvested Chinook hops."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,3,1
+brown_street_brewery-stout,0,0,244474511362,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
+fish_brewing_company_fish_tail_brewpub-blind_pig_dunkelweizen,0,0,244626358272,"{""name"":""Blind Pig Dunkelweizen"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+rogue_ales-honey_orange_wheat,0,0,244991918080,"{""name"":""Honey Orange Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Honey Orange Wheat is an unfiltered wheat beer and has flavors of honey and orange balanced with a nice medium-sweet malt character. It is medium bodied with no harsh bitterness and a nice honey-orange finish. It is made from Northwest Two-Row and Wheat Malts; Willamette Hops; #48 Oregon Wildflower Honey, Orange Juice, and Free Range Coastal Waters. It is currently available on draft."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,27,1
+bube_s_brewery-wet_hop_requiem_ipa,0,0,244490829826,"{""name"":""Wet Hop Requiem IPA"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beauty is a complete work of art! Bryan and I picked 22 lbs of fresh Cascade hops from 3 gigantic hop vines Bryan has at his house. Hops produce an overabundance of hop cones and we were there for the picking. Even after 22 lbs, we hardly put a dent in the yield! So...here we are 3 weeks later, the beer is on tap and it is the freshest...hoppiest...flavorful beer you can imagine! Needless to say, we are proud of this beauty from the ground, up! We wanted a full-flavored IPA, so Bryan suggested we use our Requiem IPA recipe, and calculate for fresh, whole hop cones. Worked beautifully!! We ended up with an IPA with so much up-front flavor you would think you are enjoying a high octane Imperial! Instead, this is a middle-of-the-road IPA, at 5.2% abv!! This just goes to show how a hugely flavorful IPA can be loaded-up with fresh ingredients and come out the other end, a tasty LOW octane, treat! Bryan and I hope you get to stop in soon to try this one out! We decorated Bube's with some of the actual hop vines we pulled from. For the true hophead, you will be in heaven. And for the all-around beer enthusiasts, we hope you can appreciate the creativity in this beer. I know I'm proud to say I had a hand in this one!!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
+north_coast_brewing_company-scrimshaw_pilsner_style_beer,0,0,244865564673,"{""name"":""Scrimshaw Pilsner Style Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for the delicate engravings popularized by 19th century seafarers, Scrimshaw is a fresh tastingPilsner brewed in the finest European tradition using Munich malt and, Hallertauer and Tettnang hops. Scrimshaw has a subtle hop character, a crisp, clean palate, and a dry finish."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,20,1
+amherst_brewing_company-olde_8_anniversary_ale,0,0,244359757825,"{""name"":""Olde #8 Anniversary Ale"",""abv"":6.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed for August each year to celebrate our Anniversary this strong ales maltiness is balenced by a generous amount of hops"",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,8,1
+back_road_brewery,0,0,244359495680,"{""name"":""Back Road Brewery"",""city"":""LaPorte"",""state"":""Indiana"",""code"":""46350"",""country"":""United States"",""phone"":""1-219-362-7623"",""website"":""http://www.backroadbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""310 Perry Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6124,""lon"":-86.7268}}",1,7,1
+brasserie_de_la_senne-equinox_dark_belgian_winter,0,0,244358316034,"{""name"":""Equinox Dark Belgian Winter"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+craftsman_brewing-heavenly_hefe,0,0,244494434306,"{""name"":""Heavenly Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""craftsman_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
+brasserie_dubuisson-clovis,0,0,244357922820,"{""name"":""Clovis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+barley_s_2_smokehouse_and_brewpub-robert_burns_scottish_ale,0,0,244358643716,"{""name"":""Robert Burns Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_2_smokehouse_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+knig_ludwig_schlobrauerei_kaltenberg-konig_ludwig_dunkel,0,0,244743143424,"{""name"":""König Ludwig Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_ludwig_schlobrauerei_kaltenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+belhaven_brewery-twisted_thistle_india_pale_ale,0,0,244359233537,"{""name"":""Twisted Thistle India Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
+crested_butte_brewery_pub-red_lady_ale,0,0,244491747329,"{""name"":""Red Lady Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crested_butte_brewery_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+breznak-breznak_dunkles_dark,0,0,244491157506,"{""name"":""Breznak Dunkles/Dark"",""abv"":3.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breznak"",""updated"":""2010-07-22 20:00:20"",""description"":""Very good dark beer. Not as heavy as stout."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,41,1
+great_lakes_brewing-commodore_perry_ipa,0,0,244753039360,"{""name"":""Commodore Perry IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A medium-bodied and well hopped India Pale Ale with a dry, fruity aftertaste."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+titletown_brewing-english_esb,0,0,245108637697,"{""name"":""English ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+summit_brewing-extra_pale_ale,0,0,245108965376,"{""name"":""Extra Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,25,1
+mcmenamins_mill_creek-terminator_stout,0,0,244865826817,"{""name"":""Terminator Stout"",""abv"":6.45,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":""Black as the darkest night, rich as the most decadent dessert, Terminator is for the true stout lover. This is a full bodied and flavor packed ale which draws it's robust complexity from kiln-baked specialty grains. Look for a wide array of toasted, chocolate, nutty and coffee-like flavors in every pint! The devoted swear by it, and it remains one of our top selling ales year after year."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+le_cheval_blanc-apocalypse_buckwheat_ale_coup_de_grisou,0,0,244743602177,"{""name"":""Apocalypse Buckwheat Ale / Coup de Grisou"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""le_cheval_blanc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+bamberger_mahr_s_bru-der_weisse_bock,0,0,244360347648,"{""name"":""Der Weisse Bock"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,9,1
+saint_louis_brewery_schlafy_tap_room,0,0,244991524866,"{""name"":""Saint Louis Brewery / Schlafy Tap Room"",""city"":""Saint Louis"",""state"":""Missouri"",""code"":""63103"",""country"":""United States"",""phone"":""1-314-241-2337"",""website"":""http://www.schlafly.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2100 Locust Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.633,""lon"":-90.21}}",1,26,1
+crane_river_brewpub_and_cafe-platte_valley_esb,0,0,244492468227,"{""name"":""Platte Valley ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+egan_brewing-pride_of_de_pere,0,0,244624916480,"{""name"":""Pride of De Pere"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+barley_john_s_brewpub-wit,0,0,244358971392,"{""name"":""Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+brasserie_de_blaugies-la_moneuse,0,0,244358512643,"{""name"":""La Moneuse"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_blaugies"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+abita_brewing_company-abbey_ale,0,0,244377845760,"{""name"":""Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:51:39"",""description"":""Abbey Ale is a strong malty ale brewed in the style of the Trappist Monks. 22oz bottles only"",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,52,1
+bt_mcclintic_beer_company,0,0,244474511363,"{""name"":""BT McClintic Beer Company"",""city"":""Beloit"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.5083,""lon"":-89.0318}}",1,1,1
+foster_s_australia_ltd-foster_s_special_bitter,0,0,244626358273,"{""name"":""Foster's Special Bitter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""foster_s_australia_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""http://www.fostersbeer.com/home.aspx?fullbrowser=h"",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,46,1
+santa_fe_brewing_company,0,0,244991983616,"{""name"":""Santa Fe Brewing Company"",""city"":""Santa Fe"",""state"":""New Mexico"",""code"":""87508"",""country"":""United States"",""phone"":""505.424.3333"",""website"":""http://www.santafebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""35 Fire Place""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.5966,""lon"":-106.052}}",1,27,1
+bullfrog_brewery-edgar_i_p_a,0,0,244490895360,"{""name"":""Edgar I.P.A."",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""As the story goes, I was redesigning our I.P.A. to be bigger and better but as it came together it started to take on a life of its own. After much deliberation and several pints of our new creation we decided to name him after the master of macabre, Edgar Allen Poe, as a tribute to his aptly named short story \""HOP FROG.\"" As Edgar fermented and spewed his almost abusive hop aroma throughout the pub, his legend and our thirst grew until finally one day, he was released into the world. We hope Edgar amuses you as much as he has us but stay on his good side because much like the story, this Hop Frog bites back!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
+northwoods_brewpub_grill-bubba,0,0,244865630208,"{""name"":""Bubba"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+amherst_brewing_company-righteous_red,0,0,244359757826,"{""name"":""Righteous Red"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Reddish amber in color, mild and malty with hop aroma and finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+barley_john_s_brewpub-old_eight_porter,0,0,244359495681,"{""name"":""Old Eight Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+brasserie_de_silly-la_divine_double_blond,0,0,244358381568,"{""name"":""La Divine Double Blond"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+crane_river_brewpub_and_cafe-oktoberfest_ale,0,0,244494499840,"{""name"":""Oktoberfest Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
+brasserie_thiriez-xtra,0,0,244473921536,"{""name"":""XTra"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_thiriez"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+bbc_brewing_co_llc,0,0,244358709248,"{""name"":""BBC Brewing Co., LLC"",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40202"",""country"":""United States"",""phone"":""1-502-584-2739"",""website"":""http://www.bluegrassbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bluegrass Brewing Co is proud to be the largest microbrewery located in the state of Kentucky. Reaching back over one hundred years, the city of Louisville has a rich and complex brewing history; a history that has provided BBC with a strong foundation on which to build and grow. It is a challenge we enthusiastically look forward to everyday. Led by our fearless brew master David Pierce who has been brewing award winning BBC beers for over fourteen years, our brewing philosophy is an audacious style that allows us to work diligently with the entire palette of malts and hops. This diligence and discipline is carefully brought to every batch that is brewed at Bluegrass Brewing Co. To truly enjoy life you have to love what you do�and we love brewing. Our sole focus relies on consistency and producing the best beer available. We hope that you will taste that bold style in every BBC beer that you drink. Enjoy great craft beer wherever you live and remember this most important piece of advice: Don't Buy Beer From Strangers . . . Support Your Local Brewery!"",""address"":[""636 East Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2546,""lon"":-85.7401}}",1,4,1
+lakefront_brewery,0,0,244743143425,"{""name"":""Lakefront Brewery"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53212"",""country"":""United States"",""phone"":""1-414-372-8800"",""website"":""http://www.lakefrontbrewery.com/index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Started in 1987, the microbrewery located on the Milwaukee River has become a Milwaukee landmark. Its rich history includes partnerships with local taverns, preservation of local historical pieces, unique tours, family style dining options and most importantly, great beer. President Russ Klisch said it all started with his brother, Jim. Jim expressed interest in beer making near his birthday and Russ humored him by purchasing him a book on the subject. Jim read the book and brewed the beer. Although not known, according to Russ, as a gourmet cook, Jim made a good beer. Russ was impressed and decided he could do it better. In short, sibling competitiveness and common interest lead both to entering contests in beer making. They both received awards, and family and friends encouraged them to start the business. Their family had roots in the beer industry as well. Their grandfather worked for Schlitz driving a street sweeper and a truck. Russ Klisch remembers him bringing home short fills to his dad. He recalls, even as a kid, that it was a cool job if you got to bring beer home at night. Taverns were also owned by several family members. With that family history and their common interest in beer making, the brothers started their business. They decided to start small. Initially, they bought an old pizza bakery building down the street from their home in Riverwest. They liked the location and the fact that they could walk there from home. They sold their first barrel on December 2, 1987. They stayed at that location until winter of 1998."",""address"":[""1872 North Commerce Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0547,""lon"":-87.9053}}",1,22,1
+bell_s_brewery_inc-two_hearted_ale,0,0,244359233538,"{""name"":""Two Hearted Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ale style well suited for Hemingway-esque trips to the Upper Peninsula. American malts and enormous hop additions give this beer a crisp finish and incredible floral hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,6,1
+cricket_hill-fall_festivus_ale,0,0,244491747330,"{""name"":""Fall Festivus Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-12-06 13:12:47"",""description"":""Our Fall release is a harvest Ale with a lighter amber color and a beige head with good retention. There is a good balance of earthy malt and a blend of floral and pine hops in the nose. Biscuit notes mixing with caramel sweetness.do their job to complement the rest of the flavors.This is an enjoyable seasonal for sure!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
+brouwerij_boon-kriek,0,0,244491223040,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,41,1
+green_bay_brewing,0,0,244753039361,"{""name"":""Green Bay Brewing"",""city"":""Green Bay"",""state"":""Wisconsin"",""code"":""54303"",""country"":""United States"",""phone"":""1-888-604-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""313 Dousman Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5189,""lon"":-88.0196}}",1,47,1
+triple_rock_brewery-porter,0,0,245108637698,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triple_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+tailgate_beer-tailgate_light,0,0,245108965377,"{""name"":""Tailgate Light"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Why settle for a watered down version of delicious barley and hops when the TailGate Beer Light will make you a convert to the world of light ales. Eat hardy, and enjoy a light beer with serious flavor, lower calories and the most serious attention to the powers that flavor beer. A nose of citrus and spice with a tongue of vanilla are just a few of the very unique flavors to grace your senses in this Light Ale. This is the light beer lovers of beer have been waiting for. This is not a watered down version of a good idea."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,25,1
+mendocino_brewing_ukiah,0,0,244865826818,"{""name"":""Mendocino Brewing - Ukiah"",""city"":""Ukiah"",""state"":""California"",""code"":""95482"",""country"":""United States"",""phone"":""1-707-463-2627"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1601 Airport Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1326,""lon"":-123.201}}",1,21,1
+liefmans_breweries-vondel,0,0,244743602178,"{""name"":""Vondel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+barley_creek_brewing-superhop_ale,0,0,244360347649,"{""name"":""Superhop Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+saxer_brewing-jack_frost_winter_doppelbock,0,0,244991590400,"{""name"":""Jack Frost Winter Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saxer_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
+cricket_hill,0,0,244492533760,"{""name"":""Cricket Hill"",""city"":""Fairfield"",""state"":""New Jersey"",""code"":""7004"",""country"":""United States"",""phone"":""973-276-9415"",""website"":""http://www.crickethillbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We believe that New Jersey is starting to learn what the rest of the country already knows; that local microbrews are some of the best beers in the world! Finally, curious beer drinkers are stepping out from under the mind-numbing barrage of large brewery advertising and deciding for themselves what they like. Our beers are designed for those curious drinkers. The large breweries use fillers in their beer; Corn or Rice are the most frequently used. Most good beer should be all Barley, in the same way that good hamburgers are all beef. Barley is expensive and the more fillers that are used, the better the profits! Cricket Hill Beers are 100% Barley as are most great beers. Please take the time to taste different local beers. I am certain that those who decide not to let television dictate what they drink are ready for a wonderful adventure into the world of Beer!"",""address"":[""24 Kulick Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8726,""lon"":-74.2964}}",1,44,1
+engine_house_9-firehouse_red,0,0,244624916481,"{""name"":""Firehouse Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+bass_brewers-bass_pale_ale,0,0,244358971393,"{""name"":""Bass Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bass_brewers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,5,1
+brasserie_des_gants-saison_voisin,0,0,244358512644,"{""name"":""Saison Voisin"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_gants"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+abita_brewing_company-purple_haze,0,0,244377911296,"{""name"":""Purple Haze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,52,1
+climax_brewing_copmany-climax_barleywine_style_ale,0,0,244474576896,"{""name"":""Climax Barleywine-Style Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed for our 10th Anniversary, the Barleywine is a bottle conditioned ale that's meant to be laid down and enjoyed for years to come. Up front it has a hop nose and hop flavor on the tongue that fades into malty overtones with flavors of vanilla that go into chocolate. As it has aged, we've noticed flavors of dates and raisins as well."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,1,1
+founders_hill_brewing-hidden_river_red_ale,0,0,244626358274,"{""name"":""Hidden River Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+scuttlebutt_brewing-porter,0,0,244991983617,"{""name"":""Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,27,1
+bullfrog_brewery-susquehanna_oatmeal_stout,0,0,244490895361,"{""name"":""Susquehanna Oatmeal Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, burly Oatmeal Stout full of chocolate, caramelized malt and coffee flavors. This stout has a rich mouthfeel and a smooth, roasty finish."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,40,1
+oggi_s_pizza_and_brewing_vista-california_gold,0,0,244865630209,"{""name"":""California Gold"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
+anheuser_busch-michelob_beer,0,0,244359823360,"{""name"":""Michelob Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Michelob is a malty and full-bodied lager with an elegant European hop profile.\"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+bayern_brewing-dancing_trout_ale,0,0,244359495682,"{""name"":""Dancing Trout Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayern_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+brasserie_ellezelloise,0,0,244474642432,"{""name"":""Brasserie Ellezelloise"",""city"":""Ellezelles"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-068-54-31-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Guinaumont 75""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7428,""lon"":3.6875}}",1,2,1
+crooked_river_brewing-original_esb,0,0,244494499841,"{""name"":""Original ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crooked_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+brauhaus_sternen-huusbier_schwarz,0,0,244473987072,"{""name"":""Huusbier Schwarz"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,0,1
+belhaven_brewery-scottish_ale,0,0,244358709249,"{""name"":""Scottish Ale"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty and hoppy, we at Belhaven love the classic Scottish Ale and we've been brewing it longer than any of the other beers we produce. Delivering a sweet, smooth and creamy finish, Scottish Ale has a stunning ruby colour in the glass. Magic."",""style"":""Scottish-Style Light Ale"",""category"":""British Ale""}",1,4,1
+liberty_steakhouse_and_brewery-amber_waves,0,0,244743208960,"{""name"":""Amber Waves"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+bellows_brew_crew-steam_lager,0,0,244359299072,"{""name"":""Steam Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+devil_mountain_brewing,0,0,244624457728,"{""name"":""Devil Mountain Brewing"",""city"":""Cincinnati"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.1361,""lon"":-84.5031}}",1,42,1
+brouwerij_de_keersmaeker,0,0,244491223041,"{""name"":""Brouwerij De Keersmaeker"",""city"":""Kobbegem"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-454-11-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lierput 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9098,""lon"":4.2505}}",1,41,1
+grumpy_troll_restaurant_and_brewery-rye_bock,0,0,244753039362,"{""name"":""Rye Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,47,1
+triumph_brewing_of_new_hope-kellerbier,0,0,245108703232,"{""name"":""Kellerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_new_hope"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,24,1
+taiwan_tobacco_and_wine_monopoly_board-beer,0,0,245108965378,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taiwan_tobacco_and_wine_monopoly_board"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+midnight_sun_brewing_co-obliteration_v,0,0,244865892352,"{""name"":""Obliteration V"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration V is yet another exciting Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Living up to its name, Obliteration V finishes with poignant bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,21,1
+live_oak_brewing-liberation_ale,0,0,244866678784,"{""name"":""Liberation Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With about 6.0% ABV, this one will surely warm the ol' gullet during a cold central Texas winter - both days! Our India Pale Ale (IPA) is light in color and strong in hop character. Dry hopping with Cascade hops, gives this winter favorite a delicious citrus note reminiscent of a Texas Ruby Red. Yes, it's warming but you don't need to be huddled around the furnace to enjoy this one! IPA fans really love this ale during a beautiful Texas winter on the porch or indoors. Available December - April"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
+bethlehem_brew_works,0,0,244360347650,"{""name"":""Bethlehem Brew Works"",""city"":""Bethlehem"",""state"":""Pennsylvania"",""code"":""18018"",""country"":""United States"",""phone"":""610.882.1300"",""website"":""http://www.thebrewworks.com/bethlehem-brew-works"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established on April 15, 1998 by the Fegley Family, Bethlehem Brew Works successfully captured the essence of Bethlehem's steel industry in a 250 seat brewpub. Signature beers include Steelworkers' Oatmeal Stout, Valley Golden ale, and the award winning Fegley's ESB. In addition, three seasonal taps have been frequented with beers ranging from Pale Ales and Wheats to Pumpkin Ale and Belgian Lambics. Accompanying the six beers brewed right in the restaurant is a full bar specializing in single malt scotches, small batch bourbons, and specialty martinis. Open seven days a week, BBW offers lunch and dinner featuring many items which incorporate the handcrafted beer into their recipes. Golden Ale Hummus, Beer and Cheese Soup, Brewschetta, Diamond Plate Pork, and Beer-Marinated Portabella Napoleon are just a hint of what the menu has to offer."",""address"":[""569 Main St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.622,""lon"":-75.382}}",1,9,1
+southend_brewery_and_smokehouse_charleston-scarlet_ale,0,0,245109293056,"{""name"":""Scarlet Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
+delafield_brewhaus-dock_light_golden_ale,0,0,244625113088,"{""name"":""Dock Light Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+erie_brewing_company-railbender_ale,0,0,244624982016,"{""name"":""Railbender Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Erie, Pennsylvania was an important railroad hub in the mid–nineteenth century, the city being the site where three sets of track gauges met. Railbender Ale, Erie Brewing Co.’s flagship ale, named after the laborers who laid the railroad tracks is brewed with pride, strength and purity symbolic of Erie’s historic railroad’s and railroad workers. Railbender, a strong Scottish style ale smooth malt flavor and astonishing drinkability will have you \""Hopping on the train and riding off the rails.\"" All Aboard!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,43,1
+belhaven_brewery-wee_heavy,0,0,244359036928,"{""name"":""Wee Heavy"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belhaven_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,5,1
+brasserie_ellezelloise-la_quintine_ambree_amber,0,0,244474970112,"{""name"":""La Quintine Ambrée / Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+aktienbrauerei_kaufbeuren-jubilaums_german_pils,0,0,244377911297,"{""name"":""Jubiläums German Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aktienbrauerei_kaufbeuren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+coastal_fog_brewing,0,0,244474576897,"{""name"":""Coastal Fog Brewing"",""city"":""Concord"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.978,""lon"":-122.031}}",1,1,1
+fox_river_brewing_1-uber_sticke_altbier,0,0,244626423808,"{""name"":""Über-Sticke Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,46,1
+sea_dog_brewing_company-sea_dog_blue_paw_wheat,0,0,244991983618,"{""name"":""Sea Dog Blue Paw Wheat"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sea_dog_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our unique contribution to the fruit ale category features the nutty quench of wheat ale combined with the delightful aromatics and subtle fruit flavor contributed by Maine wild blueberries."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,27,1
+cedar_brewing-oktoberfest,0,0,244490895362,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
+ohio_brewing-verich_gold,0,0,244865630210,"{""name"":""Verich Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+anheuser_busch-michelob_honey_lager,0,0,244359823361,"{""name"":""Michelob Honey Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+bear_republic_brewery-racer_x,0,0,244359495683,"{""name"":""Racer X"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This bold winter ale follows English brewing traditions, but with our California twist. Bold hops, but balanced ... It's a double IPA!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
+brauereigasthof_adler-zwickelbier,0,0,244474642433,"{""name"":""Zwickelbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauereigasthof_adler"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+daleside_brewery-ripon_jewel_ale,0,0,244494499842,"{""name"":""Ripon Jewel Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+brouwerij_de_achelse_kluis-trappist_extra,0,0,244473987073,"{""name"":""Trappist Extra"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+bell_s_brewery_inc-the_oracle_dipa,0,0,244358709250,"{""name"":""The Oracle DIPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A double IPA that is sure to make you as all-knowing as Pythia. It’s just a matter of interpretation."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,4,1
+loaf_and_stein_brewing-blonde,0,0,244866285568,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+big_ridge_brewing-lager,0,0,244359299073,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
+dick_s_brewing-bottleworks_ipa,0,0,244624457729,"{""name"":""Bottleworks IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,42,1
+bullfrog_brewery-fast_eddies_pale_ale,0,0,244491223042,"{""name"":""Fast Eddies Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named in honor of Ed Kiessling, the worlds greatest contractor. This American pale ale is assertively hopped and dangerously drinkable. Hopheads rejoice!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+hoffbrau_steaks_brewery_1,0,0,244753104896,"{""name"":""Hoffbrau Steaks Brewery #1"",""city"":""Addison"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.9618,""lon"":-96.8292}}",1,47,1
+unibroue-1837,0,0,245108703233,"{""name"":""1837"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""1837 is a blonde beer that is slightly cloudy. It contains 7% alcohol and is refermented in the bottle. Following the brewing tradition of the great abbey beers, it is made with a blend of Quebec-grown raw wheat, lightly roasted barley and a hint of spices. It is a truly refreshing beer."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,24,1
+tennent_caledonian_brewery,0,0,245109030912,"{""name"":""Tennent Caledonian Brewery"",""city"":""Glasgow"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0141)-552-6552"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""161 Duke Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.8593,""lon"":-4.2324}}",1,25,1
+mississippi_brewing_co-mississippi_mud_black_tan,0,0,244865892353,"{""name"":""Mississippi Mud Black & Tan"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mississippi_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A-It's got a nice dark tan texture to it. The description on the bottle says it all.\r\n\r\nS-It's got a coffee like smell to it. It smells pretty good.\r\n\r\nT- It tastes a tad like Bass with a hint of coffee to it. At least to me it had a coffee taste. It's got a nice even taste. It's not too strong and not too weak. It's a happy medium.\r\n\r\nM-It feels good when swallowing. It leaves a mild aftertaste but it's a good aftertaste.\r\n\r\nD-Well I drank the whole jug w/ no problem and enjoyed myself so that spoke for itself.\r\n\r\nOverall, I recommend this beer. If you find it, it's worth having. It goes well when watching a movie too.\r\n\r\nServing type: bottle""}",1,21,1
+long_trail_brewing_co-long_trail_ale,0,0,244866744320,"{""name"":""Long Trail Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Long Trail Ale is a full-bodied amber ale modeled after the \""Alt-biers\"" of Düsseldorf, Germany."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,23,1
+bibiana_brewing,0,0,244360413184,"{""name"":""Bibiana Brewing"",""city"":""Urbana"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.1106,""lon"":-88.2073}}",1,9,1
+spoetzl_brewery-shiner_bohemian_black_lager,0,0,245109358592,"{""name"":""Shiner Bohemian Black Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+desnoes_geddes_ltd-red_stripe_lager_beer,0,0,244625113089,"{""name"":""Red Stripe Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""desnoes_geddes_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+estes_park_brewery-long_s_peak_raspberry_wheat,0,0,244624982017,"{""name"":""Long's Peak Raspberry Wheat"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is one of our most popular beers. It is a light and refreshing raspberry-flavored wheat ale. We use pure raspberry extract to give this beer its fruity aroma and flavor."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,43,1
+berliner_kindl_schultheiss_brauerei-original_berliner_weisse,0,0,244359036929,"{""name"":""Original Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""berliner_kindl_schultheiss_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+brauerei_und_altbierkche_pinkus_mller-obergarig_munster_alt,0,0,244475035648,"{""name"":""Obergärig / Münster Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
+anheuser_busch-michelob_dunkel_weisse,0,0,244377976832,"{""name"":""Michelob Dunkel Weisse"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Dunkel Weisse fills a glass like few beers can. The pour releases banana and clove aromas. Roasted malt flavor is complemented by caramel and chocolate undertones. Then a crisp finish refreshes the palate. Undeniable proof that brewing is truly an art."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,52,1
+coronado_brewing_company-mermaid_red,0,0,244474576898,"{""name"":""Mermaid Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
+full_sail_brewing_1-nugget,0,0,244626489344,"{""name"":""Nugget"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,46,1
+sierra_nevada_brewing_co-sierra_nevada_imperial_stout,0,0,244991983619,"{""name"":""Sierra Nevada Imperial Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,27,1
+cervecera_nacional-balboa_cerveza_pilsner,0,0,244490960896,"{""name"":""Balboa Cerveza Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_nacional"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
+oriental_brewery-ob_lager,0,0,244865630211,"{""name"":""OB Lager"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oriental_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""OB Lager is a pale lager available in cans and bottles, and served on draft in Korea."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
+asahi_breweries,0,0,244359823362,"{""name"":""Asahi Breweries"",""city"":""Tokyo"",""state"":""Kanto"",""code"":"""",""country"":""Japan"",""phone"":""81-(03)-5608-5129"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23-1 Azumabashi 1-chome""]}",1,8,1
+bear_republic_brewery-red_rocket_ale,0,0,244359561216,"{""name"":""Red Rocket Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The brew of choice for mountain bikers, and adventurous types worldwide. (Are you excited now!) This fiery red ale is not for the weak at heart. It originally started out as a Scottish red ale but has taken on flavors of its own. This is a very complex recipe using five different grains to achieve its unique flavor. The caramel malt used is a mixture of Belgian Caravienne and Hugh Bairds Crystal malts. Red Rocket is a full bodied, hoppy brew which finishes on the pallet with caramel malts. Centennial and Cascade hops are used for bittering and aroma.2004 L.A. Commercial Brewing Competition, Gold Medal Winner; 2004 West Coast Commercial Brewers Competition, First Place; 2003 California State Fair, Gold MedalWinner; 2002 California State Fair, Silver Medal Winner; 2001 California State Fair Gold Medal Winner; 2001 Real Ale Festival, Chicago, Bronze Medal Winner; 2000 California State Fair, Bronze Medal Winner; 1999 Great American Beer Festival, Silver Medal Winner; 1998 Great American Beer Festival, Silver Medal Winner - og 1.067, ABV 6.8%, IBU 65+."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+broad_ripple_brewing-ipa,0,0,244474707968,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,2,1
+dc_brau-the_public,0,0,244626948096,"{""name"":""The Public"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dc_brau"",""updated"":""2011-08-08 19:07:15"",""description"":""The Public"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+brouwerij_oud_beersel,0,0,244474052608,"{""name"":""Brouwerij Oud Beersel"",""city"":""Beersel"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Laarheiestraat 230""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7586,""lon"":4.3012}}",1,0,1
+bellows_brew_crew,0,0,244358709251,"{""name"":""Bellows Brew Crew"",""city"":""Watertown"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.1947,""lon"":-88.729}}",1,4,1
+mad_anthony_brewing-red,0,0,244866351104,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+brasserie_brouwerij_cantillon-iris_1996,0,0,244359299074,"{""name"":""Iris 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,6,1
+dieu_du_ciel-peche_mortel,0,0,244624523264,"{""name"":""Péché Mortel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dieu_du_ciel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+c_b_potts_of_cheyenne-big_horn_bluesberry,0,0,244491288576,"{""name"":""Big Horn Bluesberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
+inveralmond_brewery-lia_fail_stone_of_destiny_ale,0,0,244753104897,"{""name"":""Lia Fail Stone of Destiny Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""inveralmond_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+upstream_brewing_old_market-blackstone_stout,0,0,245108768768,"{""name"":""Blackstone Stout"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Bold with a soft finish, our darkest beer has plenty of malt flavor with undertones of coffee and chocolate. The addition of oatmeal to the brew adds extra smoothness and a thick creamy head."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,24,1
+thirsty_dog_brewing-airship_light,0,0,245109030913,"{""name"":""Airship Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A blonde ale that is very light in color and body with no bitterness. A thirst quenching, American light-bodied blonde ale."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,25,1
+mogollon_brewing_company-heffevonom_bavarian_wheat,0,0,244865957888,"{""name"":""Heffevonom Bavarian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A truly delicious beer, Heffevenom is a medium bodied, lightly hopped wheat beer brewed in the true Bavarian tradition. Our brewers combine mountain pure water, select wheat and domestic malted grain, hops and yeast to create a highly refreshing ale with a pronounced banana and clove bouquet. Perfect with a slice of lemon as garnish."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
+long_valley_pub_brewery-grist_mill_golden,0,0,244866744321,"{""name"":""Grist Mill Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+bootleggers_steakhouse_and_brewery-irish_red,0,0,244360413185,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+sports_city_cafe_brewery-red_ale,0,0,245109358593,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+dockside_brewing-haupenthal_hefeweizen,0,0,244625178624,"{""name"":""Haupenthal Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,44,1
+flatlander_s_restaurant_brewery-eighty_shilling_ale,0,0,244624982018,"{""name"":""Eighty Shilling Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+abhi_brewery-abhi_beer,0,0,244367818752,"{""name"":""Abhi beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abhi_brewery"",""updated"":""2011-09-27 00:36:14"",""description"":"""",""style"":""Bamberg-Style Bock Rauchbier"",""category"":""German Lager""}",1,28,1
+big_sky_brewing-ipa,0,0,244359036930,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In Montana, many classic memories are made right after someone says, “Hold my beer and watch this.” These bold, assertive moments deserve a bold, assertive beer – Big Sky IPA. A distinct hop presence and malty backbone will leave you refreshed and ready for your moment of glory. Hang on tight and enjoy the ride."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
+brew_makers-rosed_porter,0,0,244475101184,"{""name"":""Rosed Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brew_makers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
+appleton_brewing-adler_brau_ginseng_lager,0,0,244377976833,"{""name"":""Adler Bräu Ginseng Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+de_proef_brouwerij-k_o_blond_beer,0,0,244606500864,"{""name"":""K-O Blond Beer"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+gilde_brauerei-pilsener,0,0,244626489345,"{""name"":""Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gilde_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+sioux_falls_brewing-canary_wheat,0,0,244992049152,"{""name"":""Canary Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
+coopers_brewery-coopers_mild_ale,0,0,244490960897,"{""name"":""Coopers Mild Ale"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This ale is the product of brewing with a selection of barley and wheat malt, and with no added sugar. This traditional brewing approach provides the smooth malt character which is balanced by a triple hopping of the brew with Pride of Ringwood and Saaz hops. The brew has fermented similarly to its stablemates Pale and Sparkling Ale, with the customary secondary fermentation in the bottle and can."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,40,1
+port_brewing_company-shark_attack_double_red_ale,0,0,244988772352,"{""name"":""Shark Attack Double Red Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
+aspen_brewing_company-conundrum_red_ale,0,0,244359888896,"{""name"":""Conundrum Red Ale"",""abv"":7.0,""ibu"":65.0,""srm"":13.0,""upc"":0,""type"":""beer"",""brewery_id"":""aspen_brewing_company"",""updated"":""2010-11-08 08:45:46"",""description"":""Have you ever heard of an ESB? In most cases, it stands for Extra Special Bitter, and man is this red extra special. Conundrum walks the line between a malt-centric sweet ale and a hop-centric bitter ale so well, it"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+belhaven_brewery,0,0,244359561217,"{""name"":""Belhaven Brewery"",""city"":""East Lothian"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0)1368-862734"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Spott Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":55.997,""lon"":-2.5098}}",1,7,1
+broad_ripple_brewing,0,0,244474707969,"{""name"":""Broad Ripple Brewing"",""city"":""Indianapolis"",""state"":""Indiana"",""code"":""46220"",""country"":""United States"",""phone"":""1-317-253-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""842 East 65th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.8735,""lon"":-86.1427}}",1,2,1
+diamondback_brewery,0,0,244627013632,"{""name"":""Diamondback Brewery"",""city"":""Cleveland"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,48,1
+cheshire_cat_brewery-arrogant_brit,0,0,244474052609,"{""name"":""Arrogant Brit"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+21st_amendment_brewery_cafe-oyster_point_oyster_stout,0,0,244379222016,"{""name"":""Oyster Point Oyster Stout"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep black color. Chocolate milk color head, providing an array of Belgian lace. Toffee and light roasty aromas and flavors. A malty sweet taste is evident but, this rich oatmeal based stout finishes dry. Made with 20 lbs. of oysters, in the boil, from our good friends at Hog Island Oyster Company."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
+birrificio_torrechiara,0,0,244358709252,"{""name"":""Birrificio Torrechiara"",""city"":""Torrechiara"",""state"":"""",""code"":"""",""country"":""Italy"",""phone"":""39-0521355113"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Strada Pilastro 35""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.6601,""lon"":10.2814}}",1,4,1
+main_street_brewing,0,0,244866351105,"{""name"":""Main Street Brewing"",""city"":""Dallas"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.803,""lon"":-96.7699}}",1,22,1
+brauerei_wieselburg,0,0,244476084224,"{""name"":""Brauerei Wieselburg"",""city"":""Wieselburg"",""state"":"""",""code"":""3250"",""country"":""Austria"",""phone"":""+43-(0)7416-501-0"",""website"":""http://www.wieselburger.at"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.1306,""lon"":15.1386}}",1,6,1
+dieu_du_ciel,0,0,244624523265,"{""name"":""Dieu du Ciel"",""city"":""Montréal"",""state"":""Quebec"",""code"":"""",""country"":""Canada"",""phone"":""1-514-490-9555"",""website"":""http://www.dieuduciel.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""29 Laurier Ouest""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5228,""lon"":-73.5928}}",1,42,1
+caldera_brewing,0,0,244491288577,"{""name"":""Caldera Brewing"",""city"":""Ashland"",""state"":""Oregon"",""code"":""97520"",""country"":""United States"",""phone"":""1-541-482-4677"",""website"":""http://www.calderabrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""540 Clover Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1844,""lon"":-122.663}}",1,41,1
+jack_s_brewing-boys_of_summer_wheat,0,0,244753170432,"{""name"":""Boys of Summer Wheat"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+valley_forge_brewing-red_coat_ale,0,0,245108768769,"{""name"":""Red Coat Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_forge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
+thirstybear_brewing-golden_vanilla_ale,0,0,245109030914,"{""name"":""Golden Vanilla Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+moosejaw_pizza_dells_brewing_company-schmitz_pale_ale_no_5,0,0,244865957889,"{""name"":""Schmitz Pale Ale No. 5"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
+lowenbrau_brauerei-schwarze_weisse,0,0,244866744322,"{""name"":""Schwarze Weisse"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+brasserie_de_la_senne-zinnebir_xmas,0,0,244360413186,"{""name"":""Zinnebir Xmas"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+sprecher_brewing-sprecher_abbey_triple,0,0,245109358594,"{""name"":""Sprecher Abbey Triple"",""abv"":8.41,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Trappist triple yeast culture balanced with the finest imported pale barley, Belgian aromatic malt and oats, gives this golden ale a fruity bouquet and a light refined taste."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,26,1
+duck_rabbit_craft_brewery-duck_rabbit_milk_stout,0,0,244625178625,"{""name"":""Duck-Rabbit Milk Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Duck-Rabbit Milk Stout is a traditional full-bodied stout brewed with lactose (milk sugar). The subtle sweetness imparted by the lactose balances the sharpness of the highly roasted grains which give this delicious beer its black color."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,44,1
+flour_city_brewing-ironhead_porter_old_no_3,0,0,244624982019,"{""name"":""Ironhead Porter Old No. 3"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flour_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+america_s_brewing-schwartzbier,0,0,244367818753,"{""name"":""Schwartzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,28,1
+brasserie_de_l_abbaye_de_scourmont_trappistes-premiere_red,0,0,244359102464,"{""name"":""Première (Red)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_de_scourmont_trappistes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+brouwerij_abdij_der_trappisten_van_westmalle-westmalle_trappist_dubbel,0,0,244475166720,"{""name"":""Westmalle Trappist Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_der_trappisten_van_westmalle"",""updated"":""2010-07-22 20:00:20"",""description"":""Westmalle Dubbel is a dark, reddish-brown Trappist beer with a secondary fermentation in the bottle. The creamy head has the fragrance of special malt and leaves an attractive lace pattern in the glass. The flavour is rich and complex, herby and fruity with a fresh-bitter finish. It is a balanced quality beer with a soft feel in the mouth and a long, dry aftertaste. The Dubbel contains 7% alcohol.""}",1,3,1
+augustiner_brau_munchen,0,0,244378042368,"{""name"":""Augustiner-Bräu München"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-519940"",""website"":""http://www.augustiner-braeu.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Augustiner Bräu is a brewery located in Munich, Germany. Established in 1328, it is Munich's oldest brewery and produces some of Munich's most popular brands of beer."",""address"":[""Landsberger Strae 35""]}",1,52,1
+delafield_brewhaus-fruhlingzeit_maibock,0,0,244606566400,"{""name"":""Frühlingzeit Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,1,1
+goose_island_beer_company_clybourn-goose_island_imperial_ipa,0,0,244626489346,"{""name"":""Goose Island Imperial IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,46,1
+sly_fox_brewhouse_and_eatery_royersford-royal_weisse,0,0,245109751808,"{""name"":""Royal Weisse"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
+coors_brewing_golden_brewery-zima_clear,0,0,244490960898,"{""name"":""Zima Clear"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Zima is redefining refreshment. Zima flavored malt beverages are a great choice for adult consumers who seek variety and new and different products. Zima was reformulated in 2007 and is available in three citrus-based flavors.\r\n\r\nZima is lighter in carbonation and alcohol content, making it more drinkable and lower in calories than the old formula.""}",1,40,1
+portsmouth_brewery-wheat_wine,0,0,244988772353,"{""name"":""Wheat Wine"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+august_schell_brewing-dark,0,0,244359888897,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+bell_s_brewery_inc,0,0,244359561218,"{""name"":""Bell's Brewery Inc."",""city"":""Galesburg"",""state"":""Michigan"",""code"":""49053"",""country"":""United States"",""phone"":""269.382.2338"",""website"":""http://www.bellsbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In 2003, Bell's proudly opened a new production brewery in nearby Comstock, Michigan. The new brewery has now seen three major additions and encompasses 60,000 square feet of building on a 24 acre site The Quality Assurance department has thrived in the new facilities, implementing procedures and techniques that assure that Bell's is consistently putting out the very best beer possible. Total brewing capacity now stands at 140,000 bbls. At the Kalamazoo Avenue location, an historical rehabilitation has brought about a pleasant architectural change to the city landscape. Our ongoing goal is to brew thoughtfully, creatively and artistically. We strive to bring an authentic and pleasant experience to all of our customers through our unique ales and beers. We look forward to sharing our beers with you."",""address"":[""8938 Krum Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2843,""lon"":-85.4538}}",1,7,1
+brooklyn_brewery-east_india_pale_ale,0,0,244474773504,"{""name"":""East India Pale Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,2,1
+dixie_brewing-blackened_voodoo,0,0,244627013633,"{""name"":""Blackened Voodoo"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixie_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by old-world brewing methods, this bewitching all-malt brew is a darkly rich, exotic lager, crafted with a touch of magical New Orleans spirit."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+clipper_city_brewing_co-below_decks,0,0,244474052610,"{""name"":""Below Decks"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Created to celebrate Clipper City’s 10th Anniversary – extremely limited and “vintage” dated – this extravagantly malty barley wine will show well upon release but continue to evolve for years. Seasonally available in December while supplies last. Voted #1 beer by Mahaffey’s Pub."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,0,1
+alvinne_picobrouwerij,0,0,244379222017,"{""name"":""Alvinne Picobrouwerij"",""city"":""Ingelmunster"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-/-30-55-17"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oostrozebekestraat 114""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.919,""lon"":3.2632}}",1,56,1
+bottom_s_up_brewing,0,0,244358709253,"{""name"":""Bottom's Up Brewing"",""city"":""Pinedale"",""state"":""Wyoming"",""code"":""82941"",""country"":""United States"",""phone"":""1-307-367-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""402 West Pine Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.8666,""lon"":-109.866}}",1,4,1
+maritime_pacific_brewing,0,0,244866351106,"{""name"":""Maritime Pacific Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98107"",""country"":""United States"",""phone"":""1-206-782-6181"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1514 NW Leary Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6637,""lon"":-122.377}}",1,22,1
+brauhaus_onuma-kolsch,0,0,244476084225,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_onuma"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+dogfish_head_craft_brewery-squall_ipa,0,0,244624588800,"{""name"":""Squall IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An unfiltered and 100% bottle-conditioned version of 90 Minute IPA that's dry-hopped with Palisade, Amarillo, Simcoe, Cascade, CTZ, and Willamette hops. Brewed to honor the Rogue Gallery in Portland, Maine, who will also be releasing a DFH designed clothing line in the summer of '09."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,42,1
+cervecera_centro_americana_s_a-moza,0,0,244491288578,"{""name"":""Moza"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_centro_americana_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,41,1
+jasper_ridge_brewery-jasper_brown_ale,0,0,244753170433,"{""name"":""Jasper Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,47,1
+water_tower_brewing,0,0,245747154944,"{""name"":""Water Tower Brewing"",""city"":""Eden Prairie"",""state"":""Minnesota"",""code"":""55344"",""country"":""United States"",""phone"":""1-952-941-8773"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8652,""lon"":-93.4095}}",1,24,1
+thunderhead_brewery-storm_ale,0,0,245109030915,"{""name"":""Storm Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
+murphy_s_wagon_wheel-bock_dark,0,0,244865957890,"{""name"":""Bock Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
+magnolia_pub_and_brewery-krolsch,0,0,244866809856,"{""name"":""Krölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+brasserie_dupont-moinette_blonde,0,0,244477132800,"{""name"":""Moinette Blonde"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+staatliches_hofbrauhaus_in_munchen-starkbier,0,0,245109424128,"{""name"":""Starkbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,26,1
+duvel_moortgat-duvel,0,0,244625244160,"{""name"":""Duvel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duvel_moortgat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,44,1
+fox_river_brewing_1-titan_porter,0,0,244625047552,"{""name"":""Titan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+appalachian_brewing_company-kipona_fest,0,0,244367818754,"{""name"":""Kipona Fest"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Oktoberfest style Marzen is a favorite at the famous Bavarian fall beer festivals. The distinct toasted malt flavor of this amber lager finishes quite crisp due to the extensive lagering of this beer. One sip and you’ll swear you’re in Munich.\r\n\r\n\""Kipona\"" is the Indian word for \""sparkling water\"". Each year, over Labor Day weekend, Harrisburg celebrates Kipona with a carnival and festival along the Susquehanna River and on City Island."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,28,1
+brasserie_de_silly-saison,0,0,244359102465,"{""name"":""Saison"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+brouwerij_de_landtsheer-malheur_mm,0,0,244475166721,"{""name"":""Malheur MM"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+ballast_point_brewing,0,0,244378042369,"{""name"":""Ballast Point Brewing"",""city"":""San Diego"",""state"":""California"",""code"":""92110"",""country"":""United States"",""phone"":""1-800-581-2739"",""website"":""http://www.ballastpoint.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Ballast Point Brewing Company is one of San Diego's Premiere Breweries. We started out modestly as Home Brew Mart in 1992. Our goal was to teach others how to brew quality handcrafted beer at home. In 1996 the brewery was installed by New World Brewing Systems in the space behind our retail store and production began in September. In May of 2005 we open our second brewery in Scripps Ranch. We currently distribute five of our favorite beers, Yellowtail Pale Ale, Calico Amber Ale , Big Eye I.P.A., Black Marlin Porter and Wahoo Wheat Beer to a thirsty San Diego. Come to our brewery and we will gladly give you a tour and allow you to sample our newest selection of beers. Currently our beer is available in twelve ounce bottles to 15.5 gallon kegs. We also offer half gallon and gallon glass jugs to go. Kegs are available for rent to the public with a minimum deposit. The name for our brewery comes from the point where Juan Rodriguez Cabrillo first set foot in California. Located on the Point Loma Peninsula, Ballast Point is considered the gateway to San Diego Harbor. Stones from this area were used as ballast in the cargo holds of sailing ships returning to the eastern seaboard. Many New England streets are still lined with the cobblestones brought back from San Diego."",""address"":[""5401 Linda Vista Road #406""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7668,""lon"":-117.195}}",1,52,1
+deschutes_brewery-twilight_ale,0,0,244606566401,"{""name"":""Twilight Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Stretching the longer summer days into Twilight! There is something magical about the time of day that falls between light and dark, the high-desert summer day fading into a warm evening with brilliant skies.\r\n\r\nTwilight Ale is a lighter, but full flavored ale with a balanced malt profile and a harmonious blend of four hops. A final dry hopping of bold Amarillos creates the distinctive finishing touch. Twilight is best enjoyed when chilled and consumed outdoors."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+goose_island_beer_company_fulton_street-india_pale_ale,0,0,244626489347,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+snipes_mountain_microbrewery_restaurant,0,0,245109817344,"{""name"":""Snipes Mountain Microbrewery & Restaurant"",""city"":""Sunnyside"",""state"":""Washington"",""code"":""98944"",""country"":""United States"",""phone"":""1-509-837-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""905 Yakima Valley Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.3284,""lon"":-120.008}}",1,27,1
+corner_pub-weizen,0,0,244491026432,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""corner_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,40,1
+privatbrauerei_gaffel-kolsch,0,0,244988837888,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_gaffel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+avery_brewing_company-reverend_the,0,0,244359888898,"{""name"":""Reverend, The"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian-Style Quadrupel Ale"",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,8,1
+big_boss_brewing_company-bad_penny,0,0,244359626752,"{""name"":""Bad Penny"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_boss_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark brown ale is slightly sweet with a caramel and dark fruit finish. A show case of fine English malts, floor malted the old way. We use pale, chocolate, and crystal malts to produce a complex, but easy drinking dark ale. Very reminescent of northern English ales."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
+brouwerij_de_regenboog,0,0,244474773505,"{""name"":""Brouwerij De Regenboog"",""city"":""Assebroek"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-050/37.38.33"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Astridlaan 134""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.1968,""lon"":3.2527}}",1,2,1
+double_mountain_brewery_taproom-india_red_ale_the_ira,0,0,244627079168,"{""name"":""India Red Ale (The \""IRA\"")"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""The “IRA”, as it’s known around here, marries a ruby red color and rich body with the hop flavors of an IPA. Our unique ale yeast strain adds a delicious layer of complexity. One of the first beers we made, and an enduring favorite."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+coast_range_brewing-desperado_pale_ale,0,0,244474052611,"{""name"":""Desperado Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,0,1
+amherst_brewing_company-raspberry_brown_ale,0,0,244379287552,"{""name"":""Raspberry Brown Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Massatucky Brown Ale with a subtle raspberry flavoring"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,56,1
+boulevard_brewing_company,0,0,244358774784,"{""name"":""Boulevard Brewing Company"",""city"":""Kansas City"",""state"":""Missouri"",""code"":""64108"",""country"":""United States"",""phone"":""1-816-474-7095"",""website"":""http://www.blvdbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2501 Southwest Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.0821,""lon"":-94.5965}}",1,4,1
+michigan_brewing-wheatland_wheat,0,0,244866416640,"{""name"":""Wheatland Wheat"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""True Hefeweizen yeast and malted wheat give this ale its authentic German flavor and aroma. Hints of banana flavor and aroma are present in this medium to full bodied, pale colored cloudy, unfiltered ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+brewery_belle_vue-gueuze,0,0,244476149760,"{""name"":""Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_belle_vue"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,6,1
+dry_gulch_brewing-where_the_helles_albuquerque,0,0,244624588801,"{""name"":""Where The Helles Albuquerque"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dry_gulch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+climax_brewing_copmany-climax_cream_ale,0,0,244491288579,"{""name"":""Climax Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Cream Ale is a light, crisp, yellow ale with hop-notes and citrus flavors. It's a smooth, easy drinking summer beer that's perfect for drinking on hot days and with light fare such as seafood and salads."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,41,1
+jj_bitting_brewing-bad_boy_oktoberfest,0,0,244753170434,"{""name"":""Bad Boy Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,47,1
+weinkeller_brewery_berwyn-amber_ale,0,0,245747154945,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,24,1
+titletown_brewing-imperial_ipa,0,0,245109096448,"{""name"":""Imperial IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
+myanmar_brewery_and_distillery-lager_beer,0,0,244866023424,"{""name"":""Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""myanmar_brewery_and_distillery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+manayunk_brewery_and_restaurant-summer_gold,0,0,244866809857,"{""name"":""Summer Gold"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+brauerei_gasthof_zur_krone-pils,0,0,244477132801,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+stoudt_s_brewery-stoudt_s_american_pale_ale,0,0,245109424129,"{""name"":""Stoudt's American Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This uniquely American beer offers a crisp, medium body with a light amber color. Generous additions of Cascade hops provide a refreshing bitterness and vibrant citrus aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,26,1
+egan_brewing-toil_and_trubbel_dubbel,0,0,244625244161,"{""name"":""Toil and Trubbel Dubbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+friesisches_brauhaus_zu_jever-pilsener,0,0,244625047553,"{""name"":""Pilsener"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""friesisches_brauhaus_zu_jever"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+appalachian_brewing_company-purist_pale_ale,0,0,244367884288,"{""name"":""Purist Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our light copper pale ale has a delicate malt attribute balanced by an aggressive hop flavor and aroma. Many American micros have developed their own version of this classic English style beer. Our brewers anticipate that you will enjoy their variation. \r\nHikers on the Appalachian Trail are considered \""purist hikers\"" if they cover every inch of the trail during the hike. Our brewers refuse to compromise the quality of our products with the \""purist hiker\"" in mind."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+brauerei_beck-dark,0,0,244475756544,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+brouwerij_van_eecke,0,0,244475166722,"{""name"":""Brouwerij Van Eecke"",""city"":""Watou"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-057-42-20-05"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Douvieweg 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8612,""lon"":2.6615}}",1,3,1
+belfast_bay_brewing_company-mcgovern_s_oatmeal_stout,0,0,244378107904,"{""name"":""McGovern's Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""belfast_bay_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,52,1
+dock_street_beer-summer_session,0,0,244606631936,"{""name"":""Summer Session"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth refreshing American Wheat Ale brewed with fresh ginger. This Summer Session is much more exciting than the one you had to sit through in high school."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,1,1
+goose_island_beer_company_fulton_street,0,0,244626554880,"{""name"":""Goose Island Beer Company - Fulton Street"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60612"",""country"":""United States"",""phone"":""1-800-466-7363"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1800 West Fulton Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.8871,""lon"":-87.6721}}",1,46,1
+southern_tier_brewing_co-unearthly_imperial_india_pale_ale,0,0,245109817345,"{""name"":""Unearthly Imperial India Pale Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""At the Southern Tier Brewing Company, vigorously hopped beer is our standard and inspiration. We continue a commitment to innovation with our most aggressive offering yet. Unearthly is a manifestation of the brewer’s craft; skillfully balancing art and the forces of nature to produce a divine liquid. Delicately pour a taste into a fluted glass. Smell the enchanting aromas of the hops waft forward as your first sip divulges this beer’s fervent soul. To underestimate Unearthly is to trifle with the mysteries of the universe, so please consume wisely."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,27,1
+crane_river_brewpub_and_cafe-flaming_crane_chili_beer,0,0,244491026433,"{""name"":""Flaming Crane Chili Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+pyramid_alehouse_brewery_and_restaurant_seattle-amber_weizen,0,0,244988837889,"{""name"":""Amber Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,20,1
+bavarian_barbarian_brewing_company-weldspatter_ipa,0,0,244359954432,"{""name"":""Weldspatter IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Weldspatter IPA is not your typical India Pale Ale. First of all, it isn’t as aggressively hopped as many other American versions. Second, it isn’t quite as pale. Balance is a lovely thing in beers and Weldspatter IPA achieves balance without compromising hop presence. The hop flavor and aroma abound, but the bitterness is held in check to give our IPA a pleasant malt character as well."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
+boston_beer_company-longshot_american_pale_ale,0,0,244359626753,"{""name"":""Longshot American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+brouwerij_liefmans-goudenband_1996,0,0,244474773506,"{""name"":""Goudenband 1996"",""abv"":3.98,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+edelweissbrauerei_farny,0,0,244627079169,"{""name"":""Edelweissbrauerei Farny"",""city"":""Kilegg"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7522-/-9788-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Drren 5""]}",1,48,1
+coors_brewing_golden_brewery-killian_s_irish_red,0,0,244474118144,"{""name"":""Killian's Irish Red"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Killian's Irish Red is a traditional lager with an authentic Irish heritage, based on the Killian family's recipe created for the Killian's brewery in Enniscorthy, Ireland in 1864. Coors acquired the rights to brew and market the product in America and Killian's was introduced to the U.S. in 1981.\r\n\r\nKillian's Irish Red derives its distinctive red-amber color and taste from a special caramel malt that has been roasted at a high temperature longer and more slowly than most malts. There are no coloring agents or artificial additives used in brewing Killian's. The brew is known for its rich amber color and thick, creamy head."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
+arcadia_brewing-scotch_ale,0,0,244379287553,"{""name"":""Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,56,1
+brasal_brasserie_allemande-special_amber_lager,0,0,244358774785,"{""name"":""Special Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasal_brasserie_allemande"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
+mill_creek_brewpub,0,0,244866416641,"{""name"":""Mill Creek Brewpub"",""city"":""Walla Walla"",""state"":""Washington"",""code"":""99362"",""country"":""United States"",""phone"":""1-509-522-2440"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""11 North Palouse""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.0697,""lon"":-118.336}}",1,22,1
+bricktown_brewery-vanilla,0,0,244476149761,"{""name"":""Vanilla"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+empyrean_brewing_company-black_jack_stout,0,0,244624588802,"{""name"":""Black Jack Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
+coach_s_norman-ipa,0,0,244491354112,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coach_s_norman"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,41,1
+john_harvard_s_brew_house_harvard_square,0,0,244753235968,"{""name"":""John Harvard's Brew House - Harvard Square"",""city"":""Cambridge"",""state"":""Massachusetts"",""code"":""2138"",""country"":""United States"",""phone"":""1-617-868-3585"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33 Dunster Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3724,""lon"":-71.1193}}",1,47,1
+wells_and_youngs_brewing_company_ltd-young_s_winter_warmer,0,0,245747220480,"{""name"":""Young's Winter Warmer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wells_and_youngs_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""The definitive winter beer and a longtime favourite, Winter Warmer has been making annual appearances on the bar every winter since the 1950s. A rich, ruby-coloured beer, luscious and fullbodied, with a splendid nutty flavour."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,24,1
+tommyknocker_brewery_and_pub-imperial_nut_brown,0,0,245109096449,"{""name"":""Imperial Nut Brown"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-12-20 15:59:17"",""description"":""Commemorating the 10th anniversary of Tommyknocker Brewery, this special brew is meticulously crafted with pure maple syrup, the highest quality chocolate and crystal malts and is accented with the finest blend of European and American hops. Imperial Nut Brown Ale, at 9.8% alcohol by volume, is a bigger, bolder version of their Maple Nut Brown."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,25,1
+new_belgium_brewing-saison,0,0,244866023425,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+mckenzie_brew_house-black_lab_stout,0,0,244866875392,"{""name"":""Black Lab Stout"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,23,1
+brauerei_gss-dark_beer_stiftsbrau,0,0,244477198336,"{""name"":""Dark Beer / Stiftsbräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gss"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+sturgeon_bay_brewing-summer_wheat,0,0,245109424130,"{""name"":""Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+abita_brewing_company-abita_purple_haze,0,0,244370309120,"{""name"":""Abita Purple Haze"",""abv"":4.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Purple Haze is a crisp, American style wheat beer with raspberry puree added after filtration. Therefore, you may see raspberry pulp in the beer. The raspberries provide the lager with a subtle purple coloration and haze, a fruity aroma, and a tartly sweet taste."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
+elliott_bay_brewery_and_pub-no_doubt_stout,0,0,244625244162,"{""name"":""No Doubt Stout"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
+full_sail_brewing_1-slip_knot_imperial_ipa_2006,0,0,244625047554,"{""name"":""Slip Knot Imperial IPA 2006"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+appleton_brewing-adler_brau_downtown_brown,0,0,244367884289,"{""name"":""Adler Bräu Downtown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,28,1
+brauerei_beck-st_pauli_girl_special_dark,0,0,244475822080,"{""name"":""St.Pauli Girl Special Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+brouwerij_verhaeghe-duchesse_de_bourgogne,0,0,244475232256,"{""name"":""Duchesse de Bourgogne"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_verhaeghe"",""updated"":""2010-07-22 20:00:20"",""description"":""DUCHESSE DE BOURGOGNE\r\nfrom Brouwerij Verhaeghe is the traditional Flemish red ale. This refreshing ale is matured in oak casks; smooth with a rich texture and interplay of passion fruit, and chocolate, and a long, dry and acidic finish. After the first and secondary fermentation, the beer goes for maturation into the oak barrels for 18 months. The final product is a blend of younger 8 months old beer with 18 months old beer. The average age of the Duchesse de Bourgogne before being bottled is 12 months.""}",1,3,1
+big_rock_brewery,0,0,244378107905,"{""name"":""Big Rock Brewery"",""city"":""Calgary"",""state"":""Alberta"",""code"":""0"",""country"":""Canada"",""phone"":""1-403-720-3239"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5555 76th Avenue SE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9847,""lon"":-113.956}}",1,52,1
+dogfish_head_craft_brewery-75_minute_ipa,0,0,244606631937,"{""name"":""75 Minute IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Johnny Cask has entered the building! We’ve retrofitted a 15 barrel tank to perfectly produce a very special cask conditioned ale (so, we have a little time to play around during winters at the Delaware coast). This beer, known as Dogfish Head 75 Minute IPA is a blend of 60 and 90 Minute IPAs with a special whole leaf cascade dry-hopping session."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
+gray_brewing-cream_ale,0,0,244752515072,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+spoetzl_brewery,0,0,245109882880,"{""name"":""Spoetzl Brewery"",""city"":""Shiner"",""state"":""Texas"",""code"":""77984"",""country"":""United States"",""phone"":""1-800-574-4637"",""website"":""http://www.shiner.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""603 East Brewery Street""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.426,""lon"":-97.1607}}",1,27,1
+dry_gulch_brewing,0,0,244623540224,"{""name"":""Dry Gulch Brewing"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.0845,""lon"":-106.651}}",1,40,1
+pyramid_ales_brewery-pyramid_thunderhead_ipa,0,0,244988903424,"{""name"":""Pyramid Thunderhead IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It took only a couple of rounds of India's finest for the 19th century British Colonists to write home, \""Either send us some good beer or we're outta here.\"" India Pale Ale is what was sent. Originally made extra hoppy to survive the voyage, it's unique flavor also survived the Colonists finicky tastes and became and instant favorite back home.\r\n\r\nPyramid India Pale Ale has the distinctively hoppy flavor and aroma craft beer enthusiasts demand. Abundant helpings of Columbus hops gives this ale an astonishing 67 IBU's - truly a beer for bold tastes! The distinguished Celebrator Beer News aptly named this brew \""hophead nectar\"" (June/July issue, 1998)."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
+big_time_brewing-atlas_amber_ale,0,0,244359954433,"{""name"":""Atlas Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+boston_beer_company-samuel_adams_winter_lager,0,0,244359626754,"{""name"":""Samuel Adams Winter Lager"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Bold and rich, with a touch of holiday spice\r\nThe first thing one notices in a Samuel Adams® Winter Lager is its color: the deep brown of winter. Then comes the magical aroma which promises something special on the tongue. The warm aroma of cinnamon and ginger which blends with the roasty sweetness of the malted barley and hint of citrus from the orange peel. And after that first sip the promise is fulfilled. On the palate Samuel Adams® Winter Lager is rich and full bodied, robust and warming, a wonderful way to enjoy the cold evenings that come with this season."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,7,1
+brouwerij_sterkens-st_paul_triple,0,0,244474773507,"{""name"":""St. Paul Triple"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+elgood_sons-norvig_ale,0,0,244627144704,"{""name"":""Norvig Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elgood_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+copper_kettle_brewery,0,0,244474118145,"{""name"":""Copper Kettle Brewery"",""city"":""Millmont"",""state"":""Pennsylvania"",""code"":""17845"",""country"":""United States"",""phone"":""270-342-1638"",""website"":""http://www.ckbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Copper Kettle Brewery is an up and coming brewery owned by Harold Kerlin and Russ Eisenhuth. We have been independently brewing beer for the past 6 years. In 2006 we won First place in the Sam Adams Longshot contest for the northeast region of the U.S. with our Potbelly Porter. After that we decided to start our own brewery. The Brewery is located in just outside of Laurelton PA. We are a small production brewery using a one barrel brewing system. We hope to produce around 50 barrels a year. At present we are making 4 different styles of beer. A Wheat beer, Porter, Grand Cru, and Belgian Dubbel. All of our beer is unfiltered, and bottle conditioned. Our beers are now available at the Bull Run Inn, Market St., Lewisburg, The Beer Barn, Lewisburg and Wehr's Beverages, Mifflinburg."",""address"":[""339 Fairground Rd""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.8942,""lon"":-77.1971}}",1,0,1
+atwater_block_brewing-vanilla_java_porter,0,0,244379353088,"{""name"":""Vanilla Java Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter made with chocolate malt. We blend it with Vanilla and Java beans, and balance it with U.S. Golding Hops."",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
+512_brewing_company-512_pecan_porter,0,0,244372996096,"{""name"":""(512) Pecan Porter"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Nearly black in color, (512) Pecan Porter is made with Organic US 2-row and Crystal malts along with Baird’s Chocolate and Black malts. Its full body and malty sweetness are balanced with subtle pecan aroma and flavor from locally grown pecans. Yet another true Austin original!"",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
+brasal_brasserie_allemande,0,0,244358774786,"{""name"":""Brasal-Brasserie Allemande"",""city"":""LaSalle"",""state"":""Quebec"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.4289,""lon"":-73.6313}}",1,4,1
+minneapolis_town_hall_brewery-oak_aged_single_malt,0,0,244866482176,"{""name"":""Oak Aged Single Malt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+brouwerij_liefmans-gluhkriek,0,0,244476149762,"{""name"":""Gluhkriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,6,1
+empyrean_brewing_company-dark_german_lager,0,0,244624588803,"{""name"":""Dark German Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+coors_brewing_golden_brewery-blue_moon_belgian_white,0,0,244491354113,"{""name"":""Blue Moon Belgian White"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Blue Moon Belgian White, Belgian-style wheat ale, is a refreshing, medium-bodied, unfiltered Belgian-style wheat ale spiced with fresh coriander and orange peel for a uniquely complex taste and an uncommonly smooth finish.\r\n\r\nThe name \""Belgian White\"" is a reference to the cloudy white, opaque appearance of the beer. \""Belgian White\"" also refers to the style of beer, which has been brewed in Belgium for about 300 years. This type of ale is brewed with malt, wheat and oats. It is unfiltered, which allows protein and yeast to remain suspended in the beer and creates the cloudy appearance. This also adds to the smoothness and full body of the beer.\r\n\r\nPutting a new twist on the lime ritual, Blue Moon is traditionally served with a slice of orange. Blue Moon was launched in 1995."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,41,1
+kalamazoo_brewing-third_coast_ale,0,0,244753235969,"{""name"":""Third Coast Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kalamazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
+yards_brewing-general_washington_tavern_porter,0,0,245747220481,"{""name"":""General Washington Tavern Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""By George, I think we've got it.\r\n\r\nDays of debate and deliberation at Independence Hall were often followed by nights of debate and deliberation (and a few libations) at the City Tavern, where our forefathers would gather to exchange revolutionary ideas.\r\n\r\nRich and warming with a deep garnet hue, the molasses-based Tavern Porter™ reflects Washington's admiration of Philadelphia-style porters and follows a recipe Washington used himself, when brewing beer to satisfy his thirsty field officers.\r\n\r\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.\r\n\r\nHistorical note: Our new brewery is located just blocks away from the site of Robert Hair's brewery, where Washington's favorite Philadelphia Porter was crafted."",""style"":""Porter"",""category"":""Irish Ale""}",1,24,1
+trap_rock_restaurant_and_brewery-yorkshire_stout,0,0,245109096450,"{""name"":""Yorkshire Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
+new_glarus_brewing_company-solstice_wheat,0,0,244866023426,"{""name"":""Solstice Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
+middle_ages_brewing-winter_wheat,0,0,244866875393,"{""name"":""Winter Wheat"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Subtle Seasonal spices, in this dark, rich wheat beer are smooth and easy for the discerning palate."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
+brauerei_herrenhausen,0,0,244477198337,"{""name"":""Brauerei Herrenhausen"",""city"":""Hannover"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)511-/-7907-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Herrenhuser Strae 83-99""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.3935,""lon"":9.6814}}",1,9,1
+tenaya_creek_restaurant_and_brewery,0,0,245109489664,"{""name"":""Tenaya Creek Restaurant and Brewery"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89128"",""country"":""United States"",""phone"":""1-702-362-7335"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3101 North Tenaya Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.2154,""lon"":-115.251}}",1,26,1
+alesmith_brewing-grand_cru_2003,0,0,244370374656,"{""name"":""Grand Cru 2003"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+empyrean_brewing_company-empyrean_oktoberfest,0,0,244625309696,"{""name"":""Empyrean Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,44,1
+gottberg_brew_pub-impromptu_pale_ale,0,0,244625113088,"{""name"":""Impromptu Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
+ballast_point_brewing-wahoo_wheat_beer,0,0,244367949824,"{""name"":""Wahoo Wheat Beer"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ballast Point Wahoo Wheat Beer is created using the same ingredients that were once used in Belgium. Flaked unmalted wheat, oats and malted barley comprise the grain. The unmalted wheat has a high protein content, which causes the beer to be hazy, thus giving it a cloudy, or \""white\"" appearance. A special yeast gives a refreshing tangy flavor that is different from both the sour Weiss beers of Berlin or the banana and clovey Weizens of Bavaria. The mild hopping allows the unique malts to show through and does not conflict with the subtleties of the citrus spicing. This unique citrus character is created by adding a blend of curacao (bitter orange), sweet orange and coriander to the boil. White beers are light and refreshing, yet provide a complex reminder that interesting high quality beer does not have to be bitter and dark. Ballast Point Wahoo Wheat Beer is the perfect beer for sunny San Diego."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,28,1
+brimstone_brewing-stone_beer,0,0,244475887616,"{""name"":""Stone Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brimstone_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+caldera_brewing-ashland_amber,0,0,244475232257,"{""name"":""Ashland Amber"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A crisp, well-balanced, refreshing amber. Simplicity is the key to this recipe."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
+blicks_brewing,0,0,244378107906,"{""name"":""Blicks Brewing"",""city"":""Colorado Springs"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8339,""lon"":-104.821}}",1,52,1
+dogfish_head_craft_brewery-chicory_stout,0,0,244606631938,"{""name"":""Chicory Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark beer made with a touch of roasted chicory, organic Mexican coffee, St. John's Wort, and licorice root. Brewed with whole-leaf Cascade and Fuggles hops, the grains include pale, roasted & oatmeal."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
+grolsche_bierbrouwerij,0,0,244752515073,"{""name"":""Grolsche Bierbrouwerij"",""city"":""Enschede"",""state"":""Overijssel"",""code"":""7548 XA"",""country"":""Netherlands"",""phone"":""+31-(0)53-4833333"",""website"":""http://www.grolsch.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Royal Grolsch B.V. is one of the largest breweries in the Netherlands. It is best known for its 'beugel' bottle design."",""address"":[""Brouwerslaan 1""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.2081,""lon"":6.8163}}",1,46,1
+stieglbrauerei_zu_salzburg_gmbh-stiegl_leicht,0,0,245109882881,"{""name"":""Stiegl Leicht"",""abv"":3.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a light beer with a full taste and a third less alcohol so therefore 30% less calories. It is ideal for beer lovers who prefer light beers but do not want to renounce the taste."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,27,1
+engine_house_9-india_pale_ale,0,0,244623605760,"{""name"":""India Pale Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+rahr_sons_brewing_company-rahr_s_oktoberfest,0,0,244988903425,"{""name"":""Rahr's Oktoberfest"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""O'zapft is!\"" The cry of happy beer drinkers at the start of the Munich Oktoberfest, which in German means \""The keg is tapped!\"" Rahr's Oktoberfest Celebration Lager is a traditional Marssen style Oktobefest lager - dark amber in color, super smooth, medium body with a sweet malty finish. True to tradition, this is a classic Oktoberfest Lager."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,20,1
+big_time_brewing-faux_paddy_irish_ale,0,0,244360019968,"{""name"":""Faux Paddy Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+brasserie_brouwerij_cantillon-bruocsella_1900_grand_cru,0,0,244359692288,"{""name"":""Bruocsella 1900 Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,7,1
+brouwerij_van_honsebrouck-brigand,0,0,244474839040,"{""name"":""Brigand"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+elk_creek_cafe_and_aleworks-double_rainbow_ipa,0,0,244627144705,"{""name"":""Double Rainbow IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for the spectacular and complete double rainbow that appeared in the northwest sky just outside the brewhouse during the inaugural mash in. With a foot in both the new and old worlds, this IPA is generously dry-hopped with English Fuggles, resulting in a strong, deep golden, very fresh, and fruity English flavor and aroma."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,48,1
+crabby_larry_s_brewpub_steak_crab_house-summer_lager,0,0,244474183680,"{""name"":""Summer Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
+backwater_brewing,0,0,244379353089,"{""name"":""Backwater Brewing"",""city"":""Winona"",""state"":""Minnesota"",""code"":""55987"",""country"":""United States"",""phone"":""1-507-452-2103"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1429 West Service Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0486,""lon"":-91.6774}}",1,56,1
+alpirsbacher_klosterbru-pils,0,0,244373061632,"{""name"":""Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alpirsbacher_klosterbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+brasserie_du_benin,0,0,244358774787,"{""name"":""Brasserie du Benin"",""city"":""Lom"",""state"":"""",""code"":"""",""country"":""Togo"",""phone"":""228-215-062"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""BP 896""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.3906,""lon"":-93.3739}}",1,4,1
+moylan_s_brewery_restaurant-india_pale_ale,0,0,244866482177,"{""name"":""India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+brouwerij_sterkens-st_sebastiaan_dark,0,0,244476149763,"{""name"":""St. Sebastiaan Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+fifty_fifty_brewing_co,0,0,244624654336,"{""name"":""Fifty Fifty Brewing Co."",""city"":""Truckee"",""state"":""California"",""code"":""96161"",""country"":""United States"",""phone"":""530.587.BEER"",""website"":""http://www.fiftyfiftybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""11197 Brockway Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.322,""lon"":-120.163}}",1,42,1
+courthouse_pub-munich_dunkel,0,0,244491419648,"{""name"":""Munich Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+la_jolla_brew_house-india_pale_ale,0,0,244753301504,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
+traquair_house_brewery-house_ale,0,0,245109161984,"{""name"":""House Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traquair_house_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,25,1
+niagara_falls_brewing-best_bitter,0,0,244866088960,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+millstream_brewing-schild_brau_amber,0,0,244866940928,"{""name"":""Schild Brau Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
+brauerei_schumacher,0,0,244477263872,"{""name"":""Brauerei Schumacher"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-828902-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oststrae 123""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2216,""lon"":6.7853}}",1,9,1
+terminal_gravity_brewing-ipa,0,0,245109489665,"{""name"":""IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terminal_gravity_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,26,1
+alesmith_brewing-horny_devil,0,0,244370440192,"{""name"":""Horny Devil"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+engine_house_9-porter,0,0,244625309697,"{""name"":""Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
+great_lakes_brewing-traditional_lager,0,0,244751269888,"{""name"":""Traditional Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+bard_s_tale_beer_company,0,0,244367949825,"{""name"":""Bard's Tale Beer Company"",""city"":""Lee's Summit"",""state"":""Missouri"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""211 NW Ward Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9169,""lon"":-94.3943}}",1,28,1
+bristol_brewing-winter_warlock_oatmeal_stout,0,0,244475887617,"{""name"":""Winter Warlock Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bristol_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,5,1
+copper_kettle_brewery-lucky_393_grand_cru,0,0,244475297792,"{""name"":""Lucky 393 Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is medium dark in color but it has a light body and a smooth mouthfeel. Coriander and orange will surround your senses and keep you coming back for more."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,3,1
+boiler_room_brewpub-colorado_belle_dark,0,0,244378107907,"{""name"":""Colorado Belle Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boiler_room_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+dogfish_head_craft_brewery-raison_d_extra,0,0,244606697472,"{""name"":""Raison D'Extra"",""abv"":20.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A bigger, bolder version of our Raison D'Etre.\r\n\r\nThis is a bulbous, brown ale brewed with a bunch of malt, brown sugar and raisins.\r\n\r\nIn case you care... the average 12 oz. serving has approximately 425 calories."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,1,1
+half_moon_bay_brewing-illuminator_doppelbock,0,0,244752580608,"{""name"":""Illuminator Doppelbock"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
+stoudt_s_brewery-stoudt_s_pils,0,0,245109948416,"{""name"":""Stoudt's Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Reflective of the traditional German style, Stoudt's Pils is delicately dry with firm bitterness. This crispness of Saaz hops and a dry malt finish make the Pilsener an excellent aperitif."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,27,1
+engine_house_9-spring_bock,0,0,244623671296,"{""name"":""Spring Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,40,1
+ramapo_valley_brewery-christmas_ale,0,0,244988903426,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+binding_brauerei_ag,0,0,244360019969,"{""name"":""Binding Brauerei AG"",""city"":""Frankfurt am Main"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)69-/-60650"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Darmstdter Landstrae 185""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0943,""lon"":8.6913}}",1,8,1
+brasserie_la_caracole-amber,0,0,244476346368,"{""name"":""Amber"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+bryggeriet_lfabrikken,0,0,244474839041,"{""name"":""Bryggeriet lfabrikken"",""city"":""Tisvildeleje"",""state"":"""",""code"":"""",""country"":""Denmark"",""phone"":""45-70-20-79-30"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hollselund Strandvej 74""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":56.0746,""lon"":12.1161}}",1,2,1
+elk_creek_cafe_and_aleworks-poe_paddy_porter,0,0,244627210240,"{""name"":""Poe Paddy Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for our beloved State Park this Robust Porter draws its uniquely enticing roasted character from a thoughtful combination of malts. Generous hop additions ensure a satisfying beer drinking experience."",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+craftsman_brewing,0,0,244474183681,"{""name"":""Craftsman Brewing"",""city"":""Pasadena"",""state"":""California"",""code"":""91103"",""country"":""United States"",""phone"":""1-626-296-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1260 Lincoln Avenue #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.1696,""lon"":-118.159}}",1,0,1
+bamberger_mahr_s_bru,0,0,244379353090,"{""name"":""Bamberger Mahr's-Bru"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-91517-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wunderburg 10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8901,""lon"":10.9067}}",1,56,1
+anchor_brewing-our_special_ale_1992,0,0,244373061633,"{""name"":""Our Special Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+brauerei_aying_franz_inselkammer_kg-brau_weisse,0,0,244475297792,"{""name"":""Bräu-Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,4,1
+nebraska_brewing_company-eos_hefeweizen,0,0,244866547712,"{""name"":""EOS Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,22,1
+capital_brewery-bavarian_lager,0,0,244476215296,"{""name"":""Bavarian Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+flatlander_s_restaurant_brewery,0,0,244624654337,"{""name"":""Flatlander's Restaurant & Brewery"",""city"":""Lincolnshire"",""state"":""Illinois"",""code"":""60069"",""country"":""United States"",""phone"":""1-847-821-1234"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 Village Green""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.2031,""lon"":-87.9302}}",1,42,1
+crane_river_brewpub_and_cafe-porter,0,0,244491419649,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
+lagunitas_brewing_company-ruben_the_jets,0,0,244753301505,"{""name"":""Ruben & The Jets"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Ale is Brewed in Honor of the 40th Anniversary Release of this Album."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,47,1
+21st_amendment_brewery_cafe-south_park_blonde,0,0,244372602880,"{""name"":""South Park Blonde"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Light golden color. Sweet dry aroma with crisp, clear bitterness. Brewed with imported German hops.The perfect beer to have when you'd like to have more than one."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,38,1
+triumph_brewing_of_princeton-honey_wheat,0,0,245109161985,"{""name"":""Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,25,1
+nicolet_brewing-blonde,0,0,244866088961,"{""name"":""Blonde"",""abv"":3.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+mission_springs_brewing-blonde_draft,0,0,244866940929,"{""name"":""Blonde Draft"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+bristol_brewing,0,0,244477263873,"{""name"":""Bristol Brewing"",""city"":""Colorado Springs"",""state"":""Colorado"",""code"":""80906"",""country"":""United States"",""phone"":""1-719-633-2555"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1647 South Tejon Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8097,""lon"":-104.826}}",1,9,1
+the_livery-thoms_special_ale,0,0,245109489666,"{""name"":""Thoms Special Ale"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This deep copper colored Ale is named after Steve's homebrew buddy Thom Phillips, who has had a part in helping to formulate some of the final Ale recipes at the Livery. Hints of caramel make their way through the aromatic bitterness of Centennial hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
+ali_i_brewing-golden_ale,0,0,244370440193,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+ettaler_klosterbetriebe_abteilung_brauerei_destillerie-kloster_dunkel,0,0,244625375232,"{""name"":""Kloster Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ettaler_klosterbetriebe_abteilung_brauerei_destillerie"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+green_flash_brewing-hop_hed_red_ale,0,0,244751269889,"{""name"":""Hop Hed Red Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Resinous hop character and bitterness balance the rich carmel malt base. We took it a step further and Amarillo dry-hopped the brew to 45 ibu's, creating refreshing and savory hop flavors and aromas. Is it red IPA? That's your call."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+bavarian_barbarian_brewing_company,0,0,244368015360,"{""name"":""Bavarian Barbarian Brewing Company"",""city"":""Williamsport"",""state"":""Pennsylvania"",""code"":""17701"",""country"":""United States"",""phone"":""570.332.5050"",""website"":""http://www.bavarianbarbarian.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bavarian Barbarian Brewing Company is Williamsport's first production brewery since the 1950's. The brewery, which occupies 9,000 square feet at 429 W. 3rd St in Williamsport, Pennsylvania, was founded by Mike Hiller in July 2007. Though a native of South Williamsport, Barbarian Chief, Mike Hiller, first entered the craft brewing industry in 1997 as an Account Services Associate for Legendary Distributors, Ltd., of Richmond, Virginia. After nearly a year of distributing beer, an opportunity arose for Mike to work as a brewer for Legend Brewing Company. Mike worked with five other brewers to perform duties at all levels of production including brewing, cellar work, cleaning and maintenance. After nearly four years of service at Legend Brewing Company, Mike moved to Boston, MA, so his wife, Kira, could attend grad school. Tired of listening to him whine about how much he missed brewing, Kira gave him a home brewing kit as an anniversary gift. Mike began brewing whenever he could find the time. He developed the recipes for Hammerin' Ale, Headbangerz Brown Ale, Square Feet Wheat, Weldspatter I.P.A. and several other beers in five-gallon batches on his apartment's balcony. Mike was also commissioned by friends and co-workers to brew beer for special occasions. In fact, Square Feet Wheat was actually first brewed for an art gallery opening featuring works by the Barbarian's logo and label designer, Erick Thomas. After reading Brewing Up a Business: Adventures in Entrepreneurship by Sam Calagione of Dogfish Head Brewery fame, Mike was inspired to start his own brewery. He spent eight months researching and writing a business plan. Another year was spent gathering support and revising his business plans. Thanks to the support of family, friends and other area businessmen who believed in Mike's dream, Bavarian Barbarian Brewing Company is now a reality."",""address"":[""429 W. 3rd St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.238,""lon"":-77.0103}}",1,28,1
+brouwerij_bockor-bellegems_bruin,0,0,244475953152,"{""name"":""Bellegems Bruin"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bockor"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+crabby_larry_s_brewpub_steak_crab_house-dead_man_walkin_ipa,0,0,244475297793,"{""name"":""Dead Man Walkin' IPA"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""This extra hoppy ale is characteristic of the classic pale ales. Using the very flavorful Mount Hood and Liberty hops we have created classic IPA goodness every sailor knows."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
+borsodi_sorgyar,0,0,244378173440,"{""name"":""Borsodi Sörgyár"",""city"":""Böcs"",""state"":"""",""code"":"""",""country"":""Hungary"",""phone"":"""",""website"":""http://www.borsodisorgyar.hu/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,52,1
+dogfish_head_craft_brewery-zwaanend_ale,0,0,244606697473,"{""name"":""Zwaanend,ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A neo-traditional Rye Bok brewed to commerate the 375th Anniversary of the First Town in the First State."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,1,1
+hampshire_brewery,0,0,244752646144,"{""name"":""Hampshire Brewery"",""city"":""Romsey"",""state"":""Hampshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01794)-830529"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6-8 Romsey Industrial Estate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.9889,""lon"":-1.4989}}",1,46,1
+straub_brewery-straub_light,0,0,245109948417,"{""name"":""Straub Light"",""abv"":3.16,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""straub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,27,1
+flying_fish_brewing_company-oktoberfish,0,0,244623736832,"{""name"":""OktoberFish"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First released in 2002, and sold out in two weeks. A tribute to the classic Fest styles of Germany the O'Fish uses European malts hops and yeast. A beautiful reddish color, a savory malt profile and nice hop flavor, make this Fest beer quite drinkable. OktoberFish is great with food and especially great with Lederhosen."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
+river_west_brewing-light,0,0,244988968960,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+bitburger_brauerei,0,0,244360019970,"{""name"":""Bitburger Brauerei"",""city"":""Bitburg"",""state"":""Rheinland-Pfalz"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)6561-/-14-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Römermauer 3""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.974,""lon"":6.5227}}",1,8,1
+brauerei_leibinger-hefe_weizen,0,0,244476346369,"{""name"":""Hefe-Weizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_leibinger"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
+capital_brewery-garten_brau_fest,0,0,244474904576,"{""name"":""Garten Bräu Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,2,1
+empyrean_brewing_company-luna_sea_amber,0,0,244627210241,"{""name"":""Luna Sea Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+crescent_city_brewhouse-black_forest,0,0,244474249216,"{""name"":""Black Forest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+baron_brewing_company-baron_oktoberfest,0,0,244379418624,"{""name"":""Baron Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Baron Oktoberfest is a traditional German Style Oktoberfest / Marzen. Deep copper/amber in color with a rich but light malt flavor. Finishes crisp and easy, leaving the mouth desiring more. We age the Oktoberfest for a full three months to guarantee a fantastically smooth beer.\r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,56,1
+appleton_brewing-adler_brau_oatmeal_stout,0,0,244373127168,"{""name"":""Adler Bräu Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
+breckenridge_brewery-471_pilsner,0,0,244475363328,"{""name"":""471 Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+nethergate_brewery_co_ltd-augustinian_ale,0,0,244866547713,"{""name"":""Augustinian Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nethergate_brewery_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+capital_brewery-capital_kloster_weizen,0,0,244476215297,"{""name"":""Capital Kloster Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,6,1
+four_peaks_brewing-sunbru_kolsch_style_ale,0,0,244624654338,"{""name"":""Sunbru Kölsch Style Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A very light golden ale that is malty sweet, almost honey-like in the nose. This ale has a light to medium body and a very delicate flavor. Easy drinking, it has very low bitterness and a soft dry finish. 5.2% alcohol/volume. This style originates from the city of Cologne, Germany where all twenty eight breweries are dedicated to brewing only Kölsch. Coming soon in cans. (ALWAYS ON TAP!!)""}",1,42,1
+denver_chophouse_and_brewery-singletrack_copper_ale,0,0,244623933440,"{""name"":""Singletrack Copper Ale"",""abv"":5.57,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+liberty_steakhouse_and_brewery-liberty_unfiltered_wheat_ale,0,0,244753301506,"{""name"":""Liberty Unfiltered Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This light ale is an American interpretation of a German classic. It's not filtered and has a pleasantly tart flavor. Served with a lemon wedge."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,47,1
+aass_brewery-bock_beer,0,0,244372668416,"{""name"":""Bock Beer"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Aass Bock is a dark \""lager\"" also produced in accordance with the \""Purity law\"". \r\n\r\nThe malted barely is produced in the Scandinavian countries. It is a combination of bayer-, color- and caramel malt. \r\n\r\nWe use the very best of hops from the Hallertau area in Germany, and the water is pure Norwegian mountain water. \r\n\r\nThe Aass Bock is largered at cool temperatures, and it is allowed to mature for as long as 6 months before bottling. \r\n\r\nThe beer is sold in a caracteristic nice-looking green bottle containing 11.2 fl. oz or 330 ml."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,38,1
+triumph_brewing_of_princeton-scottish_ale,0,0,245109161986,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,25,1
+north_coast_brewing_company-old_stock_ale_2002,0,0,244866088962,"{""name"":""Old Stock Ale 2002"",""abv"":11.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,21,1
+mogollon_brewing_company-superstition_pale_ale,0,0,244866940930,"{""name"":""Superstition Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mogollon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""If you are searching for a light, refreshing pale ale, your search is over! Superstition Pale Ale is named after the Superstition Mountains which are just east of Phoenix. This American pale ale is brewed using mountain pure water, select domestic grain, yeast and hops from the Pacific Northwest. Superstition is copper in color with a clean, malty fullness and finishes with pronounced hop bitterness. Perfect for enjoying on a warm Arizona day."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+brouwerij_liefmans-goudenband_2002,0,0,244477329408,"{""name"":""Goudenband 2002"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+three_floyds_brewing-chubby_brown,0,0,245109555200,"{""name"":""Chubby Brown"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,26,1
+alltech_s_lexington_brewing_company-kentucky_ale,0,0,244370505728,"{""name"":""Kentucky Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+fish_brewing_company_fish_tail_brewpub-poseidon_imperial_stout,0,0,244625375233,"{""name"":""Poseidon Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
+hair_of_the_dog_brewing-golden_rose,0,0,244751269890,"{""name"":""Golden Rose"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+bell_s_brewery_inc-bell_s_christmas_ale,0,0,244368015361,"{""name"":""Bell's Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A Scotch Ale, “brewed with 100% Michigan barley and a blend of Pacific Northwest and Michigan hops.”"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,28,1
+brown_street_brewery-south_of_the_border_light,0,0,244475953153,"{""name"":""South of the Border Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+de_proef_brouwerij-andelot_euphorique,0,0,244607287296,"{""name"":""Andelot Euphorique"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+boss_browar_witnica_s_a-porter_czarny_boss_black_boss_porter,0,0,244378173441,"{""name"":""Porter Czarny Boss / Black BOSS Porter"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boss_browar_witnica_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
+egan_brewing-eganator_doppelbock,0,0,244606697474,"{""name"":""Eganator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,1,1
+hapa_s_brew_haus_and_restaurant,0,0,244752646145,"{""name"":""Hapa*s Brew Haus and Restaurant"",""city"":""Kihei"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":20.7592,""lon"":-156.457}}",1,46,1
+the_bruery-trade_winds_tripel,0,0,245110013952,"{""name"":""Trade Winds Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Summer seasonal, Trade Winds Tripel is a Belgian-style Golden Ale with a Southeast Asian twist. Instead of using candi sugar (typical for such a beer), we use rice in the mash to lighten the body and increase the gravity, and spice with Thai Basil. The result is an aromatic, digestible and complex beer made for a lazy summer evening."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,27,1
+founders_hill_brewing,0,0,244623736833,"{""name"":""Founders Hill Brewing"",""city"":""Downers Grove"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8089,""lon"":-88.0112}}",1,40,1
+rogue_ales-hoppy_frog,0,0,244988968961,"{""name"":""Hoppy Frog"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A Northwest Style IPA. Nice Balance of Malt and Hops, not too extreme in either direction. 2 Ingredients: Maris Otter Malt, Amarillo Hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,20,1
+blackstone_restaurant_brewery,0,0,244360085504,"{""name"":""Blackstone Restaurant & Brewery"",""city"":""Nashville"",""state"":""Tennessee"",""code"":""37203"",""country"":""United States"",""phone"":""1-615-327-9969"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1918 West End Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.152,""lon"":-86.7989}}",1,8,1
+brewery_corsendonk-abbey_brown_ale_pater,0,0,244476411904,"{""name"":""Abbey Brown Ale / Pater"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+cheshire_cat_brewery-pilsner,0,0,244474904577,"{""name"":""Pilsner"",""abv"":4.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+erie_brewing_company-ol_red_cease_and_desist,0,0,244627210242,"{""name"":""Ol' Red Cease and Desist"",""abv"":10.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Erie Brewing presents the Beer formally known as Red Ryder BIG BEER - A beer dubiously awarded two cease and desist letters for its name. Ol’ Red Cease and Desist brings more to the table than just a big malty flavor and climaxing warming sensation…a legal record! This beer so recognized and loved by many deserves a unique name to match its unique history. What better name than Ol’ Red Cease and Desist – a name inspired by the long arm of the law!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,48,1
+cugino_brewing_company-light,0,0,244474314752,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cugino_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
+bayerische_staatsbrauerei_weihenstephan-hefeweissbier_dunkel,0,0,244379418625,"{""name"":""Hefeweissbier Dunkel"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+athenian_brewery,0,0,244373127169,"{""name"":""Athenian Brewery"",""city"":""Athens"",""state"":"""",""code"":""0"",""country"":""Greece"",""phone"":""30-210-5384911"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 Kifissou Avenue""]}",1,39,1
+brennerei_distillerie_radermacher-rader_blonde,0,0,244475428864,"{""name"":""Rader Blonde"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brennerei_distillerie_radermacher"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+niagara_falls_brewing-maple_wheat,0,0,244866547714,"{""name"":""Maple Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+cervezas_alhambra-negra,0,0,244476215298,"{""name"":""Negra"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervezas_alhambra"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,6,1
+fratellos_restaurant_and_brewery-caber_tossing_scottish_ale,0,0,244624719872,"{""name"":""Caber Tossing Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+alaskan_brewing-alaskan_ipa,0,0,244362444800,"{""name"":""Alaskan IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ales are characterized by intense hop flavor and aroma accompanied by higher alcohol content. This style possesses medium maltiness and body while also being crisp and dry. Citrus flavors and aromas are moderate to very strong.\r\n\r\nAlaskan IPA is honey gold in color with a fruity, citrus aroma. An enticing blend of hops and our dry hopping process, in which hops are added directly to tanks during fermentation, give this brew a very intense, complex aromatic character with a refreshing hop finish.\r\n\r\nAlaskan IPA is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from more than 90 inches of rainfall each year."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+diamond_knot_brewery_alehouse-e_s_b,0,0,244623998976,"{""name"":""E.S.B."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+little_apple_brewing-bovine_belgian_winter_ale,0,0,244875919360,"{""name"":""Bovine Belgian Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+aass_brewery-gull_classic,0,0,244372733952,"{""name"":""Gull Classic"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Aass Classic\"" is a classical \""lager\"" The beer is slightly darker in color than our Genuine Pilsner. It is of course produced in accordance with the \""Purity law\"". \r\n\r\nThe malted barely is produced in the Scadinavian countries. It is a combination of pilsner-, bayer- and caramelmalt. We use the famous Sazer and Hallertau hops, and the water is as pure as the Norwegian nature. \r\n\r\nThe Classic is largered at cool temperatures, and it is allowed to mature for approximately 3 months before bottling. \r\n\r\nThe beer is sold in caracteristic nice looking green bottel containing 11.2 fl. oz or 330 ml."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
+troegs_brewing-java_head_stout,0,0,245109161987,"{""name"":""Java Head Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We teamed up with St. Thomas Roasters of Linglestown, PA to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating an environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Java Head a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus aromas from the combination of Kenyan beans and whole flower hops."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,25,1
+oakham_ales-jeffrey_hudson_bitter,0,0,244866154496,"{""name"":""Jeffrey Hudson Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oakham_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+moosejaw_pizza_dells_brewing_company-weissbier,0,0,244867006464,"{""name"":""Weissbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,23,1
+brouwerij_sterkens-st_paul_double,0,0,244477329409,"{""name"":""St. Paul Double"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+titletown_brewing-roundhouse_rye,0,0,245109555201,"{""name"":""Roundhouse Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,26,1
+amherst_brewing_company-half_in_the_bagpipe,0,0,244370505729,"{""name"":""Half in the Bagpipe"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber in color, full-bodied strong ale with a prominent malt flavor delicately balanced with Goldings hops. Made with a hint of molasses, this beer is usually on tap for Super Bowl with a keg or two of the previous year's batch."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,33,1
+founders_brewing-founders_imperial_stout,0,0,244625375234,"{""name"":""Founders Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A fine companion to end a meal or relax in front of the hearth with, this robust ale will cellar well for years. Brewed with ten varieties of malted barley this stout is extremely smooth, complex and rich in body. We recommend serving at cellar temperature. Sit back and enjoy its richness and complexity, your about to drink the ultimate winter warmer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
+hale_s_ales_3-drawbridge_blonde,0,0,244751335424,"{""name"":""Drawbridge Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+big_river_brewing-blonde_ale,0,0,244368015362,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+buzzards_bay_brewing_inc-olde_buzzard_lager,0,0,244475953154,"{""name"":""Olde Buzzard Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""buzzards_bay_brewing_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Lager (Dortmund-style) is brewed with pale, Munich and Vienna malts and is moderately hopped with Hallertauer hops. Dortmund is an industrial, steel-making town and its lagers are hearty, easy drinking brewskies. The hops balance the malt but not overtly so. A great brew for the end of a hard day at work. Winner of the Gold Medal for Best European Style Pilsner at the 2000 Great American Beer Festival , Gold Medal at the 5th and 6th Great International Beer Festival, Silver Medals at the 7th Great International Beer Festival and 9th Great International Beer Festival, and Bronze Medal at the 8th Great International Beer Festival and 11th Great International Beer Festival!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+dragonmead_microbrewery-imperial_stout,0,0,244607352832,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
+boston_beer_company-longshot_black_lager,0,0,244378173442,"{""name"":""Longshot Black Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+empyrean_brewing_company-espresso_porter,0,0,244606763008,"{""name"":""Espresso Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+hertog_jan,0,0,244752646146,"{""name"":""Hertog Jan"",""city"":""Arcen"",""state"":"""",""code"":""5944 EN Arcen"",""country"":""Netherlands"",""phone"":"""",""website"":""http://www.hertogjan.nl/site/"",""type"":""brewery"",""updated"":""2011-06-15 04:59:30"",""description"":"""",""address"":[""Kruisweg 44""]}",1,46,1
+the_cambridge_house-copper_hill_kolsch,0,0,245110013953,"{""name"":""Copper Hill Kolsch"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""German Style Light Ale. Smooth, easy drinking with subtle noble hop character.""}",1,27,1
+four_peaks_brewing-abbey_normal_ale,0,0,244623736834,"{""name"":""Abbey Normal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Double Abbey."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
+rothaus_brauerei-export,0,0,244989034496,"{""name"":""Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+boston_beer_company-samuel_adams_black_lager,0,0,244360085505,"{""name"":""Samuel Adams Black Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""When one sees a beer with a darker complexion these days, more often than not it"",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,8,1
+brewery_de_troch-chapeau_framboise_lambic,0,0,244476411905,"{""name"":""Chapeau Framboise Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,7,1
+columbia_bay_brewery_restaurant_and_pub,0,0,244474904578,"{""name"":""Columbia Bay Brewery Restaurant and Pub"",""city"":""Lake Villa"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.417,""lon"":-88.074}}",1,2,1
+f_x_matt_brewing-saranac_black_diamond_bock,0,0,244627275776,"{""name"":""Saranac Black Diamond Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Black Diamond Bock is a rich, malty brew, made with traditional German malts and hops and fermented with a lager yeast. Aged for months for a rich but smooth malty taste. A nice reward for enduring your winter months."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,48,1
+dockside_brewing-pelican_bay_brown,0,0,244605976576,"{""name"":""Pelican Bay Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,0,1
+bayerische_staatsbrauerei_weihenstephan-original_lager,0,0,244379418626,"{""name"":""Original Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+bamberger_mahr_s_bru-christmas_bock,0,0,244373127170,"{""name"":""Christmas Bock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,39,1
+brewdog_ltd,0,0,244475428865,"{""name"":""BrewDog Ltd"",""city"":""Fraserburgh"",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":""+44 1346 519 009"",""website"":""http://brewdog.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""AB43 8UE""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":57.683,""lon"":-2.003}}",1,4,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_bitter,0,0,244866547715,"{""name"":""Nøgne Ø Bitter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A light session ale, with an assertive hop aroma of E K Golding. Great beer to pair with lots of different food - a good allround."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,22,1
+clipper_city_brewing_co-small_craft_warning,0,0,244476280832,"{""name"":""Small Craft Warning"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We call this beer an Über Pils - a pilsner style bock lager. Rich, malty, and well rounded but with a firm structure of noble hops. Surprisingly pale in color for such a powerful, complex beer. Available year round beginning Feb. 05'.\r\n\r\nSilver Medal- World Beer Championship 2007"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
+friesisches_brauhaus_zu_jever,0,0,244624719873,"{""name"":""Friesisches Brauhaus zu Jever"",""city"":""Jever"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)4461-/-13-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Elisabethufer 18""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":53.5755,""lon"":7.9016}}",1,42,1
+america_s_brewing,0,0,244362510336,"{""name"":""America's Brewing"",""city"":""Aurora"",""state"":""Illinois"",""code"":""60505"",""country"":""United States"",""phone"":""1-630-264-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""205 North Broadway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.7605,""lon"":-88.309}}",1,15,1
+dick_s_brewing-lava_rock_porter,0,0,244623998977,"{""name"":""Lava Rock Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
+magnolia_pub_and_brewery-golden_bitter,0,0,244875919361,"{""name"":""Golden Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+allagash_brewing-tripel_reserve,0,0,244372733953,"{""name"":""Tripel Reserve"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+upstream_brewing_company_at_legacy-dundee_export_90_scotch_ale,0,0,245109227520,"{""name"":""Dundee Export 90 Scotch Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+ohio_brewing-alt_ernative_amber,0,0,244866154497,"{""name"":""Alt-ernative Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,21,1
+niagara_falls_brewing-gritstone_premium_ale,0,0,244867006465,"{""name"":""Gritstone Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,23,1
+brouwerij_the_musketiers,0,0,244477329410,"{""name"":""Brouwerij The Musketiers"",""city"":""Ursel"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)-9-226-42-76"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tramstraat 8""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1287,""lon"":3.4785}}",1,9,1
+tommyknocker_brewery_and_pub-butthead_doppelbock,0,0,245109620736,"{""name"":""Butthead Doppelbock"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""High Gravity Butt Head Doppelbock Lager is brewed with a generous amount of roasted malts producing caramel sweetness and rich mouthfeel. Why Butt Head? Try one. You'll enjoy \""big brew\"" flavor with the intensity of a \""head butting\"" Bighorn Ram!"",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,26,1
+anderson_valley_brewing,0,0,244370505730,"{""name"":""Anderson Valley Brewing"",""city"":""Boonville"",""state"":""California"",""code"":""95415"",""country"":""United States"",""phone"":""1-800-207-2337"",""website"":""http://avbc.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""17700 Boonville Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.0014,""lon"":-123.356}}",1,33,1
+fox_river_brewing_1,0,0,244625440768,"{""name"":""Fox River Brewing #1"",""city"":""Oshkosh"",""state"":""Wisconsin"",""code"":""54901"",""country"":""United States"",""phone"":""1-920-232-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1501 Arboretum Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0342,""lon"":-88.5608}}",1,44,1
+hapa_s_brew_haus_and_restaurant-stealth_dark_ale,0,0,244751400960,"{""name"":""Stealth Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+birrificio_torrechiara-panil_barriquee,0,0,244368080896,"{""name"":""Panil Barriquée"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificio_torrechiara"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+buzzards_bay_brewing_inc,0,0,244476018688,"{""name"":""Buzzards Bay Brewing Inc."",""city"":""Westport"",""state"":""Massachusetts"",""code"":""2790"",""country"":""United States"",""phone"":""(508) 636-2288"",""website"":""http://www.buzzardsbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""98 Horseneck Rd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5713,""lon"":-71.0571}}",1,5,1
+eel_river_brewing-certified_organic_amber_ale,0,0,244607418368,"{""name"":""Certified Organic Amber Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Eel River Brewing Company, brewers of California's first Certified Organic Ale, proudly brings you our Organic Amber Ale. Unique in flavor and purity, this medium bodied beer has a hoppy bouquet and a distinctive rich taste with a caramel-like sweetness that is balanced with a liberal dose of certified organic Pacific Gems and Hallertau hops, imported from New Zealand. Pure taste, pure ingredients, pure good."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
+boston_beer_company-samuel_adams_cranberry_lambic,0,0,244378173443,"{""name"":""Samuel Adams Cranberry Lambic"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Cranberry Lambic is a fruit beer that draws its flavor not just from the cranberries it is brewed with, but also from the unique fermentation character imparted by the rare wild yeast strain. The result is a flavor rich in fruitiness and reminiscent of cranberries and bananas, cloves and nutmeg. The yeast fermentation also will create a slight sourness on the sides of the palate, a signature of the original Lambic style which, with the subtle cereal note from the wheat malt, remind its drinker that, as fruity a beer as this is, it is still a beer."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,52,1
+faultline_brewing_2-burton_pale_ale,0,0,244606763009,"{""name"":""Burton Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+hoepfner_privatbrauerei-porter,0,0,244752646147,"{""name"":""Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoepfner_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,46,1
+trap_rock_restaurant_and_brewery-blackforest_lager,0,0,245110013954,"{""name"":""Blackforest Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,27,1
+four_peaks_brewing-arizona_peach,0,0,244623802368,"{""name"":""Arizona Peach"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The dominating character of this beer is of course peach flavor and aroma. It is a little more subtle than most fruit beers which makes it more approachable. Light in body and color. \r\n\r\nAlcohol content of approximately 4.0% by volume (ALWAYS ON TAP!!)"",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,40,1
+rothaus_brauerei-helles,0,0,244989034497,"{""name"":""Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+bottom_s_up_brewing-strom_bomb_stout,0,0,244360085506,"{""name"":""Strom Bomb Stout"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bottom_s_up_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
+brouwerij_huyghe-duinen_tripel,0,0,244476477440,"{""name"":""Duinen Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+cooperstown_brewing_company,0,0,244474904579,"{""name"":""Cooperstown Brewing Company"",""city"":""Milford"",""state"":""New York"",""code"":""13807"",""country"":""United States"",""phone"":""607-286-9330"",""website"":""http://www.cooperstownbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""River Street, P.O. Box 276""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.5893,""lon"":-74.9403}}",1,2,1
+far_west_ireland_brewing-wild_banshee_barleywine,0,0,244627275777,"{""name"":""Wild Banshee Barleywine"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""far_west_ireland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+dogfish_head_craft_brewery-theobroma,0,0,244606042112,"{""name"":""Theobroma"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is based on chemical analysis of pottery fragments found in Honduras which revealed the earliest known alcoholic chocolate drink used by early civilizations to toast special occasions. The discovery of this beverage pushed back the earliest use of cocoa for human consumption more than 500 years to 1200 BC. As per the analysis, Dogfish Head’s Theobroma (translated into 'food of the gods') is brewed with Aztec cocoa powder and cocoa nibs, honey, chilies, and annatto (fragrant tree seeds).""}",1,0,1
+bear_republic_brewery-hop_rod_rye,0,0,244379418627,"{""name"":""Hop Rod Rye"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Essentially a strong American IPA made with 20% rye malt. Darker in color, Hop Rod Rye boasts a huge hop aroma and flavor accompanied by a slightly sweet, malty finish."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,56,1
+bandana_brewery,0,0,244373192704,"{""name"":""Bandana Brewery"",""city"":""Mankato"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.1636,""lon"":-93.9994}}",1,39,1
+brewery_budweiser_budvar-budweiser_budvar_czechvar,0,0,244475428866,"{""name"":""Budweiser Budvar (Czechvar)"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_budweiser_budvar"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Czech Premium Lager is beer for light beer lovers. The most gentle heads of the high quality Žatec hop, virgin clear natural water and granules of selected species of Moravian barley make it the beverage of real experts. \r\n\r\nThe 700-year long tradition in production of České Budějovice beer and the unique, 90-day period of maturity increase its unique character. You can taste Budweiser Budvar Czech Premium Lager with all your senses. First of all you will delight your eyes with its beautiful colour and rich dense foam, then you will feel the fine aroma of the hops, in your palm you will stroke the dewy glass and, in the end, you will taste the fine to medium strong bitterness. You will remember well, our perfect lager."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,4,1
+northwoods_brewpub_grill-irish_red,0,0,244866613248,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+denmark_brewing,0,0,244608598016,"{""name"":""Denmark Brewing"",""city"":""Denmark"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.3478,""lon"":-87.8273}}",1,6,1
+golden_pacific_brewing-hibernator_winter_ale,0,0,244624785408,"{""name"":""Hibernator Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+amherst_brewing_company-workingman_s_wheat,0,0,244362510337,"{""name"":""Workingman's Wheat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light crisp American style wheat with a medium hop finish. Made using 25% German wheat malt. Brewed and on tap each summer."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
+dortmunder_actien_brauerei_dab-original,0,0,244623998978,"{""name"":""Original"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+maritime_pacific_brewing-islander_pale_ale,0,0,244875919362,"{""name"":""Islander Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
+anheuser_busch-michelob_hefeweizen,0,0,244372733954,"{""name"":""Michelob Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
+ushers_of_trowbridge-ipa,0,0,245109293056,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ushers_of_trowbridge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,25,1
+oso-dank,0,0,244866220032,"{""name"":""Dank"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oso"",""updated"":""2011-03-16 09:06:54"",""description"":""Anniversary offering, Imperial Red. Heavily hopped and oak aged, very balanced. 12 oz. bottles; 4 pack. ABV: 9.2%"",""style"":""Imperial or Double Red Ale"",""category"":""North American Ale""}",1,21,1
+nikenjayamochi_kadoya_honten_co,0,0,244867072000,"{""name"":""Nikenjayamochi Kadoya Honten Co."",""city"":"""",""state"":"""",""code"":"""",""country"":""Japan"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,23,1
+brouwerij_van_honsebrouck-st_louis_gueuze,0,0,244477329411,"{""name"":""St. Louis Gueuze"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,9,1
+trailhead_brewing_company-riverboat_raspberry_flavored_beer,0,0,245109686272,"{""name"":""Riverboat Raspberry flavored Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,26,1
+anheuser_busch-michelob_amber_bock,0,0,244370571264,"{""name"":""Michelob Amber Bock"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Michelob AmerBock is American-style bock beer with a rich, malty and smooth taste that is hearty and full-bodied, yet finishes cleanly. Anheuser-Busch introduced this premium-plus beer nationally in 1995."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
+full_sail_brewing_1-india_pale_ale,0,0,244625440769,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+heineken_switzerland,0,0,244751400961,"{""name"":""Heineken Switzerland"",""city"":""Winterthur"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-052-/-264-41-41"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Haldenstrasse 69""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5077,""lon"":8.7302}}",1,43,1
+blue_point_brewing-spring_fling,0,0,244368080897,"{""name"":""Spring Fling"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+catamount_brewing-porter,0,0,244476018689,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""catamount_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
+federation_brewery-angel_ale,0,0,244607418369,"{""name"":""Angel Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""federation_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,3,1
+boston_beer_company-samuel_adams_imperial_stout,0,0,244378238976,"{""name"":""Samuel Adams Imperial Stout"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Imperial Stout is our take on the stouts brewed by 18th century English brewers for the Russian Imperial Court of Catherine II. The special malted barley in this intense and massive brew delivers rich flavours like dark chocolate, coffee and anise."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,52,1
+faultline_brewing_2-golden,0,0,244606763010,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+iron_hill_brewery_wilmingon-ironbound_ale,0,0,244752711680,"{""name"":""Ironbound Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""Hold onto your beer mugs, because this medium-bodied beer has been overwhelmed with hop additions. Brewed as an American pale ale, it's a celebration of American hop varieties: Cascade, Crystal, Centennial and Chinook. You won't be disappointed."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+uerige_obergrige_hausbrauerei-doppelsticke,0,0,245110079488,"{""name"":""DoppelSticke"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uerige_obergrige_hausbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,27,1
+four_peaks_brewing-barrel_aged_blind_date_ale,0,0,244623802369,"{""name"":""Barrel-Aged Blind Date Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This is the old tried and true Blind Date Ale of old. It is based on an English Olde Ale but has an addition of 300 pounds of Arizona grown Medjool dates. The dates contribute a complexity and sweetness that the malt alone cannot. This Blind Date has been aged for three months in Jim Beam oak bourbon barrels. The oak and bourbon lend flavors of vanilla, wood, and of course, bourbon. These flavors layered with the dates created a big, multi-leveled ale. The alcohol content is about 7.5% alc/vol. You'll have to get to Four Peaks quick since we only have a few kegs of this unique beer."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,40,1
+roy_pitz_brewing_company-truly_honest_ale,0,0,244989100032,"{""name"":""Truly Honest Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our signature brew that started it all. This beer is made with four different specialty malts including two foreign caramel malts, a pale malt, and a toasted malt. These malts impart a subtle toasted/sweet taste. This malty brew is than graced with floral and aroma hops which balance the maltiness of this brew and leaves behind a smooth finish on the palate. Top notch ingredients and a truly \""Honest\"" taste makes this a seriously drinkable ale, unlike many other bitter American ales."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
+brasserie_de_l_abbaye_des_rocs-triple_imperiale,0,0,244360151040,"{""name"":""Triple Impériale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+brouwerij_sterkens-st_paul_blond,0,0,244476477441,"{""name"":""St. Paul Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+aktienbrauerei_kaufbeuren-st_martin_doppelbock,0,0,244361986048,"{""name"":""St. Martin Doppelbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aktienbrauerei_kaufbeuren"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,14,1
+coronado_brewing_company,0,0,244474970112,"{""name"":""Coronado Brewing Company"",""city"":""Coronado"",""state"":""California"",""code"":""92118"",""country"":""United States"",""phone"":""1-619-437-4452"",""website"":""http://www.coronadobrewingcompany.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Coronado Brewing Company, in beautiful Coronado (located just a few minutes from downtown San Diego) welcomes you to come and enjoy quality handcrafted beers and delicious food in a casual family environment. Join us for a refreshing pint while we make you one of our signature pizzas or calzones in the wood fired oven, or choose from a wide selection of fresh seafood, steaks, pastas and dining specials. The Coronado Brewing Company is perfect for a quick lunch, a relaxing beverage or a wonderful dinner. If you're a sports fan come relax with a cold beer and an appetizer while watching your favorite team on one of our many HD TV's. Open 7 days a week from 11:00 am (until closing) & offering a weekly happy hour (M-F) from (2-5pm)."",""address"":[""170 Orange Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.6976,""lon"":-117.173}}",1,2,1
+firehouse_grill_brewery-bitter,0,0,244627275778,"{""name"":""Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+dragonmead_microbrewery-crooked_door,0,0,244606107648,"{""name"":""Crooked Door"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The American hop Cascade is used to give this brew its classic American Aroma. Pale and Crystal malt from the U.S. are used to give this beer a medium body and high hop flavor. This beer goes down easily and opens the door to a world of microbrewed beers."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,0,1
+big_sky_brewing-summer_honey_seasonal_ale,0,0,244379484160,"{""name"":""Summer Honey Seasonal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Summer Honey is a full-flavored summer seasonal ale. Brewed with a unique, balanced blend of spices, Northwest Hops, and Montana honey. Summer Honey is brewed during the early days of spring and released around the first of May each year. Light colored, light bodied, and very drinkable, Summer Honey sacrifices nothing to create a flavorful beer that can be enjoyed during the height of the Summer. Available April through September"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
+barfer_das_kleine_brauhaus-schwarze,0,0,244373192705,"{""name"":""Schwarze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barfer_das_kleine_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,39,1
+brick_brewing,0,0,244475494400,"{""name"":""Brick Brewing"",""city"":""Formosa"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-367-2995"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Old Brewery Lane""]}",1,4,1
+o_gara_s_bar_grill-amber_bock,0,0,244866613249,"{""name"":""Amber Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,22,1
+diamond_bear_brewing_co-irish_red,0,0,244608663552,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_bear_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+green_bay_brewing-luna_stout,0,0,244751007744,"{""name"":""Luna Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+anchor_brewing,0,0,244362575872,"{""name"":""Anchor Brewing"",""city"":""San Francisco"",""state"":""California"",""code"":""94107"",""country"":""United States"",""phone"":""1-415-863-8350"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1705 Mariposa Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7635,""lon"":-122.401}}",1,15,1
+drake_s_brewing-sir_francis_stout,0,0,244624064512,"{""name"":""Sir Francis Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""drake_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
+maritime_pacific_brewing-nightwatch_dark_ale,0,0,244875984896,"{""name"":""Nightwatch Dark Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
+atlantic_brewing_company,0,0,244372799488,"{""name"":""Atlantic Brewing Company"",""city"":""Bar Harbor"",""state"":""Maine"",""code"":""4609"",""country"":""United States"",""phone"":""207-288-BEER"",""website"":""http://www.atlanticbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Atlantic Brewing Company began brewing in 1991, on the eve of the microbrewing revolution. We have steadily grown over the years by having a strong commitment to tradition, quality and service. As a result, we have become the number one beer of the Bar Harbor region. In the spirit of old world tradition, our beers are sold and distributed by small independents (not national brands). Our beers are now available in select areas throughout the eastern US. We only brew 60 kegs per day, which allows us to still maintain our commitment to craftsmanship. The result is that our beers enjoy great respect in the beer community. Visit our Tasting Room for more information about our standard ales. Our new facility was built on the site of an old farm a few miles from downtown Bar Harbor. It was designed to create a more visitor friendly environment similar to country wineries and breweries found throughout Europe."",""address"":[""15 Knox Rd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.3996,""lon"":-68.334}}",1,38,1
+vivungs_bryggeri-romakloster,0,0,245747286016,"{""name"":""Romakloster"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vivungs_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,25,1
+oso,0,0,244866220033,"{""name"":""Oso"",""city"":""Plover"",""state"":""WI"",""code"":""54467"",""country"":""United States"",""phone"":""715-254-2163"",""website"":""http://www.osobrewing.com/Home.php"",""type"":""brewery"",""updated"":""2011-03-16 09:05:15"",""description"":"""",""address"":[""1812 Post Road""]}",1,21,1
+oasis_brewery_and_restaurant,0,0,244867072001,"{""name"":""Oasis Brewery and Restaurant"",""city"":""Boulder"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.015,""lon"":-105.271}}",1,23,1
+brown_street_brewery-amber,0,0,244477394944,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+troegs_brewing-scratch_13_2008,0,0,245109686273,"{""name"":""Scratch #13 2008"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,26,1
+arcadia_brewing-nut_brown,0,0,244370571265,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
+full_sail_brewing_1-pale_ale,0,0,244625571840,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+hereford_hops_steakhouse_and_brewpub_3,0,0,244751466496,"{""name"":""Hereford & Hops Steakhouse and Brewpub #3"",""city"":""Wausau"",""state"":""Wisconsin"",""code"":""54401"",""country"":""United States"",""phone"":""1-715-849-3700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2201 Sherman Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9518,""lon"":-89.6657}}",1,43,1
+boston_beer_company-samuel_adams_double_bock,0,0,244368080898,"{""name"":""Samuel Adams Double Bock"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Intense and warming, a meal in a bottle.\r\nOne can not help but appreciate Samuel Adams® Double Bock's huge malt character. We use an enormous amount of malt, half a pound per bottle, to brew this intensely rich lager. Its deep brown-ruby color is all made in the kettle - no black malt is used, resulting in a rich sweetness that is free of the rough taste of burnt malt. All that remains is the velvet smooth flavor and mouthfeel of the two row malt. Samuel Adams® Double Bock's intense malt character is balanced with a subtle piney, citrus hop note from the German Noble hops.\r\n\r\nDue to legal restrictions, Samuel Adams® Double Bock can not be sold in the states of Alabama, Arizona, Georgia, Iowa, Louisiana, Missouri, North Carolina, Ohio, South Carolina, Tennessee, and West Virginia."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
+cold_spring_brewing-stite_golden_pilsner,0,0,244476018690,"{""name"":""Stite Golden Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cold_spring_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+federation_brewery-northumbrian_brown_ale,0,0,244607418370,"{""name"":""Northumbrian Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""federation_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
+boston_beer_works-hercules_stong_ale,0,0,244378238977,"{""name"":""Hercules Stong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+faultline_brewing_2-india_pale_ale,0,0,244606828544,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+iron_hill_brewery_wilmingon-light_lager,0,0,244752711681,"{""name"":""Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+unibroue-11,0,0,245110079489,"{""name"":""11"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+fuller_smith_turner_pbc-london_pride,0,0,244623867904,"{""name"":""London Pride"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+ruppaner_brauerei-kristall_weizen,0,0,244989100033,"{""name"":""Kristall Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+brasserie_de_silly-double_enghien_blonde_ale,0,0,244360151041,"{""name"":""Double Enghien Blonde Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+browar_zywiec,0,0,244476477442,"{""name"":""Browar Zywiec"",""city"":""Zywiec"",""state"":"""",""code"":""34-300"",""country"":""Poland"",""phone"":""48-0-33-614-614"",""website"":""http://www.zywiec.com.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Browarna 88""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.6622,""lon"":19.1742}}",1,7,1
+allagash_brewing-allagash_white,0,0,244362051584,"{""name"":""Allagash White"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a traditional Belgian wheat beer, Allagash White is unique and truly refreshing. Brewed with a generous portion of wheat and our own special blend of spices, this beer is light and slightly cloudy in appearance, with a spicy aroma. Overall, it is a beer that is very drinkable and smooth any time of the year.\r\n\r\n\r\n\r\nAvailable in: 12 oz and 750 ml bottles, 15.5 and 5.17 gal kegs\r\nABV: 5.0%\r\nOriginal Gravity: 1048\r\nRecommended Serving Temp: 34°F to 50°F"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,14,1
+dempsey_s_restaurant_brewery-red_rooster,0,0,244606959616,"{""name"":""Red Rooster"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dempsey_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
+fitzpatrick_s_brewing-celtic_stout,0,0,244627341312,"{""name"":""Celtic Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+drake_s_brewing-jolly_roger,0,0,244606107649,"{""name"":""Jolly Roger"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""drake_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+binding_brauerei_ag-lager,0,0,244379484161,"{""name"":""Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""binding_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+barley_brothers_brewery_and_grill-beachballs_red_ale,0,0,244373192706,"{""name"":""Beachballs Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+brouwerij_het_anker-gouden_carolus_hopsinjoor,0,0,244475494401,"{""name"":""Gouden Carolus Hopsinjoor"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""Gouden Carolus Hopsinjoor completes the taste pallet of the gamma Carolus-beers. \r\n\r\n\""Hopsinjoor\"" is a wordplay to for one thing the several hops which were used, and on the other hand the typical character of Mechelen of Gouden Carolus: the figure \""opsinjoor\"" is intertwined with the history of Mechelen. \r\n\r\n4 types of hops are used: Golding, Spalt, Hallertau and Saaz. These hops were fractioned at several times in the cooking process in order to keep a maximum of aroma.\r\n\r\nRegarding to taste we can say that the beer has a gentle, but nevertheless bitter aftertaste. Gold-yellow colour. Hoppy aroma."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,4,1
+old_dominion_brewing_co-oak_barrel_stout,0,0,244866613250,"{""name"":""Oak Barrel Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_dominion_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Dominion Oak Barrel Stout raises the bar for American stouts. We use smoked and peated malts to create an intricate malt foundation. Willamette and Cascade hops balance the malt character and our method of dry hopping with vanilla beans and oak chips pushes the depth of our stout's flavor spectrum even further."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,22,1
+diamond_bear_brewing_co,0,0,244608663553,"{""name"":""Diamond Bear Brewing Co."",""city"":""Little Rock"",""state"":""Arkansas"",""code"":""72201"",""country"":""United States"",""phone"":""1-501-708-2739"",""website"":""http://www.diamondbear.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""323-C Cross Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.7473,""lon"":-92.2839}}",1,6,1
+harbor_city_brewing-mile_rock_amber_ale,0,0,244751073280,"{""name"":""Mile Rock Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harbor_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
+anheuser_busch-michelob_golden_pilsner,0,0,244362575873,"{""name"":""Michelob Golden Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,15,1
+duck_rabbit_craft_brewery-duck_rabbit_amber_ale,0,0,244624064513,"{""name"":""Duck-Rabbit Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Duck-Rabbit Amber Ale is a medium bodied beer with a lovely tawny copper or bronze color. This brew emphasizes malt complexity with layered caramel malt flavors. We put a lot of effort into getting this amber ale just right and we're extremely proud of the result!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
+mckenzie_brew_house-5_czars_imperial_stout,0,0,244875984897,"{""name"":""5 Czars Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
+atwater_block_brewing-wheat,0,0,244372799489,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
+wainwright_brewing,0,0,245747286017,"{""name"":""Wainwright Brewing"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":""1-412-692-1144"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3410 Sassafras Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4616,""lon"":-79.9653}}",1,25,1
+pint_s_pub_brewery_and_freehouse-gael_force_scottish_export,0,0,244989296640,"{""name"":""Gael Force Scottish Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pint_s_pub_brewery_and_freehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+paulaner-hell,0,0,244990148608,"{""name"":""Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+bull_bush_pub_brewery-yuel_fuel,0,0,244477394945,"{""name"":""Yuel Fuel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+troegs_brewing-scratch_18_2009,0,0,245109686274,"{""name"":""Scratch #18 2009"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We started with the same grain bill as Scratch #12 (IPA) and substituted 25% rye for the base malt giving Scratch #18 a creamy mouth feel and a full-bodied taste.\r\n\r\nMount Hood and Chinook hops are combined here for flavoring and aroma, and Warrior hops are used for overall bitterness.\r\n\r\nThe rye plays off the Mount Hood hops, with both ingredients releasing an herbal, spicy flavor. Cheers."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,26,1
+asahi_breweries-edomae,0,0,244370571266,"{""name"":""Edomae"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asahi_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+goose_island_beer_company_clybourn-bourbon_county_brand_coffee_stout,0,0,244625571841,"{""name"":""Bourbon County Brand Coffee Stout"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""Everyday Goose Island smells the wonderful coffee roasting next to our brewery at Chicago's Intelligentsia Coffee and Tea. They put the same passion and skill into their coffee as Goose Island does with its beer. This excellent stout is made with Black Cat Espresso beans from our friends next door. You'll like the combination."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
+high_falls_brewing-dundee_porter,0,0,244751466497,"{""name"":""Dundee Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""More and more we’re becoming a nation of milquetoasts. And nowhere is that more evident than in our beer—puny liquids without calories, carbs, or cojones. \r\n\r\nBut it needn’t be that way, my friend! Sure, we don’t want to make a living shoveling coal or washing clothes on a rock. But we can recapture the more robust spirit of a time gone by.\r\n\r\nDundee Porter is a throwback to a different era—when times were tough and so were the people. They drank big beers, slapped each other on the back, and toasted the good life—even though they only saw it from a distance. \r\n\r\nWith Dundee Porter, you can get a taste of it.\r\n\r\nBig and malty flavor from aromatic dark-roasted grains balanced by a subtle hint of hops. Deep color and rich caramel flavor."",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+boston_beer_company-samuel_adams_pale_ale,0,0,244368146432,"{""name"":""Samuel Adams Pale Ale"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams® Pale Ale is a delicious, lighter bodied beer with a delightfully fresh taste. Its unique blend of two row malts add a rich harmony of sweet flavors that are complimented by the traditional earthy hop character imparted by authentic British hops. The fermentation character of the ale yeast adds a rich bouquet of fruit and ester notes that add another layer of complexity to this popular style"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+courthouse_pub-munich_helles,0,0,244476018691,"{""name"":""Munich Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+flying_bison_brewing-aviator_red,0,0,244607418371,"{""name"":""Aviator Red"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Buffalo’s favorite red ale. Ruby red and malty flavored with a medium body and a spicy hop signature to balance. Available in bottles and on draft"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
+brasserie_de_l_abbaye_des_rocs-blonde,0,0,244378238978,"{""name"":""Blonde"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+flagstaff_brewing-blackbird_porter,0,0,244606828545,"{""name"":""Blackbird Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+alesmith_brewing-grand_cru_2006,0,0,244360871936,"{""name"":""Grand Cru 2006"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+iron_hill_brewery_wilmingon-vienna_red_lager,0,0,244752777216,"{""name"":""Vienna Red Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""This amber Austrian lager has a distinct bready malt aroma and flavor, followed by a crisp, clean finish typical of lager styles. The nose also shows plenty of the spicy hop aroma contributed by the use of Saaz hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+upstream_brewing_old_market-railyard_ale,0,0,245110079490,"{""name"":""Railyard Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,27,1
+golden_pacific_brewing-pale_ale,0,0,244623867905,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+russian_river_brewing-pliny_the_younger,0,0,244989165568,"{""name"":""Pliny the Younger"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pliny the Younger was Pliny the Elder's nephew, in the case of this beer, the \""Younger\"" is a triple IPA. Pliny the Younger is hopped three times more than our standard IPA, and is dry hopped four different times."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,20,1
+brauerei_c_a_veltins_gmbh_co,0,0,244476739584,"{""name"":""Brauerei C. & A. Veltins GmbH & Co."",""city"":""Meschede"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2934-/-959-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""An der Streue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.3055,""lon"":8.1259}}",1,8,1
+bull_bush_pub_brewery-tower_esb,0,0,244476542976,"{""name"":""Tower ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+america_s_brewing-payton_pilsner,0,0,244362051585,"{""name"":""Payton Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+dick_s_brewing-grand_cru,0,0,244606959617,"{""name"":""Grand Cru"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+flying_dog_brewery-snake_dog_ipa,0,0,244627341313,"{""name"":""Snake Dog IPA"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""More cunning than a snake in the bush... Snake Dog India Pale Ale is a Colorado-style IPA, power hopped with specialty hops from the Pacific Northwest. This is the brewery's hop monster, and the citrus fruit aroma will hypnotize the senses of the most hardcore of craft drinkers."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+egan_brewing-cow_palace_scotch_ale_2001,0,0,244606173184,"{""name"":""Cow Palace Scotch Ale 2001"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,0,1
+brasserie_brouwerij_cantillon-iris,0,0,244379484162,"{""name"":""Iris"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,56,1
+bell_s_brewery_inc-porter,0,0,244373192707,"{""name"":""Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter for all occasions. A blend of dark malts give this beer flavors of coffee and chocolate with subtle roasted notes.Gold medal winner in the Brown Porter category Brewers Association World Beer Cup 2008."",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
+bulldog_brewing,0,0,244475494402,"{""name"":""Bulldog Brewing"",""city"":""Fresno"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.7477,""lon"":-119.772}}",1,4,1
+pete_s_brewing-wicked_winter_brew,0,0,244989689856,"{""name"":""Wicked Winter Brew"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,22,1
+diamond_knot_brewery_alehouse,0,0,244608729088,"{""name"":""Diamond Knot Brewery & Alehouse"",""city"":""Mukilteo"",""state"":""Washington"",""code"":""98275"",""country"":""United States"",""phone"":""1-425-355-4488"",""website"":""http://www.diamondknot.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""621 Front Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9485,""lon"":-122.305}}",1,6,1
+harvest_moon_brewery_cafe-british_nut_brown,0,0,244751073281,"{""name"":""British Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvest_moon_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
+anheuser_busch-pacific_ridge_pale_ale,0,0,244362575874,"{""name"":""Pacific Ridge Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
+elysian_brewing_tangletown-ak_47_malt_liquor,0,0,244624130048,"{""name"":""AK-47 Malt Liquor"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewing_tangletown"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+midnight_sun_brewing_co-descent_imperial_abbey_ale,0,0,244875984898,"{""name"":""Descent Imperial Abbey Ale"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Beer Description:\r\nThis deep amber Imperial Abbey Ale melds malt and earth, spice and fruit to create a wonderful vehicle to wind down the day. Belgian yeast contributes flavor notes that accent the raisins and grains of paradise used in the brewing process. With strength and stamina, DESCENT is deliberately impetuous in its mission."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,47,1
+bad_frog_brewery_company-amber_lager,0,0,244372799490,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bad_frog_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
+yegua_creek_brewing_dallas-oktoberfest,0,0,245747351552,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,25,1
+pint_s_pub_brewery_and_freehouse,0,0,244989362176,"{""name"":""Pint's Pub Brewery and Freehouse"",""city"":""Denver"",""state"":""Colorado"",""code"":""80204"",""country"":""United States"",""phone"":""1-303-534-7543"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""211 West 13th Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7369,""lon"":-104.991}}",1,21,1
+pelican_pub_brewery-india_pelican_ale,0,0,244990214144,"{""name"":""India Pelican Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pelican_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+carlsberg_sverige_ab-carnegie_stark_porter,0,0,244477394946,"{""name"":""Carnegie Stark-Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_sverige_ab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
+two_brothers_brewing-prairie_path_golden_ale,0,0,245109686275,"{""name"":""Prairie Path Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+barfer_das_kleine_brauhaus-rotgold_pils,0,0,244370571267,"{""name"":""Rotgold-Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barfer_das_kleine_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
+goose_island_beer_company_clybourn-geordie_brown_ale,0,0,244625637376,"{""name"":""Geordie Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
+hoffbrau_steaks_brewery_2-scottish_ale,0,0,244751532032,"{""name"":""Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+boston_beer_works,0,0,244368146433,"{""name"":""Boston Beer Works"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2215"",""country"":""United States"",""phone"":""1-617-536-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""61 Brookline Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.347,""lon"":-71.0989}}",1,28,1
+de_proef_brouwerij-flemish_primitive_wild_ale_pin_head,0,0,244608008192,"{""name"":""Flemish Primitive Wild Ale (Pin Head)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+four_peaks_brewing-blind_date_ale,0,0,244607483904,"{""name"":""Blind Date Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""One of a kind ale. Brewed with 600 pounds of Arizona grown Medjool Dates added to the kettle. 1998 Gold Medal GABF. Alcohol content varies as every brew is slightly different. Usually very strong with sherry or port-like flavors. Brewed quarterly. Alcohol content approximately 7-9% by volume.""}",1,3,1
+brauerei_aying_franz_inselkammer_kg,0,0,244496203776,"{""name"":""Brauerei Aying Franz Inselkammer KG"",""city"":""Aying"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8095-/-9065-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Zornedinger Strae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9706,""lon"":11.7808}}",1,52,1
+flat_branch_pub_brewing-blackberry_ale,0,0,244606828546,"{""name"":""Blackberry Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_branch_pub_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A great summer fruit beer, with 168 pounds of blackberry puree added to a light ale base. The blackberries add a distinct purple haze, and hopping is light to allow the berries to be the featured flavor. The ABV is 5.2% and hop bitterness is 22 BU's."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+alpirsbacher_klosterbru,0,0,244360937472,"{""name"":""Alpirsbacher Klosterbru"",""city"":""Alpirsbach"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7444-/-67-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Marktplatz 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3457,""lon"":8.4031}}",1,11,1
+isle_of_skye_brewing_company,0,0,244752777217,"{""name"":""Isle of Skye Brewing Company"",""city"":""Isle of Skye"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01470)-542477"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Pier""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.4907,""lon"":-4.2026}}",1,46,1
+victory_brewing-storm_king_imperial_stout,0,0,245747482624,"{""name"":""Storm King Imperial Stout"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With a huge, Pacific Northwest hop aroma & character upfront, Storm King subsides into massive, roast malt complexity. More flavor than mere words can adequately describe. Rich and substantial, it will warm your heart."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,27,1
+golden_pacific_brewing,0,0,244623867906,"{""name"":""Golden Pacific Brewing"",""city"":""Berkeley"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.8716,""lon"":-122.273}}",1,40,1
+second_street_brewery,0,0,244989165569,"{""name"":""Second Street Brewery"",""city"":""Santa Fe"",""state"":""New Mexico"",""code"":""87505"",""country"":""United States"",""phone"":""1-505-982-3030"",""website"":""http://www.secondstreetbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1814 Second Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.6631,""lon"":-105.966}}",1,20,1
+brauereigasthof_adler-spezial,0,0,244476739585,"{""name"":""Spezial"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauereigasthof_adler"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+burton_bridge_brewery-burton_porter,0,0,244476542977,"{""name"":""Burton Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,7,1
+andrew_s_brewing,0,0,244362117120,"{""name"":""Andrew's Brewing"",""city"":""Lincolnville"",""state"":""Maine"",""code"":""4849"",""country"":""United States"",""phone"":""(207) 763-3305"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Andy Hazen is a workhorse of a brewer. From start to finish, he is a one-man operation. The former cabinetmaker is also a self-reliant Mainer through and through. He was originally an all-grain homebrewer who decided to take it to the next level when his friends expressed interest in his beers. He designed the 12-barrel brewing system himself and enlisted a local welder to help put it together. Hazen notes that when you live in Maine, you have to find some service to provide to others in order to survive. For him, brewing is the service he provides to his local community. Located in the rolling hills of Lincolnville, Maine, Andrew's is housed in a renovated farmhouse next to Hazen's home. Finding the brewery is more than half the battle. Have no fear, however, as everyone knows about Andrew's. Also, be aware that due to some thieving souls, the brewery no longer has any signage to announce its existence to the visiting public. The only indication that a brewery exists in the farmhouse are the occasional keg deliveries in Hazen's front yard. And Hazen hasn't been quick to replace the sign either. While he welcomes visitors, you have to remember to clear a path for the busy brewer. Like many other unsung small brewers, running his 5OO-barrel per year brewery is a seven day a week operation for Hazen. Watching Hazen run the brewery is a little like watching Willy Wonka run the Chocolate Factory. When I visit him during a bottling day, Hazen runs between the bottling line and the packaging supplies in a hurried yet methodical manner. He stands up bottles on the line, starts the machine, slides his way across the brewhouse to the packaging materials, and hand assembles the six-packs that will hold the soon-to-be bottled beer. Andrew's beer is straightforward, unassuming and entirely enjoyable. His product line includes the St. Nick Porter, the Northern Brown Ale, the English Pale Ale, and the summer seasonal Ruby's Golden Ale. A celebration of the Amarillo hop, Hazen's English Pale Ale is a delightfully balanced product that neither over or underwhelms the palate. from beerscribe.com"",""address"":[],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.3516,""lon"":-69.1401}}",1,14,1
+dockside_brewing-cartwright_pale_ale,0,0,244607025152,"{""name"":""Cartwright Pale Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
+founders_brewing-founders_red_s_rye,0,0,244627341314,"{""name"":""Founders Red's Rye"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pours a spectacular crimson red with a creamy tan head. Brewed with four varieties of Belgian caramel malts imparting a sweet richness. Red's Rye is impressively balanced with its hop bitterness and huge citrus bouquet achieved from the immense amarillo dry hop. The generous amount of malted rye used accentuates a spicy crisp finish."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,48,1
+el_toro_brewing_company,0,0,244606173185,"{""name"":""El Toro Brewing Company"",""city"":""Morgan Hill"",""state"":""California"",""code"":""95037"",""country"":""United States"",""phone"":""408-782-2739"",""website"":""http://www.eltorobrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Geno and Cindy Acevedo founded El Toro Brewing Company in the summer of 1992. After much planning, research and construction business was begun in March of 1994. The brewery is a small 17-barrel (527 gallon) batch system and operates on the Acevedo's rural residential property. Within seven months of opening El Toro Brewing Company received its first national recognition at the 1994 Great American Beer Festival (GABF). One of its flagships El Toro Oro Golden Ale won a coveted Gold Medal for English Pale Ale. At the 1996 GABF Poppy Jasper Amber Ale, the brewery's other flagship beer, won a Silver Medal for English Brown Ale. It is a mild yet robust brown ale. The 1997 GABF saw El Toro garner another Gold Medal for the American styled wheat beer named after the brewer's father-in-law, William Jones Wheat Beer. After 16 years of planning, Geno and Cindy Acevedo of Morgan Hill finally opened a brewpub on November 25 2006. El Toro Brewpub is a two floored building with patio. Inside is the world's only Poppy Jasper Bar. Featuring over 45 feet of gorgeously inlaid and polished Poppy Jasper rock into its surface. To the back of the large mirrored bar you will find over 25 beers and handcrafted sodas on tap. We also have a gleaming copper Pub Brewing system 3 BBL (100 gallon) brewery. Live music and dancing will also be a regular nighttime happening at the brewpub consisting of mostly local bands playing cover type and original Rock, Blues, Jazz and Reggae."",""address"":[""17605 Monterey Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.1553,""lon"":-121.676}}",1,0,1
+brasserie_d_orval-petite_orval,0,0,244379549696,"{""name"":""Petite Orval"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_orval"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,56,1
+bierbrouwerij_de_koningshoeven-tripel,0,0,244373258240,"{""name"":""Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+caldera_brewing-hopportunity_knocks_ale,0,0,244475559936,"{""name"":""Hopportunity Knocks Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""IPA brewed with 100% Centennial hops. Big round mouthfeel, very perfumey. Different from our canned IPA. Gotta love the Pacific NW!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
+pinehurst_village_brewery-double_eagle_golden_ale,0,0,244989755392,"{""name"":""Double Eagle Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+dick_s_brewing-pale_ale,0,0,244608729089,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
+high_falls_brewing-dundee_festive_ale,0,0,244751138816,"{""name"":""Dundee Festive Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""So did you ever ask yourself...what exactly is there to be festive about during the holidays? Your brother in-law snoring on the air mattress? (Boy, let’s hope that’s snoring.) The variety of toys with realistic sound effects? Fruit cake?\r\n\r\nDundee Festive Ale may be one of the few exceptions. One sip of the carefully matched seasonal spices and you realize that the holidays are worth paying...waiting for.\r\n\r\nOh, there may be one other thing to be festive about. There’s a 13 to 1 chance against your brother in-law’s plane leaving on time. But at least there’s a chance.\r\n\r\nFestively hearty and full bodied with a mild nutmeg, allspice, cinnamon, and orange peel spice character and subtle crystal malt flavor."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,42,1
+bandana_brewery-rapidan_brown,0,0,244362575875,"{""name"":""Rapidan Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
+f_x_matt_brewing-saranac_caramel_porter,0,0,244624195584,"{""name"":""Saranac Caramel Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Caramel Porter is a Robust, flavorful porter Reminiscent of a by-gone era. True to brewing tradition, we've used dark caramel malt, as well as Fuggles and East Kent Goldings hops for smooth, yet slightly bitter, roasted flavor, look for hints of the real caramel used in brewing this delicious beer!"",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
+miller_brewing-milwaukee_s_best_light,0,0,244876050432,"{""name"":""Milwaukee's Best Light"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Milwaukee's Best Light is Miller Brewing Company's lead low-calorie brand in the near-premium segment. Brewed to uncompromising standards using select pale malt, cereal grains and yeast, this is a smooth, highly drinkable beer at an affordable price. Available nationwide, Miller first rolled out Milwaukee's Best Light in 1986 with an ambition to become the beer choice for guys. Our marketing, including sponsorship with the World Series of Poker and award-winning TV spots, takes a humorous approach to reinforce the idea that \""Men should act like men and light beer should taste like beer.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,47,1
+barley_creek_brewing-angler_black_lager,0,0,244372799491,"{""name"":""Angler Black Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and delightful, this is an easy-drinking brew. Once a seasonal favorite now we brew it all the time as part of our variety case. Brewed with five different malts and three different hops, then pitched with Bavarian lager yeast."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
+port_washington_brewing-old_port_porter,0,0,244989362177,"{""name"":""Old Port Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
+port_brewing_company-high_tide_ipa,0,0,244990214145,"{""name"":""High Tide IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""ach and every fall, we experience a coastal experience in San Diego known as the \""Super High Tide.\"" This happens later in the Fall Season when the tidal swings reach a range of about 8 feet in difference between low and high tides. When this happens, there are days when the tide just gets too high and flattens out the surf. The lineups shut down and surfers are left to wait until the High Tide recedes.\r\n\r\nWhile waiting for the tides to shift in your favor, might we suggest a High Tide IPA? Brewed only once each year to coincide with the Hop Harvest in Yakima Washington, High Tide IPA is made with 180 lbs of Fresh Hops per batch that are plucked from the vines and sent straight to our brewery. We skip the whole drying and processing stage which means the hops are ultra fresh and full of flavors we can't normally get. Like grapes, Hops are only harvested one time each year and as such, we make what we can when we get them."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
+charlie_and_jake_s_brewery_and_bbq-anniversary_ale,0,0,244477394947,"{""name"":""Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""charlie_and_jake_s_brewery_and_bbq"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+upstream_brewing_old_market-firehouse_esb,0,0,245109751808,"{""name"":""Firehouse ESB"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""A Silver Medal winner at the 2005 Great \r\nAmerican Beer Festival in the Bitter category, our \r\nExtra Special Bitter (ESB) is a medium-bodied ale \r\nhighly hopped and loaded with flavor."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,26,1
+baron_brewing_company-baron_schwarzbier,0,0,244370636800,"{""name"":""Baron Schwarzbier"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""baron_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Baron Schwarzbier is a classic German black lager, deep black with ruby and brown highlights. At first the Schwarzbier starts with a slight roasty nose and taste, followed by a faint chocolate-malty body with a very crisp, clean, lagered finish. Lagered for an average of 10-12 weeks to provide a very smooth, easy drinking Schwarzbier with full flavor provided by the dark malts. \r\n\r\nAll ingredients for the beer are imported from Germany. Brewed in accordance to the German Beer Purity Law (Reinheitsgebot) of 1516."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,33,1
+gordash_brewing_company-holy_mackerel_special_golden_ale,0,0,244625637377,"{""name"":""Holy Mackerel Special Golden Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordash_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,44,1
+illinois_brewing-amber_plus,0,0,244751532033,"{""name"":""Amber Plus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""illinois_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+brasserie_brouwerij_cantillon-rose_de_gambrinus,0,0,244368211968,"{""name"":""Rosé de Gambrinus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,28,1
+de_proef_brouwerij-flemish_primitive_wild_ale_spoon_whacker,0,0,244608073728,"{""name"":""Flemish Primitive Wild Ale (Spoon Whacker)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+four_peaks_brewing-oatmeal_stout,0,0,244607483905,"{""name"":""Oatmeal Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Oatmeal Stout is definitely a local favorite but it gets its origins from one of London's oldest breweries. The Oatmeal Stout differs from the popular Irish stout in its more subtle roastiness and subdued dryness. The addition of flaked oats rounds out these sometimes harsh characteristics producing a velvet smooth ale. This black stout has a flavor profile unique to all of North America. Subtlety is not a strong point as it is a stout after all, rich and eminently drinkable. \r\n\r\nAlcohol content of approximately 5.0% by volume (ALWAYS ON TAP!!)"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,3,1
+brauerei_c_a_veltins_gmbh_co-pilsner,0,0,244496269312,"{""name"":""Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_c_a_veltins_gmbh_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+21st_amendment_brewery_cafe-double_trouble_ipa,0,0,244360413184,"{""name"":""Double Trouble IPA"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep, golden, rich malt flavor huge citrus, fruity grassy, ethanol sweetness aroma with a profound bitterness, yet balanced malt back bone with grapefruit, mellow citric overtones. Dry hopped three times in the fermenter. Brewed with over 65 lbs of hops for 300 gallons of beer. The beer to bring world peace and end the war. Bronze Medal - 2006 Imperial IPA Festival at the Bistro in Hayward, California."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,10,1
+fratellos_restaurant_and_brewery-winnebago_wheat,0,0,244606894080,"{""name"":""Winnebago Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
+anchor_brewing-old_foghorn_2001,0,0,244360937473,"{""name"":""Old Foghorn 2001"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+jaipur_restaurant_and_brewpub,0,0,244752777218,"{""name"":""Jaipur Restaurant and Brewpub"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68144"",""country"":""United States"",""phone"":""1-402-392-7331"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10922 Elm Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2328,""lon"":-96.0825}}",1,46,1
+water_street_brewery-bavarian_weiss_beer,0,0,245747482625,"{""name"":""Bavarian Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,27,1
+goose_island_beer_company_clybourn-maduro,0,0,244623933440,"{""name"":""Maduro"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
+skagit_river_brewing-skibbereen_stout,0,0,244989231104,"{""name"":""Skibbereen Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
+breckenridge_bbq_of_omaha-mountain_wheat,0,0,244476805120,"{""name"":""Mountain Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+burton_bridge_brewery-empire_india_pale_ale,0,0,244476542978,"{""name"":""Empire India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,7,1
+ball_und_brauhaus_watzke,0,0,244362117121,"{""name"":""Ball- und Brauhaus Watzke"",""city"":""Dresden"",""state"":""Sachsen"",""code"":""1139"",""country"":""Germany"",""phone"":"""",""website"":""http://www.watzke.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kötzschenbroder Str. 1""]}",1,14,1
+eastern_shore_brewing-ameri_hefe,0,0,244607025153,"{""name"":""Ameri-Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eastern_shore_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
+glacial_lakes_brewing-red,0,0,244627406848,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glacial_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+empyrean_brewing_company-collapsar_oatmeal_stout,0,0,244606238720,"{""name"":""Collapsar Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
+brasserie_de_l_abbaye_des_rocs-blanche_des_honnelles,0,0,244379549697,"{""name"":""Blanche des Honnelles"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+big_ridge_brewing-light_lager,0,0,244373258241,"{""name"":""Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+captain_lawrence_brewing_company-golden_delicious,0,0,244475559937,"{""name"":""Golden Delicious"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""There’s nothing quite likes Mom’s apple pie…But I am willing to bet this beer is pretty darn close. An American Tripel, dry-hoped with Amarillo hops and aged in Apple Brandy barrels from one of this country’s oldest distilleries. The tropical aroma of the hops and the delicate apple aroma from the barrels are a perfect match. Straight from the Captain’s cellar to yours, we hope you enjoy."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,4,1
+pumphouse_brewery_restaurant,0,0,244989820928,"{""name"":""Pumphouse Brewery & Restaurant"",""city"":""Longmont"",""state"":""Colorado"",""code"":""80501"",""country"":""United States"",""phone"":""1-303-702-0881"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""540 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.1688,""lon"":-105.102}}",1,22,1
+dockside_brewing-marina_light_lager,0,0,244608729090,"{""name"":""Marina Light Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+hoppy_brewing_company-stony_face_red_ale,0,0,244751138817,"{""name"":""Stony Face Red Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppy’s gift to those who like their beers Malty. Dark Caramel and Chocolate Malts lend their deep crimson silkiness, and judicious additions of Nugget and Cascade hops give just enough bitterness for balance. Ask your server’s favorite beer and it’s probably this one."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
+barley_brothers_brewery_and_grill-bighorn_ipa,0,0,244362641408,"{""name"":""Bighorn IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_brothers_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+fish_brewing_company_fish_tail_brewpub-organic_india_pale_ale,0,0,244624195585,"{""name"":""Organic India Pale Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""Fish Tale Organic India Pale Ale is a medium-bodied beer with a rich golden color. The organic pale and crystal malts lay down a firm malt body. This provides the backbone for an assertive hop profile featuring organic Pacific Gem. The moment the Mighty Fish Brewers sampled this pungent and resinous New Zealand hop, they knew it would be perfect for their Organic I.P.A. The result: A Cascadian treasure."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,41,1
+milly_s_tavern-weathertop_doppelbock,0,0,244876050433,"{""name"":""Weathertop Doppelbock"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milly_s_tavern"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,47,1
+barley_island_brewing-hazelnut_brown,0,0,244372799492,"{""name"":""Hazelnut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_island_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+portland_brewing,0,0,244989427712,"{""name"":""Portland Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97210"",""country"":""United States"",""phone"":""1-503-226-7623"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2730 NW 31st Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5415,""lon"":-122.713}}",1,21,1
+prairie_rock_brewing_elgin-prairie_light,0,0,244990214146,"{""name"":""Prairie Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+cheshire_cat_brewery,0,0,244477460480,"{""name"":""Cheshire Cat Brewery"",""city"":""Arvada"",""state"":""Colorado"",""code"":""80002"",""country"":""United States"",""phone"":""1-303-431-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7803 Ralston Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.8023,""lon"":-105.084}}",1,9,1
+walnut_brewery,0,0,245747351552,"{""name"":""Walnut Brewery"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80302"",""country"":""United States"",""phone"":""(303) 447-1345"",""website"":""http://www.walnutbrewery.com/"",""type"":""brewery"",""updated"":""2011-03-01 13:26:24"",""description"":"""",""address"":[""1123 Walnut Street""]}",1,26,1
+baron_brewing_company,0,0,244370636801,"{""name"":""Baron Brewing Company"",""city"":""Seattle"",""state"":""Washington"",""code"":""98108"",""country"":""United States"",""phone"":""206.764.1213"",""website"":""http://www.baronbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mike Baker and Jeff Smiley founded Baron Brewing in the beginning of 2003. A brewery has been in the works for sometime. Lots of discussions on what if we had a brewery were had, over lots of good German beer. The opportunity came for us to travel to Germany to really get involved with the German brewing process and ideology - as well as sample the best beer on earth. After that trip, the direction of the brewery was set. German beer had to be re-discovered by the population. After many discussions on opening a brewery and a trip to Germany, the dream became reality. We found an existing brewery to purchase - Lunar Brewing. After purchasing Lunar and getting approved for all the necessary licensing, Baron is ready to go. On June 14th, the world of Seattle will have the chance to finally taste and purchase Baron Beer. The first style of many to be released is our flagship beer - Munich Lager.That is all for the history. We are growing on a daily basis and plan to be around for quite some time."",""address"":[""1605 S 93rd Building E Unit L""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.5203,""lon"":-122.312}}",1,33,1
+granite_city_food_brewery_saint_cloud,0,0,244751663104,"{""name"":""Granite City Food & Brewery - Saint Cloud"",""city"":""Saint Cloud"",""state"":""Minnesota"",""code"":""56301"",""country"":""United States"",""phone"":""1-320-203-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3945 Second Street South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.5498,""lon"":-94.2067}}",1,44,1
+iron_hill_brewery_wilmingon-kryptonite_imperial_ipa,0,0,244751597568,"{""name"":""Kryptonite Imperial IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""American style double IPA, full bodied malt flavor supports a ridiculous amount of hops, giving it pronounced bitterness and overwhelming hop flavor and aroma. Made with 5 pounds of hops per barrel."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,43,1
+brasserie_dupont-biere_de_miel,0,0,244368211969,"{""name"":""Bière de Miel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+delafield_brewhaus,0,0,244608139264,"{""name"":""Delafield Brewhaus"",""city"":""Delafield"",""state"":""Wisconsin"",""code"":""53018"",""country"":""United States"",""phone"":""1-262-646-7821"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3832 Hillside Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0481,""lon"":-88.3553}}",1,5,1
+golden_valley_brewery_and_pub-chehalem_mountain_ipa,0,0,244607483906,"{""name"":""Chehalem Mountain IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
+brauerei_im_fchschen-alt,0,0,244496334848,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_im_fchschen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
+512_brewing_company-one,0,0,244360413185,"{""name"":""One"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""512_brewing_company"",""updated"":""2010-07-29 14:11:16"",""description"":""Our first anniversary release is a Belgian-style strong ale that is amber in color, with a light to medium body. Subtle malt sweetness is balanced with noticeable hop flavor, light raisin and mildly spicy, cake-like flavors, and is finished with local wildflower honey aromas. Made with 80% Organic Malted Barley, Belgian Specialty grains, Forbidden Fruit yeast, domestic hops and Round Rock local wildflower honey, this beer is deceptively high in alcohol. "",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,10,1
+full_sail_brewing_1-old_boardhead_1999,0,0,244606894081,"{""name"":""Old Boardhead 1999"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+asheville_pizza_and_brewing_co-roland_s_esb,0,0,244361003008,"{""name"":""Roland's ESB"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asheville_pizza_and_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Cascade hops lend this ale a lively and spirited edge that perfectly complements its effervescent amber maltiness."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,11,1
+keesmann_bru-weissbier,0,0,244752842752,"{""name"":""Weissbier"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keesmann_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
+william_kuether_brewing,0,0,245747482626,"{""name"":""William Kuether Brewing"",""city"":""Clear Lake"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.2519,""lon"":-92.2713}}",1,27,1
+granville_island_brewing,0,0,244750352384,"{""name"":""Granville Island Brewing"",""city"":""Kelowna"",""state"":""British Columbia"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1125 Richter Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.8945,""lon"":-119.488}}",1,40,1
+slab_city_brewing-shawano_gold,0,0,244989231105,"{""name"":""Shawano Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+breckenridge_brewery-remarkable_vanilla_porter,0,0,244476805121,"{""name"":""Remarkable Vanilla Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Awesome Porter! Smooth, the vanilla makes this beer very drinkable. Enjoy!!"",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
+cambridge_brewing-regatta_golden,0,0,244476608512,"{""name"":""Regatta Golden"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the tradition of the fresh, blond ales of Cologne, Germany, our Golden ale is light in body, crisp and very refreshing. Its soft malt flavor is balanced by delicate, spicy hop flavors and finishes.""}",1,7,1
+baltimore_washington_beer_works,0,0,244362182656,"{""name"":""Baltimore-Washington Beer Works"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21284"",""country"":""United States"",""phone"":""410.321.1892"",""website"":""http://www.ravenbeer.com/home.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Baltimore-Washington Beer Works, of Baltimore, Maryland is the first to have launched a beer in another country before ever being produced at home. Production first occurred in Germany prior to any in America. The Raven was originally produced in the Black Forest and still is produced in the Black Forest region of Baden-Württemberg. The small town of Nagold, south of Stuttgart and west of the university town of Tübingen, is where the Anker Brewery can be found. BWBW was founded by Stephen Demczuk of Baltimore, who was partner in Europe's first beer-of-the-month club, Beer Around the World. He, along with Baltimorean, Jim Seay and German beer importer Mr. Wolfgang Stark, styled a beer that would be appealing to the masses, drinkable and enjoyed by both the lager and ale drinker. From the assistance of master brewer Mr. Hans-Martin Walz of Anker Brewery, came The Raven, a beer brewed in honor of Baltimore's literary genius, Edgar Allan Poe. After more than a year operating in Europe, the world's most competitive beer market, production of The Raven began in Baltimore in June of 1998."",""address"":[""P.O. Box 9829""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.42,""lon"":-76.54}}",1,14,1
+egan_brewing-moll_dubh_irish_ale,0,0,244607025154,"{""name"":""Moll Dubh Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,2,1
+gottberg_brew_pub-all_american_lager_discontinued,0,0,244627406849,"{""name"":""All-American Lager (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+engine_house_9-irish_stout,0,0,244606238721,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
+brasserie_dubuisson,0,0,244379549698,"{""name"":""Brasserie Dubuisson"",""city"":""Pipaix"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-069-67-22-21"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chause de Mons 28""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.5779,""lon"":3.5554}}",1,56,1
+big_river_brewing-nut_brown_ale,0,0,244373258242,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+catawba_valley_brewing_company-firewater_indian_pale_ale,0,0,244475559938,"{""name"":""Firewater Indian Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""catawba_valley_brewing_company"",""updated"":""2011-02-16 12:38:43"",""description"":""This golden straw colored IPA is made with 5 varieties of malts and 6 massive hop additions. It is outstanding in flavor and aromatics."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-amber_lager,0,0,244989886464,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,22,1
+dragonmead_microbrewery-breath_of_the_dragon_english_bitter,0,0,244608794624,"{""name"":""Breath of the Dragon English Bitter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This fine English style Best Bitter is made with Imported English Pale Ale, Aromatic and Caramel malts. Galena and Willamette Hops add a moderate bittering level to make this a refreshing example of an English Bitter."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,6,1
+hopworks_urban_brewery-secession_black_india_pale_ale_cda,0,0,244751138818,"{""name"":""Secession Black India Pale Ale (CDA)"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Secession is a Black IPA, or Cacadian Dark Ale. This emerging beer style is characterized by an alliance of North-west hop flavors as formidable as the Cascade Mountain Range and roasted malts as dark as a moonless night. Join the party and uncap a revolution!""}",1,42,1
+big_time_brewing-snow_melt_nitrogen_pale,0,0,244362641409,"{""name"":""Snow Melt Nitrogen Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
+aldaris-porteris,0,0,244361592832,"{""name"":""Porteris"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aldaris"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,13,1
+flat_branch_pub_brewing,0,0,244624195586,"{""name"":""Flat Branch Pub & Brewing"",""city"":""Columbia"",""state"":""Missouri"",""code"":""65201"",""country"":""United States"",""phone"":""(573) 499-0400"",""website"":""http://www.flatbranch.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""From great seasonal beers like an imperial stout, pumkin ale, or maibock to all-year ales, lagers, and stouts, this micro-brewery has it all!"",""address"":[""115 S. Fifth St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.95,""lon"":-92.3323}}",1,41,1
+mohrenbrauerei_august_huber,0,0,244876115968,"{""name"":""Mohrenbrauerei August Huber"",""city"":""Dornbirn"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-55-72-/-37-77-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Doktor-Waibel-Strae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.4123,""lon"":9.7443}}",1,47,1
+bayerische_staatsbrauerei_weihenstephan-kristall_weissbier,0,0,244372865024,"{""name"":""Kristall Weissbier"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bayerische_staatsbrauerei_weihenstephan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
+privatbrauerei_erdinger_weissbru,0,0,244989493248,"{""name"":""Privatbrauerei Erdinger Weissbru"",""city"":""Erding"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8122-/-4090"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Franz-Brombach-Strae 1-20""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3153,""lon"":11.8911}}",1,21,1
+river_west_brewing-bullfrog_bitter_esb,0,0,244990279680,"{""name"":""Bullfrog Bitter ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+clipper_city_brewing_co-heavy_seas_big_dipa,0,0,244477460481,"{""name"":""Heavy Seas Big DIPA"",""abv"":10.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Big DIPA – Double IPA, is the first in the Heavy Seas Special Edition Series due to be released in mid June. Hopped 3 times in the brewing process, Big DIPA has an earthy hop aroma. In keeping with the Heavy Seas philosophy we've made a big beer with a surprising balance. The best part is that you’ll hardly notice it’s 10.6% ABV (est). The label artwork was created by Kurt Krol, one of our brewers who also helped to develop the recipe."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,9,1
+wisconsin_brewing-rainbow_red_ale,0,0,245747351553,"{""name"":""Rainbow Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wisconsin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,26,1
+bell_s_brewery_inc-third_coast_beer,0,0,244370702336,"{""name"":""Third Coast Beer"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden beer brewed with pale malts. Large American hop additions contribute a crisp refreshing bitterness. A tribute to the Great Lakes, T.C.B. is a truly quaffable beer."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,33,1
+hair_of_the_dog_brewing-fred,0,0,244751728640,"{""name"":""Fred"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2002,0,0,244751597569,"{""name"":""Harvest Ale 2002"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,43,1
+brauerei_gasthof_zur_krone-coronator_helle_doppelbock,0,0,244485455872,"{""name"":""Coronator Helle Doppelbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gasthof_zur_krone"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
+desnoes_geddes_ltd-guinness_foreign_extra,0,0,244608139265,"{""name"":""Guinness Foreign Extra"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""desnoes_geddes_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,5,1
+goose_island_beer_company_clybourn-bourbon_county_stout,0,0,244607549440,"{""name"":""Bourbon County Stout"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in honor of the 1000th batch at our original Clybourn brewpub. A liquid as dark and dense as a black hole with thick foam the color of a bourbon barrel. The nose is an intense mix of charred oak, chocolate, vanilla, caramel and smoke. One sip has more flavor than your average case of beer. A great cigar beer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,3,1
+brauhaus_faust-krausen_naturtrub,0,0,244496334849,"{""name"":""Kräusen Naturtrüb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_faust"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+aass_brewery-classic_special_brew,0,0,244360478720,"{""name"":""Classic Special Brew"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+goose_island_beer_company_clybourn-kilgubbin_irish_ale,0,0,244606894082,"{""name"":""Kilgubbin Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
+bbc_brewing_co_llc-cask_hefe,0,0,244361003009,"{""name"":""Cask Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""It is a good clean hefe."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,11,1
+knig_brauerei,0,0,244752842753,"{""name"":""Knig Brauerei"",""city"":""Duisburg"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)203-/-455-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Friedrich-Ebert-Strae 255-263""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.5314,""lon"":6.7418}}",1,46,1
+wolf_pack_brewing-lone_mountain_altbier,0,0,245747613696,"{""name"":""Lone Mountain Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wolf_pack_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,27,1
+great_dane_pub_and_brewing_2-sugar_river_esb,0,0,244750417920,"{""name"":""Sugar River ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+spring_house_brewing_company-seven_gates_pale_ale,0,0,245106868224,"{""name"":""Seven Gates Pale Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The story of the Seven Gates comes from rural Pennsylvania, not far from the Spring House Brewery. According to the legend, a mental asylum for the criminally insane stood in the middle of a dense forest. Surrounding the asylum were seven concentric gates, preventing would-be escapees. One terrifying night, the asylum caught fire, test link causing the inmates to flee into the menacing forest. As the tale goes, the former asylum residents were trapped by the seven gates, and eventually succumbed to the perils of the forest. The locals swear that the tormented souls of the inmates will torture anyone brave enough to attempt passage through the Seven Gates of the forest.\r\n\r\nSpring House Brewing Co. honors the local legend by producing a terrifyingly delicious brew that is as familiar as a friendly forest, yet possesses a mysterious quality that will haunt you from the first taste. The enormous, hopped flavor and the meticulous craftsmanship that goes into each bottle will have you believing that the master brewer must be a direct descendent of the former asylum residents."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,20,1
+brooklyn_brewery-brown_ale,0,0,244476805122,"{""name"":""Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A mix of Northern and Southern English Brown Ales, blending 6 malts into an All-American beer."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
+castle_springs_brewery-lucknow_india_pale_ale,0,0,244476608513,"{""name"":""Lucknow India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""castle_springs_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+bar_harbor_brewing_company,0,0,244362182657,"{""name"":""Bar Harbor Brewing Company"",""city"":""Bar Harbor"",""state"":""Maine"",""code"":""4609"",""country"":""United States"",""phone"":""(207) 288-4592"",""website"":""http://www.barharborbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8 Mt. Desert Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.3875,""lon"":-68.2046}}",1,14,1
+elm_city_brewing_co,0,0,244607090688,"{""name"":""Elm City Brewing Co"",""city"":""Keene"",""state"":""New Hampshire"",""code"":""3431"",""country"":""United States"",""phone"":""(603) 355-3335"",""website"":""http://www.elmcitybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""222 West St # 46""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.9324,""lon"":-72.2867}}",1,2,1
+granville_island_brewing_company-island_lager,0,0,244753367040,"{""name"":""Island Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+f_x_matt_brewing-saranac_black_forest,0,0,244606238722,"{""name"":""Saranac Black Forest"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Bavarian black beer with distinctive carmel malt sweetness and rich creamy trademark head. Flavorful, yet smooth; it is very drinkable!"",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,0,1
+brauerei_aying_franz_inselkammer_kg-celebrator,0,0,244497776640,"{""name"":""Celebrator"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""Profoundly dark, rich elixir with a complex fruitiness of roasted malt and whole hop flowers. Semi-dry finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,56,1
+bj_s_restaurant_and_brewery-brewhouse_blonde,0,0,244373323776,"{""name"":""Brewhouse Blonde"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+cedar_brewing-golden_hawk_wheat_beer,0,0,244475625472,"{""name"":""Golden Hawk Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
+redhook_ale_brewery-winterhook_robust_winter_ale_1993,0,0,244989886465,"{""name"":""Winterhook Robust Winter Ale 1993"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+egan_brewing-best_bull,0,0,244608794625,"{""name"":""Best Bull"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+jolly_pumpkin_artisan_ales-biere_de_mars,0,0,244751204352,"{""name"":""Biere de Mars"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A sustaining beer that is brewed to comfort in the gusty ides of March and welcome in a wealth of warmer weather."",""style"":""Old Ale"",""category"":""British Ale""}",1,42,1
+bloomington_brewing_company,0,0,244362641410,"{""name"":""Bloomington Brewing Company"",""city"":""Bloomington"",""state"":""Indiana"",""code"":""47402"",""country"":""United States"",""phone"":""812.323-2112"",""website"":""http://bbc.bloomington.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established by One World Enterprises in 1989, Lennie's introduced gourmet pizza to Bloomington, and has since become one of the town's most popular and eclectic eateries. Lennie's set another local landmark in 1994, with the addition of the first commercial brewery in Monroe county and the first brewpub in Southern Indiana. Open until Midnight Sunday through Thursday and until 1 a.m. on Friday and Saturday, Lennie's menu topped by award-winning beer from the BBC and an extensive wine offering appeals to those looking for a quick lunch, a relaxing dinner, an enjoyable happy hour, or a few late-night ales."",""address"":[""1795 E 10th St,""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1716,""lon"":-86.5104}}",1,15,1
+alesmith_brewing-anvil_ale,0,0,244361658368,"{""name"":""Anvil Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+flossmoor_station_brewery-old_420_wheat_wine,0,0,244624261120,"{""name"":""Old 420 Wheat Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+moylan_s_brewery_restaurant-moylans_hopsickle_imperial_ale,0,0,244876115969,"{""name"":""Moylans Hopsickle Imperial Ale"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""In celebration of the hop,,,,, This is a \""Hop\"" tribute, worthy of a Kings Imperial Court! Enjoy the blast of fresh Tomahawk, Chinook and Anthanum Hops as they stimulate the taste buds in a truly Imperial Fashion. Pucker up!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,47,1
+bbc_brewing_co_llc-bourbon_barrel_smoked_porter,0,0,244372865025,"{""name"":""Bourbon Barrel Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Think of Guinness but with a \""smooth bite\"" to it. This is a wonder beer for those of us who enjoy a porter."",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-esb,0,0,244989493249,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+rothaus_brauerei-pilsner,0,0,244990279681,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+cooper_s_cave_ale_company-cooper_s_cave_tavern_ale,0,0,244477526016,"{""name"":""Cooper's Cave Tavern Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Tavern Ale is a traditional English Bitter, dry bodied and light in color. This sessions ale utilizes Northdown and Kent Golding Hops. Tavern Ale is the creation of Assistant Brewer Adrian Bethel."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,9,1
+wychwood_brewery-scarecrow_ale,0,0,245747417088,"{""name"":""Scarecrow Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,26,1
+bellows_brew_crew-dunkle,0,0,244370702337,"{""name"":""Dunkle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+hereford_hops_restaurant_and_brewpub_1-peninsula_porter,0,0,244751794176,"{""name"":""Peninsula Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
+kalamazoo_brewing-great_lakes_amber_ale,0,0,244751597570,"{""name"":""Great Lakes Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kalamazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+brewery_de_troch-chapeau_mirabelle_lambic,0,0,244485521408,"{""name"":""Chapeau Mirabelle Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,28,1
+diamondback_brewery-framboise,0,0,244608204800,"{""name"":""Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamondback_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,5,1
+goose_island_beer_company_fulton_street-bourbon_county_stout_2007,0,0,244607549441,"{""name"":""Bourbon County Stout 2007"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+brewdog_ltd-hop_rocker,0,0,244496334850,"{""name"":""Hop Rocker"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
+abita_brewing_company-satsuma_wit,0,0,244360478721,"{""name"":""Satsuma Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:56:18"",""description"":""This Wit beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,10,1
+abbaye_de_leffe-leffe_blonde,0,0,244361134080,"{""name"":""Leffe Blonde"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_leffe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,12,1
+granite_city_food_brewery_omaha-northern_light_lager,0,0,244734361600,"{""name"":""Northern Light Lager"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
+beach_brewing-hornet_tail_ipa,0,0,244361068544,"{""name"":""Hornet Tail IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,11,1
+labatt_ontario_breweries-labatt_bleue_dry,0,0,244752842754,"{""name"":""Labatt Bleue Dry"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Bleue Dry, the second addition to the Bleue family, is brewed with the same care and attention to detail as Labatt Bleue. Labatt Bleue Dry is mashed longer than regular beers to leave less carbohydrate (sugar) in the finished beer, giving a clean, crisp finish. Using select aromatic hops and a blend of the finest quality North American barley malts, this lager is clean-flavoured with no aftertaste."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,46,1
+wolf_tongue_brewery,0,0,245747613697,"{""name"":""Wolf Tongue Brewery"",""city"":""Nederland"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Closed."",""address"":[""35 E. First St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.9619,""lon"":-105.51}}",1,27,1
+great_divide_brewing-st_bridget_s_porter,0,0,244750417921,"{""name"":""St. Bridget's Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""St. Bridget, a legendary Irish saint, created a sensation by turning her bathwater into beer. What better way to celebrate her worthy miracle than with our zymurgistic tribute to her feat: St. Bridget’s Porter. St. Bridget’s is a smooth and elegant brown porter. Brimming with coffee and chocolate characteristics from dark barley malts, St. Bridget’s is carefully hopped to provide the perfect complement to its malty robustness. This beer is a “must have” beer for all porter lovers.\r\n\r\nPrepare yourself for a religious experience"",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
+staatliches_hofbrauhaus_in_munchen-maibock,0,0,245106933760,"{""name"":""Maibock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,20,1
+brooklyn_brewery-oktoberfest,0,0,244476805123,"{""name"":""Oktoberfest"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Please enjoy Brooklyn Oktoberfest, a rich, malty version of the beer brewed for the fall festival which originated in Germany with the betrothal of the Crown Prince of Bavaria in 1810. Brooklyn Oktoberfest is in the marzen style, an amber lager beer brewed in March and stored cold through the summer for sale in autumn."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+cervecera_nacional,0,0,244476608514,"{""name"":""Cervecera Nacional"",""city"":""El Dorado"",""state"":"""",""code"":"""",""country"":""Panama"",""phone"":""507-236-1400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Va Ricardo J. Alfaro y Transistmica""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.4316,""lon"":-78.6569}}",1,7,1
+bayerische_staatsbrauerei_weihenstephan,0,0,244362248192,"{""name"":""Bayerische Staatsbrauerei Weihenstephan"",""city"":""Freising"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8161-/-536-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Alte Akademie 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3952,""lon"":11.7288}}",1,14,1
+elysian_brewing_tangletown,0,0,244607090689,"{""name"":""Elysian Brewing - TangleTown"",""city"":""Seattle"",""state"":""Washington"",""code"":""98103"",""country"":""United States"",""phone"":""1-206-547-5929"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2106 North 55th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6688,""lon"":-122.334}}",1,2,1
+great_dane_pub_and_brewing_1-old_kentucky_stout,0,0,244753432576,"{""name"":""Old Kentucky Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+f_x_matt_brewing-saranac_black_tan,0,0,244606304256,"{""name"":""Saranac Black & Tan"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A beer lover's dream! This classic irish stout and amber lager blend is malty, yet pleasantly bitter with many complex flavor notes. Look for a deep brown-black color and full-body.""}",1,0,1
+brauerei_fssla-zwergla,0,0,244497842176,"{""name"":""Zwergla"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+bluegrass_brewing_company_inc-altbier,0,0,244373323777,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bluegrass_brewing_company_inc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+central_city_brewing_company-iceberg_copper_bock,0,0,244475625473,"{""name"":""Iceberg Copper Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,4,1
+rock_bottom_restaurant_brewery_milwaukee-belgian_trippel,0,0,244989886466,"{""name"":""Belgian Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+eldridge_pope_and_co,0,0,244608794626,"{""name"":""Eldridge, Pope and Co."",""city"":""Dorchester"",""state"":""Dorset"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,6,1
+karlovacka_pivovara-crno_pivo,0,0,244751204353,"{""name"":""Crno Pivo"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karlovacka_pivovara"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+boulder_beer_company-mojo_india_pale_ale,0,0,244362641411,"{""name"":""MoJo India Pale Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+anchor_brewing-our_special_ale_1997,0,0,244361723904,"{""name"":""Our Special Ale 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+flying_dog_brewery-dogtoberfest_octoberfest,0,0,244624261121,"{""name"":""Dogtoberfest Octoberfest"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dogtoberfest are shrouded in mystery, but scholars think it has everything to do with an insane German king and a crazed Oompah band. You can read the full historical record of Dogtoberfest at FlyingDogAles.com. Dogtoberfest is deep mahogany in color with an intriguing caramel finish and brewed with 100% imported German ingredients for a true German flavor."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,41,1
+mudshark_brewing-dry_heat_hefeweizen,0,0,244876181504,"{""name"":""Dry Heat Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""70% Wheat Malt Makes This A Light & Refreshing Ale For A Hot Day!"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
+beermann_s_beerwerks_brewpub-lincolnshire_mild,0,0,244372865026,"{""name"":""Lincolnshire Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beermann_s_beerwerks_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,38,1
+rahr_sons_brewing_company-rahr_s_red,0,0,244989493250,"{""name"":""Rahr's Red"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rahr's Red is a delicious, medium-bodied red lager. Notes of caramel with a sound malt character. Not too hoppy, very smooth."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,21,1
+roy_pitz_brewing_company-ludwig_s_revenge,0,0,244990279682,"{""name"":""Ludwig's Revenge"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This brew was inspired by the historical burning of our hometown of Chambersburg, PA in July 1864. During the burning, the brewery in town, \""Ludwigs Brewery\"" operated by George Ludwig was burned to the ground by Confederate soldiers under Gen. McCausland. In remembrance of this event we created a German style rauchbier, or dark smoked lager. This beer uses all its ingredients from Bamberg, Germany, which is where the style was born and in by coincidence, the same area where Ludwig himself was born and taught to brew. It is made with a special birch wood smoked malt that imparts a light smoky aroma, taste, and dryness to the palate. The pilsner malt and noble German hops are used to balance this dryness making it very enjoyable as well as different. We believe this beer resembles how Ludwig himself might have brewed it over 100 years ago.""}",1,23,1
+crescent_city_brewhouse,0,0,244477526017,"{""name"":""Crescent City Brewhouse"",""city"":""New Orleans"",""state"":""Louisiana"",""code"":""70130"",""country"":""United States"",""phone"":""1-888-819-9330"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""527 Decatur Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":29.9558,""lon"":-90.0641}}",1,9,1
+yuengling_son_brewing-yuengling_black_and_tan,0,0,245747417089,"{""name"":""Yuengling Black and Tan"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Original Black & Tan is a pioneer brand that models a traditional English Half & Half. Introduced in 1986, Yuengling produced one of the first hand-crafted draft blends to lead this style of American brewing. Black & Tan combines our popular Dark Brewed Porter and Premium Beer to create a brew that is rich and dark in color, with a well balanced flavor that finishes smooth and satisfying. It has a faint sweetness with hints of caramel and coffee from the dark roasted malts. One sip and you'll appreciate how Yuengling raised the bar with our Original Black & Tan.""}",1,26,1
+birra_forst-sixtus,0,0,244370702338,"{""name"":""Sixtus"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birra_forst"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
+hoffbrau_steaks_brewery_2-rodeo_red,0,0,244751794177,"{""name"":""Rodeo Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+knigsegger_walderbru,0,0,244751597571,"{""name"":""Knigsegger WalderBru"",""city"":""Knigseggwald"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7587-/-9504-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hauptstrae 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9262,""lon"":9.4204}}",1,43,1
+brewery_ommegang-abbey_dubbel,0,0,244485521409,"{""name"":""Abbey Dubbel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,28,1
+dinkelacker_schwaben_bru-cd_pils,0,0,244608204801,"{""name"":""CD-Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dinkelacker_schwaben_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,5,1
+gordon_biersch_brewing-gordon_biersch_hefeweizen,0,0,244607549442,"{""name"":""Gordon Biersch Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,3,1
+brewdog_ltd-tactical_nuclear_penguin,0,0,244496400384,"{""name"":""Tactical Nuclear Penguin"",""abv"":32.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""This is the worlds strongest ever beer, ever (yes ever).\r\n\r\nNo Penguins were harmed in the making of this beer; some humans did get very, very cold though. It was worth it.\r\n\r\nThe Antarctic name, inducing schizophrenia, of this Ÿber-imperial stout originates from the amount of time it spent exposed to extreme cold. This beer was initially double barrel aged for 14 months; maturing in the deep, rich oak of Scottish whisky casks. After this epic maturation the beer was then frozen, then frozen again, then frozen again.\r\n\r\nThis is an extremely strong beer, it should be enjoyed in small servings and with an air of aristocratic nonchalance. In exactly the same manner that you would enjoy a fine whisky, a Frank Zappa album or a visit from a friendly yet anxious ghost."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,52,1
+agassiz_brewing-catfish_cream_ale,0,0,244360478722,"{""name"":""Catfish Cream Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""agassiz_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+abita_brewing_company-wheat,0,0,244361199616,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:52:34"",""description"":""Abita Wheat is a lager, not ale, and contains a generous amount of wheat which produces a clean, simple flavor."",""style"":""Vienna-Style Lager"",""category"":""German Lager""}",1,12,1
+green_mountain_beverage,0,0,244734361601,"{""name"":""Green Mountain Beverage"",""city"":""Middlebury"",""state"":""Vermont"",""code"":""5753"",""country"":""United States"",""phone"":""1-802-873-9045"",""website"":""http://www.gmbeverage.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Green Mountain Beverage is nestled in a valley near the historic Green Mountains in Middlebury, Vermont. This is where we operate our Green Mountain Cidery (our own word we created from a derivative of brewery) and we have become the number one producer of premium alcoholic draft ciders in the U.S. Throughout these pristine areas of the Green Mountains, people are committed to preserving nature's beauty and still today carry on the long standing tradition of taking pride in their work and the products they create which are truly special. Here at Green Mountain Beverage, we also carry on these traditions. Our ciders are a unique combination of nature's best ingredients, our skills, commitment and pride in our work."",""address"":[""153 Pond Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0344,""lon"":-73.1735}}",1,1,1
+blue_corn_caf_and_brewery_albuquerque,0,0,244361068545,"{""name"":""Blue Corn Caf and Brewery - Albuquerque"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.0845,""lon"":-106.651}}",1,11,1
+labatt_ontario_breweries-labatt_blue,0,0,244752908288,"{""name"":""Labatt Blue"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Blue is the best-selling Canadian beer in the world. Introduced in 1951 as Labatt Pilsener, it was named for the colour of its label by fans of the Winnipeg Blue Bombers football team. Blue was the first brand in Canada with a twist-off cap and won the silver medal in the International Lager category at the 1998 Brewing Industry International Awards. Labatt Blue, brewed using specially selected aromatic hops, is a well-balanced, fully matured, full-flavoured beer with a fruity character and a slightly sweet aftertaste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+great_divide_brewing-wild_raspberry_ale,0,0,244750483456,"{""name"":""Wild Raspberry Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""What better way to surprise a beer lover than with a fruit beer that tastes like beer? Nine years ago, we began our quest to provide beer lovers with a worthy fruit beer, by rolling out Wild Raspberry Ale. Our mantra is that real fruit makes real beer, so we ferment Wild Raspberry Ale with hundreds of pounds of real red and black raspberries. We steadfastly refuse to fall prey to extracts and cheap syrups. Sure, squirting syrup into a keg of beer and rolling it around on the floor is easy, but the taste is... fake! Over the past nine years, we have stayed true to our commitment to real fruit, no matter what the time, expense, or late season frosts have thrown our way. One year, Mother Nature delivered a late cold snap that was so severe, we had to pre-order 85% of the harvestable U.S. black raspberry crop, just to meet the demand for Wild Raspberry Ale.\r\n\r\nOur efforts do not go unrewarded – Wild Raspberry Ale is a truly effervescent, ruby red ale that achieves the almost impossible balance between malted barley and tart raspberry fruitiness. Its naturally tart character makes Wild Raspberry the ultimate accompaniment to spicy Mexican food or on its own as a stand-alone session beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,40,1
+taylor_brewing-weisen,0,0,245106999296,"{""name"":""Weisen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,20,1
+brooklyn_brewery-winter_ale,0,0,244476870656,"{""name"":""Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A seasonal winter beer from Brooklyn"",""style"":""Winter Warmer"",""category"":""Other Style""}",1,8,1
+cervejaria_sudbrack,0,0,244476674048,"{""name"":""Cervejaria Sudbrack"",""city"":""Blumenau"",""state"":""Santa Catarina"",""code"":"""",""country"":""Brazil"",""phone"":""55-(47)-3488-7371"",""website"":""http://www.eisenbahn.com.br/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rua Bahia, 5181""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-26.8914,""lon"":-49.1223}}",1,7,1
+bell_s_brewery_inc-batch_7000,0,0,244362248193,"{""name"":""Batch 7000"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""Batch 7000 is part of our commemorative series celebrating our progress with special brews. Our 7,000th batch is a special recipe to be brewed only once."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,14,1
+empyrean_brewing_company-festive_ale_2006,0,0,244607090690,"{""name"":""Festive Ale 2006"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+great_dane_pub_and_brewing_1-uber_apa,0,0,244753432577,"{""name"":""Uber APA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+faultline_brewing_1-hefe_weizen,0,0,244606304257,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,0,1
+breckenridge_bbq_of_omaha-strong_scotch_ale,0,0,244497842177,"{""name"":""Strong Scotch Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,56,1
+boston_beer_company-samuel_adams_boston_lager,0,0,244373389312,"{""name"":""Samuel Adams Boston Lager"",""abv"":4.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Boston Lager® is the best example of the fundamental characteristics of a great beer, offering a full, rich flavor that is both balanced and complex. It is brewed using a decoction mash, a time consuming, traditional four vessel brewing process discarded by many contemporary brewers. This process brings forth a rich sweetness from the malt that makes it well worth the effort. Samuel Adams Boston Lager® also uses only the finest of ingredients including two row barley, as well as German Noble aroma hops. The exclusive use of two row barley not only imparts a full, smooth body but also gives the beer a wide spectrum of malt flavor ranging from slightly sweet to caramel to slightly roasted. The Noble hops varieties, Hallertau Mittelfruh and Tettnang Tettnanger, add a wide range of floral, piney and citrus notes, which are present from the aroma, through the flavor, to the lingering smooth finish. We take great pride in the Noble hops used in our beers. They are hand selected by Jim Koch and our other brewers from the world's oldest hops growing area. Among the world's most expensive, they cost twenty times as much as other hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+city_brewing_company_llc-amber_ale,0,0,244475625474,"{""name"":""Amber Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
+rockyard_brewing,0,0,244989952000,"{""name"":""Rockyard Brewing"",""city"":""Castle Rock"",""state"":""Colorado"",""code"":""80109"",""country"":""United States"",""phone"":""1-303-814-9273"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""880 West Castleton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.4091,""lon"":-104.87}}",1,22,1
+elysian_brewery_public_house-elysian_fields_pale_ale,0,0,244608860160,"{""name"":""Elysian Fields Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
+klosterbru_bamberg-bamberger_schwarzla,0,0,244751204354,"{""name"":""Bamberger Schwärzla"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,42,1
+brasserie_de_l_abbaye_de_scourmont_trappistes-cinq_cents_white,0,0,244362641412,"{""name"":""Cinq Cents (White)"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_de_scourmont_trappistes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+andechser_klosterbrauerei-hell,0,0,244361723905,"{""name"":""Hell"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""andechser_klosterbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+founder_s_restaurant_brewing,0,0,244624261122,"{""name"":""Founder's Restaurant & Brewing"",""city"":""Alexandria"",""state"":""Virginia"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.8048,""lon"":-77.0469}}",1,41,1
+new_belgium_brewing-ranger_india_pale_ale,0,0,244876181505,"{""name"":""Ranger India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ever met a New Belgium Beer Ranger? They are our beloved folks out in the field. Spanning all 26 of our states from the Pacific to the Atlantic, our Beer Rangers do their best to protect, to pour and to partake. And explore many a beer from many a brewery, they do. The fellows up in the Northwest kept calling for “more hops!” Soon it became a common theme across the land. Rangers, fans and craft lovers everywhere were searching for hoppier beers. \r\n\r\nSo, here it finally is – New Belgium’s foray into the true American India Pale Ales. Bring out the hops! This clear amber beauty bursts at the starting gate with an abundance of hops: Cascade (citrus), Chinook (floral/citrus), and Simcoe (fruity) lead off the beer, with Cascade added again for an intense dry hop flavor. Brewed with pale and dark caramel malts that harmonize the hop flavor from start to finish, Ranger is a sessionable splendor for all you hopinistas. Thank your Beer Ranger!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+bethlehem_brew_works-cassis_reserve_lambic_06,0,0,244372865027,"{""name"":""Cassis Reserve Lambic ‘06"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bethlehem_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Aged for over a year! This traditional classic Belgisn style lambic is brewed using several varieties of Belgian lambic yeast and a generous amount of black currant concentrate to create a complex tart flavor. This brew is sure to become a Brew Works favorite!"",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,38,1
+reaperale,0,0,244989558784,"{""name"":""ReaperAle"",""city"":""Foothill Ranch"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.6864,""lon"":-117.66}}",1,21,1
+s_a_damm-estrella_damm,0,0,244990345216,"{""name"":""Estrella Damm"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2010-07-22 20:00:20"",""description"":""Estrella means star in Spanish and as its name suggests the brand has become a star to the people of Barcelona. It has evolved with the city reflecting its character - sophisticated and passionate yet at the same time relaxed and welcoming."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
+cricket_hill-cricket_hill_hopnotic,0,0,244477591552,"{""name"":""Cricket Hill Hopnotic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-07-22 20:00:20"",""description"":""No mere beverage could satisfy the thirst of the courageous and gallant soldiers who stood guardover the colonies of the British Empire. Their thirst could only be quenched by a full-bodied hearty Ale; an Ale balanced with rich flavorful hops. We are proud to offer our interpretation of this English style India Pale Ale for those who loong for the time when once your duty was complete, the taste of a fine Ale was reward enough for a job well done."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
+mikeb,0,0,91386755481600,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,26,1
+bison_brewing-organic_belgian_ale,0,0,244370702339,"{""name"":""Organic Belgian Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+hoffbrau_steaks_brewery_2-shawnee_amber_ale,0,0,244751794178,"{""name"":""Shawnee Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,44,1
+krogh_s_restaurant_and_brewpub-log_cabin_nut_brown,0,0,244751663104,"{""name"":""Log Cabin Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
+brewmasters_restaurant_and_brewery_south-kenosha_gold,0,0,244485586944,"{""name"":""Kenosha Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+dogfish_head_craft_brewery-palo_santo_marron,0,0,244608204802,"{""name"":""Palo Santo Marron"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Palo Santo Marron (Holy Tree Brown)\r\n\r\nAn unfiltered, unfettered, unprecedented brown ale aged in handmade wooden brewing vessels. The caramel and vanilla complexity unique to this beer comes from the exotic Paraguayan Palo Santo wood from which these tanks were crafted. Palo Santo means \""holy tree\"" and it's wood has been used in South American wine-making communities. \r\n\r\nThis beer is a 12% abv, highly roasty, and malty brown ale aged on the Palo Santo wood. It was a huge hit at our Rehoboth Beach brewpub when first released in November of 2006, so it's coming back... into full production!\r\n\r\n At 10,000 gallons each, these are the largest wooden brewing vessels built in America since before Prohibition.\r\n\r\nClick below to watch \""Take Time,\"" the short film we released with the first full-production batch of Palo Santo Marron in February 2008.\r\n\r\nIt's all very exciting. We have wood. Now you do too."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,5,1
+granite_city_food_brewery_omaha,0,0,244735016960,"{""name"":""Granite City Food & Brewery - Omaha"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68114"",""country"":""United States"",""phone"":""1-402-393-5000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1001 North 102nd Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2672,""lon"":-96.0714}}",1,3,1
+brewdog_ltd-tokyo,0,0,244496465920,"{""name"":""Tokyo*"",""abv"":18.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,52,1
+alltech_s_lexington_brewing_company-limestone_bavarian_style_bock_discontinued,0,0,244360478723,"{""name"":""Limestone Bavarian Style Bock (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,10,1
+alltech_s_lexington_brewing_company-limestone_english_style_porter_discontinued,0,0,244361199617,"{""name"":""Limestone English Style Porter (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,12,1
+hop_back_brewery-entire_stout,0,0,244734427136,"{""name"":""Entire Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
+bootleggers_steakhouse_and_brewery-summer_wheat,0,0,244361068546,"{""name"":""Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bootleggers_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
+laconner_brewing-extra_special_bitter,0,0,244752908289,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+grizzly_peak_brewing-iambic_lambic,0,0,244750483457,"{""name"":""Iambic Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_peak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,40,1
+the_alchemist-shut_the_hell_up,0,0,245106999297,"{""name"":""Shut The Hell Up"",""abv"":3.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""An American mild ale brewed with Horizon hops. The crisp, bitter finish is helpd up by a balanced malt body."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,20,1
+brouwerij_de_regenboog-vuuve,0,0,244476870657,"{""name"":""Vuuve"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_regenboog"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+climax_brewing_copmany-climax_nut_brown_ale,0,0,244476674049,"{""name"":""Climax Nut Brown Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""This style of beer is based on the English Mild, which was a combination of a stout and a lighter beer favored by coal miners in Scotland, Ireland and North England.\r\nWe've brought together the grains used to make both a Stout and a Pale Ale and balanced them in our Nut Brown Ale to produce a beer with a chocolate and molasses flavor and hints of caramel and coffee in the background."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
+bitburger_brauerei-premium_beer,0,0,244362248194,"{""name"":""Premium Beer"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bitburger_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""Bitburger guarantees premium quality and enjoyment. Drawing on almost 200 years of expertise, the full-bodied, light, Bitburger Premium Beer is of course brewed according to the German Purity Law. Its popular, dry-finished, hoppy taste has secured Bitburger Premium Beer position as Germany's no. 1 draught beer.\r\n\r\n-http://www.bitburger.com/bitburger_beers/bitburger_premium_beer/product_bitburger_premium_beer/index.html"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,14,1
+affligem_brouwerij,0,0,244380205056,"{""name"":""Affligem Brouwerij"",""city"":""Opwijk"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":""052/35 83 57"",""website"":""http://www.affligembeer.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.9699,""lon"":4.1892}}",1,59,1
+flyers_restraunt_and_brewery-spitfire_best_bitter,0,0,244607156224,"{""name"":""Spitfire Best Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An English style ale, copper in color with subtle English malt hints balanced nicely with fresh Washington grown Yakima Valley hops."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,2,1
+greenshields_brewery_and_pub-nut_brown_ale,0,0,244753498112,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,48,1
+fish_brewing_company_fish_tail_brewpub-leviathan_2004,0,0,244606369792,"{""name"":""Leviathan 2004"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+brewmasters_restaurant_and_brewery_south-southport_amber,0,0,244497907712,"{""name"":""Southport Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
+boston_beer_company-samuel_adams_cherry_wheat,0,0,244373389313,"{""name"":""Samuel Adams Cherry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ale brewed with Cherries, crisp and fruity with a hint of honey. Samuel Adams Cherry Wheat® follows the centuries old American tradition of brewing beer with native ingredients, in this case Michigan cherries as well as a touch of honey. The sweet fruitiness of the cherries is balanced against the crisp, cereal note from the malted wheat and the subtle citrus flavor from the Noble hops. The end result is a sweet, refreshing beer that is light on the palate but long on complexity."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,39,1
+coast_range_brewing-barleywine,0,0,244475691008,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+ross_valley_brewing,0,0,244989952001,"{""name"":""Ross Valley Brewing"",""city"":""Fairfax"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.9871,""lon"":-122.589}}",1,22,1
+emmett_s_tavern_and_brewery-german_pilsner,0,0,244608860161,"{""name"":""German Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emmett_s_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+loaf_and_stein_brewing,0,0,244873691136,"{""name"":""Loaf and Stein Brewing"",""city"":""Eagle River"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.9172,""lon"":-89.2443}}",1,42,1
+brauerei_beck-beer,0,0,244479819776,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_beck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+barrel_house_brewing_co-duveneck_s_dortmunder,0,0,244361723906,"{""name"":""Duveneck's Dortmunder"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barrel_house_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Frank Duveneck was a famous Cincinnati painter who produced such masterpieces as Whistling Boy andOld Man In a Fur Cap. Our Dortmunder is a medium- bodied golden lager showcasing a delicious malt profile balanced with Noble German hops. This beer is designed to satisfy even the stodgiest of old beer curmudgeons!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+founders_brewing-curmudgeon,0,0,244624326656,"{""name"":""Curmudgeon"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Old Ale conjures up thoughts of classic sea fairing ports, there local pubs and the weathered fisherman that frequent them. In traditional style Curmudgeon is brewed with an intense focus on the malt bill creating a very strong, rich, malty characteristic and a sweetness indicative of its cousin the barleywine. We are especially proud of the balance in this beer making it deceptively smooth and drinkable at 9.3% alcohol by volume."",""style"":""Old Ale"",""category"":""British Ale""}",1,41,1
+nor_wester_brewery_and_public_house-hefe_weizen,0,0,244876181506,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+big_ridge_brewing-red_truck_ale,0,0,244372930560,"{""name"":""Red Truck Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
+red_star_brewery_grille-iron_horse_stout,0,0,244989558785,"{""name"":""Iron Horse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+santa_rosa_brewing,0,0,244990345217,"{""name"":""Santa Rosa Brewing"",""city"":""Santa Rosa"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.4405,""lon"":-122.714}}",1,23,1
+dillon_dam_brewery-dam_straight_lager,0,0,244609974272,"{""name"":""Dam Straight Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dillon_dam_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
+blacksburg_brewing_company-blacksburger_pils,0,0,244370767872,"{""name"":""Blacksburger Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blacksburg_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
+hop_back_brewery,0,0,244751859712,"{""name"":""Hop Back Brewery"",""city"":""Salisbury"",""state"":""Wiltshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01725)-510986"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unit 21-24 Batten Road Industrial Estate""]}",1,44,1
+lake_louie_brewing-premium_ale,0,0,244751663105,"{""name"":""Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_louie_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
+brewmasters_restaurant_and_brewery_south-weissenheimer_wheat,0,0,244485586945,"{""name"":""Weissenheimer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,28,1
+dogfish_head_craft_brewery-raison_d_etre,0,0,244608270336,"{""name"":""Raison D'Etre"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep, mahogany ale brewed with beet sugar, green raisins, and Belgian-style yeast. As complex as a fine, red wine. Voted \""American Beer of the Year\"" in January 2000 by Malt Advocate Magazine."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,5,1
+great_dane_pub_and_brewing_1-imperial_stout,0,0,244735016961,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
+bridgeport_brewing-old_knucklehead_1997,0,0,244496465921,"{""name"":""Old Knucklehead 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+amerisports_brew_pub-hofbrauhaus_brewery_biergarten_vienna_velvet,0,0,244360544256,"{""name"":""Hofbrauhaus Brewery & Biergarten Vienna Velvet"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amerisports_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+anchor_brewing-small_beer,0,0,244361265152,"{""name"":""Small Beer"",""abv"":3.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,12,1
+hopworks_urban_brewery-hub_lager,0,0,244734492672,"{""name"":""HUB Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Czech style pilsner is all malt all the time-no choicest rice or corn syrup here! Whole flower Czech Saaz hops balance the delicate honey flavor of our organic Canadian grown pilsner malt creating a golden beer with depth of character."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,1,1
+brasserie_bnifontaine,0,0,244361068547,"{""name"":""Brasserie Bnifontaine"",""city"":""Bnifontaine"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.21.08.68.68"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13, rue Pasteur""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.4852,""lon"":2.8306}}",1,11,1
+left_hand_brewing_company-warrior_ipa,0,0,244752908290,"{""name"":""Warrior IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
+heartland_brewery_union_square-full_moon_barley_wine_ale,0,0,244750483458,"{""name"":""Full Moon Barley Wine Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+the_bruery-loakal_red,0,0,245106999298,"{""name"":""Loakal Red"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2011-01-06 22:26:41"",""description"":""75% American Red Ale, 25% Ale Aged in American Oak Barrels. A brash American Red ale, dripping with citrusy Centennial hops, mellowed by a touch of oak. Aromas of toffee, citrus, crushed herbs, vanilla and fresh sawn oak. Complex!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,20,1
+brouwerij_lindemans-cuvee_rene_grand_cru_gueuze_lambic,0,0,244476870658,"{""name"":""Cuvée René Grand Cru Gueuze Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,8,1
+clipper_city_brewing_co-chesapeake_amber_ale,0,0,244476674050,"{""name"":""Chesapeake Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+boddington_s_brewery,0,0,244362313728,"{""name"":""Boddington's Brewery"",""city"":""Manchester"",""state"":""Manchester"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.4807,""lon"":-2.2344}}",1,14,1
+allagash_brewing-four,0,0,244380270592,"{""name"":""Four"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+flying_fish_brewing_company-farmhouse_summer_ale,0,0,244607156225,"{""name"":""Farmhouse Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A tribute to the highly drinkable \""every day\"" beers from French-speaking Belgium. Contains Belgian two-row pale malt and 7% wheat. This beer is lightly filtered with an earthy, spicy hop character from imported Styrian Goldings hops and a beautiful rich creamy head from the wheat."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,2,1
+hale_s_ales_3-red_menace_big_amber,0,0,244753498113,"{""name"":""Red Menace Big Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+fuller_smith_turner_pbc-vintage_ale_1999,0,0,244606369793,"{""name"":""Vintage Ale 1999"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,0,1
+broughton_ales-old_jock_ale,0,0,244497907713,"{""name"":""Old Jock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broughton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+boulder_beer_company-flashback_anniversary_ale,0,0,244373389314,"{""name"":""Flashback Anniversary Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Flashback Anniversary Ale is an India-Brown Ale with 6.8% ABV. This is the first beer we’ve made here that uses one single hop variety (Cascade) in the recipe in five separate additions. The fresh Cascade hop aroma and flavor is perfectly balanced with the dark roasted grains, making Flashback a very unique beer. We’re calling it an India Brown Ale to help illustrate its flavor to the consumer. It’s hoppy like an IPA but dark and roasty like a Brown Ale. Put them together and voila! Flashback at its finest!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+coastal_fog_brewing-hefeweizen,0,0,244475691009,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coastal_fog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,4,1
+routh_street_brewery_and_grille-big_black_stout,0,0,244989952002,"{""name"":""Big Black Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,22,1
+epic_brewing_company,0,0,244608860162,"{""name"":""Epic Brewing Company"",""city"":""Auckland"",""state"":"""",""code"":""2145"",""country"":""New Zealand"",""phone"":""+64 21 632 337"",""website"":""http://epicbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""186 James Fletcher Drive, Otahuhu""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-36.9489,""lon"":174.821}}",1,6,1
+mad_crab_restaurant_and_brewery-sturgeon_stout,0,0,244873691137,"{""name"":""Sturgeon Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
+brauerei_und_altbierkche_pinkus_mller,0,0,244479885312,"{""name"":""Brauerei und Altbierkche Pinkus Mller"",""city"":""Mnster"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)251-/-45151"",""website"":""http://www.pinkus-mueller.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kreuzstrae 4-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.9657,""lon"":7.6214}}",1,15,1
+bierbrouwerij_st_christoffel-christoffel_blond,0,0,244361789440,"{""name"":""Christoffel Blond"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_st_christoffel"",""updated"":""2010-07-22 20:00:20"",""description"":""Born as “Christoffel Bier” this was the first beer brewed by Christoffel. After the introduction of Christoffel Robertus, this beer was named Blond refering to the colour of the beer. Blond is a low-fermenting beer with 6% alc.vol.\r\n\r\nBlond has a full body, a very balanced taste and a beautiful bitterness due to a generous addition of fresh hop during the brewing-process. The aroma is fruity and Blond has a fresh taste with a pleasant, hoppy finish."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,13,1
+gaslight_brewery-perfect_stout,0,0,244624326657,"{""name"":""Perfect Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
+oconomowoc_brewing-amber_rye_lager,0,0,244876247040,"{""name"":""Amber Rye Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oconomowoc_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+boston_beer_company-samuel_adams_triplebock_1994,0,0,244372930561,"{""name"":""Samuel Adams Triplebock 1994"",""abv"":17.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+redhook_ale_brewery-nut_brown_ale,0,0,244989558786,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,21,1
+schloss_eggenberg-samichlaus_bier_2005,0,0,244990345218,"{""name"":""Samichlaus Bier 2005"",""abv"":14.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,23,1
+dock_street_beer-bohemian_dock_street_pilsner,0,0,244610039808,"{""name"":""Bohemian Dock Street Pilsner"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Bohemian Dock Street Pilsner is brewed in the style of the original Pilsner beers of Bohemia, in what is now the Czech Republic, in a tradition that dates to 1842. We use costly Bohemian Saaz hops and pale imported malts to produce its rich golden color, and soft malty flavor using traditional techniques of the old world. True Pilsners are the most difficult to brew as there are no dark malts or flavorings used to mask flaws. Pilsner is the best known style of beer in the world. A good pilsner balances hops and malts to a refreshing, clean tasting, every-mood kind of beer. The Bohemian can stand alone or join a party easily."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,9,1
+blacksburg_brewing_company,0,0,244370767873,"{""name"":""Blacksburg Brewing Company"",""city"":""Blacksburg"",""state"":""Virginia"",""code"":""24063"",""country"":""United States"",""phone"":"""",""website"":""http://www.blacksburgbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Blacksburg Brewing Co. (BBC) is an independent specialty brewer of premium beer. As mandated by the Reinheitsgebot (German Purity Law), our beer is brewed with only 4 ingredients: water, barley malt, hops, and yeast. The best beer requires the best ingredients, so we purchase them regardless of the cost. We pay a premium to import the Cadillac of barley malt from Bamberg, and our hops from The Hallertau are the best that money can buy, period."",""address"":[""P.O. Box 315""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.23,""lon"":-80.41}}",1,33,1
+hoppin_frog_brewery-d_o_r_i_s_the_destroyer_double_imperial_stout,0,0,244751859713,"{""name"":""D.O.R.I.S. the Destroyer Double Imperial Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This extreme Double Oatmeal Russian Imperial Stout will overwhelm, satisfy, and destroy your taste buds like no other!! D.O.R.I.S. is even darker, hoppier, and stronger than our gold medal winning B.O.R.I.S. The Crusher Stout. Dry hopped and first wort hopped and first wort hopped with the finest American hops for a great Imperial hops for a great Imperial Stout experience! Enjoy the darkness!"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,44,1
+lowenbrau_brauerei,0,0,244874215424,"{""name"":""Löwenbräu Brauerei"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-5200-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nymphenburger Straße 4""]}",1,43,1
+bricktown_brewery-munich_dunkel,0,0,244485586946,"{""name"":""Munich Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+double_mountain_brewery_taproom-double_mountain_pale_ale,0,0,244608270337,"{""name"":""Double Mountain Pale Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""It’s easy to forget just how dynamite a well-made pale ale can treat you. Our Pale combines softness from our Pilsner malt, a touch of sweetness from English crystal malt, and plenty of fruity, resinous Northwest hop flavor. The finish is dry, clean and refreshing."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
+green_bay_brewing-hinterland_honey_wheat,0,0,244735016962,"{""name"":""Hinterland Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,3,1
+brouwerij_boon-framboise_1997,0,0,244496465922,"{""name"":""Framboise 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,52,1
+anchor_brewing-our_special_ale_1996,0,0,244360609792,"{""name"":""Our Special Ale 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+anheuser_busch-budweiser_american_ale,0,0,244361265153,"{""name"":""Budweiser American Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Budweiser American Ale is brewed with barley from America's heartland and dry hopped with Cascade hops from the Pacific Northwest.\r\n\r\nAvailable Fall 2008."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+humboldt_brewing-gold_rush,0,0,244734492673,"{""name"":""Gold Rush"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+abbaye_notre_dame_du_st_remy-rochefort_6,0,0,244379746304,"{""name"":""Rochefort 6"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_notre_dame_du_st_remy"",""updated"":""2010-07-22 20:00:20"",""description"":""eddish colour, almost like autumn leaves, very consistent texture with a slightly spicy aroma and an intense taste of caramel, fruit, and hints of raisins. It is only brewed about once per year, representing approximately 1% of total beer production, thus is quite difficult to obtain."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,58,1
+brasserie_de_silenrieux,0,0,244361134080,"{""name"":""Brasserie De Silenrieux"",""city"":""Cerfontaine-Silenrieux"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-071-63-32-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de Noupr s/n""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.2248,""lon"":4.4102}}",1,11,1
+lift_bridge_brewery-farm_girl_saison,0,0,244752973824,"{""name"":""Farm Girl Saison"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This pale golden, Belgian-influenced ale is for everyone: Farm Girl, wannabe Farm Girl. In the Belgian Farmhouse tradition, this brew has a dry malt finish and a spiciness that only Belgian yeasts can create. Smooth and well rounded... this one can please anyone in any situation, whether you are on the water, in the sun, or hiding from winter's chill."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,46,1
+hoffbrau_steaks_brewery_1-texas_special_101_porter,0,0,244750548992,"{""name"":""Texas Special 101 Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
+tin_whistle_brewing-killer_beer_dark_honey_ale,0,0,245107064832,"{""name"":""Killer Beer Dark Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tin_whistle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,20,1
+bt_mcclintic_beer_company-mclennium,0,0,244476870659,"{""name"":""McLennium"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bt_mcclintic_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+court_avenue_brewing-vimalt_wheat,0,0,244476674051,"{""name"":""Vimalt Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
+boston_beer_company-samuel_adams_blackberry_witbier,0,0,244362379264,"{""name"":""Samuel Adams Blackberry Witbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We brewed this traditional witbier with orange peel and coriander, and then added a hint of blackberry. The flavor is very complex with malt and cereal notes, intense spice and citrus flavors and a smooth, sweet/tart finish. It will be available in January in its own 6-pack and in the Samuel Adams® Brewmaster's Collection Variety 6 & 12-packs."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,14,1
+america_s_brewing-aurora_amber_ale,0,0,244380270593,"{""name"":""Aurora Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+fordham_brewing-oyster_stout,0,0,244607156226,"{""name"":""Oyster Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fordham_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,2,1
+hale_s_ales_3-troll_porter,0,0,244753498114,"{""name"":""Troll Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+gold_coast_brewery,0,0,244606435328,"{""name"":""Gold Coast Brewery"",""city"":""Sanctuary Cove"",""state"":""Queensland"",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-27.8539,""lon"":153.359}}",1,0,1
+brouwerij_de_achelse_kluis,0,0,244497907714,"{""name"":""Brouwerij De Achelse Kluis"",""city"":""Achel"",""state"":""Limburg"",""code"":"""",""country"":""Belgium"",""phone"":""32-011-80-07-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""De Kluis 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.2986,""lon"":5.4896}}",1,56,1
+21st_amendment_brewery_cafe-bitter_american,0,0,244362903552,"{""name"":""Bitter American"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""An American session beer. Loaded with hop character and a malty presence, but lower in alcohol."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,17,1
+boulevard_brewing_company-boulevard_irish_ale,0,0,244373454848,"{""name"":""Boulevard Irish Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Irish Ale, Boulevard’s spring seasonal beer, is our Midwestern tribute to the legendary red ales of old Ireland. Our recipe combines six kinds of pale and roasted barley malts to provide a rich, toasty flavor and tawny reddish hue."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,39,1
+coors_brewing_golden_brewery-keystone_light,0,0,244475756544,"{""name"":""Keystone Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
+rowland_s_calumet_brewery-calumet_kolsch,0,0,244990017536,"{""name"":""Calumet Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+erie_brewing_company,0,0,244608925696,"{""name"":""Erie Brewing Company"",""city"":""Erie"",""state"":""Pennsylvania"",""code"":""16501"",""country"":""United States"",""phone"":""(814) 459-7741"",""website"":""http://www.eriebrewingco.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1213 Veshecco Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1112,""lon"":-80.113}}",1,6,1
+magic_hat-scumptious_spring_lager_vinyl,0,0,244873756672,"{""name"":""Scumptious Spring Lager (Vinyl)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Magic Hat's seasonal Lager is also called Vinyl""}",1,42,1
+brewdog_ltd-the_physics,0,0,244479950848,"{""name"":""The Physics"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,15,1
+big_time_brewing-coal_creek_porter,0,0,244361789441,"{""name"":""Coal Creek Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_time_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
+gasthaus_brauerei_max_moritz,0,0,244624326658,"{""name"":""Gasthaus-Brauerei Max & Moritz"",""city"":""Kressbronn am Bodensee"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7543-/-6508"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Weinbichl 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6064,""lon"":9.6061}}",1,41,1
+olde_peninsula_brewpub_and_restaurant-winter_wheat,0,0,244876312576,"{""name"":""Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+brasserie_brouwerij_cantillon-lambic_2002,0,0,244372930562,"{""name"":""Lambic 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+rogue_ales-roughstock_ale,0,0,244989558787,"{""name"":""Roughstock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""a special bottle dedicated to Jim Steen, member of the Professional Rodeo Coyboys Association and rogue extrodinaire."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,21,1
+scotch_irish_brewing,0,0,244990410752,"{""name"":""Scotch Irish Brewing"",""city"":""Carleton Place"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-613-257-7845"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""40 Bennett Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.1279,""lon"":-76.13}}",1,23,1
+doemens_e_v,0,0,244610039809,"{""name"":""Doemens e.V."",""city"":""Grfelfing"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-85805-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stefanusstrae 8""]}",1,9,1
+borsodi_sorgyar-borsodi,0,0,244370767874,"{""name"":""Borsodi"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""borsodi_sorgyar"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
+hubcap_brewery_and_kitchen-beaver_tail_brown_ale,0,0,244751859714,"{""name"":""Beaver Tail Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hubcap_brewery_and_kitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
+mad_anthony_brewing-old_fort_porter,0,0,244874280960,"{""name"":""Old Fort Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+brooklyn_brewery-black_ops,0,0,244485652480,"{""name"":""Black Ops"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brooklyn Black Ops does not exist. However, if it did exist, it would be a robust stout concocted by the Brooklyn brewing team under cover of secrecy and hidden from everyone else at the brewery. Supposedly “Black ops” was aged for four months in bourbon barrels, bottled flat, and re-fermented with Champagne yeast, creating big chocolate and coffee flavors with a rich underpinning of vanilla-like oat notes. They say there are only 1,000 cases. We have no idea what they’re talking about."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,28,1
+eel_river_brewing-certified_organic_porter,0,0,244608270338,"{""name"":""Certified Organic Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
+grumpy_troll_restaurant_and_brewery-lager,0,0,244735082496,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,3,1
+brouwerij_de_dolle_brouwers-bos_keun,0,0,244496465923,"{""name"":""Bos Keun"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,52,1
+arthur_guinness_son-guinness_draught,0,0,244360609793,"{""name"":""Guinness Draught"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2011-02-28 17:13:18"",""description"":"""",""style"":""Classic Irish-Style Dry Stout"",""category"":""Irish Ale""}",1,10,1
+avery_brewing_company-samael_s_oak_aged_ale,0,0,244361265154,"{""name"":""Samael's Oak-aged Ale"",""abv"":14.5,""ibu"":41.0,""srm"":12.5,""upc"":7,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-12-19 09:47:16"",""description"":""A super-caramelly, oak-aged English-style strong ale. The oak is very apparent in this rich and high gravity ale. Additional depth and complexity result in a woody and cask-like nose, with a pronounced vanilla flavor on the palate. As of 2007, the use of additional roasted malt has resulted in subtle bitternes to balance the natural sweetness."",""style"":""Strong Ale"",""category"":""British Ale""}",1,12,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2005_port,0,0,244734492674,"{""name"":""Harvest Ale 2005 (Port)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+allentown_brew_works-apricot_ale,0,0,244379811840,"{""name"":""Apricot Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered wheat beer brewed with apricots creating a smooth and thirst quenching full flavored fruit beer."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,58,1
+brasserie_de_silly-double_enghien_bruin,0,0,244361134081,"{""name"":""Double Enghien Bruin"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+lighthouse_brewing,0,0,244875657216,"{""name"":""Lighthouse Brewing"",""city"":""Victoria"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-888-862-7500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2 - 836 Devonshire Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.4358,""lon"":-123.396}}",1,46,1
+jt_whitney_s_brewpub_and_eatery-dunkle_weiss,0,0,244750548993,"{""name"":""Dunkle Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+titletown_brewing-discombobulator_maibock,0,0,245107064833,"{""name"":""Discombobulator Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,20,1
+bull_bush_pub_brewery-hefeweizen,0,0,244476936192,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,8,1
+de_proef_brouwerij,0,0,244609056768,"{""name"":""De Proef Brouwerij"",""city"":""Lochristi-Hijfte"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-09-/-356.71.02"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Doornzelestraat 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1159,""lon"":3.8158}}",1,7,1
+boundary_bay_brewery_and_bistro,0,0,244362379265,"{""name"":""Boundary Bay Brewery and Bistro"",""city"":""Bellingham"",""state"":""Washington"",""code"":""98227"",""country"":""United States"",""phone"":""1-360-647-5593"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1107 Railroad Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.7475,""lon"":-122.481}}",1,14,1
+arcadia_brewing-lake_superior_esb,0,0,244380336128,"{""name"":""Lake Superior ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+fratellos_restaurant_and_brewery-fox_river_golden_ale,0,0,244607221760,"{""name"":""Fox River Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+hanssens_artisanal-oude_kriek,0,0,244753563648,"{""name"":""Oude Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hanssens_artisanal"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,48,1
+golden_gate_park_brewery-buffalo_nutty_brown,0,0,244606435329,"{""name"":""Buffalo Nutty Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,0,1
+brouwerij_het_anker-gouden_carolus_noel,0,0,244497907715,"{""name"":""Gouden Carolus Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+affligem_brouwerij-affligem_dubbel,0,0,244362903553,"{""name"":""Affligem Dubbel"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""affligem_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""A reddish-brown abbey ale brewed with dark malts. The secondary fermentation gives a fruity aroma and a unique, spicy character with a distinctive aftertaste. Secondary fermentation in the bottle. Contains barley malt."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,17,1
+brasserie_de_brunehaut-abbaye_de_saint_martin_triple,0,0,244373454849,"{""name"":""Abbaye de Saint-Martin Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""Three varieties of malt and three of hops create the robust character of this St. Martin triple abbey ale.\r\nAbbye St. Martin Ales are pure Belgium."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,39,1
+cugino_brewing_company,0,0,244475756545,"{""name"":""Cugino Brewing Company"",""city"":""Batavia"",""state"":""Illinois"",""code"":""60510"",""country"":""United States"",""phone"":""1-630-761-8888"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1501 East Wilson""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8539,""lon"":-88.2776}}",1,4,1
+russell_brewing-blonde_ale,0,0,244990017537,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+estes_park_brewery-estes_park_porter,0,0,244608925697,"{""name"":""Estes Park Porter"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Porters are dark ales without the roasted malt character of a stout. Our porter is a brown porter with a very smooth, balanced profile."",""style"":""Porter"",""category"":""Irish Ale""}",1,6,1
+magic_hat-single_chair_ale,0,0,244873756673,"{""name"":""Single Chair Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A Commemmorative Brew Single Chair celebrating the uniqueness of the Mad River Glen Cooperative Ski Area in Vermont. \r\n\r\nMedium bodied & ideally balanced for all tastes, Single Chair Ale's tempting light golden color, heady aroma & smooth liquid go down effortlessly and often!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
+brouwerij_de_ranke-pere_noel,0,0,244479950849,"{""name"":""Père Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+boscos_memphis_brewing,0,0,244361789442,"{""name"":""Boscos Memphis Brewing"",""city"":""Germantown"",""state"":""Tennessee"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.0868,""lon"":-89.8101}}",1,13,1
+gordash_brewing_company-holy_mackerel_mack_in_black,0,0,244624392192,"{""name"":""Holy Mackerel Mack In Black"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordash_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,41,1
+pabst_brewing_company-pabst_blue_ribbon,0,0,244876312577,"{""name"":""Pabst Blue Ribbon"",""abv"":4.74,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \""Select,\"" but people started asking for that \""Blue Ribbon\"" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \""Blue Ribbon\"" to the bottle in 1895.\r\n\r\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \""Export\"" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\r\n\r\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,47,1
+brasserie_dubuisson-scaldis_prestige,0,0,244372996096,"{""name"":""Scaldis Prestige"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dubuisson"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+rothaus_brauerei-hefeweissbier,0,0,244989624320,"{""name"":""Hefeweissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,21,1
+sleeping_lady_brewing_company,0,0,244990410753,"{""name"":""Sleeping Lady Brewing Company"",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99501"",""country"":""United States"",""phone"":""(907) 277-7727"",""website"":""http://www.alaskabeers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""717 W. 3rd Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":61.2196,""lon"":-149.896}}",1,23,1
+dogfish_head_craft_brewery-midas_touch_golden_elixir,0,0,244610039810,"{""name"":""Midas Touch Golden Elixir"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This recipe is the actual oldest-known fermented beverage in the world! Our recipe showcases the known ingredients of barley, white Muscat grapes, honey & saffron found in the drinking vessels in King Midas' tomb! Somewhere between a beer, wine and mead, this smooth, dry ale will please with Chardonnay or I.P.A. drinker alike.""}",1,9,1
+boston_beer_company-samuel_adams_triplebock_1995,0,0,244370767875,"{""name"":""Samuel Adams Triplebock 1995"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+issaquah_brewhouse,0,0,244751925248,"{""name"":""Issaquah Brewhouse"",""city"":""Issaquah"",""state"":""Washington"",""code"":""98027"",""country"":""United States"",""phone"":""1-425-557-1911"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""35-C West Sunset Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.53,""lon"":-122.037}}",1,44,1
+mad_anthony_brewing,0,0,244874280961,"{""name"":""Mad Anthony Brewing"",""city"":""Fort Wayne"",""state"":""Indiana"",""code"":""46802"",""country"":""United States"",""phone"":""1-260-426-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2002 Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.0677,""lon"":-85.1524}}",1,43,1
+brouwerij_artois-stella_artois,0,0,244485652481,"{""name"":""Stella Artois"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_artois"",""updated"":""2010-07-22 20:00:20"",""description"":""Stella Artois was first brewed as a Christmas beer in leuven. It was named Stella from the star of Christmas, and Artois after Sebastian Artois, founder of the brewery. It's brewed to perfection using the original Stella Artois yeast and the celebrated Saaz hops. It's the optimum premium lager, with it's full flavour and clean crisp taste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
+egan_brewing-freys_weizen,0,0,244608335872,"{""name"":""Freys Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
+hale_s_ales_3-wee_heavy_winter_ale,0,0,244735082497,"{""name"":""Wee Heavy Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,3,1
+brouwerij_lindemans-kriek,0,0,244496531456,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,52,1
+asheville_pizza_and_brewing_co-shiva_ipa,0,0,244360609794,"{""name"":""Shiva IPA"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asheville_pizza_and_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A generous portion of American hops create a crisp citrus nose combined with a light, sweet finish – a well balanced beer that destroys the paradigm of an IPA."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
+back_road_brewery-belle_gunness_stout,0,0,244361330688,"{""name"":""Belle Gunness Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A notorious drink that's as dark as its' namesakes history!! It is named after the infamous LaPorte, Indiana serial killer herself, Belle Gunness of 1908. This Irish-style dry stout is amazingly smooth to drink. You will taste chocolate, coffee and roasty flavors in every sip. Don't be afraid of the dark. A true dark beer lover would die to try it. It definitely would not kill you to dig some up."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+kaiser_bru,0,0,244734558208,"{""name"":""Kaiser-Bru"",""city"":""Neuhaus"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9156-/-88-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oberer Markt 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.6283,""lon"":11.5498}}",1,1,1
+allguer_brauhaus_ag_kempten-cambonator_doppelbock,0,0,244379811841,"{""name"":""Cambonator Doppelbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
+brasserie_mcauslan-griffon_brown_ale,0,0,244477919232,"{""name"":""Griffon Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
+magic_hat-odd_notion_winter_07,0,0,244875657217,"{""name"":""Odd Notion Winter 07"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+klosterbrauerei_weltenburg-asam_bock,0,0,244750614528,"{""name"":""Asam-Bock"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,40,1
+trade_winds_brewing-gingerwheat,0,0,245107064834,"{""name"":""Gingerwheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,20,1
+callahan_s_pub_and_brewery-red,0,0,244476936193,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""callahan_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+deschutes_brewery-hop_henge_imperial_ipa,0,0,244609122304,"{""name"":""Hop Henge Imperial IPA"",""abv"":8.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""HOP HENGE IMPERIAL IPA – The Ultimate in Hop Innovation \r\n\r\nHop Henge Imperial IPA returns to the Bond Street Series line-up this April in extreme fashion. Staying true to the experimental nature of the series and the “never settle” philosophy of Deschutes, our brewers went back to the drawing board to create an amplified version of last year’s monument to hops.\r\n\r\nHead Brewer Brett Porter says, “This is a truly exciting and groundbreaking beer. We reformulated everything about the hop recipe to give Hop Henge an extraordinary aroma and flavor similar to a fresh hop beer.” In addition to the Cascade and Centennial hops, Deschutes Brewery is experimenting with a hop variety so new that it has yet to be named.\r\n\r\nThe team here at Bend Public House recommends Hop Henge as the perfect accompaniment for a variety of spicy foods, so be sure to have a bottle handy next time you make a batch of hot wings and go for the five alarm award. The high-octane hoppiness is a wildly refreshing antidote to a wide array of hot foods.\r\n\r\nLimited Availability April through June.\r\n\r\nDon’t miss this amazing hop experiment that is sure to leave your taste buds begging for more.\r\n\r\n-http://www.deschutesbrewery.com/Brews/Bond+Street+Series/default.aspx\r\n\r\nAvailable April through June.\r\n\r\nHop Henge I.P.A. was first brewed in 2006 as an agressive West Coast style I.P.A. In 2007, Hop Henge is going Imperial! Several pounds of Centennial, Cascade and Northern Brewer hops are in each barrel with a heavy dry-hop presence to top it off. A blend of crystal, pale and caraston malts creates an overall biscuity characteristic that is dense and muscular, building the alcohol base to support the monstrous hop profile.\r\n\r\nLike the rest of the Bond Street Series, Hop Henge highlights the creativity and curiosity of our brewers. Bolder than its English ancestors, with huge hops and a bitter finish, this IPA is no wallflower.\r\n\r\nAlcohol By Volume: 8.1%\r\n\t\r\n\r\nIBU 95\r\n\r\nWhen one of our brewers suggested we name our new IPA Hop Henge, he also came up with the idea of actually recreating Stonehenge, only with hop bales. We were up for the challenge and even though the weather did not want to cooperate, we pulled it off and threw a party afterwards.\r\n\t\r\n\r\n\r\nphoto: chris mather\r\nRatings, Awards & Notables\r\n\r\nWorld's Best Strong Pale Ale (Imperial IPA)\r\n2007 World Beer Awards\r\n\r\nWorld's 50 Best Beers\r\n2006 International Beer Challenge\r\n\r\nGold Medal, 92 Points\r\n2006 World Beer Championships\r\n\r\nSilver Medal, India Pale Ale Category\r\n2006 Australian International Beer Awards\r\n\r\nModern Brewery Age, February 12, 2007\r\n5 out 5 stars \r\nHop Henge started its life as an India Pale Ale, but this year it was bumped up to “Imperial IPA” status, with a hefty dose of additional hops.\r\n“This one is lovely,” said taster Tom Conti. “They got it just right.”\r\nIt pours out a deep amber, with an appealing rocky head, and rich hop aroma wafting from the glass. “They sure dosed it with a lot of hops...[there’s] a lot of hop bitterness in the taste,” one taster observed.\r\nIn addition to the Imperial-level hopping, Hop Henge also boasts Imperial-level alcohol content, with 8.1% a.b.v.\r\nThis was the top-rated beer during its tasting session, and tasters had to dig deep for new superlatives to describe it. “This is a beautiful beer,” concluded taster Gregg Glaser. “Full of flavor and hops and malt and hops again.”\r\n“Not for the timid,” said taster Robert Lachman.\r\n\r\n-http://www.deschutesbrewery.com/BrewPub/OnTap/125352.aspx"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
+brasserie_brouwerij_cantillon-cuvee_des_champions_2003_2004,0,0,244362379266,"{""name"":""Cuvée des Champions 2003-2004"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,14,1
+atwater_block_brewing-voodoo_vator,0,0,244380336129,"{""name"":""Voodoo Vator"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This one is black and sweet! Its malty character is derived from two carmel malts along with Munich malt to create the smoothest high gravity beer this side of the \""pond\""."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,59,1
+frederick_brewing-hempen_ale,0,0,244607221761,"{""name"":""Hempen Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederick_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+hc_berger_brewing-colorado_kolsch_ale,0,0,244753563649,"{""name"":""Colorado Kölsch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+govnor_s_public_house-dingle_dubbel,0,0,244606435330,"{""name"":""Dingle Dubbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+brouwerij_huyghe-delirium_tremens,0,0,244497973248,"{""name"":""Delirium Tremens"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":""The particular character and the unique taste of \""Delirium Tremens\"" result from the use of three different kinds of yeast. Its very original packing, which resembles cologne ceramics, and the colourful label contribute to its success."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,56,1
+appalachian_brewing_company-broad_street_barleywine,0,0,244362969088,"{""name"":""Broad Street Barleywine"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Barley Wine is dark red in color and has an original gravity of 1.120 (24 Plato). The malt complexity of this classic ale style is incredible.\r\n\r\nThe Broad Street Market is located just blocks from the Appalachian Brewing Company. This indoor farmers market was built in 1863 and is one of the oldest continuously operating farmers markets in the United States. The beautiful brick façade and natural wood doors are typical of the structures in Downtown Harrisburg; including our own building."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,17,1
+brasserie_la_choulette-framboise,0,0,244490043392,"{""name"":""Framboise"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_choulette"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+de_friese_bierbrouwerij_us_heit,0,0,244607614976,"{""name"":""De Friese Bierbrouwerij Us Heit"",""city"":""Bolsward"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-(0)515-577-449"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Snekerstraat 43""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":53.0606,""lon"":5.5342}}",1,4,1
+samuel_smith_old_brewery_tadcaster-winter_welcome_2008_2009,0,0,244990017538,"{""name"":""Winter Welcome 2008-2009"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,22,1
+f_x_matt_brewing-saranac_season_s_best,0,0,244608925698,"{""name"":""Saranac Season's Best"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with a special blend of domestic and Belgian malts for a delicate nut-like character, you'll love this Lager's rich taste and signature hop aroma. The exceptional full-bodied taste reflects our Brewery's extraordinary commitment to brewing beers of the highest standard of quality."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
+mckenzie_brew_house-farmhouse_saison,0,0,244873756674,"{""name"":""Farmhouse Saison"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+allagash_brewing-speciale_reserve_ale,0,0,244362706944,"{""name"":""Speciale Reserve Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allagash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
+brouwerij_huyghe,0,0,244479950850,"{""name"":""Brouwerij Huyghe"",""city"":""Melle"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-092-52-15-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brusselse Steenweg 282""]}",1,15,1
+boulder_beer_company-sweaty_betty_blonde,0,0,244361854976,"{""name"":""Sweaty Betty Blonde"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,13,1
+great_dane_pub_and_brewing_1,0,0,244750680064,"{""name"":""Great Dane Pub and Brewing #1"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53703"",""country"":""United States"",""phone"":""1-608-284-0000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""123 East Doty Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0745,""lon"":-89.3802}}",1,41,1
+pete_s_place-choc_american_lager,0,0,244999651328,"{""name"":""Choc American Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_place"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+brauerei_aying_franz_inselkammer_kg-altbairisch_dunkel,0,0,244489650176,"{""name"":""Altbairisch Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_aying_franz_inselkammer_kg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+russian_river_brewing,0,0,244989624321,"{""name"":""Russian River Brewing"",""city"":""Santa Rosa"",""state"":""California"",""code"":""95404"",""country"":""United States"",""phone"":""1-707-545-2337"",""website"":""http://www.russianriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Russian River Brewing Company we focus on traditional aggressively hopped California style ales, Belgian style ales, and barrel aged beers. We brew a full line up of ales and lagers for our pub and for limited distribution."",""address"":[""725 Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.4418,""lon"":-122.712}}",1,21,1
+sly_fox_brewhouse_and_eatery_royersford-helles_bock,0,0,245107916800,"{""name"":""Helles Bock"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,23,1
+dogfish_head_craft_brewery,0,0,244610105344,"{""name"":""Dogfish Head Craft Brewery"",""city"":""Milton"",""state"":""Delaware"",""code"":""19968"",""country"":""United States"",""phone"":""1-888-834-3474"",""website"":""http://www.dogfish.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6 Cannery Village Center""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":38.7683,""lon"":-75.3107}}",1,9,1
+boston_beer_works-kenmore_kolsch,0,0,244370767876,"{""name"":""Kenmore Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+jacob_leinenkugel_brewing_company-creamy_dark,0,0,244751925249,"{""name"":""Creamy Dark"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+mad_river_brewing-steelhead_scotch_porter,0,0,244874346496,"{""name"":""Steelhead Scotch Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+brouwerij_bavik_de_brabandere-petrus_speciale,0,0,244485652482,"{""name"":""Petrus Speciale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+empyrean_brewing_company-festive_ale_2007,0,0,244608335873,"{""name"":""Festive Ale 2007"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+highland_brewing_company,0,0,244735148032,"{""name"":""Highland Brewing Company"",""city"":""Asheville"",""state"":""North Carolina"",""code"":""28803"",""country"":""United States"",""phone"":""(828) 299-7223"",""website"":""http://www.highlandbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nestled in the Blue Ridge Mountains in Asheville, North Carolina, Highland Brewing Company brews the finest and freshest ales in the Southeast. For more than a decade, we have produced an impressive array of ales, from the best-selling Gaelic to our popular winter seasonal, Cold Mountain Ale."",""address"":[""12 Old Charlotte Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.5716,""lon"":-82.4991}}",1,3,1
+brouwerij_st_feuillien,0,0,244496531457,"{""name"":""Brouwerij St-Feuillien"",""city"":""Le Roeulx"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)64-31-18-18"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""20, rue d'Houdeng""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.5018,""lon"":4.1086}}",1,52,1
+avery_brewing_company-hog_heaven_barleywine,0,0,244360675328,"{""name"":""Hog Heaven Barleywine"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dangerously drinkable garnet beauty is a hop lover's delight. The intense dry-hop nose and the alcohol content are perfectly balanced for a caramel candy-like malt finish. This is a serious beer for serious beer afficianados and it only gets better with age. Cellerable for 3 years."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,10,1
+bandana_brewery-madelia_mild,0,0,244361330689,"{""name"":""Madelia Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,12,1
+klosterbrauerei_neuzelle-black_abbot_schwarzer_abt,0,0,244734558209,"{""name"":""Black Abbot / Schwarzer Abt"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,1,1
+anchor_brewing-anchor_steam,0,0,244379877376,"{""name"":""Anchor Steam"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+brewdog_ltd-trashy_blonde,0,0,244477984768,"{""name"":""Trashy Blonde"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A titillating, neurotic, peroxide, punk of a pale ale. Combining attitude, style substance and a little bit of low self esteem for good measure; what would your mother say?\r\n\r\nYou really should just leave it alone...\r\n\r\n...but you just cant get the compulsive malt body and gorgeous dirty blonde colour out of your head. The seductive lure of the sassy passion fruit hop proves too much to resist. All that is even before we get onto the fact that there are no additives preservatives, pasteurization or strings attached.\r\n\r\nAll wrapped up with the customary Brewdog bite and imaginative twist. This trashy blonde is going to get you into a lot of trouble."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,11,1
+mcmenamins_mill_creek-i_m_pale,0,0,244875722752,"{""name"":""I.M. Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+kuhnhenn_brewing,0,0,244750614529,"{""name"":""Kuhnhenn Brewing"",""city"":""Warren"",""state"":""Michigan"",""code"":""48092"",""country"":""United States"",""phone"":""1-586-979-8361"",""website"":""http://www.kbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5919 Chicago Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.5278,""lon"":-83.0472}}",1,40,1
+trade_winds_brewing-hula_berry,0,0,245107130368,"{""name"":""Hula Berry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,20,1
+cameron_s_brewing-auburn_ale,0,0,244476936194,"{""name"":""Auburn Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cameron_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+dillon_dam_brewery,0,0,244609187840,"{""name"":""Dillon Dam Brewery"",""city"":""Dillon"",""state"":""Colorado"",""code"":""80435"",""country"":""United States"",""phone"":""1-970-262-7777"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""100 Little Dam Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":39.6282,""lon"":-106.059}}",1,7,1
+brasserie_val_de_sambre,0,0,244479361024,"{""name"":""Brasserie Val de Sambre"",""city"":""Goze"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-071-56-20-73"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Vandervelde 273""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3682,""lon"":4.3266}}",1,14,1
+back_road_brewery-midwest_ipa,0,0,244380336130,"{""name"":""Midwest IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""back_road_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It means India Pale Ale. It's all about the hops on this one. Brewers use hops to add bitterness and aroma to their beers. If not for hops your beer would be too sweet. Our IPA uses plenty of Chinook and Columbus hops from the Pacific Northwest. The flavor can best be described as strong resiny grapefruit. The long drawn out hop flavor is essential to the character of the beer. So smack your buds on this one all you HOP HEADS."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+golden_city_brewery,0,0,244607287296,"{""name"":""Golden City Brewery"",""city"":""Golden"",""state"":""Colorado"",""code"":""80401"",""country"":""United States"",""phone"":""1-303-279-8092"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""920 Twelfth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7546,""lon"":-105.224}}",1,2,1
+hite_brewery-hite,0,0,244753629184,"{""name"":""Hite"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hite_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hite lager is golden in colour and is styled upon traditional European and American lagers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+half_moon_bay_brewing-paddle_out_stout,0,0,244734164992,"{""name"":""Paddle Out Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
+brouwerij_van_honsebrouck,0,0,244498038784,"{""name"":""Brouwerij Van Honsebrouck"",""city"":""Ingelmunster"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-33-51-60"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Oostrozebekestraat 43""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9201,""lon"":3.2579}}",1,56,1
+arcadia_brewing-big_dick_s_olde_ale,0,0,244362969089,"{""name"":""Big Dick's Olde Ale"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Somewhat of a cousin to Barleywine, Big Dick’s is a classic English-style Olde Ale. Sweet and full-bodied malt flavors are complemented by a fragrant but mild hop bitterness. Sweet, bready malt aromas combine with rich flavors of dark fruit, brown sugar, caramel, and sweet nuts. A beer for keeping, Big Dick’s Olde Ale will age gracefully, while fruity flavors continue to develop and bitterness will subside.\r\n\r\nThis is not only a BIG beer, it is a Well-Endowed Ale! We took a traditional English-style Ale and made it our own. Delightful on its own or as a digestif with a full-bodied cigar, Big Dick’s is also big enough to stand up to many boldly-flavored foods."",""style"":""Old Ale"",""category"":""British Ale""}",1,17,1
+brasserie_lefebvre-blanche_de_bruxelles_mannekin_pis,0,0,244490043393,"{""name"":""Blanche de Bruxelles Mannekin Pis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_lefebvre"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+deschutes_brewery-cascade_golden_ale,0,0,244607680512,"{""name"":""Cascade Golden Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Gracing the expansive Western skyline in Central Oregon, the Three Sisters—Faith, Hope and Charity—are three prominent peaks in the Cascade mountain range. Local folklore credits the naming to 19th Century fur trappers."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
+san_diego_brewing-amber,0,0,244990083072,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+firehouse_grill_brewery-pale_ale,0,0,244608991232,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
+meantime_brewing_company_limited-london_porter,0,0,244873822208,"{""name"":""London Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meantime_brewing_company_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,42,1
+allagash_brewing,0,0,244362772480,"{""name"":""Allagash Brewing"",""city"":""Portland"",""state"":""Maine"",""code"":""4103"",""country"":""United States"",""phone"":""1-800-330-5385"",""website"":""http://www.allagash.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Allagash Brewing Company sold its first batch of beer in the summer of 1995. The Allagash story, however, has roots that go much further back then the ten years the Portland, Maine brewery has been in operation. The roots go into the early 1990's when founder Rob Tod saw something missing in the American beer market. They are interwoven in the craft brewing movement that has allowed the creativity of brewers to flourish over the last twenty years, and those same roots have ties that go back centuries-to the monasteries of Belgium, whose own ancient brewing methods are now practiced today by the brewers of Allagash. Allagash began as a one-man operation, with Tod assuming all brewing duties in a small space located in a building on the outskirts of the maritime city of Portland. Tod had worked in brewery settings before and recognized a void within the craft brewing movement. While both German and British styles had become prevalent throughout the U.S., the ever-creative Belgian-styles were very difficult to find. Through his travels, Tod had sampled many of these unique beers and felt that the flavors and traditions of this European nation needed to be shared with the American drinking public. He designed a small 15-barrel brewhouse specifically to embrace the Belgian tradition of beer making, gathered the finest array of authentic raw materials and began his quest towards the production of traditional Belgian style ales. Allagash began with the release of its Allagash White, modeled after the traditional White beers of Belgium. Also referred to as wit beers, they get their unique flavor from the use of wheat in place of barley, Curacao orange peel and the careful sprinkling of coriander and other spices. Allagash combined these ingredients with their very own proprietary Belgian yeast strain to create the remarkably unique and refreshing beer that is today their flagship brand. Allagash White developed a strong cult following around the Portland area where it was available at selected draft accounts. Due to its immediate success, the beer was soon made available in 12-ounce six-packs throughout the state of Maine. With the success of the first brand, Rob realized two things: The public was asking for some new styles and the workload was getting to be too much for one person. Soon after, two experienced brewers were hired and Allagash released their second brew, Allagash Double Ale. Using the philosophy and techniques created by the Trappist Monks of Belgium centuries ago, the staff created this beer using seven different malts, a traditional sugar, and their own Belgian yeast strain. The result was another unique yet balanced beer crafted in the classic Belgian style. To truly appreciate the classic styles and brewing traditions of Belgium, one must experience beer created in the classic Belgian package. This is why Allagash, after an extensive period of research, released their distinctive Reserve line of cork finished 750 ML bottles. This unique line employs the ancient tradition referred to as the méthode champenoise. The technique calls for two fermentations, one in the Brewery's fermenting tanks and the second in the bottle itself. It is this second fermentation that produces a notable increase in carbonation, a softer mouthfeel, and beers of remarkable complexity. This method of bottle conditioning leaves a small amount of yeast in the bottle, creating what is known as a living beer. As a result, these styles have a greatly enhanced shelf life and some styles will age exceptionally, much like a fine wine. Just as the styles originate in Belgium, so does the package itself. To insure authenticity, Allagash imports the bottles and corks directly from the same country that designed the techniques. This enables the beers to reach carbonation levels similar to champagne while allowing the corks to pop characteristically upon serving. Today, Allagash still remains one of very few breweries in North America using this distinctive package. From the very beginning, Allagash has strived to produce the finest Belgian-style and experimental ales this side of the Atlantic. It began as New England's original Belgian-Style brewery and has grown into one of the industry's most distinguished and well-respected brands. Following the time-tested brewing traditions of ancient Belgium, Allagash now produces a broad-ranging portfolio of artisanal beers with uncompromising quality."",""address"":[""100 Industrial Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.7028,""lon"":-70.3166}}",1,16,1
+caldera_brewing-pilsener_bier,0,0,244479950851,"{""name"":""Pilsener Bier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true German-style pilsener, fermented at 43 degrees and cold lagered for eight weeks."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,15,1
+brasserie_de_cazeau,0,0,244361854977,"{""name"":""Brasserie de Cazeau"",""city"":"""",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Farm-brewery located in South Belgium."",""address"":[]}",1,13,1
+grizzly_peak_brewing,0,0,244750680065,"{""name"":""Grizzly Peak Brewing"",""city"":""Ann Arbor"",""state"":""Michigan"",""code"":""48104"",""country"":""United States"",""phone"":""1-734-741-7325"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""120 West Washington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.2805,""lon"":-83.749}}",1,41,1
+piece-top_heavy_hefeweizen,0,0,244999716864,"{""name"":""Top Heavy Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""piece"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
+brauerei_herrenhausen-weizen_bier,0,0,244489650177,"{""name"":""Weizen Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_herrenhausen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
+s_a_damm-estrella_levante_sin_0_0_alcohol,0,0,244989624322,"{""name"":""Estrella Levante Sin 0.0% Alcohol"",""abv"":1.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2011-07-14 08:54:53"",""description"":"""",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,21,1
+sly_fox_brewhouse_and_eatery_royersford-route_113_ipa,0,0,245107982336,"{""name"":""Route 113 IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, flavorful IPA for all the hopheads out there, brewed with British Pale and Crystal malts, and hopped with Centennial, Cascade, German Northern Brewer, & UK East Kent Goldings. Bold and spicy."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
+east_end_brewing_company-east_end_witte,0,0,244610105345,"{""name"":""East End Witte"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A \""Belgian White\"" wheat beer, gently spiced with (new!) coriander and bitter orange peel. Light bodied with hints of orange and lemon. A great beer for hot weather or for those looking for something lighter all year round."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,9,1
+brasserie_artisanale_de_rulles,0,0,244370767877,"{""name"":""Brasserie Artisanale de Rulles"",""city"":""Habay-Rulles"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)63-41-18-38"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Maurice Grevisse 36""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.7185,""lon"":5.5571}}",1,33,1
+karl_strauss_brewery_gardens_sorrento_mesa-red_trolley_ale,0,0,244751990784,"{""name"":""Red Trolley Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,44,1
+midnight_sun_brewing_co-bathtub_gin_gruit_ale,0,0,244874346497,"{""name"":""Bathtub Gin Gruit Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This gruit ale was inspired by the Phish song of the same name. A traditional gruit in style, Bathtub Gin was brewed without hops. Instead Ben spiced his beer with botanicals typically used to flavor gin: juniper berries, orris root, angelica root, grains of paradise, lemon peel, orange peel and coriander. The result is intensely fragrant, flavorful and fabulous."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,43,1
+bullfrog_brewery-inspiration_red,0,0,244485718016,"{""name"":""Inspiration Red"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big addition of caramel and Munich malts give this beer its rich mahogany color along with its juicy palate. Its medium body and wonderful balance of hops from the Pacific Northwest make this a luscious and aromatic brew."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
+erie_brewing_company-golden_fleece_maibock,0,0,244608335874,"{""name"":""Golden Fleece Maibock"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As spring emerges, Golden Fleece Maibock captures center stage. This fine lager is a pleasurable reward for enduring the doldrums of Erie Pennsylvania’s harsh Lake-Effect ice and snowstorms. Celebrate the transition into spring! Golden Fleece Maibock’s deep golden color leads into a sweet malty flavor with a light hop finish. Maibock says, “RAM IT” to winter with 8.5% alcohol by volume – just enough to take the chill off your day."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,5,1
+hops_haven_brew_haus-maslifter_oktoberfest,0,0,244735148033,"{""name"":""Maslifter Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,3,1
+aass_brewery-genuine_pilsner,0,0,244378894336,"{""name"":""Genuine Pilsner"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Aass Genuine Pilsner is a premium \""lager\"" produced in accordance with the \""Purity law\"". The malted barely is a pilsnermalt produced in the Sandinavian countries. We use the very best of hops known under the name as Sazer and Hallertau, and the liquid is pure Norwegian mountain water.\r\n\r\nThe pilsner is largered at cool temperatures, and it is allowed to mature for as long at 3 months before bottling. \r\n\r\nThe beer is sold in a caracteristic nice- looking green bottel containing 11.2 fl. oz or 330 ml."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,55,1
+brouwerij_verhaeghe-vichtenaar,0,0,244496531458,"{""name"":""Vichtenaar"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_verhaeghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+avery_brewing_company,0,0,244360740864,"{""name"":""Avery Brewing Company"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80303"",""country"":""United States"",""phone"":""1-877-844-5679"",""website"":""http://www.averybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established in 1993, Avery Brewing Co. is a family owned and operated micro-brewery dedicated to brewing the finest quality English and Belgian style ales.. From humble beginnings, brewing 800 barrels of three different beers in 1994, we have progressed to brewing 13,000 barrels of twenty different beers in 2007. We attribute this success to beer drinkers gravitating to beers with more interesting flavor profiles. The unique flavor complexity of Avery beers occurs through a combination of sparing no expense with regard to ingredients and our hopping methods. Sparing no expense means using lots of specialty malts, imported hops, such as Styrian Goldings, and imported Belgian candy sugar."",""address"":[""5763 Arapahoe Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0166,""lon"":-105.219}}",1,10,1
+barley_creek_brewing-old_99_barley_wine,0,0,244361330690,"{""name"":""Old '99 Barley Wine"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""First brewed in 1998 to be served on our fifth anniversary (December 15, 1999), this beer just gets better every year. And, every year around our anniversary, we brew a new vintage. With an original gravity of 1099, this Barley Wine is dark and sweet, and is served in a snifter like an after-dinner drink. You'll want to savor it slowly."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,12,1
+lafayette_brewing,0,0,244734558210,"{""name"":""Lafayette Brewing"",""city"":""Lafayette"",""state"":""Indiana"",""code"":""47901"",""country"":""United States"",""phone"":""1-765-742-2591"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""622 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4194,""lon"":-86.89}}",1,1,1
+appalachian_brewing_company-anniversary_maibock,0,0,244379877377,"{""name"":""Anniversary Maibock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Maibock style was traditionally produced in the winter and released in early May to celebrate the coming of Spring. This malty lager is deep golden in color and medium in body. The finish holds a bold sweetness that is balanced by a subtle hop flavor and aroma. \r\n\r\nWe will be releasing this beer every spring in celebration of our Anniversary."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,58,1
+brewery_de_troch-chapeau_tropical_lambic,0,0,244477984769,"{""name"":""Chapeau Tropical Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,11,1
+midnight_sun_brewing_co-panty_peeler_tripel,0,0,244875722753,"{""name"":""Panty Peeler Tripel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Free spirited Panty Peeler pours rambunctiously into your glass, releasing its engaging aroma. Curacao (bitter) orange peel and coriander create a beautiful yet bolder tripel by infusing color, citrus and spice. Belgian yeast adds playful character. Bottle conditioning assures a perfectly heady experience.\r\n\r\nBrewed as a Belgian tripel but with American boldness, Panty Peeler is delicious yet spirited. Originally named Extreme Polar White Bier, it got nicknamed \""Panty Peeler\"" along the way. Then we translated it to French for a while: E'pluche-culotte. Now we're back to calling it Panty Peeler and we've kicked up the coriander and orange peel to represent its original design.\r\n\r\nAvailability:\r\nAK - 22-oz bottles (year-round) and draft (on occasion)\r\nOR - 22-oz bottles (year-round)"",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
+labatt_ontario_breweries-labatt_crystal,0,0,244750614530,"{""name"":""Labatt Crystal"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Crystal was introduced to Ontario in the late 1800s as one of the first lagers brewed by Labatt. World-renowned Saaz hops are used to give this beer a clean, almost sweet taste which nicely balances the fuller body, higher bitterness and richer taste typically associated with traditional lagers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
+victory_brewing-v_saison,0,0,245746696192,"{""name"":""V-Saison"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our latest release in the V Series of bottle conditioned, Belgian-inspired ales is heady with an earthy, aromatic hop start. Involving hops from the Czech Republic, Germany and England, this flavorful ale slides into flavors of honey and mildly tart fruit. Leaving a refreshing impression of dryness, this is a quenching, invigorating ale, despite it substantial strength at 7.5% abv."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,20,1
+cervecera_jerome-rubia,0,0,244476936195,"{""name"":""Rubia"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+egan_brewing-cow_palace_scotch_ale_2000,0,0,244609253376,"{""name"":""Cow Palace Scotch Ale 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,7,1
+brauerei_hrlimann,0,0,244479361025,"{""name"":""Brauerei Hrlimann"",""city"":""Zrich"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-01-/-288-26-26"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brandschenkestrasse 150""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.3642,""lon"":8.5245}}",1,14,1
+barley_creek_brewing,0,0,244380401664,"{""name"":""Barley Creek Brewing"",""city"":""Tannersville"",""state"":""Pennsylvania"",""code"":""18372"",""country"":""United States"",""phone"":""1-570-629-9399"",""website"":""http://www.barleycreek.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Located in Tannersville, right off route 80's exit 299 in between the Crossings Outlet Stores and Camelback Ski area (Camelbeach Water Park, Barley Creek is the Pocono Mountains' Original Brewpub and Restaurant, where you can always find great food, freshly brewed beer, a comfortable atmosphere, friendly people, and a unique place to kick back, relax and have a great time. Bring your friends, bring your family, bring your friends' families. We are open every day at 11:01am, and serve dinner till about 10pm. On Friday and Saturday we are serving dinner till about 11:00pm. The bar stays open a little longer (so you can finish your fun if you ordered food just before the kitchen closed) Cheers!"",""address"":[""RR 1 Box 185""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.0523,""lon"":-75.3354}}",1,59,1
+gottberg_brew_pub-toil_trubbel_dubbel,0,0,244607287297,"{""name"":""Toil & Trubbel Dubbel"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+hoffbrau_steaks_brewery_1-oktoberfest,0,0,244753629185,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
+hapa_s_brew_haus_and_restaurant-moonset_lager,0,0,244734164993,"{""name"":""Moonset Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
+c_b_potts_of_cheyenne-big_horn_hefeweizen,0,0,244498038785,"{""name"":""Big Horn Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,56,1
+baltika_breweries-baltika_6,0,0,244362969090,"{""name"":""Baltika 6"",""abv"":7.0,""ibu"":20.0,""srm"":30.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""baltika_breweries"",""updated"":""2011-02-15 20:00:29"",""description"":""appearance: deep, dark brown to black, deep tan head\nsmell/taste: sweet, malty, roasted coffee, molasses\nfull-bodied, smooth, minimal carbonation \n"",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,17,1
+brauerei_gbr_maisel_kg-maisel_s_weisse_kristall,0,0,244490108928,"{""name"":""Maisel's Weisse Kristall"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_gbr_maisel_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,39,1
+dick_s_brewing-cream_stout,0,0,244607746048,"{""name"":""Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
+saxer_brewing,0,0,244990083073,"{""name"":""Saxer Brewing"",""city"":""Lake Oswego"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.4207,""lon"":-122.671}}",1,22,1
+flat_earth_brewing_company-flat_earth_belgian_style_pale_ale,0,0,244608991233,"{""name"":""Flat Earth Belgian-style Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_earth_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,6,1
+michigan_brewing-high_seas_ipa,0,0,244873822209,"{""name"":""High Seas IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a legendary style ale is not for the timid. Assertively hoppy and dangerously seductive. A skillful blend of three premium barley malts with generous amounts of Northern Brewer and Cascade Hops creates a special ale to satisfy even the most demanding palate."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,42,1
+amherst_brewing_company-heather_ale,0,0,244362772481,"{""name"":""Heather Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""2003 Silver medal winner herb and spice catagory Great American Beer Fest, made without hops, 100% heather flowers giving it a flowery aroma, subtle sweetness, and crisp, clean finish."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,16,1
+carmel_brewing-amber_ale,0,0,244480016384,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carmel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
+brasserie_de_l_abbaye_des_rocs-ambree,0,0,244361854978,"{""name"":""Ambree"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+grolsche_bierbrouwerij-grolsch_premium_weizen,0,0,244750811136,"{""name"":""Grolsch Premium Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""Grolsch Premium Weizen is the main wheat beer made by Grolsch.\r\nIt is made according to the German Reinheitsgebot (\""German Beer Purity Law\""), meaning that it is made exclusively with (wheat)malt, water, hoppes and barley."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
+pinehurst_village_brewery-double_eagle_scotch_ale,0,0,244999716865,"{""name"":""Double Eagle Scotch Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+brouwerij_lindemans,0,0,244489650178,"{""name"":""Brouwerij Lindemans"",""city"":""Vlezenbeek"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-025-69-03-90"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lenniksebaan 257""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.818,""lon"":4.2307}}",1,38,1
+sacramento_brewing_company-brewhouse_lager,0,0,244989624323,"{""name"":""Brewhouse Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A light all malt lager with delicate hop finish."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+sprecher_brewing-hefe_weiss,0,0,245108047872,"{""name"":""Hefe Weiss"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This coarse-filtered wheat ale is fermented with a German yeast culture for a refreshingly light spiciness and hints of citrus fruit. A cloudy appearance and an immense creamy head are characteristic of this lightly hopped Bavarian Brew."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,23,1
+eder_heylands,0,0,244610105346,"{""name"":""Eder & Heylands"",""city"":""Großostheim"",""state"":""Bavaria"",""code"":""63762"",""country"":""Germany"",""phone"":""+49 6026 5090"",""website"":""http://www.eder-heylands.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Eder & HeylandS is a privately owned brewery in the north-western part of Bavaria (about 50 km east of Frankfurt). The brewery was founded in 1872 and is ever since managed by the Eder's family."",""address"":[""Aschaffenburger Straße 3-5""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.9211,""lon"":9.0715}}",1,9,1
+brasserie_brouwerij_cantillon-gueuze_bio_organic_gueuze,0,0,244370833408,"{""name"":""Gueuze Bio / Organic Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,33,1
+kirin_brewery_company_ltd,0,0,244751990785,"{""name"":""Kirin Brewery Company, Ltd"",""city"":"""",""state"":"""",""code"":"""",""country"":""Japan"",""phone"":"""",""website"":""http://www.kirin.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,44,1
+midnight_sun_brewing_co-rondy_brew_2009,0,0,244874346498,"{""name"":""Rondy Brew 2009"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""RondyBrew 2009 is a rendezvous of playful pale malts and feisty American hops, designed to exhilarate your winter-weary soul. This copper-colored ale delivers citrusy and refreshing hop aroma and flavor.\r\n\r\nThis year’s label features Rondy’s hottest event: The Running of the Reindeer. If you’re suffering from cabin fever, get out and run with the herd. But ready, set, RUN because this beer is only available for a limited time.\r\n\r\nRondyBrew adds refreshment and celebration to the festive fare and entertaining events enjoyed during Anchorage’s Fur Rondy Festival."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
+bullfrog_brewery,0,0,244485718017,"{""name"":""Bullfrog Brewery"",""city"":""Williamsport"",""state"":""Pennsylvania"",""code"":""17701"",""country"":""United States"",""phone"":""570.326.4700"",""website"":""http://www.bullfrogbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Bullfrog Brewery, located in downtown Williamsport, Pa, is an award-winning microbrewery / restaurant and has quickly grown into one of the largest attractions in Northcentral Pennsylvania. Established in August, 1996, our goal is to provide a pleasant atmosphere and the best in food and beer. The Bullfrog Brewery, in competition with thousands of craft-brewed beers from different breweries around the world, recently won a World Beer Cup Gold Medal and Silver Medal. Along with our award-winning brews we offer live entertainment, ranging from jazz to Celtic music and everything in between. So come on in, explore the site and then make plans to stop in and enjoy the best brewery in all of Northcentral Pennsylvania."",""address"":[""231 W. Fourth Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2404,""lon"":-77.0057}}",1,28,1
+faultline_brewing_1-india_pale_ale_ipa,0,0,244608401408,"{""name"":""India Pale Ale (IPA)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
+jack_s_brewing-penalty_shot_porter,0,0,244735148034,"{""name"":""Penalty Shot Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
+alaus_darykla_kalnapilis-export,0,0,244378894337,"{""name"":""Export"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaus_darykla_kalnapilis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+burton_bridge_brewery-thomas_sykes_barleywine,0,0,244496531459,"{""name"":""Thomas Sykes Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burton_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+backcountry_brewery,0,0,244360740865,"{""name"":""Backcountry Brewery"",""city"":""Frisco"",""state"":""Colorado"",""code"":""80443"",""country"":""United States"",""phone"":""1-970-668-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""720 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.5765,""lon"":-106.094}}",1,10,1
+biddy_early_brewery-red_biddy_real_biddy,0,0,244361396224,"{""name"":""Red Biddy / Real Biddy"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""biddy_early_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+lakefront_brewery-cattail_ale,0,0,244734623744,"{""name"":""Cattail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+arcadia_brewing-anglers_ale,0,0,244379877378,"{""name"":""Anglers Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+bridgeport_brewing-beer_town_brown,0,0,244478050304,"{""name"":""Beer Town Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
+minhas_craft_brewery-berghoff_hefeweizen,0,0,244875788288,"{""name"":""Berghoff Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
+lobkowiczk_pivovar_vysok_chlumec,0,0,244872839168,"{""name"":""Lobkowiczk Pivovar Vysok Chlumec"",""city"":""Vysok Chlumec"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-318-865-321"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""CZ-262 52 Vysok Chlumec""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.6206,""lon"":14.3837}}",1,40,1
+viking_brewing,0,0,245746696193,"{""name"":""Viking Brewing"",""city"":""Dallas"",""state"":""Wisconsin"",""code"":""54733"",""country"":""United States"",""phone"":""1-715-837-1824"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""234 Dallas Street West""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.2585,""lon"":-91.8181}}",1,20,1
+chelsea_brewing_company-henry_hudson_ipa,0,0,244477001728,"{""name"":""Henry Hudson IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
+eldridge_pope_and_co-royal_oak_pale_ale,0,0,244609253377,"{""name"":""Royal Oak Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eldridge_pope_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+brauerei_locher_ag,0,0,244479361026,"{""name"":""Brauerei Locher AG"",""city"":""Appenzell"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-071-/-787-13-18"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Alte Eggerstandenstrasse 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.3301,""lon"":9.4135}}",1,14,1
+barley_s_brewing_1-pale_ale,0,0,244380467200,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_s_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+great_divide_brewing-hot_shot_esb,0,0,244734623744,"{""name"":""Hot Shot ESB"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""HotShot ESB is an easy-drinking and remarkably smooth Extra Special Bitter, brewed in the classic-English style. More assertively hopped than ordinary bitters, light copper-colored HotShot showcases clean hop flavors, balanced by its slightly fruity nose and light-caramel malt character.\r\n\r\nWhile HotShot is one of Great Divide’s easiest-drinking and lower alcohol beers, its complex flavor profile makes it the perfect session beer for craft beer lovers."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,2,1
+hoffbrau_steaks_brewery_2-yellow_rose_cream_ale,0,0,244753694720,"{""name"":""Yellow Rose Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+hereford_hops_steakhouse_and_brewpub_3-lichthouse_lager,0,0,244734230528,"{""name"":""Lichthouse Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
+c_b_potts_of_cheyenne-big_horn_wyoming_blonde,0,0,244498038786,"{""name"":""Big Horn Wyoming Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+barley_creek_brewing-iron_arm_belgian_style_wheat,0,0,244363034624,"{""name"":""Iron Arm Belgian Style Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian-style summer favorite. Malted wheat, Pale, Munich and Cara Vienna malt, then moderately hopped with Saaz and a double dose of Hallertau. Served unfiltered with an orange wedge, this is fun in a glass."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,17,1
+brauerei_und_altbierkche_pinkus_mller-jubilate_special_reserve_anniversary_ale,0,0,244490174464,"{""name"":""Jubilate Special Reserve Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+dogfish_head_craft_brewery-90_minute_ipa,0,0,244607746049,"{""name"":""90 Minute IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Esquire Magazine calls our 90 Minute .IPA., \""perhaps the best I.P.A. in America.\"" An Imperial I.P.A. brewed to be savored from a snifter. A big beer with a great malt backbone that stands up to the extreme hopping rate. This beer is an excellent candidate for use with Randall The Enamel Animal!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,4,1
+seabright_brewery-amber,0,0,244990083074,"{""name"":""Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+george_gale_company-millennium_brew,0,0,244609056768,"{""name"":""Millennium Brew"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+alaskan_brewing-alaskan_pale,0,0,244378632192,"{""name"":""Alaskan Pale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden Ale. A blonde, lighter bodied beer with a floral aroma and a crisp, hoppy finish that's not bitter. The hop character of Alaskan Pale is due to dry hopping by hand during the fermentation process.\r\n\r\nA clean, softly malted body with a hint of citrus overtones, followed by a hop-accented dry, crisp finish.\r\n\r\nAlaskan Pale is made from glacier-fed water and a generous blend or European and Pacific Northwest hop varieties and premium two-row pale and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and the more than 90 inches or rainfall we receive each year."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,54,1
+mickey_finn_s_brewery-imperial_delusion,0,0,244873887744,"{""name"":""Imperial Delusion"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
+anchor_brewing-porter,0,0,244362772482,"{""name"":""Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,16,1
+cigar_city_brewing-marshal_zhukov_s_imperial_stout,0,0,244480016385,"{""name"":""Marshal Zhukov's Imperial Stout"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Russian Imperial Stout is dedicated to Gregory Zhukov. Arguably one of World War II's finest generals and a man bold enough to appreciate the rich, complex flavors of a beer brewed to fortify a body through the Russian winter. Like military geniuses, Russian Imperial Stouts reach their peak with a little age on them, so we release Marshal Zhukov's Russian Imperial Stout in sweltering August so that it will be at peak flavor come January or February.\r\n\r\nOpaque black in color, the aroma has notes of espresso, chocolate, dark sweet toffee with hints of black strap molasses. The flavor starts with an unsweetened chocolate character and supporting notes of herbal dryness from English hop varietals. It then moves into dark toffee sweetness and closes with a slap of roasty espresso. Zhukov's Imperial Stout pairs well with Mushroom Solyanka, dark chocolate, cherries and ground wars in Russia. Enjoy, comrade."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,15,1
+brauhaus_johann_albrecht_dsseldorf-kupfer,0,0,244478902272,"{""name"":""Kupfer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_dsseldorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+harpoon_brewery_boston-harpoon_ufo_hefeweizen,0,0,244750811137,"{""name"":""Harpoon UFO Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""From Harpoon's site:\r\n\r\n\""UFO Hefeweizen is an American unfiltered wheat beer. Perhaps UFO’s initial sensory perception is also its most prominent: a cloudy golden color and a dense, frothy head. The yeast, which has not been filtered out, accounts for the cloudiness of UFO. Wheat malt tends to create a larger head than barley malt, the cereal grain most often used in brewing. When served in a traditional wheat beer glass with a lemon, UFO presents an appealing and distinctive visual image.\r\n\r\nThe aroma has a faint but clear citrus-like character. This is produced by the special yeast and accounts for the Bavarian tradition of serving hefeweizens with a lemon. The lemon accentuates the yeast’s fruity, tart fragrance. UFO has a soft mouthfeel and a refreshing, light body. The wheat malts and subtle hopping give the beer a mild, delicate flavor. UFO has a clean finish. Unlike some imported hefeweizens, UFO does not have the spicy, tropical flavors typical of European-brewed style.\r\n\r\nThe overall character is a cloudy appearance with a citrus-like aroma, light body, and clean finish. Serve with a lemon.\"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,41,1
+pinehurst_village_brewery,0,0,244999782400,"{""name"":""Pinehurst Village Brewery"",""city"":""Aberdeen"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.1315,""lon"":-79.4295}}",1,47,1
+brouwerij_sint_jozef-limburgse_witte,0,0,244489781248,"{""name"":""Limburgse Witte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sint_jozef"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+salado_creek_brewing_company-honey_bock,0,0,244989689856,"{""name"":""Honey Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salado_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
+stevens_point_brewery-augsburger_dark,0,0,245108047873,"{""name"":""Augsburger Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,23,1
+egan_brewing-abbot_pennings_grand_cru,0,0,244610105347,"{""name"":""Abbot Pennings Grand Cru"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+brasserie_d_achouffe-mcchouffe,0,0,244370833409,"{""name"":""McChouffe"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""Description : Dark Ale, strong, spicy, lightly hoppy, with evoluting taste. Natural Beer, bottle refermented, unfiltered, not pasteurised and without any additives\r\n\r\nAlcohol : 8,5% alc./vol.\r\n\r\nOriginal gravity : 16 °Plato\r\n\r\nStorage : Store the bottles vertically in a cold place, sheltered from light. The yeast deposit can either be drunk or left according to taste\r\n\r\nServe at : 8 to 12°C (botlle)"",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,33,1
+lake_superior_brewing-old_man_winter_warmer_2002,0,0,244751990786,"{""name"":""Old Man Winter Warmer 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+midnight_sun_brewing_co-sockeye_red_ipa,0,0,244874412032,"{""name"":""Sockeye Red IPA"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+butte_creek_brewing-organic_porter,0,0,244485718018,"{""name"":""Organic Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""butte_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,28,1
+flying_fish_brewing_company-exit_16_wild_rice_double_ipa,0,0,244608401409,"{""name"":""Exit 16 - Wild Rice Double IPA"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The fourth stop on our multi-year trip to explore New Jersey takes us to one of the most maligned places in the state- the Hackensack Meadowlands. It’s the place usually identified with landfills, pipelines, mob burials (alleged) and sports teams that say they’re from New York.\r\n\r\nAlthough no longer home to forests of giant cedars and salt hay marshes teeming with aquatic life, the Meadowlands is still an amazingly diverse ecosystem providing vital animal and plant habitat. In a nod to a once common food plant here, we’ve brewed this beer with wild rice. We also used brown and white rice, as well as two malts.\r\n\r\nRice helps the beer ferment dry to better showcase the five different hops we’ve added. Lots and lots of them. We then dry-hopped this Double IPA with even more-generous additions of Chinook and Citra hops to create a nose that hints at tangerine, mango, papaya and pine."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,5,1
+john_harvard_s_brewhouse_wilmington-pale_ale,0,0,244735213568,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
+ali_i_brewing-macadamia_nut_brown,0,0,244378959872,"{""name"":""Macadamia Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+callahan_s_pub_and_brewery-christmas_ale,0,0,244496596992,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""callahan_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+barley_john_s_brewpub-sunny_summer_ale,0,0,244360806400,"{""name"":""Sunny Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_john_s_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+bill_s_tavern_brewhouse,0,0,244361396225,"{""name"":""Bill's Tavern & Brewhouse"",""city"":""Cannon Beach"",""state"":""Oregon"",""code"":""97110"",""country"":""United States"",""phone"":""1-503-436-2202"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""188 North Hemlock""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.8981,""lon"":-123.961}}",1,12,1
+liberty_steakhouse_and_brewery-patriot_porter,0,0,244734623745,"{""name"":""Patriot Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+arcadia_brewing-starboard_stout,0,0,244379942912,"{""name"":""Starboard Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
+broad_ripple_brewing-extra_special_bitter,0,0,244478050305,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+new_holland_brewing_company-red_tulip,0,0,244875788289,"{""name"":""Red Tulip"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A red ale with rich and smooth flavors of malted barley, balanced by underlying hints of dark fruit. Brewed in homage to our hometown tulip festival, Red Tulip evokes spring’s renewing spirit. Excellent with roasted pork, red-meats and dried fruit.""}",1,46,1
+magic_hat-odd_notion_spring_08,0,0,244872904704,"{""name"":""Odd Notion Spring 08"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,40,1
+walking_man_brewery,0,0,245746761728,"{""name"":""Walking Man Brewery"",""city"":""Stevenson"",""state"":""Washington"",""code"":""98648"",""country"":""United States"",""phone"":""509.427.5520"",""website"":""http://www.walkingmanbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""240 SW First Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.6922,""lon"":-121.885}}",1,20,1
+clipper_city_brewing_co,0,0,244477001729,"{""name"":""Clipper City Brewing Co."",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21227"",""country"":""United States"",""phone"":""1-410-247-7822"",""website"":""http://www.ccbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Clipper City our mission is to bring back the local brewery, and to do it in such a way that we are more than just a fringe player, but a positive part of our area. To accomplish this mission we have created a broad portfolio of products and brands with enough diversity that we have at least one beer that can appeal to everyone. Whether your preference is for a classic American style lager beer, or a big, challenging Hop Cubed Ale, we have a something that will suit your taste. Our goal is to brew beers for people who dare to walk up to the edge of the mountain and actually jump forward. Our beers are for those who chart a bolder course. Our brewery is named for the famed Clipper ship - first developed and built in our home port of Baltimore. The Clipper ship is the symbol for a strong nautical and maritime heritage with a commitment to craftsmanship of the highest caliber. It captures both the hardy nature of our working class history and the romance of what lies on the seas ahead. Why be normal when you can be EXTRAARGHdinary? We believe in bringing beer drinkers the quality and flavor of a handcrafted beer while supporting the local communities we serve."",""address"":[""4615-B Hollins Ferry Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2308,""lon"":-76.6751}}",1,8,1
+elysian_brewery_public_house-avatar_jasmine_ipa,0,0,244609253378,"{""name"":""Avatar Jasmine IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+brimstone_brewing,0,0,244479426560,"{""name"":""Brimstone Brewing"",""city"":""Frederick"",""state"":""Maryland"",""code"":""20176"",""country"":""United States"",""phone"":""1-888-258-7434"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4607 Wedgewood Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3628,""lon"":-77.4265}}",1,14,1
+beach_chalet_brewery-alexander_alt,0,0,244380467201,"{""name"":""Alexander Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
+green_bay_brewing-helles_bock,0,0,244734689280,"{""name"":""Helles Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,2,1
+holsten_brauerei-edel,0,0,244753694721,"{""name"":""Edel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""holsten_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+high_point_wheat_beer_company,0,0,244734230529,"{""name"":""High Point Wheat Beer Company"",""city"":""Butler"",""state"":""New Jersey"",""code"":""7405"",""country"":""United States"",""phone"":""(973) 838-7400"",""website"":""http://www.ramsteinbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founded in 1994, the High Point Brewing Company is the first exclusive wheat beer brewery in America. The founder and driving force of High Point is award-winning homebrewer, Greg Zaccardi. After working as a brewer in southern Germany, Greg returned to the US to open his brewery. His Ramstein beers are made with the same care and precision he learned in Germany. In fact, the wheat, barley, hops and yeast used in Ramstein are all imported directly from Bavaria."",""address"":[""22 Park Place""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.0016,""lon"":-74.3403}}",1,0,1
+capital_brewery-capital_prairie_gold,0,0,244498104320,"{""name"":""Capital Prairie Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,56,1
+beach_chalet_brewery-playland_pale_ale,0,0,244363100160,"{""name"":""Playland Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+brauereigasthof_adler,0,0,244490174465,"{""name"":""Brauereigasthof Adler"",""city"":""Herbertingen"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7586-/-378"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ortsstrae 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.0778,""lon"":9.3996}}",1,39,1
+dragonmead_microbrewery-armageddon_grand_cru,0,0,244607811584,"{""name"":""Armageddon Grand Cru"",""abv"":11.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Grand Crus are traditionally known as \""The best beer that a brewery makes.\"" This Belgian-style quad lives up to that name and then some. Available once a year, in May to celebrate our Anniversary."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,4,1
+ship_inn_brewpub-esb,0,0,244990083075,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+grand_teton_brewing_2,0,0,244736065536,"{""name"":""Grand Teton Brewing #2"",""city"":""Victor"",""state"":""Idaho"",""code"":""83455"",""country"":""United States"",""phone"":""1-208-787-9000"",""website"":""http://www.grandtetonbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""430 Old Jackson Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.5984,""lon"":-111.108}}",1,6,1
+anheuser_busch-sun_dog_amber_wheat,0,0,244378632193,"{""name"":""Sun Dog Amber Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Sun Dog is an unfiltered beer, with a naturally cloudy appearance and fuller texture which allows it to stand up to spicy foods like Thai noodle salads and Cuban sandwiches. The beer is best served in a tall, wide-mouthed glass which opens up the aromas of the beer and showcases its beautiful long-lasting head of white foam."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,54,1
+minocqua_brewing_company-40_golden_lager,0,0,244873887745,"{""name"":""#40 Golden Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+appalachian_brewing_company-susquehanna_stout,0,0,244362772483,"{""name"":""Susquehanna Stout"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This representation of the classic Irish Dry Stout has a smooth roast flavor due to the use of specially roasted barley. The barley kernels are kilned at very high temperatures until they are dark brown to black in color. \r\nThe Susquehanna River is named after the Susquehannock Indians who settled in our area. This shallow river is over one mile wide in the Harrisburg area and flows from southern New York through Pennsylvania to the Chesapeake Bay."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
+commonwealth_brewing_1-famous_porter,0,0,244480016386,"{""name"":""Famous Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,15,1
+brouwerij_bavik_de_brabandere-petrus_gouden_tripel_ale,0,0,244478967808,"{""name"":""Petrus Gouden Tripel Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+heller_bru_trum,0,0,244750811138,"{""name"":""Heller Bru Trum"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-56060"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dominikanerstrae 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.892,""lon"":10.8853}}",1,41,1
+portsmouth_brewery-5_c_s_ipa,0,0,244999782401,"{""name"":""5 C's IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a West Coast IPA is golden, medium-bodied ale that is very hop forward. The use of Cascade, Chinook, Columbus, Centennial and Crystal hops makes this beer a hophead’s dream."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+brouwerij_van_den_bossche-buffalo_belgian_stout,0,0,244489781249,"{""name"":""Buffalo Belgian Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_den_bossche"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+schloss_eggenberg-doppelbock_dunkel,0,0,244989689857,"{""name"":""Doppelbock Dunkel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""DoppelBock Dunkel has a pleasant full and creamy body, with a cofeeish aroma. Nicely warming with toffeelike malty sweetness, balanced by a hoppy-bitterness in the finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,21,1
+storm_brewing-precipitation_pilsner,0,0,245108047874,"{""name"":""Precipitation Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true North German Style Pilsner. Light in body and packed full of Czech Saaz hops. The distinctive Pilsner aroma and dry, refreshing taste make a great accompaniment to a hot Vanouver day."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,23,1
+egan_brewing-wilsteraner_altbier,0,0,244610170880,"{""name"":""Wilsteraner Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
+brasserie_de_l_abbaye_de_scourmont_trappistes,0,0,244370833410,"{""name"":""Brasserie de l'Abbaye de Scourmont (Trappistes)"",""city"":""Chimay-Forges"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-060-21-30-63"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Route de Rond Point 294""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.9842,""lon"":4.3111}}",1,33,1
+lion_nathan_australia_hunter_street-hahn_special_vintage_2000,0,0,244874608640,"{""name"":""Hahn Special Vintage 2000"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_nathan_australia_hunter_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,44,1
+mill_creek_brewpub-penitentiary_porter,0,0,244874412033,"{""name"":""Penitentiary Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mill_creek_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,43,1
+carver_brewing_co-colorado_trail_nut_brown_ale,0,0,244485718019,"{""name"":""Colorado Trail Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The slightly roasted flavor and nutty palate with a hint of hops make this beer subtle and drinkable."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,28,1
+founders_brewing-double_trouble_imperial_ipa,0,0,244608466944,"{""name"":""Double Trouble Imperial IPA"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,5,1
+jolly_pumpkin_artisan_ales-oro_de_calabaza,0,0,244735213569,"{""name"":""Oro de Calabaza"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the Franco-Belgian tradition of strong golden ales. Spicy and peppery with a gentle hop bouquet and the beguiling influence of wild yeast."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,3,1
+alpine_beer_company,0,0,244378959873,"{""name"":""Alpine Beer Company"",""city"":""Alpine"",""state"":""California"",""code"":""91901"",""country"":""United States"",""phone"":""1-619-445-2337"",""website"":""http://www.alpinebeerco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2351 Alpine Boulevard""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.8355,""lon"":-116.765}}",1,55,1
+captain_lawrence_brewing_company-sun_block_belgian_style_witte,0,0,244496596993,"{""name"":""Sun Block - Belgian Style Witte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer was created as a summer thirst quencher, because we all know how hot and humid it can get in New York during the summer. We brewed this beer using both coriander and orange peel in the boil to increase both the aroma and flavor of this beer. Make sure you don’t get burned this summer, drink your Sun Block."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,52,1
+beach_brewing,0,0,244360806401,"{""name"":""Beach Brewing"",""city"":""Orlando"",""state"":""Florida"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":28.5383,""lon"":-81.3792}}",1,10,1
+birra_forst,0,0,244361396226,"{""name"":""Birra Forst"",""city"":""Lagundo / Algund"",""state"":"""",""code"":""0"",""country"":""Italy"",""phone"":""39-0473-260111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Via Val Venosta, 8""]}",1,12,1
+lwenbru_zrich,0,0,244857438208,"{""name"":""Lwenbru Zrich"",""city"":""Zrich"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brandschenkestrasse 150""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.3642,""lon"":8.5245}}",1,1,1
+arthur_guinness_son-guinness_extra_stout,0,0,244379942913,"{""name"":""Guinness Extra Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arthur_guinness_son"",""updated"":""2010-07-22 20:00:20"",""description"":""GUINNESS® Extra Stout is steeped in heritage - a whole costume drama in a bottle. It"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
+brouwerij_alken_maes-grimbergen_blonde,0,0,244478050306,"{""name"":""Grimbergen Blonde"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_alken_maes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+nordsj_grdsbryggeri,0,0,244875788290,"{""name"":""Nordsj Grdsbryggeri"",""city"":""Motala"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":58.5366,""lon"":15.0373}}",1,46,1
+manayunk_brewery_and_restaurant-schuylkill_punch,0,0,244872904705,"{""name"":""Schuylkill Punch"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""Ruby colored ale fermented with over 500 pounds of real black and red raspberries for a distinct berry aroma and a tart, sweet flavor. This beer is gently filtered to preserve its delicate profile and is made with both Belgian Ale Yeast and our Proprietary Lager Strain."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,40,1
+wild_goose_brewery_llc,0,0,245746761729,"{""name"":""Wild Goose Brewery, LLC"",""city"":""Fredrick"",""state"":""Maryland"",""code"":""21703"",""country"":""United States"",""phone"":""(301) 694-7899"",""website"":""http://www.wildgoosebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4607 Wedgewood Blvd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3628,""lon"":-77.4265}}",1,20,1
+crabby_larry_s_brewpub_steak_crab_house-calico_jack_amber_ale,0,0,244477067264,"{""name"":""Calico Jack Amber Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, malty beer made with classic American hops for a full and complex flavor. Very smooth in aroma and palate. The caramel overtones leave a nice finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+erie_brewing_company-fallenbock,0,0,244609318912,"{""name"":""Fallenbock"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""History states that the first Oktoberfest was on October 12, 1810: For the commemoration of the marriage between Crown Prince Ludwig and Princess Therese of Saxe-Hildburghausen. Keeping up with Erie Brewing’s German brewing influence, our brewer creates Fallenbock, a classic Oktoberfest lager that is a harmonious marriage of classic malts and hops that has a wonderful clean and crisp flavor to celebrate Autumn and Oktoberfest."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
+brouwerij_boon,0,0,244479426561,"{""name"":""Brouwerij Boon"",""city"":""Lembeek"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-2-356-66-44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Fonteinstraat 65""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7123,""lon"":4.2197}}",1,14,1
+beach_chalet_brewery,0,0,244380467202,"{""name"":""Beach Chalet Brewery"",""city"":""San Francisco"",""state"":""California"",""code"":""94121"",""country"":""United States"",""phone"":""1-415-386-8439"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1000 Great Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7694,""lon"":-122.51}}",1,59,1
+grumpy_troll_restaurant_and_brewery,0,0,244734689281,"{""name"":""Grumpy Troll Restaurant and Brewery"",""city"":""Mount Horeb"",""state"":""Wisconsin"",""code"":""53572"",""country"":""United States"",""phone"":""1-608-437-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""105 South Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0081,""lon"":-89.7383}}",1,2,1
+hook_norton_brewery-best_bitter,0,0,244753694722,"{""name"":""Best Bitter"",""abv"":3.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+hofmark_brauerei,0,0,244734230530,"{""name"":""Hofmark Brauerei"",""city"":""Cham"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9971-/-3301"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofmarkstrae 15""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.1672,""lon"":12.6399}}",1,0,1
+carlsberg_bryggerierne-elephant,0,0,244498104321,"{""name"":""Elephant"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlsberg_bryggerierne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,56,1
+bell_s_brewery_inc-bell_s_batch_9000,0,0,244363100161,"{""name"":""Bell's Batch 9000"",""abv"":12.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Black, dense, and rich, this is a great ale for the cellar.\"" This big brew is made with molasses and brewer's licorice."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,17,1
+brewdog_ltd-rip_tide,0,0,244490174466,"{""name"":""Rip Tide"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong, silky smooth imperial stout with a deep, dark ruby appearance. Mocha, bitter chocolate, liquorice and dark cherry flavours prevail, before the balanced, warming and encapsulating finish.\r\n\r\nA contemporary Scottish take on an age old Russian classic style originally brewed for the Tsars. Our interpretation brings together hops from both sides of the Atlantic, amazing flavoured malts and dark sugars.\r\n\r\nLike the original BrewDog, this beer would never bite you but would much rather give you a lick on the face. Look Out!\r\n\r\nServing Suggestion: Enjoy with an air of aristocratic nonchalance"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,39,1
+elysian_brewery_public_house-cyclops_barleywine,0,0,244607811585,"{""name"":""Cyclops Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+sierra_nevada_brewing_co-bigfoot_1999,0,0,244990148608,"{""name"":""Bigfoot 1999"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+green_bay_brewing-marzenbier,0,0,244736065537,"{""name"":""Marzenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,6,1
+asahi_breweries-kuronama,0,0,244378632194,"{""name"":""Kuronama"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""asahi_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
+mountain_sun_pub_brewery-altmans_alt,0,0,244873887746,"{""name"":""Altmans Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mountain_sun_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
+arcadia_brewing-cocoa_loco,0,0,244362838016,"{""name"":""Cocoa Loco"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""arcadia_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Great chocolate stoudt."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,16,1
+copper_dragon_brewing,0,0,244480081920,"{""name"":""Copper Dragon Brewing"",""city"":""Carbondale"",""state"":""Illinois"",""code"":""62901"",""country"":""United States"",""phone"":""1-618-549-3348"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.7273,""lon"":-89.2168}}",1,15,1
+brouwerij_bavik_de_brabandere-wittekerke,0,0,244478967809,"{""name"":""Wittekerke"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+holsten_brauerei-astra_urtyp,0,0,244750811139,"{""name"":""Astra Urtyp"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""holsten_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+prescott_brewing_company-liquid_amber,0,0,244999847936,"{""name"":""Liquid Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
+abbaye_de_leffe,0,0,244369195008,"{""name"":""Abbaye de Leffe"",""city"":""Dinant"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dinant""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.2606,""lon"":4.9122}}",1,31,1
+brown_street_brewery,0,0,244489781250,"{""name"":""Brown Street Brewery"",""city"":""Rhinelander"",""state"":""Wisconsin"",""code"":""54501"",""country"":""United States"",""phone"":""1-715-369-2100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 North Brown Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.638,""lon"":-89.4127}}",1,38,1
+slab_city_brewing-milkhouse_stout,0,0,244989689858,"{""name"":""Milkhouse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+stout_brothers_public_house-underground_ipa,0,0,245108113408,"{""name"":""Underground IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
+erie_brewing_company-misery_bay_ipa,0,0,244610170881,"{""name"":""Misery Bay IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The view from Oliver Perry Monument across Lake Erie’s historic Misery Bay provides a constant reminder of the hardships endured during the Battle of Lake Erie. Misery Bay IPA is brewed as a tribute to Misery Bay and Graveyard Pond, final resting place for many brave sailors and soldiers. Misery Bay IPA offers a complex malt profile loaded with American hops at 75 IBU’s, and finishes at 6.5 % alcohol by volume."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
+brasserie_de_la_senne,0,0,244370833411,"{""name"":""Brasserie de la Senne"",""city"":""Sint-Pieters-Leeuw"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-0497-/-93.23.75"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Victor Nonnemansstraat 40a""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7853,""lon"":4.2437}}",1,33,1
+little_apple_brewing-prairie_pale,0,0,244874608641,"{""name"":""Prairie Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+millstream_brewing-maifest,0,0,244874412034,"{""name"":""Maifest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,43,1
+cedar_brewing-helles_honey_bock,0,0,244485783552,"{""name"":""Helles Honey Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
+goose_island_beer_company_clybourn-honker_s_ale,0,0,244608466945,"{""name"":""Honker's Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""Honker’s Ale combines a spicy hop aroma with a rich malt middle to create a perfectly balanced ale that is immensely drinkable. A smooth, drinkable English Bitter for those looking for more from their beer."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,5,1
+krogh_s_restaurant_and_brewpub-old_krogh_oatmeal_stout,0,0,244735213570,"{""name"":""Old Krogh Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
+anheuser_busch-bud_ice_light,0,0,244379025408,"{""name"":""Bud Ice Light"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced in 1994."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+cedar_brewing-summer_alt,0,0,244496662528,"{""name"":""Summer Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
+bierbrouwerij_bavaria-hollandia,0,0,244360806402,"{""name"":""Hollandia"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+bj_s_restaurant_and_brewery-bj_s_annual_grand_cru,0,0,244361396227,"{""name"":""BJ's Annual Grand Cru"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,12,1
+magic_hat-jinx,0,0,244857438209,"{""name"":""Jinx"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""An ale for dancing bonfires and falling leaves.\r\nJinx prepares the bones for snow. It's a full bodied strong ale the color of maple's golden leaves in the season's fading sun. Finished with a touch of peat-smoked whiskey malt, Jinx offers sweet, toasty aromas of caramel, tea, and smoke. Deep flavors of dark candy sugar and warming alcohol notes are balanced by a spicy hop bitterness."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,1,1
+ballast_point_brewing-sculpin_india_pale_ale,0,0,244380008448,"{""name"":""Sculpin India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Sculpin IPA is a testament to our humble beginnings as Home Brew Mart. Founded in 1992, the Mart continues to be a catalyst for the San Diego brewing scene, setting the trend for handcrafted ales. Inspired by our customers, employees and brewers, the Sculpin IPA is bright with aromas of apricot, peach, mango and lemon. Its lighter body also brings out the crispness of the hops. This delicious Ballast Point Ale took a Bronze Medal at the 2007 Great American Beer Festival in the Pro Am category. The Sculpin fish has poisonous spikes on its fins that can give a strong sting. Ironically, the meat from a Sculpin is considered some of the most tasty. Something that has a sting but tastes great, sounds like a Ballast Point India Pale Ale."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
+brouwerij_strubbe,0,0,244478115840,"{""name"":""Brouwerij Strubbe"",""city"":""Ichtegem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-58-81-16"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Markt 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0923,""lon"":3.01}}",1,11,1
+oggi_s_pizza_and_brewing_vista-irish_stout,0,0,244875788291,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,46,1
+marquette_harbor_brewery_and_restaurant-amber_ale,0,0,244872904706,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marquette_harbor_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,40,1
+wild_river_brewing_and_pizza_cave_junction-nut_brown_ale,0,0,245746761730,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,20,1
+cucapa_brewing_company-cucapa_honey_ale,0,0,244477067265,"{""name"":""Cucapa Honey Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cucapa_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Craft Amber Ale, brewed using Honey from Northern Mexico."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+erie_brewing_company-mad_anthony_s_ale,0,0,244609318913,"{""name"":""Mad Anthony's Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Anthony Wayne adopted a military career at the outset of the American Revolutionary War, where his military exploits and fiery personality quickly earned him a promotion to the rank of brigadier general and the sobriquet of \""Mad Anthony\"". Erie Brewing Co’s Classic American Pale Ale features a balanced malt and hop flavor, which we feel the Nutty General would approve of despite his revolutionary tendencies."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+brouwerij_de_block-satan_red,0,0,244479426562,"{""name"":""Satan Red"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_block"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+blue_point_brewing,0,0,244380532736,"{""name"":""Blue Point Brewing"",""city"":""Patchogue"",""state"":""New York"",""code"":""11772"",""country"":""United States"",""phone"":""1-631-475-6944"",""website"":""http://www.bluepointbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""161 River Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7591,""lon"":-73.0215}}",1,59,1
+harpoon_brewery_boston-harpoon_munich_dark,0,0,244734689282,"{""name"":""Harpoon Munich Dark"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Harpoon Munich Dark is a blend of dark malts that creates a deeper hue than some other beers brewed in this style. The grains which create a malty chocolate-like flavor also add a warm malty nose that mingles with the subtle hop aroma. This medium bodied beer is balanced quite well with a moderately bitter hop finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
+hoppy_brewing_company-hoppy_face_amber_ale,0,0,244753760256,"{""name"":""Hoppy Face Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Is an award-winning, traditional, all-natural style of beer that falls under the category of a \""West Coast\"" India Pale Ale (IPA). Characterized by its high hop content, high alcohol content and deep amber color, Hoppy Face™ is brewed using water with a high mineral content. Using only the finest 2-row malted barley and great northwestern grown hops, this combination results in a clean, crisp, well-balanced beer. As usual, no artificial preservatives have been added to our beer during and/or after the brewing process...\r\nIt will put a smile on your face!!!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+hoppin_frog_brewery-hop_dam_triple_ipa,0,0,244734230531,"{""name"":""Hop Dam Triple IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Some say “bigger is better!”. At Hoppin’ Frog, we built a massive hop dam to handle the enormous amount of hops added to this colossal American Triple I.P.A. An intense experience of citrus and piney hop character is complimented by layers of rich malt flavor. Behold our new standard for hoppy beers."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,0,1
+cheshire_cat_brewery-ipa,0,0,244498104322,"{""name"":""IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cheshire_cat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
+bierbrouwerij_de_koningshoeven,0,0,244363100162,"{""name"":""Bierbrouwerij De Koningshoeven"",""city"":""Berkel-Enschot"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-013-5358147"",""website"":""http://www.latrappe.nl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Eindhovenseweg 3""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.544,""lon"":5.1285}}",1,17,1
+brouwerij_het_anker,0,0,244490240000,"{""name"":""Brouwerij Het Anker"",""city"":""Mechelen"",""state"":""Antwerpen"",""code"":"""",""country"":""Belgium"",""phone"":""32-015-28-71-47"",""website"":""http://www.hetanker.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Guido Gezellelaan 49""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.0325,""lon"":4.473}}",1,39,1
+elysian_brewery_public_house-the_wise_esb,0,0,244607877120,"{""name"":""The Wise ESB"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,4,1
+silver_gulch_brewing_company,0,0,244990148609,"{""name"":""Silver Gulch Brewing Company"",""city"":""Fox"",""state"":""Alaska"",""code"":""99708"",""country"":""United States"",""phone"":""(907) 452-2739"",""website"":""http://www.ptialaska.net/~gbrady/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Silver Gulch Brewing and Bottling Co. has been in operation since February 1998 in the small mining community of Fox, Alaska, located about 10 miles north of Fairbanks on the Steese Highway. Silver Gulch Brewing grew from brewmaster Glenn Brady's home-brewing efforts in 5-gallon batches to its current capacity of 24-barrel (750 gallon) batches."",""address"":[""2195 Old Steese Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":64.9583,""lon"":-147.622}}",1,22,1
+heller_bru_trum-aecht_schlenkerla_rauchbier_marzen,0,0,244736131072,"{""name"":""Aecht Schlenkerla Rauchbier Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+bamberger_mahr_s_bru-hell,0,0,244378697728,"{""name"":""Hell"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+nodding_head_brewpub-ich_bin_ein_berliner_weisse,0,0,244873887747,"{""name"":""Ich Bin Ein Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+bass_brewers,0,0,244362838017,"{""name"":""Bass Brewers"",""city"":""Burton-upon-Trent"",""state"":""Staffordshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01283)-513347"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""137 High Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.8046,""lon"":-1.6281}}",1,16,1
+de_halve_maan-straffe_hendrik_bruin,0,0,244612726784,"{""name"":""Straffe Hendrik Bruin"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+brouwerij_liefmans-liefmans_kriekbier,0,0,244479033344,"{""name"":""Liefmans Kriekbier"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_liefmans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,13,1
+hook_norton_brewery-twelve_days,0,0,244750876672,"{""name"":""Twelve Days"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
+pyramid_alehouse_brewery_and_restaurant_seattle-tilted_kilt_ale,0,0,244999913472,"{""name"":""Tilted Kilt Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,47,1
+abita_brewing_company-satsuma_harvest_wit,0,0,244369260544,"{""name"":""Satsuma Harvest Wit"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Real Louisiana Satsumas, golden wheat, oats and the finest barley create Abita Satsuma Harvest Wit. Pale and cloudy, like the haze on a hot summer day, this white beer has a sweet and subtle citrus flavor with a touch of spice that is cool and refreshing. \r\n\r\nAbita Satsuma Harvest Wit is very versatile and can compliment a number of dishes. This brew pairs well with salads, fish, shrimp and lobster, as long as the dishes are not too spicy. Thai dishes, which often have citric notes in their flavor profile, would also perfectly compliment the orange flavors in Abita Satsuma Harvest Wit."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,31,1
+c_b_potts_of_cheyenne-big_horn_buttface_amber,0,0,244489846784,"{""name"":""Big Horn Buttface Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
+southern_star_brewing_company-buried_hatchet_stout,0,0,245107130368,"{""name"":""Buried Hatchet Stout"",""abv"":8.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_star_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Jet-black in color, this monster smells of coffee and chocolate. The taste is much of the same, with hints of creamy toffee and roasted malt. Smooth and delicious, this medium bodied ale is all about the malts, but has enough hop bitterness to be balanced."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+taylor_brewing-palpitations_porter,0,0,245108113409,"{""name"":""Palpitations Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,23,1
+fish_brewing_company_fish_tail_brewpub-monkfish_tripel,0,0,244610236416,"{""name"":""Monkfish Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+brasserie_de_saint_sylvestre,0,0,244370898944,"{""name"":""Brasserie De Saint Sylvestre"",""city"":""St-Sylvestre-Cappel"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.28.40.15.49"",""website"":""http://www.brasserie-st-sylvestre.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""121, rue de la Chapelle""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7975,""lon"":2.5412}}",1,33,1
+marble_brewery,0,0,244874674176,"{""name"":""Marble Brewery"",""city"":""Albuquerque"",""state"":""New Mexico"",""code"":""87102"",""country"":""United States"",""phone"":""505.243.2739"",""website"":""http://marblebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Marble Brewery is located in beautiful Downtown Albuquerque area, conveniently located near Interstate 25 and just a stone's throw from the railroad tracks. Our spacious tap room and extensive bar is complimented by an equally expansive patio that offers plenty of shaded, picnic-style seating. For both beer lovers and curious and thirsty tourists, a visit to Marble Brewery is a must when in Albuquerque."",""address"":[""111 Marble Ave NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.0928,""lon"":-106.647}}",1,44,1
+millstream_brewing-schokolade_bock,0,0,244874477568,"{""name"":""Schokolade Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,43,1
+cervecera_hondurea,0,0,244485783553,"{""name"":""Cervecera Hondurea"",""city"":""San Pedro Sula"",""state"":"""",""code"":"""",""country"":""Honduras"",""phone"":""504-550-0100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Carretera a Puerto Corts""]}",1,28,1
+goose_island_beer_company_clybourn,0,0,244608532480,"{""name"":""Goose Island Beer Company - Clybourn"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60614"",""country"":""United States"",""phone"":""1-800-466-7363"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1800 North Clybourn Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9137,""lon"":-87.6543}}",1,5,1
+lakefront_brewery-eastside_dark,0,0,244735279104,"{""name"":""Eastside Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+anheuser_busch-green_valley_stone_mill_pale_ale,0,0,244379025409,"{""name"":""Green Valley Stone Mill Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+clipper_city_brewing_co-loose_cannon_hop3_ale,0,0,244496662529,"{""name"":""Loose Cannon Hop3 Ale"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Loose Cannon Hop3 Ale - called Hop 3 (hop cubed) ale to reflect the enormous amount of hops in this beer: over 3 pounds per barrel! Also the beer is hopped 3 ways - in the kettle, in the hop back, and dry hopped. Winner of the Overall Best of Show Award in the Maryland State Governor's Cup 2005 Competition and voted the #1 IPA by Mahaffey’s Pub. We are very excited about this new product and have decided to make this beer available year round!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
+brasserie_de_la_senne-stouterik_the_brussels_stout,0,0,244360871936,"{""name"":""Stouterik / The Brussels Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_la_senne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+21st_amendment_brewery_cafe-21a_ipa,0,0,244376535040,"{""name"":""21A IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep golden color. Citrus and piney hop aromas. Assertive malt backbone supporting the overwhelming bitterness. Dry hopped in the fermenter with four types of hops giving an explosive hop aroma. Many refer to this IPA as Nectar of the Gods. Judge for yourself. Now Available in Cans!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
+blue_cat_brew_pub,0,0,244361461760,"{""name"":""Blue Cat Brew Pub"",""city"":""Rock Island"",""state"":""Illinois"",""code"":""61201"",""country"":""United States"",""phone"":""1-309-788-8247"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""113 18th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5118,""lon"":-90.5746}}",1,12,1
+main_street_beer_company_1-sweet_stout,0,0,244857503744,"{""name"":""Sweet Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_beer_company_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
+big_bang_brewery_closed-space_aged_lager,0,0,244380008449,"{""name"":""Space-Aged Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_bang_brewery_closed"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+browar_okocim,0,0,244478115841,"{""name"":""Browar Okocim"",""city"":""Brzesko"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-0146865000"",""website"":""http://www.okocim.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Browarna 14""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.9622,""lon"":20.6003}}",1,11,1
+oggi_s_pizza_and_brewing_vista,0,0,244875853824,"{""name"":""Oggi's Pizza and Brewing - Vista"",""city"":""Vista"",""state"":""California"",""code"":""92083"",""country"":""United States"",""phone"":""1-760-295-3581"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""425 South Melrose Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.2029,""lon"":-117.255}}",1,46,1
+mendocino_brewing_hopland-black_hawk_stout,0,0,244872970240,"{""name"":""Black Hawk Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
+woodforde_s_norfolk_ales-norfolk_nog_old_dark_ale,0,0,245746827264,"{""name"":""Norfolk Nog Old Dark Ale"",""abv"":99.99,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""woodforde_s_norfolk_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,20,1
+de_leyerth_brouwerijen-urthel_tonicum_finiboldhus,0,0,244609646592,"{""name"":""Urthel Tonicum Finiboldhus"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+f_x_matt_brewing-saranac_pale_ale,0,0,244609384448,"{""name"":""Saranac Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A beer that would make the English jealous! This true English Pale Ale is rich and fruity, yet finishes crisp. You'll love the copper amber color and medium body."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+brouwerij_liefmans,0,0,244479492096,"{""name"":""Brouwerij Liefmans"",""city"":""Oudenaarde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-055-31-13-92"",""website"":""http://www.liefmans.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 Aalststraat""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8439,""lon"":3.617}}",1,14,1
+boscos_memphis_brewing-dunkel,0,0,244380532737,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boscos_memphis_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+heartland_brewery_union_square-indiana_pale_ale,0,0,244734754816,"{""name"":""Indiana Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
+hoptown_brewing-copper_wheat,0,0,244753825792,"{""name"":""Copper Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoptown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+issaquah_brewhouse-oak_stout,0,0,244734230532,"{""name"":""Oak Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+costal_extreme_brewing_company,0,0,244498104323,"{""name"":""Costal Extreme Brewing Company"",""city"":""Middletown"",""state"":""Rhode Island"",""code"":""2842"",""country"":""United States"",""phone"":""(401) 849-5232"",""website"":""http://www.newportstorm.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""307 Oliphant Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.537,""lon"":-71.2796}}",1,56,1
+big_sky_brewing-moose_drool_brown_ale,0,0,244363100163,"{""name"":""Moose Drool Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""It's chocolate brown in color with a creamy texture. A malty beer with just enough hop presence to keep it from being too sweet. The aroma mostly comes from the malt with a hint of spice added by the hops. Moose Drool is brewed with pale, caramel, chocolate, and whole black malts; and Kent Goldings, Liberty, and Willamette hops. It has an original gravity of 13 degrees Plato, and is 4.2% alcohol by weight, 5.3% by volume."",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
+bullfrog_brewery-smoked_porter,0,0,244490240001,"{""name"":""Smoked Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, RICH dark ale with a complex combination of beechwood smoked malts, chocolate, coffee and caramel flavors rounding out the beers smooth creamy body."",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
+engine_house_9-imperial_pale,0,0,244607877121,"{""name"":""Imperial Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
+socorro_springs_brewing,0,0,245107458048,"{""name"":""Socorro Springs Brewing"",""city"":""Socorro"",""state"":""New Mexico"",""code"":""87801"",""country"":""United States"",""phone"":""1-505-838-0650"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1012 North California Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.0701,""lon"":-106.893}}",1,22,1
+illinois_brewing,0,0,244736131073,"{""name"":""Illinois Brewing"",""city"":""Bloomington"",""state"":""Illinois"",""code"":""61701"",""country"":""United States"",""phone"":""1-309-829-2805"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 North Center Street #111""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.4787,""lon"":-88.9946}}",1,6,1
+bandana_brewery-anniversary_ale,0,0,244378697729,"{""name"":""Anniversary Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,54,1
+northwoods_brewpub_grill-white_weasel_beer,0,0,244873953280,"{""name"":""White Weasel Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+bear_republic_brewery-heritage_scottish_ale,0,0,244362838018,"{""name"":""Heritage Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,16,1
+de_leyerth_brouwerijen-urthel_hop_it,0,0,244612792320,"{""name"":""Urthel Hop-It"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,15,1
+brouwerij_roman-ename_tripel,0,0,244479033345,"{""name"":""Ename Tripel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_roman"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+independence_brewing_co-jasparilla,0,0,244750876673,"{""name"":""Jasparilla"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brilliantly golden, Jasperilla is a unique take on an old ale. Biscuity malt flavors meld with subtle plum and berry notes, produced by a special blend of English Old Ale and Chico yeasts. Brewed once a year, and aged for six months prior to release, the Jasperilla is smooth despite its 9% abv.\r\nJasper dressed as Hosehead from Strange Brew\r\n\r\nWe named this beer after our dog Jasper because he has brought so much joy to our lives. We got Jasper from a local dog rescue group called Mixed Breed Rescue. He has been a constant source of smiles and kept our spirits high through many late nights and long hours at the brewery.\r\n\r\nJasperilla is so good and smooth that you'll beg like a dog for more, roll over for a belly rub, howl at the moon...you get the picture."",""style"":""Old Ale"",""category"":""British Ale""}",1,41,1
+rahr_sons_brewing_company-rahr_s_bucking_bock,0,0,244999913473,"{""name"":""Rahr's Bucking Bock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Bucking Bock - it's a traditional German Spring Bock Beer - golden in color and mildly hopped...... Kick'n in at 8% alcohol - it has a smooth malty character that will surely thaw you out after a long cold winter. Spring is here and so is Rahr's Bucking Bock!"",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,47,1
+amherst_brewing_company-cascade_ipa,0,0,244369326080,"{""name"":""Cascade IPA"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Light in color, medium body, with a hop bitterness and Cascade hop finish."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
+captain_lawrence_brewing_company-captain_lawrence_xtra_gold,0,0,244489846785,"{""name"":""Captain Lawrence Xtra Gold"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is the result of the marriage between two very distinct beer styles; the Belgian Tripel & American IPA. We have taken the best qualities from both styles and allowed them to shine through. The fruity and spicy notes from the imported Belgian yeast strain & the pungent flavors and aromas of the American grown Amarillo hops flow seamlessly together to create this flavorful ale. Straight from the Captain’s cellar to yours, we hope you enjoy."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,38,1
+southern_tier_brewing_co-farmer_s_tan_imperial_pale_lager,0,0,245107195904,"{""name"":""Farmer's Tan Imperial Pale Lager"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Neolithic humans evolved from nomadic hunters into a more settled agricultural society, changing life forever. The ‘founder’ crops they raised included wheat and barley. It is little surprise that the first examples of brewing appeared during this age.\r\n\r\nBrewers owe much to the epoch. Similarly, we thank our farmer friends of today for cultivating the ingredients the are responsible for the beers we now enjoy. Their laborious days spent ourdoors under the hot sun earn them respect, as well as a mark of distinction: the farmer's tan. Yes, the inevitable red and white hallmark of hard work."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,21,1
+terrapin_beer_company-terrapin_coffee_oatmeal_imperial_stout,0,0,245108113410,"{""name"":""Terrapin Coffee Oatmeal Imperial Stout"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Black as night, this coffee stout is thick, rich and full of real coffee flavor. Brewed with the Terrapin Wake-n-Bake coffee blend created by Terrapin & Jittery Joe’s Coffee."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,23,1
+fitger_s_brewhouse_brewery_and_grill-witchtree_esb,0,0,244610236417,"{""name"":""Witchtree ESB"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+brasserie_du_bouffay-ambr,0,0,244370898945,"{""name"":""Ambr"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bouffay"",""updated"":""2011-10-04 00:25:39"",""description"":"""",""style"":""Out of Category"",""category"":""Other Style""}",1,33,1
+marzoni_s_brick_oven_brewing_co-locke_mountain_light,0,0,244874674177,"{""name"":""Locke Mountain Light"",""abv"":3.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Refreshing Light-Bodied Golden Lager"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,44,1
+minocqua_brewing_company,0,0,244874477569,"{""name"":""Minocqua Brewing Company"",""city"":""Minocqua"",""state"":""Wisconsin"",""code"":""54548"",""country"":""United States"",""phone"":""1-715-356-2600"",""website"":""http://www.minocquabrewingcompany.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""238 Lake Shore Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.8722,""lon"":-89.7097}}",1,43,1
+coast_brewing-beau_rivage_bock,0,0,244485783554,"{""name"":""Beau Rivage Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
+granite_city_food_brewery_saint_cloud-london_banker_esb,0,0,244735737856,"{""name"":""London Banker ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+left_coast_brewing-hop_juice_double_ipa,0,0,244735279105,"{""name"":""Hop Juice Double IPA"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Here at Left Coast Brewing Co. we pride ourselves on being one of the first breweries to pioneer a Double IPA style beer. In 2003, we brewed our first Double IPA, and haven't looked back since. This hop monster uses Premium American 2- Row and a touch of light crystal malt to create a solid malt foundation. The recipe calls for hops to be used in every step of the brewing process; in the mash, in a hop back, in the fermenter, and in the bright tanks. We use hop extract, hop pellets and hop flowers, hence the name Hop Juice. Hop Juice spends more than 4 weeks dry hopping in the fermenter and the bright beer tank. It is approximately 9.4% abv and has massive IBUs. Hop usage is over 4lbs per barrel. Hopeheads, step up to the plate!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,3,1
+atwater_block_brewing-salvation,0,0,244379025410,"{""name"":""Salvation"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our version of India Pale Ale. Brewed with European malts and Northwest hops and then generously Dry Hopped with Cascade Hops for a nice citrus finish. Truly a Salvation for all Hop Heads."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
+coast_brewing-biloxi_light,0,0,244496662530,"{""name"":""Biloxi Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
+brasseries_kronenbourg,0,0,244477591552,"{""name"":""Brasseries Kronenbourg"",""city"":""Strasbourg"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.88.27.44.88"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""68 route d'Oberhausbergen""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.593,""lon"":7.7149}}",1,10,1
+alaskan_brewing-alaskan_esb,0,0,244376600576,"{""name"":""Alaskan ESB"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Extra Special Bitter Ale. Alaskan ESB is darker and hoppier and is brewed and fermented at different temperatures than our popular Alt-style Amber. It has an exquisite copper color derived from Crystal malt and an aggressive, yet pleasant hop character.\r\n\r\nMalty with roasted overtones, Alaskan ESB has a crisp finish resulting from the use of premium Northwest hops.\r\n\r\nAlaskan ESB is made from glacier-fed water and a generous blend of the finest quality European and Pacific Northwest hop varieties and premium two-row and specialty malts. Our water originates in the 1,500 square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,49,1
+brasserie_clarysse-st_hermes_abbey_ale,0,0,244361461761,"{""name"":""St.Hermes Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_clarysse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+main_street_station_casino_brewery_and_hotel,0,0,244857569280,"{""name"":""Main Street Station Casino, Brewery and Hotel"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89101"",""country"":""United States"",""phone"":""1-800-713-8933"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 North Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.1755,""lon"":-115.145}}",1,1,1
+blue_cat_brew_pub-river_back_jack_ipa,0,0,244380008450,"{""name"":""River Back Jack IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
+bube_s_brewery-bube_s_kolsch,0,0,244478115842,"{""name"":""Bube's Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Clean, crisp, easy drinking Colonge, Germany style ale. Kolsch's smoothness comes from special Kolsch yeast, German Hallertau hops, a slow fermentation and lager like conditioning.""}",1,11,1
+on_tap_bistro_brewery-patriot_pale_ale,0,0,244875853825,"{""name"":""Patriot Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+michigan_brewing-golden_pheasant,0,0,244872970241,"{""name"":""Golden Pheasant"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
+youngs_company_brewery-oatmeal_stout,0,0,245746827265,"{""name"":""Oatmeal Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,20,1
+devil_s_canyon-full_boar,0,0,244609712128,"{""name"":""Full Boar"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""devil_s_canyon"",""updated"":""2011-07-28 19:06:02"",""description"":"""",""style"":""Out of Category"",""category"":""Other Style""}",1,8,1
+faultline_brewing_1-belgian_abbey,0,0,244609384449,"{""name"":""Belgian Abbey"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+brouwerij_lindemans-framboise,0,0,244479492097,"{""name"":""Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,14,1
+boston_beer_company-samuel_adams_hallertau_imperial_pilsner,0,0,244380598272,"{""name"":""Samuel Adams Hallertau Imperial Pilsner"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An amazing treat for hops lovers.\r\n\r\nSamuel Adams Hallertau Imperial Pilsner is a celebration of the extraordinary Hallertau Mittelfrueh hop variety. This rare Noble Bavarian hop, considered to be one of the best in the world, is prized for its quality and aromatic characteristics.\r\n\r\nThe beer, which is a deep golden color with a rich, creamy head, gives off an intense and complex Noble hop aroma unlike any other brew. With the first sip, beer enthusiasts will experience an explosion of hop flavor. The intensity of deep citrus, spicy Noble hop flavor is balanced with the slight sweetness from the malt. Due to the quality of the hops, this beer remains balanced and smoothly drinkable from beginning to end. The lingering \""hop signature\"" is an amazing treat for hops lovers.""}",1,59,1
+herkimer_pub_brewery-kolsch,0,0,244734754817,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""herkimer_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+hoptown_brewing-paint_the_town_red,0,0,244753825793,"{""name"":""Paint the Town Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoptown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+jack_russell_brewing-best_bitter_ale,0,0,244734296064,"{""name"":""Best Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+denmark_brewing-continental_pilsner,0,0,244630093824,"{""name"":""Continental Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denmark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+blue_cat_brew_pub-off_the_rail_pale_ale,0,0,244363165696,"{""name"":""Off The Rail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_cat_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+burgerbrau_wolnzach-nikolausbier_altfrankisches_dunkel,0,0,244490240002,"{""name"":""Nikolausbier Altfränkisches Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burgerbrau_wolnzach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+fish_brewing_company_fish_tail_brewpub-old_woody_2005,0,0,244607877122,"{""name"":""Old Woody 2005"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,4,1
+southampton_publick_house-double_white,0,0,245107523584,"{""name"":""Double White"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":""What do brewmasters do in their free time? If you're Phil Markowski, the obsesseive brewmaster of Southampton, you brew at home, of course! Phil turned his fascination with Belgian-style white ales into a quest to master one of the most challenging beers to brew. Using rustic ingredients like un-malted wheat, Phil experimented over his stove until he felt it was perfect. Take one taste and you'll agree, Phil got it \""white.\"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,22,1
+inbev,0,0,244736196608,"{""name"":""InBev"",""city"":""Leuven"",""state"":"""",""code"":""3000"",""country"":""Belgium"",""phone"":"""",""website"":""http://www.inbev.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In a few words InBev is the world's leading brewer, realizing 14.4 billion euro in 2007. The company has a strong, balanced portfolio, holding the number one or number two position in over 20 key markets more than any other brewer. It has a key presence in both developed and developing markets. Headquartered in Leuven, Belgium, InBev employs almost 89 000 people worldwide. With sales in over 130 countries, the company works through six operational zones: North America, Western Europe, Central and Eastern Europe, Asia Pacific, Latin America North, and Latin America South."",""address"":[""Brouwerijplein 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8865,""lon"":4.7069}}",1,6,1
+bell_s_brewery_inc-expedition_stout,0,0,244378763264,"{""name"":""Expedition Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""The vintage port of American stout. A good ale for the cellar. Well suited for November storms and trips across the Sahara."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,54,1
+oaken_barrel_brewing-razz_wheat,0,0,244873953281,"{""name"":""Razz-Wheat"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
+bell_s_brewery_inc-big_porch_ale,0,0,244362838019,"{""name"":""Big Porch Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is brewed especially for the Grand Hotel located on Mackinaw Island, Michigan."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
+denver_chophouse_and_brewery-pale_ale,0,0,244612857856,"{""name"":""Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
+brouwerij_st_bernardus-abt_12,0,0,244479098880,"{""name"":""Abt 12"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""The absolute top quality in the hierarchy of the St. Bernardus beers. It is also the beer with the highest alcohol content (10.50 %).\r\nA dark ivory coloured beer with a high fermentation. \r\n\r\nThe show piece of the brewery. Thanks to its soft and unconditionally genuine aroma, the beer can be smoothly tasted. The Abt has a very fruity flavour."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,13,1
+iron_hill_brewery_wilmingon,0,0,244750876674,"{""name"":""Iron Hill Brewery - Wilmingon"",""city"":""Wilmington"",""state"":""Delaware"",""code"":""19805"",""country"":""United States"",""phone"":""1-302-658-8200"",""website"":""http://www.ironhillbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We're passionate about producing distinctive, full-flavored handcrafted beers, accompanied by freshfromscratch New American cuisine in a comfortable, casual atmosphere. Our goal has always been to provide food and beer that is inspired, consistently crafted and presented by a knowledgeable and courteous service staff."",""address"":[""620 South Madison Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.745,""lon"":-75.5561}}",1,41,1
+rahr_sons_brewing_company-rahr_s_summertime_wheat,0,0,244999913474,"{""name"":""Rahr's Summertime Wheat"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""There is nothing more refreshing than a cold SUMMERTIME WHEAT at the end of a hot Texas day. This refreshing, lightly hopped ale has unique banana and clove-like characteristics. It is unfiltered so the yeast character comes through with a light but full body."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
+anchor_brewing-christmas_ale_2003,0,0,244369326081,"{""name"":""Christmas Ale 2003"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+cervecera_jerome-cerveza_negra,0,0,244489846786,"{""name"":""Cerveza Negra"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_jerome"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+stone_brewing_co-vertical_epic_10_10_10,0,0,245107261440,"{""name"":""Vertical Epic 10.10.10"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-12-20 15:55:46"",""description"":""Fermented with the legendary Ardennes strain of Belgian yeast, 10.10.10 is a Belgian Strong Pale Ale brewed with pale malt and triticale (a cross of wheat and rye), hopped with German Perle hops, and steeped with chamomile during the whirlpool stage. In secondary fermentation, we added a juice blend of Muscat, Gewurztraminer, and Sauvignon Blanc grape varieties."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,21,1
+the_cambridge_house,0,0,245108178944,"{""name"":""The Cambridge House"",""city"":""Granby"",""state"":""Connecticut"",""code"":""6035"",""country"":""United States"",""phone"":""(860) 653-BREW"",""website"":""http://www.cambridgebrewhouse.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The best brewery in the Connecticut river valley. Hands down! It serves 2 beers that have won a total of 3 gold medals at big beer fests."",""address"":[""357 Salmon Brook Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9658,""lon"":-72.793}}",1,23,1
+founders_hill_brewing-heritage_wheat,0,0,244610301952,"{""name"":""Heritage Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
+brauerei_spezial-rauchbier_marzen,0,0,244487684096,"{""name"":""Rauchbier Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_spezial"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+metropolitan_brewing,0,0,244874739712,"{""name"":""Metropolitan Brewing"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60640"",""country"":""United States"",""phone"":"""",""website"":""http://www.metrobrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5121 N Ravenswood Ave,""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.975,""lon"":-87.674}}",1,44,1
+moose_s_tooth_pub_and_pizzeria-dark_knight,0,0,244874543104,"{""name"":""Dark Knight"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Knight (Baltic Porter) A Baltic porter is kind of a cross between an English porter and an Imperial Stout. Ours features a rich maltiness with hints of caramel, toffee and chocolate in both the flavor and aroma. Restrained hopping contributes a smooth full finish.""}",1,43,1
+dark_horse_brewing_co-one_oatmeal_stout,0,0,244485849088,"{""name"":""One Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Number one in a series of five stouts produced to help ease you through the cold and grey midwestern winters. This beer is full bodied with hints of chocolate, roasted barley, coffee flavors and a nice creamy head."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,28,1
+granville_island_brewing_company-cypress_honey_lager,0,0,244735803392,"{""name"":""Cypress Honey Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+lift_bridge_brewery,0,0,244735279106,"{""name"":""Lift Bridge Brewery"",""city"":""Stillwater"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.liftbridgebrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.0565,""lon"":-92.8222}}",1,3,1
+augustiner_brau_munchen-dunkel,0,0,244379090944,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""augustiner_brau_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+coors_brewing_golden_brewery-coors_light,0,0,244496728064,"{""name"":""Coors Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coors Light is Coors Brewing Company's largest-selling brand and the fourth best-selling beer in the U.S. Introduced in 1978, Coors Light has been a favorite in delivering the ultimate in cold refreshment for more than 25 years. The simple, silver-toned can caught people's attention and the brew became nicknamed the \""Silver Bullet\"" as sales climbed."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,52,1
+brauhaus_faust,0,0,244477657088,"{""name"":""Brauhaus Faust"",""city"":""Miltenberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9371-/-9713-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hauptstrae 219""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.6993,""lon"":9.2492}}",1,10,1
+alaskan_brewing-winter_ale,0,0,244376600577,"{""name"":""Winter Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alaskan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""English Olde Ale. Traditionally malty with the warming sensation of alcohol, Olde Ales are brewed in the fall as winter warmers.\r\n\r\nBrewed in the style of an English Olde Ale, this ale balances the sweet heady aroma of spruce tips with the clean crisp finish of noble hops. Its malty richness is complemented by the warming sensation of alcohol.\r\n\r\nAlaskan Winter is made from glacier-fed water, Sitka spruce tips and a generous blend of the finest quality European and Pacific Northwest hop varieties and specialty malts. Our water originates in the 1,500-square-mile Juneau Ice Field and from the more than 90 inches of rainfall we receive each year."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,49,1
+brasserie_de_brunehaut-mont_st_aubert,0,0,244361527296,"{""name"":""Mont St. Aubert"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic Belgian Bière de Garde - full of fruity esters, alcohol phenols, Belgian malts, noble hops and a dry, refreshing after-taste. Award-wining Mont Saint-Aubert received 'World's Best\"" recognition in the Bière de Garde category during the 2009 World Beer Awards (London).\r\nIn 2008 Mont Saint-Aubert took Silver medals in the Belgian-Style Pale Strong Ale category at the Brewers Association World Beer Cup and the Australian International Beer Awards.""}",1,12,1
+meantime_brewing_company_limited-india_pale_ale,0,0,244857569281,"{""name"":""India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meantime_brewing_company_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+bonfire_brewery-promethean_porter,0,0,244380073984,"{""name"":""Promethean Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bonfire_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
+bull_bush_pub_brewery-fall_fest,0,0,244478181376,"{""name"":""Fall Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,11,1
+otter_creek_brewing_wolaver_s_organic_ales-otter_creek_imperial_india_pale_ale,0,0,244875853826,"{""name"":""Otter Creek Imperial India Pale Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally brewed for thirsty British troops stationed on the subcontinent of India, India Pale Ales had to withstand the sea voyage around Africa. Brewers need to take full advantage of two preservatives at the time: hops and alcohol. They increased their hopping rates, doubled their malt useage to increase alcohol content, and dry-hopped the brew before it set out on its voyage.\r\nOur Imperial IPA carries on this tradition- and then some! The fruity and citrusy hop aroma intermingles perfectly with an assertive malty backbone. Our brewers added a generous supply of hops to this brew throughout the entire process to provide an enormous hop flavor and balance the elevated alcohol content.\r\n\r\nThis beer is 11% alcohol by volume, and 135 IBU!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,46,1
+minocqua_brewing_company-beekeepers_honey_ale,0,0,244872970242,"{""name"":""Beekeepers Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+aberdeen_brewing-scottish_ale,0,0,244372275200,"{""name"":""Scottish Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aberdeen_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+dogfish_head_craft_brewery-olde_school_barleywine,0,0,244609777664,"{""name"":""Olde School Barleywine"",""abv"":15.04,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,8,1
+firehouse_brewing-barely_blond,0,0,244609384450,"{""name"":""Barely Blond"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+brouwerij_verhaeghe-echte_kriek,0,0,244479557632,"{""name"":""Echte Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_verhaeghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+boston_beer_works-ipa,0,0,244380598273,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+hofbru_kaltenhausen_salzachtal-edelweiss_dunkel_weissbier,0,0,244734754818,"{""name"":""Edelweiss Dunkel Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbru_kaltenhausen_salzachtal"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+humboldt_brewing-stout,0,0,244753825794,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+kessler_brewing-doppelbock,0,0,244734296065,"{""name"":""Doppelbock"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kessler_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,0,1
+deschutes_brewery-hop_trip_fresh_hop_pale_ale,0,0,244630159360,"{""name"":""Hop Trip Fresh Hop Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Fresh Hop Pale Ale is all about celebrating the hop harvest in the fall. Fresh picked hops have to be added to the brew immediately and in abundance. Roughly 270 pounds of Crystal hops from Doug Weathers' farm outside Salem, Oregon will be added to the 50 barrel batch in addition to some dry kilned whole flower hops. That adds up to approximately 5.5 pounds of hops per barrel brewed. Another deliciously interesting beer in our Bond Street Series."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
+boiler_room_brewpub,0,0,244363165697,"{""name"":""Boiler Room Brewpub"",""city"":""Laughlin"",""state"":""Nevada"",""code"":""89029"",""country"":""United States"",""phone"":""1-702-298-4000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2100 Casino Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.1584,""lon"":-114.573}}",1,17,1
+cedar_brewing-dunkelweisse,0,0,244490305536,"{""name"":""Dunkelweisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+fratellos_restaurant_and_brewery-oatmeal_stout,0,0,244607942656,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
+southampton_publick_house-english_pale_ale,0,0,245107589120,"{""name"":""English Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,22,1
+issaquah_brewhouse-bourbon_barrel_stout,0,0,244736196609,"{""name"":""Bourbon Barrel Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+big_river_brewing-pilsner,0,0,244378763265,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+okanagan_spring_brewery-premium_lager,0,0,244873953282,"{""name"":""Premium Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""okanagan_spring_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+boston_beer_company-samuel_adams_spring_ale,0,0,244362838020,"{""name"":""Samuel Adams Spring Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+deschutes_brewery-buzzsaw_brown,0,0,244612857857,"{""name"":""Buzzsaw Brown"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""By 1915, Bend, Oregon, was alive with the sound of the buzz saw, as two of the country's largest pine sawmills set up shop on the banks of the Deschutes River. The mills are gone now, but the smokestacks still stand testament to Bend's humble beginnings. \r\n\r\nBuzzsaw Brown is an easy-drinking beer that is refreshing after a hard day’s work. The timber mills in Bend may be closed, but whether your adventure includes a day of scaling rock faces, hitting 18 holes or skiing the slopes in spring, Buzzsaw Brown is the perfect end to a fun-filled day.\r\n\r\n“Buzzsaw Brown is one of my favorite beers,” says Deschutes Brewery Brewmaster Larry Sidor. “The unique combination of European and American malts makes it a very food friendly beer that pairs well with a wide variety of flavors.”"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
+brouwerij_st_bernardus-prior_8,0,0,244479098881,"{""name"":""Prior 8"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This noble delicious beer with a high fermentation has a ruby purple colour with a full malty and fruity taste (8% alcohol content). \r\n\r\nThis beer has a beautiful round froth due to the second fermentation with a taste that creates a perfect balance between sweet and sour."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,13,1
+james_page_brewing-iron_range_amber_lager,0,0,244750942208,"{""name"":""Iron Range Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""james_page_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
+railway_brewing-ipa_pale_ale,0,0,244999979008,"{""name"":""IPA Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""railway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+andechser_klosterbrauerei-weissbier_dunkel,0,0,244369391616,"{""name"":""Weißbier Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""andechser_klosterbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+circle_v_brewing-bullseye_bitter_esb,0,0,244489846787,"{""name"":""Bullseye Bitter ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""circle_v_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+straub_brewery,0,0,245107261441,"{""name"":""Straub Brewery"",""city"":""St. Mary's"",""state"":""Pennsylvania"",""code"":""15857"",""country"":""United States"",""phone"":""814-834-2875"",""website"":""http://www.straubbeer.com/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""303 Sorg Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4277,""lon"":-78.5539}}",1,21,1
+the_livery-double_paw,0,0,245108178945,"{""name"":""Double Paw"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""A single malt and single hop version of an American Brewers classic style. This is definitely our hoppiest beer and quickly becoming a hop head cult classic!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,23,1
+gasthaus_brauerei_max_moritz-hefeweizen,0,0,244610301953,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_brauerei_max_moritz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,9,1
+bridgeport_brewing-haymaker_extra_pale_ale,0,0,244487749632,"{""name"":""Haymaker Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+millstream_brewing-colony_oatmeal_stout,0,0,244874739713,"{""name"":""Colony Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millstream_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
+new_belgium_brewing-2_below,0,0,244874543105,"{""name"":""2° Below"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pull on your wool socks and crack open a 2° Below Ale. This tasty winter warmer started life as a small batch beer brewed for the Al Johnson Uphill Downhill – a telemark ski race in Crested Butte, Colorado. The Uphill Downhill celebrates the exploits of Al Johnson, letter carrier extraordinaire, who delivered mail by ski in the late 1800’s. Dry hopping during fermentation creates a floral nose with a hint of pepper and spicy, subtle undertones. 2° Below provides a bright, hoppy palate and a cheery warm afterglow."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,43,1
+deschutes_brewery-green_lakes_organic_ale,0,0,244618231808,"{""name"":""Green Lakes Organic Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Discover Deschutes Brewery’s intriguing amber ale, our Ode to Mother Earth. Experience its mellow malt profile intertwined with subtly surprising hop flavors. Green Lakes Organic Ale is brewed with five types of 100% organic malted barley and balanced with Liberty and Salmon-Safe Sterling hops. Easy to drink. Easy on the Environment. Downright Delicious. Who knew celebrating Mother Earth could taste so good.\r\n\r\nAfter working with Oregon Tilth for nearly six months, Deschutes Brewery received organic certification for its 50 barrel brew house and can now brew tasty organic ales for year-round enjoyment.\r\n\r\nFish need cool clean water. So do you. That’s why we sourced Salmon-Safe certified Sterling hops for our first organic beer. The way these flavorful, rich hops are grown makes sure that streams are shaded and there is not runoff to nearby waterways. That way the rivers stay cool and clean for migrating salmon. Not only is our Green Lakes beer organic, it helps protect our rivers as well."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
+great_lakes_brewing-eliot_ness_amber_lager,0,0,244735803393,"{""name"":""Eliot Ness Amber Lager"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber lager with rich, fragrant malt flavors balanced by crisp, noble hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+loaf_and_stein_brewing-red_ale,0,0,244858290176,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
+aviator_brewing_company,0,0,244379090945,"{""name"":""Aviator Brewing Company"",""city"":""Fuquay Varina"",""state"":""North Carolina"",""code"":""27526"",""country"":""United States"",""phone"":""(919)567-BEER"",""website"":""http://www.aviatorbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""209 Technology Park Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6197,""lon"":-78.8085}}",1,55,1
+coronado_brewing_company-island_pale_ale_ipa,0,0,244496728065,"{""name"":""Island Pale Ale (IPA)"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Islander IPA is a powerful West Coast IPA. This beer bites back with an intense hoppy zing and high alcohol content. The Islander IPA is dry hopped with tons of Centennial & Chinook hops and its fruity aroma will win your approval."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
+brauhaus_johann_albrecht_konstanz-nickelbier,0,0,244477722624,"{""name"":""Nickelbier"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_konstanz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,10,1
+allguer_brauhaus_ag_kempten_brausttte_leuterschach-sailerbrau_rauchenfels_steinweizen,0,0,244376666112,"{""name"":""Sailerbräu Rauchenfels Steinweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allguer_brauhaus_ag_kempten_brausttte_leuterschach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+brasserie_de_l_abbaye_des_rocs-speciale_noel,0,0,244361527297,"{""name"":""Spéciale Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+mikkeller-beer_geek_breakfast,0,0,244857569282,"{""name"":""Beer Geek Breakfast"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mikkeller"",""updated"":""2010-07-22 20:00:20"",""description"":""Breakfast is the most important meal of the day, many say, and if you are a beer geek there is no better way to start the day than with a powerful, complex morning stout. The unique mix of oats and coffee gives this beer large body and power, while the coffee, at the same time, creates a nice balance."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,1,1
+bonfire_brewery,0,0,244380073985,"{""name"":""Bonfire Brewery"",""city"":""Northville"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.4311,""lon"":-83.4833}}",1,58,1
+capital_brewery-capital_oktoberfest,0,0,244478181377,"{""name"":""Capital Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,11,1
+panther_brewing_company-three_stooges_beer,0,0,244999323648,"{""name"":""Three Stooges Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""panther_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,46,1
+moab_brewery-scorpion_pale_ale,0,0,244873035776,"{""name"":""Scorpion Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moab_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+abita_brewing_company-turbodog,0,0,244372340736,"{""name"":""Turbodog"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Abita Turbodog is a dark brown ale brewed with Willamette hops and a combination of British pale, crystal and chocolate malts.\r\n\r\nThis combination gives Turbodog its rich body and color and a sweet chocolate-toffee like flavor. Turbodog began as a specialty ale but has gained a huge loyal following and has become one of our three flagship brews.\r\n\r\nJust a bit stronger than our other brews, so . . .beware of the dog!"",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,37,1
+estes_park_brewery-trail_ridge_red,0,0,244609777665,"{""name"":""Trail Ridge Red"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our red is a special bitter. This means it has medium body and mild bitterness. These balance well with the rich copper color. We use American hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+flat_earth_brewing_company,0,0,244609449984,"{""name"":""Flat Earth Brewing Company"",""city"":""St. Paul"",""state"":""Minnesota"",""code"":""55116"",""country"":""United States"",""phone"":"""",""website"":""http://flatearthbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""After years of careful planning and mortgaging everything the Flat Earth Brewing Company was brought to life in 2007 by head brewer Jeff Williamson and his wife Cathie. In search of a calmer life and an even better beer, Jeff turned his passion for brewing into a career. After a temporary stint at Northern Brewer and a job as an assistant brewer at Minneapolis Town Hall Brewery, Flat Earth opened in Saint Paul and set out to create beers not normally found in the upper Midwest. Flat Earth's distinctive brews are often inspired by the couple's travels and time spent in conversation with family and friends. The company's brewing on the edge philosophy is reflected in its stylish interpretation of traditional brewing assumptions. Today, Flat Earth Brewing produces a variety of artisan ales and lagers every month. As the beers roll out of the brewery, you're sure to see a theme develop around their names a hint of conspiracy, perhaps. The names are meant to get people thinking and talking. Whether you enjoy Flat Earth beers at home or out with friends, there are no secrets when it comes to good beer."",""address"":[""2035 Benson Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9084,""lon"":-93.1538}}",1,7,1
+carmel_brewing-hefeweizen,0,0,244479557633,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carmel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
+boulder_beer_company-singletrack_copper_ale,0,0,244380663808,"{""name"":""Singletrack Copper Ale"",""abv"":4.97,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+humboldt_brewing-pale_ale,0,0,244734820352,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
+kenya_breweries-tusker_premium_lager,0,0,244753825795,"{""name"":""Tusker Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kenya_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_xh,0,0,244734296066,"{""name"":""Hitachino Nest XH"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark ale with a tan head. Subtle sake flavor from cask aging."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,0,1
+egan_brewing-princess_of_darkness_porter,0,0,244630224896,"{""name"":""Princess of Darkness Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
+21st_amendment_brewery_cafe-watermelon_wheat,0,0,244377124864,"{""name"":""Watermelon Wheat"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""The definition of summer in a pint glass. This unique, American-style wheat beer, is brewed with 400 lbs. of fresh pressed watermelon in each batch. Light turbid, straw color, with the taste and essence of fresh watermelon. Finishes dry and clean. Now Available in Cans!"",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,50,1
+bonaventure_brewing_co-bonaventure_pale_ale,0,0,244363165698,"{""name"":""Bonaventure Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bonaventure_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Light amber color and a mild malty background. Well-hopped featuring Cascade hops with a distinct floral finish."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+celis_brewery-grand_cru,0,0,244490371072,"{""name"":""Grand Cru"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+gordon_biersch_brewing-gordon_biersch_czech_lager,0,0,244607942657,"{""name"":""Gordon Biersch Czech Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,4,1
+st_peter_s_brewery-cream_stout,0,0,245107589121,"{""name"":""Cream Stout"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,22,1
+jt_whitney_s_brewpub_and_eatery,0,0,244736196610,"{""name"":""JT Whitney's Brewpub and Eatery"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53711"",""country"":""United States"",""phone"":""1-608-274-1776"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""674 South Whitney Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0519,""lon"":-89.4737}}",1,6,1
+blue_corn_caf_and_brewery_albuquerque-plaza_porter,0,0,244378763266,"{""name"":""Plaza Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_corn_caf_and_brewery_albuquerque"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
+old_dominion_brewing_co,0,0,244874018816,"{""name"":""Old Dominion Brewing Co."",""city"":""Dover"",""state"":""Delaware"",""code"":""19901"",""country"":""United States"",""phone"":""(302) 678-4810"",""website"":""http://www.olddominion.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1284 McD Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.154,""lon"":-75.4884}}",1,42,1
+brauerei_grieskirchen_ag,0,0,244480081920,"{""name"":""Brauerei Grieskirchen AG"",""city"":""Grieskirchen"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-72-48/607-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Stadtplatz 14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.2351,""lon"":13.8292}}",1,16,1
+dock_street_beer-rye_ipa,0,0,244612857858,"{""name"":""Rye IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""An aggressively hopped American Style Pale Ale brewed with Simcoe and Amarillo hops. The use of 20% rye gives this ale a unique dry and spicy character."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+brouwerij_van_steenberge-augustijn_ale,0,0,244479164416,"{""name"":""Augustijn Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+john_harvard_s_brew_house_harvard_square-framingham_maibock,0,0,244750942209,"{""name"":""Framingham Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brew_house_harvard_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,41,1
+real_ale_brewing_company-full_moon_pale_rye_ale,0,0,245000044544,"{""name"":""Full Moon Pale Rye Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Tawny red and full of malt and hops, Full Moon's unique flavor truly satisfies. The smooth sweetness of malted rye and barley is complemented by generous helpings of Willamette and Cascade hops, resulting in an assertive American amber ale."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,47,1
+anheuser_busch-redbridge,0,0,244369391617,"{""name"":""Redbridge"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Redbridge beer doesn’t need to make promises to stand out from the crowd; its very essence sets it apart. Redbridge is made without wheat or barley, so the approximately 3.2 million consumers who are unable to drink beer made with barley due to Celiac Disease or because they follow a wheat-free or gluten-free diet can once again enjoy a great tasting beer. Redbridge is a rich, full-bodied lager brewed from sorghum for a well-balanced, moderately hopped taste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+coastal_fog_brewing-pale,0,0,244489912320,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coastal_fog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
+thirsty_dog_brewing-orthus_belgian_dubbel,0,0,245107261442,"{""name"":""Orthus Belgian Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Orthus was the two-headed hell hound brother of Cerberus, the three-headed dog that guarded the gates of hell. Orthus is a Belgian Dubbel brown in color, 7 grains, 3 hops, Trappist high gravity yeast. Very Drinkable."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,21,1
+the_round_barn_winery_brewery-round_barn_summer_wheat,0,0,245108178946,"{""name"":""Round Barn Summer Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An unpretentious American pale wheat beer, our Summer Wheat pours a cloudy golden-orange, just like a sunset over Lake Michigan. Its assertive wheat flavor is complimented with hints of citrus zest. Garnish with a slice of orange or lemon. Round Barn beer is bottle conditioned, decant into a weizen glass before drinking for the best taste experience."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,23,1
+glen_ellyn_sports_brew-g_e_lite,0,0,244610301954,"{""name"":""G.E. Lite"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
+brouwerij_girardin,0,0,244487749633,"{""name"":""Brouwerij Girardin"",""city"":""Sint-Ulriks-Kapelle"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-024-52-64-19"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lindenbergstraat 10""]}",1,33,1
+minneapolis_town_hall_brewery-smoked_porter,0,0,244874805248,"{""name"":""Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+o_gara_s_bar_grill-sligo_red,0,0,244874543106,"{""name"":""Sligo Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+dragonmead_microbrewery-final_absolution,0,0,244618231809,"{""name"":""Final Absolution"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dragonmead's signature product! This is the ultimate Belgian style. The very high gravity of this beer is balanced by the smoothness of its finish. Banana and Clove aromas come from the Belgian yeast strain combining with the generous dose of Belgian Candi Sugar. The Saaz hops help to give this beer a balanced bitterness with no noticeable hop aroma."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,28,1
+grumpy_troll_restaurant_and_brewery-trailside_wheat,0,0,244735803394,"{""name"":""Trailside Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
+martini_brauerei-weissbier_dunkel,0,0,244858355712,"{""name"":""Weissbier Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+bell_s_brewery_inc-octoberfest_beer,0,0,244379156480,"{""name"":""Octoberfest Beer"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A coppery amber lager that showcases a full bodied, malty flavor that is balanced by a refreshing bitterness derived from fine noble hops."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,55,1
+crested_butte_brewery_pub,0,0,244496728066,"{""name"":""Crested Butte Brewery & Pub"",""city"":""Crested Butte"",""state"":""Colorado"",""code"":""81224"",""country"":""United States"",""phone"":""1-970-349-5026"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""226 Elk Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8698,""lon"":-106.987}}",1,52,1
+brewery_vivant-vivant_tripel,0,0,244477722625,"{""name"":""Vivant Tripel"",""abv"":9.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_vivant"",""updated"":""2011-06-22 12:22:12"",""description"":""A classic golden ale, with subtle esters of banana and bubblegum. This beer pours with a creamy head and ends with a sweetness of light Belgian candi sugars. Our brewmaster aged this ale for an extended period to round out the flavors. A great traditional Belgian brew. "",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,10,1
+anchor_brewing-anchor_summer_beer,0,0,244376666113,"{""name"":""Anchor Summer Beer"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Anchor Summer is the first American wheat beer in modern times. Our first brew of this light and refreshing beer was in the summer of 1984.\r\n\r\nAnchor Summer is an all-malt beer, and over 50% of its malt comes from malted wheat. It is fermented with a Triticum aestivum, AKA wheat traditional top-fermenting \""ale\"" yeast because we prefer the clean flavors developed by this yeast. We believe that this style best celebrates the refreshingly light flavor of malted wheat. You may notice that the head on this beer is unusually abundant, with a consistency similar to whipped egg whites. This is due to protein contributed by the wheat.\r\n\r\nThe brewers at Anchor are proud to have revived not only rich hearty dark beers, but also this light crisp style of a modern American wheat beer.\r\n\r\nSummer getaway Wheat malt contributes to an unusual lightness and dryness to the palate, and this—combined with the distinctive flavor of the wheat—makes for a perfect thirst-quenching beverage. It is the ideal drink for beer lovers who appreciate tradition and character in their beer, but also seek a lighter, refreshing style, perfect for warm weather.\r\n\r\n-http://www.anchorbrewing.com/beers/summerbeer.htm"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
+brasserie_duyck-jenlain_blonde,0,0,244478312448,"{""name"":""Jenlain Blonde"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_duyck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+moosehead_breweries-moosehead_lager,0,0,244857634816,"{""name"":""Moosehead Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosehead_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
+boston_beer_company-samuel_adams_noble_pils,0,0,244380073986,"{""name"":""Samuel Adams Noble Pils"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Samuel Adams Noble Pils is one of the only brews made with all five Noble hops from the world’s growing regions. its bright flavor and lively, citrus hop character reminds us that the warm days of spring are just a few weeks away."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,58,1
+carlsberg_sverige_ab,0,0,244478181378,"{""name"":""Carlsberg Sverige AB"",""city"":""Falkenberg"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":""46-08-757-70-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rstadvgen""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":56.9002,""lon"":12.5405}}",1,11,1
+pivovar_herold_beznice,0,0,244999389184,"{""name"":""Pivovar Herold Beznice"",""city"":""Beznice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-318-682-047"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nadrazni ul.""]}",1,46,1
+murphy_s_wagon_wheel,0,0,244873035777,"{""name"":""Murphy's Wagon Wheel"",""city"":""Hastings"",""state"":""Nebraska"",""code"":""68901"",""country"":""United States"",""phone"":""1-402-463-3011"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""107 North Lincoln Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5843,""lon"":-98.3912}}",1,40,1
+adnams_co-adnam_s_suffolk_special_bitter,0,0,244372340737,"{""name"":""Adnam's Suffolk Special Bitter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Adnams Suffolk Special Bitter, at 4.5% alcohol by volume, is a dry, crisp, refreshing, and distinctly hoppy example of its style.\r\n\r\nThis beer is also available in some markets in tradtional cask form, as Adnams Bitter. At only 3.7% alcohol, Adnams Bitter is the classic English 'ordinary,' though we think you'll agree that there's full of flavor.\r\n\r\nDespite its rich heritage and enduring fame, Adnams is not a company willing to rest on its laurels. Its continued commitment to quality and innovative packaging designs has made it Britain’s fastest growing brewery over the last two years. To top it off, Adnams’ head brewer was recently chosen as Britain’s Brewer of the Year by a panel of his peers."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,37,1
+faultline_brewing_1-stout,0,0,244609777666,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
+founders_brewing-centennial_ipa,0,0,244609449985,"{""name"":""Centennial IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Selected as a benchmark for the Beer Judge Certification Program used in all American based beer judgings. Centennial IPA has quickly become the IPA of choice. Pour yourself a pint of this complex flavorful ale and bask in the frothy head's floral bouquet. Relish the immense citrus accents, achieved by the abundance of dry hopping. This ale's sweet, malty undertones balance the hop character with a finish that never turns too bitter."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
+carver_brewing_co-old_oak_amber_ale,0,0,244479623168,"{""name"":""Old Oak Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A well balanced American Amber Ale. Smooth malt character balanced with a healthy dose of Cascade hops aged on oak chips - our most popular beer."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
+brasserie_dupont-saison_vielle_provision,0,0,244498956288,"{""name"":""Saison Vielle Provision"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+industrias_la_constancia_ilc-regia_extra,0,0,244734820353,"{""name"":""Regia Extra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_sweet_stout,0,0,244753891328,"{""name"":""Hitachino Nest Sweet Stout"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+knig_brauerei-pilsener,0,0,244734296067,"{""name"":""Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+etna_brewing,0,0,244630224897,"{""name"":""Etna Brewing"",""city"":""Etna"",""state"":""California"",""code"":""96027"",""country"":""United States"",""phone"":""1-530-467-5277"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""131 Callahan""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4559,""lon"":-122.846}}",1,56,1
+3_fonteinen_brouwerij_ambachtelijke_geuzestekerij-oude_geuze,0,0,244377124865,"{""name"":""Oude Geuze"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""3_fonteinen_brouwerij_ambachtelijke_geuzestekerij"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,50,1
+boston_beer_company-samuel_adams_chocolate_bock,0,0,244363231232,"{""name"":""Samuel Adams Chocolate Bock"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,17,1
+cervecera_cuauhtmoc_moctezuma-tecate,0,0,244490371073,"{""name"":""Tecate"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+gottberg_brew_pub-tin_lizzie_hefeweizen,0,0,244607942658,"{""name"":""Tin Lizzie Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,4,1
+stieglbrauerei_zu_salzburg_gmbh-paracelsus_zwickl,0,0,245107589122,"{""name"":""Paracelsus Zwickl"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Paracelsus Zwickl is a natural beer specialty with a mellow impression on the tongue. The aftertaste unfolds a slight bitterness. Zwickl-beer is not filtered and therefore shows some cloudiness due to rests of yeast, minerals and trace elements.\r\n\r\nThis very special beer is brewing at its best using a sophisticated recipe combined with love and dedication. Stiegl only uses excellent ingredients from Austrian agricultural suppliers, applying biological techniques. As a result of this Paracelsus Zwickl beer was awarded the Bio-Austria certificate. Bio-production is subject to strict yearly controls by “Austria-Bio-Guaranty”.\r\n\r\n“Bier is a really divine medicine”. This quotation comes from Paracelsus (1493 – 1541). He was a well known physician, forward thinker and visionary who lived in Salzburg for many years. He found out that beer had healing powers.""}",1,22,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2006,0,0,244736262144,"{""name"":""Harvest Ale 2006"",""abv"":11.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,6,1
+brasserie_d_achouffe-biere_de_mars,0,0,244378828800,"{""name"":""Bière de Mars"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+olde_peninsula_brewpub_and_restaurant-haymarket_ale,0,0,244874018817,"{""name"":""Haymarket Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
+brauerei_hrle,0,0,244480147456,"{""name"":""Brauerei Hrle"",""city"":""Leutkirch im Allgäu"",""state"":""Baden-Württemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7561-/-9828-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Hopfengarten 5""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8243,""lon"":10.0239}}",1,16,1
+edelweissbrauerei_farny-humpis_original_naturtrub,0,0,244612857859,"{""name"":""Humpis-Original Naturtrub"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+browar_zywiec-porter,0,0,244479164417,"{""name"":""Porter"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_zywiec"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
+jolly_pumpkin_artisan_ales-noel_de_calabaza,0,0,244750942210,"{""name"":""Noel de Calabaza"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep mahogany and malty, layered hops, figs, raisins, sugar plums, cashews betwixt rum laden truffles.""}",1,41,1
+rock_bottom_restaurant_brewery_denver-falcon_pale_ale,0,0,245000044545,"{""name"":""Falcon Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
+appalachian_brewing_company-trail_blaze_organic_brown_ale,0,0,244369391618,"{""name"":""Trail Blaze Organic Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Trail Blaze Organic American Brown Ale exhibits a beautiful deep copper color and an evident hop bitterness & aroma. This is balanced against roasted caramel-like characteristics and hints of chocolate. \r\n\r\nOur first in a series of organic beers is named for the markers that keep a hiker on the correct path. Many of the hiking trails in our area have simple to very distinguished trail blazes. After a long hike, there is nothing better at the end of the trail than ABC organic ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
+commonwealth_brewing_1-golden_ale,0,0,244489912321,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
+thirsty_dog_brewing-stud_service_stout,0,0,245107326976,"{""name"":""Stud Service Stout"",""abv"":3.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional dry Irish Stout. Very Flavorful while low in calories and alcohol. An easy drinking “session beer” that has a nice caramel flavor an smooth finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,21,1
+three_floyds_brewing-robert_the_bruce_scottish_ale,0,0,245108244480,"{""name"":""Robert the Bruce Scottish Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A big malty body from chocolate and roasted malts, well balanced with just the right combination of hops. Robust yet smooth, a true malt-lover's delight."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,23,1
+glenwood_canyon_brewing_company-dos_rios_vienna_lager,0,0,244610367488,"{""name"":""Dos Rios Vienna Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glenwood_canyon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
+brouwerij_van_hoegaarden-hoegaarden,0,0,244487749634,"{""name"":""Hoegaarden"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_hoegaarden"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoegaarden is the authentic Belgian wheat or white beer. It has a unique and extremely complex brewing process whereby the brand is first top fermented and then is refermented within the bottle - ending up in a unique cloudy-white appearance. The brand's unique appearance is mirrored by its one-of-a-kind taste - sweet and sour beer with a little bitterness, slightly spicy, with a strong touch of coriander and a hint of orange, perfect for warm summer days, instead of other refreshing beverages. Refreshing, a little quirky, and decidedly different - naturally."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
+mishawaka_brewing-raspberry_wheat_ale,0,0,244874805249,"{""name"":""Raspberry Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,44,1
+otto_s_pub_and_brewery-spruce_creek_lager,0,0,244874608640,"{""name"":""Spruce Creek Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This light refreshing American lager has a malty smooth character and low hop bitterness."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
+einbecker_brauhaus_ag,0,0,244618297344,"{""name"":""Einbecker Brauhaus AG"",""city"":""Einbeck"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)5561-/-797-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Papenstrae 4-7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.8162,""lon"":9.8643}}",1,28,1
+heineken_hungaria,0,0,244735868928,"{""name"":""Heineken Hungária"",""city"":""Sopron"",""state"":"""",""code"":"""",""country"":""Hungary"",""phone"":"""",""website"":""http://www.heinekenhungaria.hu/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Known before Soproni Sörgyár"",""address"":[]}",1,5,1
+mcmenamins_mill_creek-irish_stout,0,0,244858421248,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
+brasserie_de_silenrieux-sara_buckwheat_ale,0,0,244379156481,"{""name"":""Sara Buckwheat Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silenrieux"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+de_proef_brouwerij-zoetzuur_flemish_ale,0,0,244628455424,"{""name"":""Zoetzuur Flemish Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+brooklyn_brewery,0,0,244477722626,"{""name"":""Brooklyn Brewery"",""city"":""Brooklyn"",""state"":""New York"",""code"":""11211"",""country"":""United States"",""phone"":""1-718-486-7422"",""website"":""http://www.brooklynbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""79 North Eleventh Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7215,""lon"":-73.9575}}",1,10,1
+anchor_brewing-old_foghorn_1998,0,0,244376666114,"{""name"":""Old Foghorn 1998"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+brasserie_la_caracole-saxo,0,0,244478377984,"{""name"":""Saxo"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+new_belgium_brewing-fat_tire_amber_ale,0,0,244857634817,"{""name"":""Fat Tire Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Named in honor of our founder Jeff's bike trip through Belgium, Fat Tire Amber Ale marks a turning point in the young electrical engineer's home brewing. \r\n\r\nBelgian beers use a far broader pallet of ingredients (fruits, spices, esoteric yeast strains) than German or English styles. Jeff found the Belgian approach freeing. Upon his return, Jeff created Fat Tire and Abbey Belgian Ale, (assuming Abbey would be his big gun). He and his wife, Kim traveled around sampling their homebrews to the public. \r\n\r\nFat Tire's appeal quickly became evident. People liked everything about it. Except the name. Fat Tire won fans is in its sense of balance: toasty, biscuit-like malt flavors coasting in equilibrium with hoppy freshness."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
+boston_beer_company-samuel_adams_white_ale,0,0,244380139520,"{""name"":""Samuel Adams White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Spicy yet smooth. Brewed with 10 exotic spices.\r\nThis beer's roots are in Belgium, and the classic Wit biers produced by Belgium's brewers. The style gets its name from the white, milky appearance of this unfiltered wheat ale. The brewers of Samuel Adams® beer, taking inspiration from the Belgians, have created a classic of their own. On the malt side, we use malted two row Pale barley, malted wheat, and Munich malt to give this beer a crisp, malty, cereal finish and smooth mouth feel. The hops used are Noble Tettnang Tettnanger hops. At the end of the kettle boil, we add a proprietary spice blend to give Samuel Adams® White Ale a unique and complex flavor, without being overpowering or cloying. The spice blend includes orange and lemon peel, dried plum, grains of paradise, coriander, anise, hibiscus, rose hips, tamarind, and vanilla. It is this special blend of spices that gives Samuel Adams® White Ale its unique character, complexity and refreshing drinkability. The beer is coarse filtered, leaving a white haze from the malt proteins. Our proprietary top fermenting ale yeast ferments the beer, imparting its signature character - bright and slightly fruity."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,58,1
+central_city_brewing_company-steelhead_stout,0,0,244478181379,"{""name"":""Steelhead Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
+privatbrauerei_erdinger_weissbru-oktoberfest_weizen,0,0,244999389185,"{""name"":""Oktoberfest Weizen"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+new_zealand_breweries_limited-speight_s_gold_medal_ale,0,0,244873035778,"{""name"":""Speight's Gold Medal Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_zealand_breweries_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,40,1
+21st_amendment_brewery_cafe-563_stout,0,0,244371423232,"{""name"":""563 Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep black color, toasted black burnt coffee flavors and aroma. Dispensed with Nitrogen through a slow-flow faucet giving it the characteristic cascading effect, resulting in a rich dense creamy head."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+adnams_co-adnams_tally_ho,0,0,244372406272,"{""name"":""Adnams Tally Ho"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""adnams_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The original winter warmer, Tally-Ho is actually a barley wine brewed to a nineteenth century recipe. It's sweet; it's heart-warming; it's rich - but watch out, it's got a kick like a drayman's horse!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,37,1
+firestone_walker_brewing_company-firestole_pale_31,0,0,244609843200,"{""name"":""Firestole Pale 31"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firestone_walker_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""One of the most award-winning American style pale ales in the country. This is the American beer style that started a revolution in taste. We’ve taken the classic British pale ale and elevated it with a wonderful dose of northwest American hops. A crisp floral hop aroma precedes a medium-bodied clean finishing ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
+founders_brewing-rubaeus,0,0,244609515520,"{""name"":""Rubaeus"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""As promised Founders Brewing Company has created something unlike the rest. Amongst this summers over croweded race to cloudy wheat beers, we have decided to embark down a path all our own. Using only fresh rasberries, rubaeus translates into intese flavors combined with a no hesitation malt bill. In fermentation we add fresh rasberries at five separate stages to achieve the ulttimate balance between tartness and sweetness."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,7,1
+cerveceria_la_constancia,0,0,244479623169,"{""name"":""Cervecería La Constancia"",""city"":""San Salvador"",""state"":"""",""code"":"""",""country"":""El Salvador"",""phone"":""2231-5143"",""website"":""http://www.laconstancia.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,14,1
+brasserie_fantme-dark_white,0,0,244499021824,"{""name"":""Dark White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+jacob_leinenkugel_brewing_company-fireside_nut_brown,0,0,244734820354,"{""name"":""Fireside Nut Brown"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
+kona_brewing-pipeline_porter,0,0,244753891329,"{""name"":""Pipeline Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pipeline Porter is smooth and dark with a distinctive roasty aroma and earthy complexity from its diverse blends of premium malted barley. This celebration of malt unites with freshly roasted 100% Kona coffee grown at Cornwell Estate on Hawaii’s Big Island, lending a unique roasted aroma and flavor. A delicate blend of hops rounds out this palate-pleasing brew."",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+lafayette_brewing-black_angus_oatmeal_stout,0,0,244734296068,"{""name"":""Black Angus Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lafayette_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
+f_x_matt_brewing-saranac_brown_ale,0,0,244630290432,"{""name"":""Saranac Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Brown Ale is brewed with American malt and hops, and traditional ale yeast. Look for a sweet, chocolaty taste, with balanced bitterness resulting in a full flavored but smoothly drinkable beer."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,56,1
+anchor_brewing-christmas_ale_2007,0,0,244377124866,"{""name"":""Christmas Ale 2007"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+boulder_beer_company-cold_hop,0,0,244363296768,"{""name"":""Cold Hop"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,17,1
+cigar_city_brewing-jai_alai_ipa,0,0,244490436608,"{""name"":""Jai Alai IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Jai Alai IPA is a monster interpretation of an American IPA. In fact, it is so big that it equals the alcohol of some double IPAs on the market. Our IPA uses 6 different hop varietals, with Simcoe hops only being used for dry hopping. The rest of the hop additions are blended at different IBU's (International Bittering Units) in groups of three hops per addition in order to create more hop complexity. At CCB, we love hops but also feel that balance is important for IPAs. So Jai Alai features a sturday caramel malt component which helps to create balance, staving off hop astringency. Ultimately, Jai Alai is a very strong interpretation of a single American IPA. We hope that it makes Tampa Bay natives happy because this is head brewer Wayne Wamble's favorite Cigar City beer and he'd love to share one with you!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
+great_dane_pub_and_brewing_2-stone_of_scone_scotch_ale,0,0,244735344640,"{""name"":""Stone of Scone Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,4,1
+stone_brewing_co-9th_anniversary_ipa,0,0,245107654656,"{""name"":""9th Anniversary IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,22,1
+knigsegger_walderbru-walderbrau_export,0,0,244736262145,"{""name"":""WalderBräu Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knigsegger_walderbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+brasserie_d_ecaussinnes,0,0,244378828801,"{""name"":""Brasserie d'Ecaussinnes"",""city"":""Ecaussinnes"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-067-/-34-22-77"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rue Restaumont, 118""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.5593,""lon"":4.1365}}",1,54,1
+oskar_blues_grill_and_brew-gordon,0,0,244874084352,"{""name"":""Gordon"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Gordon is a hybrid version of strong ale, somewhere between an Imperial Red and a Double IPA. We make it with six different malts and three types of hops, then dry-hop it with a mutha lode of Amarillo hops. It is 8.7% alcohol by volume, and has 85 International Bittering Units. \r\n\r\nIt features a gooey, resiny aroma and a luscious mouthfeel. Gordon is brewed with dash of chocolate malt in it, to round out its load of hops and balance the beer. The result is an assertive yet exceptionally smooth version of strong beer.\r\n\r\nWe brew Gordon in tribute to the late Gordon Knight. In addition to opening some of Colorado’s first microbreweries, Knight was a Vietnam vet, grade-A citizen, and huge promoter of craft beer. He lost his life in 2002 while fighting a wild fire outside of Lyons, Colorado.\r\n\r\nOriginally our winter seasonal beer, it has become a cult favorite of extreme-beer lovers, so we now brew occasional batches of Gordon throughout the year. Released in bottles in 2003 and 2004, Gordon is now sold in four packs of hand-labeled cans and on draft in select markets.\r\n\r\n--http://www.oskarblues.com/brew/"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,42,1
+breckenridge_brewery-471_double_ipa,0,0,244480212992,"{""name"":""471 Double IPA"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
+egan_brewing-hefeweizen,0,0,244612923392,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
+butte_creek_brewing,0,0,244479164418,"{""name"":""Butte Creek Brewing"",""city"":""Chico"",""state"":""California"",""code"":""95928"",""country"":""United States"",""phone"":""1-530-894-7906"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""945 West Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7245,""lon"":-121.848}}",1,13,1
+kulmbacher_mnchshof_bru-original_pils,0,0,244751007744,"{""name"":""Original Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_mnchshof_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+rock_bottom_restaurant_brewery_minneapolis-eric_the_red,0,0,245000044546,"{""name"":""Eric the Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
+bamberger_mahr_s_bru-ungespundet_lager_hefetrub,0,0,244369457152,"{""name"":""Ungespundet Lager Hefetrub"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+coors_brewing_golden_brewery-coors_extra_gold_lager,0,0,244489977856,"{""name"":""Coors Extra Gold Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coors' Extra Gold Lager is a rich, full-flavored lager that has a deep golden color. Extra Gold Lager starts with the slow aging of its roasted malts, which are then combined with its other premium ingredients and slow-brewed to produce this exceptional, refined lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
+titletown_brewing-belgian_summer_ale,0,0,245107326977,"{""name"":""Belgian Summer Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+timmermans-timmermans_faro,0,0,245108244481,"{""name"":""Timmermans Faro"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+gottberg_brew_pub-princess_of_darkness_porter,0,0,244610367489,"{""name"":""Princess of Darkness Porter"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
+brouwerij_van_hoegaarden-original_white_ale,0,0,244487815168,"{""name"":""Original White Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_hoegaarden"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoegaarden, both unique and very refreshing, is an authentic Belgian wheat beer. In fact, it is the original “Wit” beer! First brewed in 1445, this top-fermented beer is refermented in the bottle or keg. Hoegaarden has a distinctive, cloudy yellow colour and a uniquely refined taste that balances a slight spiciness from a touch of coriander and orange peel.""}",1,33,1
+nebraska_brewing_company-brunette_nut_brown_ale,0,0,244874805250,"{""name"":""Brunette Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
+pete_s_brewing-wicked_ale,0,0,244998209536,"{""name"":""Wicked Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pete's Wicked Ale is an experience out of the ordinary. Our tantalizing ruby-brown ale with distinctive malts and aromatic Brewers Gold hops is sure to stir up an urge to get loose."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
+elliott_bay_brewery_and_pub-riot_ale,0,0,244618362880,"{""name"":""Riot Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+hoffbrau_steaks_brewery_2-dunkel_weizen,0,0,244735868929,"{""name"":""Dunkel Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+mia_and_pia_s_pizzeria_and_brewhouse-kalamath_basin_ipa,0,0,244858421249,"{""name"":""Kalamath Basin IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mia_and_pia_s_pizzeria_and_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
+brasserie_de_silly-scotch,0,0,244379222016,"{""name"":""Scotch"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_silly"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+dogfish_head_craft_brewery-60_minute_ipa,0,0,244628520960,"{""name"":""60 Minute IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer. A session India Pale Ale brewed with Warrior, Amarillo & 'Mystery Hop X.' A powerful East Coast I.P.A. with a lot of citrusy hop character. THE session beer for beer geeks like us!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
+brouwerij_de_block,0,0,244477788160,"{""name"":""Brouwerij De Block"",""city"":""Merchtem-Peizegem"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-052-37-21-59"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nieuwbaan 92""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.985,""lon"":4.2226}}",1,10,1
+anderson_valley_brewing-horn_of_the_bear_barleywine,0,0,244376731648,"{""name"":""Horn of the Bear Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+brauerei_hrlimann-hexen_brau,0,0,244478377985,"{""name"":""Hexen Bräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_hrlimann"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
+new_holland_brewing_company-full_circle,0,0,244857700352,"{""name"":""Full Circle"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A kölsch-style beer, Full Circle is a refreshing celebration of our brewery’s belief in balance. The soft, well-rounded malt character, light hop profile and crisp finish bring us back around to the familiar tastes of classic, thirst-quenching beer. We recommend Full Circle with fish and just about anything from the grill.""}",1,1,1
+brasserie_bnifontaine-castelain_st_amand_french_country_ale,0,0,244380139521,"{""name"":""Castelain St.Amand French Country Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_bnifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+cervecera_centro_americana_s_a,0,0,244478246912,"{""name"":""Cervecera Centro Americana S.A."",""city"":""Guatemala City"",""state"":"""",""code"":"""",""country"":""Guatemala"",""phone"":""502-288-1555-/-289-1"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3ra.Av.Norte Final, Finca El Zapote, Zona 2""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":14.6133,""lon"":-90.5353}}",1,11,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh-weisse_dunkel,0,0,244999454720,"{""name"":""Weisse Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+o_gara_s_bar_grill-irish_gold,0,0,244873101312,"{""name"":""Irish Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+21st_amendment_brewery_cafe-north_star_red,0,0,244370898944,"{""name"":""North Star Red"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""21st_amendment_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep amber color. Subtle hop floral nose intertwined with sweet crystal malt aromas. Rich malt flavors supporting a slight bitterness finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
+aass_brewery-juleol,0,0,244371488768,"{""name"":""Juleøl"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aass_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Norwegian Juleøl can be traced back more that 1000 years. The \""Gulatinglov\"", one of the first Norwegian laws written in the 9th century, has a chapter on brewing beer for the midwinter celebration in January. The festivities were held to celebrate the Norse Gods; Odin, Frøy and Njord as well as the \""return\"" of the sun.\r\nFurthermore, the tradition was adopted by the Vikings that brought Christianity to the country between 1000 and 1100. They moved the tradition to December in connection with the birth of Jesus. \r\nIn those days a farmer that did not set aside the best crop to produce the beer could lose his house to the king and the church. The law has been changed, but we promise you that we still use the very best of malt, yeast, hops, and pure Norwegian water to produce our Christmas beer.\r\n\r\nAass Juleøl has won most of the Norwegian Juleøl taste test conducted over time. For those of you that know what \""lutefisk\"" is, Aass Juleøl is the perfect choice of beverage to this traditional Norwegian dish."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,35,1
+anderson_valley_brewing-winter_solstice_seasonal_ale_1992,0,0,244372406273,"{""name"":""Winter Solstice Seasonal Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+first_coast_brewing-golden_lager,0,0,244609843201,"{""name"":""Golden Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""first_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+gaslight_brewery-pirate_pale,0,0,244609515521,"{""name"":""Pirate Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+chelsea_brewing_company,0,0,244479623170,"{""name"":""Chelsea Brewing Company"",""city"":""New York"",""state"":""New York"",""code"":""10011"",""country"":""United States"",""phone"":""212.336.6440"",""website"":""http://chelseabrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Chelsea Brewing Company, rated the best brewery in New York, is a first class waterfront restaurant and the only micro-brewery in Manhattan located at pier 59.With over 15 years of experience, and 8 National Awards, we are proud to serve up to 27 natural hand-crafted ales and specialty beers using only the finest malts and hops from around the world. We offer beer tastings, brewery tours and group packages."",""address"":[""Chelsea Piers, Pier 59""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.7457,""lon"":-74.0086}}",1,14,1
+brewery_creek_brewing,0,0,244499087360,"{""name"":""Brewery Creek Brewing"",""city"":""Mineral Point"",""state"":""Wisconsin"",""code"":""53565"",""country"":""United States"",""phone"":""1-608-987-3298"",""website"":""http://www.brewerycreek.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewery Creek. It's where we live. It's where we work. When we started this project we decided to pursue three businesses. Just so we wouldn't get bored. The lodging business includes five rooms at the Inn, and two Cottages on Shake Rag Street. Then there is the Brewpub Restaurant in the Commerce Street building. Last but certainly not least is the Brewery Creek Brewing Company, behind the glass doors of the restaurant. Our brewery is a modern, 15-barrel brew house capable of making up to 3,000 barrels of beer per year. I an make ales or lagers, but mostly it has been ales, which tend to have a more complex flavor profile. I can use a simple one step infusion mash, or more elaborate multi-temperature steps."",""address"":[""23 Commerce Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.8606,""lon"":-90.1772}}",1,59,1
+jacob_leinenkugel_brewing_company-hefeweizen,0,0,244734820355,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
+live_oak_brewing-oaktoberfest,0,0,244876312576,"{""name"":""Oaktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A fall classic, our Oaktoberfest emphasizes rich malt flavor. We use German malt and hops to give it an authentic Bavarian character. The rich, maltiness of this brew is a good match with spicy cuisine, as well as barbecue. Live Oak Oaktoberfest will certainly raise the level of enjoyment at your next fall gathering. Available September - December"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
+lakefront_brewery-organic_extra_special_bitter,0,0,244734361600,"{""name"":""Organic Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+fifty_fifty_brewing_co-imperial_eclipse_stout,0,0,244630290433,"{""name"":""Imperial Eclipse Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,56,1
+anderson_valley_brewing-deep_enders_dark,0,0,244377190400,"{""name"":""Deep Enders Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
+brasserie_d_ecaussinnes-ultrablonde,0,0,244363296769,"{""name"":""Ultrablonde"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_ecaussinnes"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+climax_brewing_copmany,0,0,244490436609,"{""name"":""Climax Brewing Copmany"",""city"":""Roselle Park"",""state"":""New Jersey"",""code"":""7204"",""country"":""United States"",""phone"":""(908) 620-9585"",""website"":""http://www.climaxbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""112 Valley Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6598,""lon"":-74.283}}",1,39,1
+great_divide_brewing-old_ruffian,0,0,244735410176,"{""name"":""Old Ruffian"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Ruffian is a hefty, hop-forward Barley Wine. Seemingly mellow at first sniff, with its subtle fruit aromas and complex caramel sweetness, this deep mahogany-hued ale quickly shows its true character marked by bold hop flavors and massive hop bitterness. Old Ruffian’s rich, slightly creamy, caramel malt mouthfeel balances its grapefruit, pine, and floral hop flavors, working wonders on your palate."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,4,1
+sweetwater_brewing_atlanta-blue,0,0,245107654657,"{""name"":""Blue"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweetwater Blue is a unique light bodied ale enhanced with a hint of fresh blueberries. This euphoric experience begins with an appealing blueberry aroma and finishes as a surprisingly thirst-quenching ale."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,22,1
+lakefront_brewery-bock,0,0,244736262146,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,6,1
+brasserie_de_l_abbaye_val_dieu-triple,0,0,244378828802,"{""name"":""Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+oskar_blues_grill_and_brew-old_chub,0,0,244874149888,"{""name"":""Old Chub"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Chub is a Scottish strong ale brewed with hearty amounts of seven different malts, including crystal and chocolate malts, and a smidge of US and UK hops. Old Chub also gets a dash of beechwood-smoked grains imported from Bamburg, Germany, home of the world's greatest smoked beers. Old Chub is 8% alcohol by volume. While Dale's satisfies our hop addiction, Old Chub takes care of our deep affections for malt. The cola-colored beer (almost black) features a tan head, a creamy, skim-milk mouthfeel, and rich, semi-sweet flavors of caramel and chocolate throughout. The addition of smoked grains gives Old Chub a delicate kiss of smoke on the finish. Old Chub is the beer equivalent of a lightly smoked single malt scotch, or your favorite dark chocolate. We call it Rocky Mountain Mutha's Milk. People who tell us defiantly, \""I don't drink dark beer,\"" often fall deeply in love with Old Chub. We can't blame them."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,42,1
+brewery_de_troch,0,0,244480212993,"{""name"":""Brewery De Troch"",""city"":""Ternat"",""state"":""Vlaams Brabant"",""code"":"""",""country"":""Belgium"",""phone"":""32-02-582-10-27"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Langestraat 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.853,""lon"":4.1649}}",1,16,1
+elysian_brewery_public_house,0,0,244612923393,"{""name"":""Elysian Brewery & Public House"",""city"":""Seattle"",""state"":""Washington"",""code"":""98122"",""country"":""United States"",""phone"":""1-206-860-1920"",""website"":""http://www.elysianbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1221 East Pike Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.614,""lon"":-122.316}}",1,15,1
+cigar_city_brewing-big_sound_scotch_ale,0,0,244479229952,"{""name"":""Big Sound Scotch Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Big Sound Scotch Ale is dedicated to our good buddy Gino, the most punk rock bagpiper you'll ever meet, and the rest of the men and women of Tampa Bay Pipes and Drums. Brown in color, Big Sound has huge notes of dark sweet toffee with underlying mild notes of coffee in the aroma. The flavor starts with a slight note of cherry and then opens into a Goliath of a malt character with notes of dark sweet toffee, slight hints of coffee and mild notes of toasted bread in the finish. Big Sound Scotch Ale pairs well with Haggis, Highland Games, Huge Heads and Enormous Pillows and of course Bagpipe music."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,13,1
+laconner_brewing,0,0,244751007745,"{""name"":""LaConner Brewing"",""city"":""LaConner"",""state"":""Washington"",""code"":""98257"",""country"":""United States"",""phone"":""1-360-466-1415"",""website"":""http://www.insidelaconner.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""117 South First Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3917,""lon"":-122.495}}",1,41,1
+ross_valley_brewing-kolsch,0,0,245000110080,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ross_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+barley_creek_brewing-navigator_golden_ale,0,0,244369522688,"{""name"":""Navigator Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Another one of our most popular brews. Navigator Gold has a crisp and slighly hoppy finish. It's cold filtered and moderately carbonated."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,31,1
+crescent_city_brewhouse-steam,0,0,244489977857,"{""name"":""Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+titletown_brewing-weizen_bock,0,0,245107326978,"{""name"":""Weizen Bock"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,21,1
+timmermans-timmermans_kriek,0,0,245108244482,"{""name"":""Timmermans Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,23,1
+gottberg_brew_pub-wilsteraner_altbier,0,0,244610367490,"{""name"":""Wilsteraner Altbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
+bull_bush_pub_brewery-barleywine,0,0,244487815169,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+o_grady_s_brewery_and_pub_1-chicago_fire,0,0,244874870784,"{""name"":""Chicago Fire"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+pete_s_place,0,0,244998275072,"{""name"":""Pete's Place"",""city"":""Krebs"",""state"":""Oklahoma"",""code"":""74554"",""country"":""United States"",""phone"":""1-918-423-2042"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""120 SW Eighth Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":34.9251,""lon"":-95.7253}}",1,43,1
+f_x_matt_brewing-saranac_chocolate_amber,0,0,244618362881,"{""name"":""Saranac Chocolate Amber"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""There comes a time every year in the Adirondacks when a heavier, more malty brew compliments the cold winter months. This brew showcases a variety of dark roasted malts, producing a beer with a rich chocolaty flavor.""}",1,28,1
+jacob_leinenkugel_brewing_company-big_butt_doppelbock,0,0,244735868930,"{""name"":""Big Butt Doppelbock"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,5,1
+miller_brewing-miller_genuine_draft_64,0,0,244858421250,"{""name"":""Miller Genuine Draft 64"",""abv"":2.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,3,1
+brasserie_duyck-biere_de_noel,0,0,244497580032,"{""name"":""Bière de Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_duyck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+dortmunder_actien_brauerei_dab-traditional,0,0,244628520961,"{""name"":""Traditional"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
+cervejaria_sudbrack-eisenbahn_escura,0,0,244477788161,"{""name"":""Eisenbahn Escura"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,10,1
+anheuser_busch-michelob_ultra_amber,0,0,244376731649,"{""name"":""Michelob Ultra Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Michelob ULTRA Amber is an American-style amber lager that boasts a beautifully rich, dark-amber color with a full-bodied, malty taste that also is low in calories and carbohydrates."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
+brennerei_distillerie_radermacher,0,0,244478443520,"{""name"":""Brennerei-Distillerie Radermacher"",""city"":""Raeren"",""state"":""Lige"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)87-85.82.32"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Spitalstrasse 50""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.6718,""lon"":6.122}}",1,12,1
+nodding_head_brewpub-60_shilling,0,0,244857700353,"{""name"":""60 Shilling"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""lighter Scotish-Style Ale... amber in color with plenty of maltiness... reminds us all that sometime there just aren't enough O's in smooth"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,1,1
+brasserie_de_cazeau-tournay_black,0,0,244380205056,"{""name"":""Tournay Black"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_cazeau"",""updated"":""2010-07-22 20:00:20"",""description"":""Tournay Black is a bottle conditioned, Belgian stout brewed by Brasserie de Cazeau which is a farm-brewery located in the south of Belgium. It was originally brewed as a winter ale under the name Tournay de Noel, but later became a year-round release. They didn't provide much specific detail about how it was brewed except to say that it is made with water, malts, candi-sugar, hops, and yeast. It is 7.6% ABV with a recommended drinking temperature of +/- 50 degrees. The brewer states that the tasting notes are of, \""roasted malts, coffee, bitter chocolate, earth, and cigar ash.\"" Well, I am a prodigious cigar smoker and I can't say that I would want to consume the ash."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,58,1
+coast_brewing-biloxi_blonde,0,0,244478246913,"{""name"":""Biloxi Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+raccoon_river_brewing-maibock,0,0,244999454721,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
+oak_creek_brewery-king_crimson,0,0,244873101313,"{""name"":""King Crimson"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,40,1
+abita_brewing_company-triple_citra_hopped_satsuma_wit,0,0,244370964480,"{""name"":""Triple Citra Hopped Satsuma Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abita_brewing_company"",""updated"":""2011-08-15 11:53:48"",""description"":""Similar to the Harvest Wit but with a lot more punch. A very pronounce citrus aroma with a triple hop flavor makes for one great beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
+ali_i_brewing-amber_ale,0,0,244371488769,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ali_i_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
+arthur_guinness_son,0,0,244372471808,"{""name"":""Arthur Guinness & Son"",""city"":""Dublin"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":""http://www.guinness.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St. James's Gate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.3433,""lon"":-6.2846}}",1,37,1
+flatlander_s_restaurant_brewery-locomotive_stout,0,0,244609843202,"{""name"":""Locomotive Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
+glen_ellyn_sports_brew-equinox_e_s_b,0,0,244609515522,"{""name"":""Equinox E.S.B."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+chimay_abbaye_notre_dame_de_scourmont,0,0,244479688704,"{""name"":""Chimay (Abbaye Notre Dame de Scourmont)"",""city"":""Chimay"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":""+32 (0)60 21 03 27"",""website"":""http://www.chimay.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Chimay is an authentic Trappist beer that is it is brewed within a Trappist monastery, under the control and responsibility of the monastic community. Only 6 beers in Belgium can carry the appellation Trappist: Chimay, Orval, Rochefort, Westmalle, Westvleteren and Achel."",""address"":[""Route de Charlemagne 8""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.0355,""lon"":4.3777}}",1,14,1
+brouwerij_het_anker-gouden_carolus_ambrio_1471,0,0,244499087361,"{""name"":""Gouden Carolus Ambrio 1471"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_het_anker"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+jasper_ridge_brewery-iron_red_ale,0,0,244734885888,"{""name"":""Iron Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
+lost_coast_brewery-downtown_brown,0,0,244876378112,"{""name"":""Downtown Brown"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, full-bodied nut brown ale, lightly hopped with a hint of roasted chocolate and crystal malts. This ale is dark in color without the heavy taste of porter or stout."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,48,1
+lang_creek_brewry,0,0,244734361601,"{""name"":""Lang Creek Brewry"",""city"":""Marion"",""state"":""Montana"",""code"":""59925"",""country"":""United States"",""phone"":""(406) 858-2200"",""website"":""http://langcreekbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Good beer here!!"",""address"":[""655 Lang Creek Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.014,""lon"":-115.011}}",1,0,1
+firehouse_brewing,0,0,244630290434,"{""name"":""Firehouse Brewing"",""city"":""Rapid City"",""state"":""South Dakota"",""code"":""57701"",""country"":""United States"",""phone"":""1-605-348-1915"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""610 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0812,""lon"":-103.227}}",1,56,1
+angelic_brewing-bacchanal_blonde,0,0,244377190401,"{""name"":""Bacchanal Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""angelic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+brasserie_d_orval,0,0,244363296770,"{""name"":""Brasserie d'Orval"",""city"":""Villers-devant-Orval"",""state"":""Luxembourg"",""code"":"""",""country"":""Belgium"",""phone"":""32-061-31-12-61"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Abbaye de Notre-Dame d'Orval""]}",1,17,1
+coast_brewing-sunset_amber,0,0,244490436610,"{""name"":""Sunset Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
+great_lakes_brewing-christmas_ale,0,0,244735410177,"{""name"":""Christmas Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A holiday ale brewed with honey and spiced with fresh ginger and cinnamon. Availability, November to December.""}",1,4,1
+t_bonz_gill_grill_and_brewery-raspberry_wheat,0,0,245107654658,"{""name"":""Raspberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,22,1
+lancaster_brewing_co,0,0,244736262147,"{""name"":""Lancaster Brewing Co."",""city"":""Lancaster"",""state"":""Pennsylvania"",""code"":""17602"",""country"":""United States"",""phone"":""717-391-6258"",""website"":""http://www.lancasterbrewing.com/index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We brew our beer in the heart of Lancaster County, Pennsylvania with great respect for the old traditions of brewing. Our master brewer, Christian Heim, has a strong commitment to quality and uses advanced brewing techniques to produce a consistent and high quality beer. Savor the hopped aromas as they come alive and accentuate the wholesome malt flavors in our ales and lagers."",""address"":[""302 N. Plum St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0438,""lon"":-76.2984}}",1,6,1
+brasserie_la_caracole-troublette,0,0,244497317888,"{""name"":""Troublette"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_caracole"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+ottakringer_brauerei_ag,0,0,244874215424,"{""name"":""Ottakringer Brauerei AG"",""city"":""Wien"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""0043 (0) 1 491000"",""website"":""http://www.ottakringer.at/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ottakringerstrasse 91""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.2133,""lon"":16.3229}}",1,42,1
+brewery_ommegang-rare_vos,0,0,244480278528,"{""name"":""Rare Vos"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,16,1
+estes_park_brewery-samson_stout,0,0,244612923394,"{""name"":""Samson Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our commemorative ale honors Samson the elk. This is an oatmeal stout that is full-bodied with a wonderful roasted flavor and just a touch of sweetness."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
+city_brewing_company_llc,0,0,244479229953,"{""name"":""City Brewing Company, LLC"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":""54601"",""country"":""United States"",""phone"":""1-608-785-4200"",""website"":""http://www.citybrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""City Brewing Company is a premier, state-of-the-art beverage production and packaging company located in La Crosse, WI. Our facility has been transformed from a historical brewery into a facility capable of manufacturing and packaging beers, teas, soft drinks, energy drinks and other new age beverages. Our packaging capacity of over 50 million cases makes us one of the largest beverage producers in the country."",""address"":[""925 South Third Street""]}",1,13,1
+laughing_dog_brewing,0,0,244751007746,"{""name"":""Laughing Dog Brewing"",""city"":""Ponderay"",""state"":""Idaho"",""code"":""83852"",""country"":""United States"",""phone"":""208-263-9222"",""website"":""http://www.laughingdogbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Great Local brew. They have 5 main brews, but the 2 I love most are their Pale Ale and Cream Ale. The Pale Ale has a great hoppy finish, while the Cream Ale has a nice smooth taste. They also have a few other great brews!"",""address"":[""55 Emerald Industrial Park Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.3003,""lon"":-116.538}}",1,41,1
+route_66_brewery-winter_wheat,0,0,245000110081,"{""name"":""Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+basil_t_s_brew_pub_and_italian_grill-apple_ale,0,0,244369522689,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""basil_t_s_brew_pub_and_italian_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,31,1
+crooked_waters_brewing-steamboat_oatmeal_stout,0,0,244489977858,"{""name"":""Steamboat Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crooked_waters_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+tommyknocker_brewery_and_pub-cocoa_porter,0,0,245107392512,"{""name"":""Cocoa Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+troegs_brewing-scratch_16_2008,0,0,245108310016,"{""name"":""Scratch #16 2008"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #16-2008 combines the bitterness of two aroma hops, the lush sweetness of honey and malt and an earthly yeast taste creating a Winter Warmer designed to ward off the coldest days.\r\n\r\nThe dark, rich amber color comes from a combination of molasses and crystal malts; the Thames Valley brings a distinct earthly flavor; white the blend of hops creates fruity (Amarillo) and piney (Cluster) bitterness.\r\n\r\nThe Winter Warmer ends with a slight warming sensation from the elevated alcohol content. Enjoy this one throughout the winter months. Cheers."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,23,1
+gottberg_brew_pub,0,0,244610433024,"{""name"":""Gottberg Brew Pub"",""city"":""Columbus"",""state"":""Nebraska"",""code"":""68601"",""country"":""United States"",""phone"":""1-402-562-6488"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2804 13th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.4295,""lon"":-97.3623}}",1,9,1
+burgerbrau_wolnzach-roggenbier,0,0,244487815170,"{""name"":""Roggenbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""burgerbrau_wolnzach"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
+oakshire,0,0,244874870785,"{""name"":""Oakshire"",""city"":""Eugene"",""state"":""Or"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-07-07 07:44:13"",""description"":"""",""address"":[]}",1,44,1
+ph_woods_diner_and_brewery-hard_woods_pale,0,0,244998340608,"{""name"":""Hard Woods Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ph_woods_diner_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
+f_x_matt_brewing-saranac_golden_pilsner,0,0,244618362882,"{""name"":""Saranac Golden Pilsner"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Pilsener is a light bodied American Wheat Beer that is judiciously hopped with Cascade and Tettnang hops. \""Dry-Hopping\"" imparts the distinctive hop aroma and finish. Look for a smooth, crisp taste and brilliant golden color. Enjoy!"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,28,1
+jolly_pumpkin_artisan_ales-calabaza_blanca,0,0,244735934464,"{""name"":""Calabaza Blanca"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Aged in large oak casks and refermented in the bottle, Calabaza Blanca is a Belgian Biere Blanche. Spiced with orange peel and corriander, you'll find it refreshingly tart, with a wonderfully dry finish."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,5,1
+minneapolis_town_hall_brewery-bright_spot_golden_ale,0,0,244858421251,"{""name"":""Bright Spot Golden Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This American-style golden ale is our lightest, in both color and flavor. Bright Spot is brewed with locally malted 2-row barley and the finest American, Czech and German hops lending a well-balanced, refreshing taste. A compliment to nearly any of our menu choices."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,3,1
+brouwerij_de_gouden_boom,0,0,244497580033,"{""name"":""Brouwerij de Gouden Boom"",""city"":""Brugge"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2094,""lon"":3.2252}}",1,55,1
+dostal_alley-powder_keg_raspberry_porter,0,0,244628586496,"{""name"":""Powder Keg Raspberry Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dostal_alley"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+coopers_brewery-birell,0,0,244477788162,"{""name"":""Birell"",""abv"":0.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Birell has all the hallmarks of a great premium beer, rich colour, full malty flavour and the ability to quench a thirst, with one important difference - virtually no alcohol. \r\n\r\nBrewed under license in Australia by Coopers, Birell is made using only the finest Australian malted barley, hops and yeast, with no artificial additives or preservatives.\r\n\r\nCoopers Birell may be found in most supermarkets (375ml bottles or cans)."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,10,1
+appalachian_brewing_company-coconut_porter,0,0,244376797184,"{""name"":""Coconut Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Based on the winning Homebrew Contest entry by John Slotterback and Fred Rogers, this dark, roasty porter is infused with fresh coconut which produces a sweet finish. The coconut balances the chocolaty notes, producing a taste not unlike German chocolate cake in a glass! This will be brewed in Camp Hill and distributed in limited quantity to Harrisburg and Gettysburg."",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
+brewery_ommegang-three_philosophers,0,0,244478443521,"{""name"":""Three Philosophers"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,12,1
+north_country_brewery-friar_s_porter,0,0,244857765888,"{""name"":""Friar's Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust porter has a lot of caramel and chocolate flavor balanced with the flavor and aroma of fuggle hops."",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+brasserie_de_l_abbaye_des_rocs-grand_cru,0,0,244380205057,"{""name"":""Grand Cru"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+coast_brewing-steel_head_stout,0,0,244478246914,"{""name"":""Steel Head Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
+red_lodge_ales,0,0,244999454722,"{""name"":""Red Lodge Ales"",""city"":""Red Lodge"",""state"":""Montana"",""code"":""59068"",""country"":""United States"",""phone"":""1-406-446-4607"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""417 North Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.1913,""lon"":-109.247}}",1,46,1
+oakshire-watershed_ipa,0,0,244873101314,"{""name"":""Watershed IPA"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oakshire"",""updated"":""2011-07-07 07:44:10"",""description"":"""",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,40,1
+amherst_brewing_company-honey_pilsner,0,0,244370964481,"{""name"":""Honey Pilsner"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp light lager, slightly malty with subtle hints of wildflower honey. Finished with Hallertau and Saaz hops"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,34,1
+alltech_s_lexington_brewing_company-limestone_1897_original_amber_ale_discontinued,0,0,244371488770,"{""name"":""Limestone 1897 Original Amber Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alltech_s_lexington_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
+avery_brewing_company-fourteen,0,0,244372471809,"{""name"":""Fourteen"",""abv"":9.46,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+free_state_brewing-old_backus_barleywine_1997,0,0,244609908736,"{""name"":""Old Backus Barleywine 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""free_state_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,8,1
+golden_gate_park_brewery-frambosia,0,0,244609515523,"{""name"":""Frambosia"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_gate_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,7,1
+climax_brewing_copmany-climax_wheat_ale,0,0,244479688705,"{""name"":""Climax Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoffmann Hefeweizen is our newest offering and is a traditional German wheat beer made from 60% wheat malt and 40% barley malt. Wheat Ales such as this typically have banana and clove flavors but as Dave dislikes clove, he used a special yeast to strengthen the banana flavors. Hefeweizen is a nice, light, crisp summer beer that can be served with lemon or flavored syrups."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,14,1
+brouwerij_van_steenberge-piraat_10_5,0,0,244499087362,"{""name"":""Piraat 10.5%"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Piraat is a 'living' beer, which means that after the primary fermentation in the keg, the beer also continues to evolve during the secondary fermentation in the bottle or in the keg after packaging. This is a world-class amber colored beer. American beer connoisseurs give it 98 out of 100. No other beer scores better. The flavor is so complex and so rich that every swallow conjures up new associations. Note the spicy light sweetness, which is richly balanced with the robust bitterness of the hops. It is an adventure of a beer, a treat.\"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,59,1
+keg_microbrewery_restaurant-brown,0,0,244734885889,"{""name"":""Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
+mad_river_brewing_company,0,0,244876443648,"{""name"":""Mad River Brewing Company"",""city"":""Blue Lake"",""state"":""California"",""code"":""95525"",""country"":""United States"",""phone"":""707-668-4151"",""website"":""http://www.madriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewmaster Bob Smith's dream to open a small brewery began in the late seventies. Seeking knowledge and ingredients Smith joined with a small number of individuals who were laying the foundation of the craft beer movement in California. With a small group of investors Smith formed Mad River Brewing Company in 1989. Now in our 2nd decade we continue our commitment to producing fine ales combining the most traditional brewing methods with an environmentally sound approach. For centuries the English have been known for their brewing expertise. At Mad River Brewing Company we are long on tradition and continue to handcraft our ales in the truest sense. Our award winning ales have become renowned for their unique flavor profile and consistent quality."",""address"":[""101 Taylor Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.8786,""lon"":-123.992}}",1,48,1
+lost_coast_brewery-8_ball_stout,0,0,244857110528,"{""name"":""8-Ball Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,0,1
+firehouse_grill_brewery-red_ale,0,0,244630290435,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
+anheuser_busch-natural_light,0,0,244377255936,"{""name"":""Natural Light"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,50,1
+brasserie_fantme-chocolat,0,0,244480671744,"{""name"":""Chocolat"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+coronado_brewing_company-point_loma_porter,0,0,244490502144,"{""name"":""Point Loma Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter, very dark in color and a roasted malt flavor from chocolate malts. Its slight bitterness is rightfully balanced with a sweet smooth finish. A full-bodied beer with medium hop bitterness and aroma."",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
+great_lakes_brewing-glockenspiel,0,0,244735410178,"{""name"":""Glockenspiel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,4,1
+tailgate_beer-tailgate_amber_wave,0,0,245107720192,"{""name"":""Tailgate Amber Wave"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Why put everything in a category? Live outside the box. The ‘flagship’ of TailGate Beer, Amber Wave, is a completely unique and individual beer that raises the standards and breaks all the molds.\r\n\r\nAmber Wave was inspired by America's amber waves of grain and is as unique as apple pie. The intellectuals behind TailGate Beer created this dark, rose colored ale that drinks like honey and lingers of light caramel, with notes of chocolate and sweet subtle hops. Surprise yourself, and others, with your sophisticated palate and acute ability to find the best beer brewed for drinking, not sampling."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+left_hand_brewing_company-juju_ginger,0,0,244736327680,"{""name"":""JuJu Ginger"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+brauerei_fssla,0,0,244497317889,"{""name"":""Brauerei Fssla"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-26516"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Obere Knigsstrae 19-21""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.8942,""lon"":10.8855}}",1,54,1
+pivara_skopje,0,0,244997816320,"{""name"":""Pivara Skopje"",""city"":""Skopje"",""state"":"""",""code"":"""",""country"":""Macedonia, the Former Yugoslav Republic of"",""phone"":"""",""website"":""http://www.pivaraskopje.com.mk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.0038,""lon"":21.4522}}",1,42,1
+broad_ripple_brewing-porter,0,0,244480278529,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,16,1
+fitger_s_brewhouse_brewery_and_grill,0,0,244612988928,"{""name"":""Fitger's Brewhouse, Brewery and Grill"",""city"":""Duluth"",""state"":""Minnesota"",""code"":""55804"",""country"":""United States"",""phone"":""1-218-726-1392"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""600 East Superior Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.7926,""lon"":-92.0909}}",1,15,1
+deschutes_brewery-red_chair_ipa,0,0,244612005888,"{""name"":""Red Chair IPA"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Chair IPA is named after the oldest operating lift at Mt. Bachelor, a classic old school double that locals flock to on fresh powder mornings. This beer has been wildly popular with our pub regulars, who always seem to know when we have hit on something special. \r\n\r\nThis IPA is a bright copper beauty with a solid head and perfect lacing that typifies Deschutes ales. It has a plush body with satiny caramel flavors derived from seven varieties of malt. Despite all of this, Red Chair is still a hop forward ale, but not in the way many have gotten used to. You will find no cloying, mouth puckering bitterness here. In its place a straight up succulent citrus punch to the nose."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,13,1
+magnolia_pub_and_brewery,0,0,244873232384,"{""name"":""Magnolia Pub and Brewery"",""city"":""San Francisco"",""state"":""California"",""code"":""94117"",""country"":""United States"",""phone"":""1-415-864-7468"",""website"":""http://www.magnoliapub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1398 Haight Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.7702,""lon"":-122.445}}",1,41,1
+russian_river_brewing-supplication,0,0,245000110082,"{""name"":""Supplication"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brown ale aged in Pinot Noir wine barrels for one year with sour cherries, Brettanomyces yeast, and Lactobacillus & Pedicoccus bacteria.""}",1,47,1
+bell_s_brewery_inc-third_coast_old_ale,0,0,244369522690,"{""name"":""Third Coast Old Ale"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A barley wine with deep amber color. The brandy of ales, this beer has vintage character and will mature in the bottle at cellar temperature for years."",""style"":""Old Ale"",""category"":""British Ale""}",1,31,1
+de_struise_brouwers-black_albert,0,0,244622622720,"{""name"":""Black Albert"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_struise_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,38,1
+tucher_bru-bajuvator_doppelbock,0,0,245107392513,"{""name"":""Bajuvator Doppelbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,21,1
+twin_ports_brewing-bourbon_barrel_scotch_ale,0,0,245108310017,"{""name"":""Bourbon Barrel Scotch Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+great_dane_pub_and_brewing_1-black_earth_porter,0,0,244737376256,"{""name"":""Black Earth Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
+camerons_brewery_company,0,0,244487880704,"{""name"":""Camerons Brewery Company"",""city"":""Harltepool"",""state"":""Cleveland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01429)-266-666"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lion Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4995,""lon"":-81.6954}}",1,33,1
+oasis_brewery_and_restaurant-pale_ale,0,0,244874936320,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oasis_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-ipa,0,0,244998340609,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+faultline_brewing_1-kolsch,0,0,244618428416,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_beer,0,0,244736000000,"{""name"":""Hitachino Nest Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
+minneapolis_town_hall_brewery-west_bank_pub_ale,0,0,244858486784,"{""name"":""West Bank Pub Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Most welcoming British pubs off a house ale or \""pub ale\"" — this is ours. We use only the finest English barley, hops and yeast to create this classic English-style pale ale. It is noted for its nice malt flavor balanced with a medium hop presence. The pub ale is often referred to as our house \""session beer\"" (a beer you can drink a number of and not fall off your barstool)."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,3,1
+brouwerij_van_eecke-poperings_hommel_ale,0,0,244497645568,"{""name"":""Poperings Hommel Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_eecke"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+dragonmead_microbrewery-bronze_griffin,0,0,244628586497,"{""name"":""Bronze Griffin"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Sweet Orange Blossom Honey is combined with Belgian two-row malted barley and Munich malt to create another Belgian classic. Tetternger and E. Kent Goldings hops are added to round out the finish of this beer. The aroma of the honey remains without the sugary sweetness."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,52,1
+cooperstown_brewing_company-strike_out_stout,0,0,244477853696,"{""name"":""Strike Out Stout"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Strike Out\"" is brewed with 6 malts including a balanced portion of chocolate and crystal malts. It is also brewed with 5% flaked oats for a velvet-like mouth feel. English pale, Munich and black malt, plus roasted barley round out the malt bill. Considerably lower in alcohol than both Benchwarmer Porter and Old Slugger Pale Ale, \""Strike Out\"" is a well-rounded stout, opaque black in color with a roasted palate."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
+appalachian_brewing_company-hinterland_hefe_weizen,0,0,244376797185,"{""name"":""Hinterland Hefe Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A special German wheat ale yeast produces clove and banana flavors during fermentation leaving this unfiltered beer with an incredibly spicy and fruity complexity!\r\n\r\nOur Brewmaster has acquired many medals at the Great American Beer Festival for this beer style. A difficult, four-step infusion mash schedule produces the complexity of this traditional beer style."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,49,1
+bridgeport_brewing-old_knucklehead_1999,0,0,244478443522,"{""name"":""Old Knucklehead 1999"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+oak_creek_brewery-pullman_porter,0,0,244857765889,"{""name"":""Pullman Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+brasserie_du_bouffay,0,0,244380205058,"{""name"":""Brasserie du Bouffay"",""city"":""Carquefou"",""state"":"""",""code"":""44470"",""country"":""France"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-10-04 00:24:33"",""description"":""La Brasserie du Bouffay est situ"",""address"":[""54 Rue des Monceaux""]}",1,58,1
+coniston_brewing-premium_xb_bluebird_bitter,0,0,244478312448,"{""name"":""Premium XB Bluebird Bitter"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coniston_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+restaurant_isarbru,0,0,244999520256,"{""name"":""Restaurant Isarbru"",""city"":""Pullach im Isartal"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-798961"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kreuzeckstrae 23""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.0708,""lon"":11.5311}}",1,46,1
+ohio_brewing-fest,0,0,244873166848,"{""name"":""Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
+amicas_pizza_microbrews_and_more,0,0,244371030016,"{""name"":""Amicas Pizza, Microbrews and More"",""city"":""Salida"",""state"":""Colorado"",""code"":""81201"",""country"":""United States"",""phone"":""1-719-539-5219"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""136 East Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.535,""lon"":-105.992}}",1,34,1
+anheuser_busch-michelob_light,0,0,244371554304,"{""name"":""Michelob Light"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Michelob Light is a full-flavored and rich-tasting light lager offering a malty sweetness and aromatic hop profile\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
+ballast_point_brewing-yellowtail_pale_ale,0,0,244372471810,"{""name"":""Yellowtail Pale Ale"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""So where can you taste a Kolsch? There are no Kolsches being imported into the United States. So you could fly to Cologne. A better idea is to come to Ballast Point Brewing Company and try our Yellowtail Pale Ale Kolsch. We make it with 5% Wheat, finish hop it with Liberty and Tettnanger hops, and ferment it with a yeast we borrowed from a brewery in Cologne. So come on in and enjoy a taste of the Rhineland!!""}",1,37,1
+glen_ellyn_sports_brew,0,0,244609908737,"{""name"":""Glen Ellyn Sports Brew"",""city"":""Glen Ellyn"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8775,""lon"":-88.067}}",1,8,1
+goose_island_beer_company_clybourn-dublin_stout,0,0,244609581056,"{""name"":""Dublin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+clipper_city_brewing_co-red_sky_at_night,0,0,244479688706,"{""name"":""Red Sky at Night"",""abv"":7.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is brewed in the Belgian Saison style (country farm house ale). A potent yet delicate ale, brewed with a unique Belgian yeast which develops a spicy, fruity flavor. Enormously complex. Available from May to around August."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,14,1
+bube_s_brewery,0,0,244499152896,"{""name"":""Bube's Brewery"",""city"":""Mount Joy"",""state"":""Pennsylvania"",""code"":""17552"",""country"":""United States"",""phone"":""717) 653-2056"",""website"":""http://www.bubesbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Bube's Brewery is located within the original brewery's icehouse. The mash/lauter tun and kettle have a 3.5 bbl capacity (approximately 110 gallons.) The brewers usually brew two consecutive batches to meet the capacity of the 10 bbl fermenters. In the brewery there are two 10 bbl fermenters and one 10 bbl conditioning tank for lagered beer."",""address"":[""102 North Market Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.1119,""lon"":-76.5031}}",1,59,1
+kralovsky_pivovar_krusovice-imperial_czech_premium_lager,0,0,244734885890,"{""name"":""Imperial Czech Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kralovsky_pivovar_krusovice"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+malt_shovel_brewery-james_squire_australian_best_ale_limited_release,0,0,244876509184,"{""name"":""James Squire Australian Best Ale Limited Release"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""malt_shovel_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+manayunk_brewery_and_restaurant-brilliant_barstool,0,0,244857176064,"{""name"":""Brilliant Barstool"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""A true English session ale brewed in the pale ale style using ye olde techniques of yesteryear. Specially crafted to inspire you and your thirstiest mates barstool conversations. Light copper in colour. This pint is quite malty with just enough East Kent hops for a nice, earthy hoppiness. Naturally cask conditioned, this may be served a little cold for a true Brit but is a \r\ncomplimentary double nod to one of the 1st beer styles. Cheers mate!"",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,0,1
+flossmoor_station_brewery-pullman_nut_brown_ale,0,0,244630355968,"{""name"":""Pullman Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+anheuser_busch-ziegenbock_amber,0,0,244377255937,"{""name"":""Ziegenbock Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
+brauerei_herrenhausen-premium_pilsener,0,0,244480737280,"{""name"":""Premium Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_herrenhausen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+crane_river_brewpub_and_cafe-sod_house_altbier,0,0,244490567680,"{""name"":""Sod House Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+harpoon_brewery_boston-harpoon_brown_session_ale,0,0,244735410179,"{""name"":""Harpoon Brown Session Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""Harpoon Brown is brewed to accentuate the sweeter, rounder notes derived from six different malts, including a de-husked chocolate malt that adds a hint of chocolate. The blend of these malts produces a beer that is complex and delicious without being heavy. This drinkable beer is perfect as a session beer or paired with foods.\r\n\r\nThis is the first year-round Harpoon beer the brewery has released in almost a decade. While the craft beer industry has seen a growing trend in \""extreme\"" beers, the brewers of Harpoon wanted to create something they could sit down and enjoy over an extended period of time - a session beer. At 4.3% alcohol by volume, the Harpoon Brown Ale has the lowest alcohol content of all Harpoon beers.\r\n\r\nHarpoon Brown Ale will be available in bottles and on draft beginning in March 2007. An evening of celebrations to toast the beer's release will be held at locations throughout New England on Thursday, March 8th, including tastings at Harpoon's breweries in Boston, MA and Windsor, VT"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
+the_bruery-saison_de_lente,0,0,245107785728,"{""name"":""Saison De Lente"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Spring Saison is light blonde in color with a fresh hoppiness and a wild and rustic Brettanomyces character. Lighter in color and alcohol than our Saison Rue, yet equally complex in its own way. Perfect for warmer weather and Spring celebrations."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,22,1
+lion_brewery_ceylon_ltd,0,0,244859535360,"{""name"":""Lion Brewery Ceylon Ltd."",""city"":""Colombo"",""state"":"""",""code"":"""",""country"":""Sri Lanka"",""phone"":""94-331535-42"",""website"":""http://www.lionbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""No-254, Colombo Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.7548,""lon"":-9.1883}}",1,6,1
+brauereigasthof_adler-pils,0,0,244497383424,"{""name"":""Pils"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauereigasthof_adler"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+pizza_beer-mamma_mia_pizza_beer,0,0,244997881856,"{""name"":""Mamma Mia! Pizza Beer"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizza_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""An ale flavored with fresh tomatoes, oregano, basil and garlic."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,42,1
+brouwerij_nacional_balashi-balashi,0,0,244480278530,"{""name"":""Balashi"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_nacional_balashi"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,16,1
+flossmoor_station_brewery-zephyr_golden_ale,0,0,244612988929,"{""name"":""Zephyr Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
+dock_street_beer-satellite_stout,0,0,244612071424,"{""name"":""Satellite Stout"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dock_street_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""A bold roasty stout with 50lbs of organic fair trade espresso beans. A tribute to the best coffee house in town. Coffee lovers will easily embrace this delicious brew."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
+malt_shovel_brewery-james_squire_india_pale_ale,0,0,244873297920,"{""name"":""James Squire India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""malt_shovel_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+sabmiller_india-haywards_black,0,0,245000175616,"{""name"":""Haywards Black"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Haywards Black, India’s first genuine stout beer , is handcrafted from a rich blend of the world famous Caledon valley dark roasted barley malt along with a blend of imported and locally produced pale malts. New Zealand’s super alpha hops give Haywards Black a unique and pleasantly bitter taste with a hop like aroma. The Dark Roasted malt provides a rich dark colouring along with a unique smoky taste and aroma. The Slow brewing process which incorporates specially managed yeast creates the creamy head and the rich smooth taste that stout is so much loved for. \r\n\r\nhttp://www.sabmiller.in/brands_haywards_black.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+bellows_brew_crew-stout,0,0,244369588224,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
+deschutes_brewery-jubelale,0,0,244622688256,"{""name"":""Jubelale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Did you know that Jubelale was the first beer ever bottled by Deschutes Brewery? Highly anticipated every fall, Jubelale is in a category of its own with a flavor and following that is impossible to match. Dark crystal malt creates that “luscious” holiday note while the roasty flavor and bountiful hops excite your tastebuds, reminding you why Jubelale is the perfect holiday beer"",""style"":""Winter Warmer"",""category"":""Other Style""}",1,38,1
+two_brothers_brewing-domaine_dupage_french_country_ale,0,0,245107392514,"{""name"":""Domaine DuPage French Country Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Domaine DuPage is a rural, northern France, amber colored ale. This well balanced beer is full and sweet up front with caramel, toasty, and fruity characters. The finish has a gentle floral and spicy hop balance that cleanses the palate."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,21,1
+tyranena_brewing-stone_teepee_pale_ale,0,0,245108375552,"{""name"":""Stone Teepee Pale Ale"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The legend of Tyranena began 3,000 years ago, with a group of pyramids and effigy mounds constructed in a remote valley formed by a vast, slow-moving glacier. \r\n\r\nToday, these ancient \""stone tepees\"" lie 60 feet below the surface of Rock Lake in Jefferson County, Wisconsin. No one is certain how or why they were built, but many have speculated on their origin, purpose and the people who built them. \r\n\r\nWe invite you to develop your own theories on the legend and mystery of Tyranena while enjoying a Stone Tepee Pale Ale.\r\n\r\n Stone Tepee Pale Ale is brewed in the tradition of an American pale ale. This beer celebrates the American hop, with its characteristic bitterness, flavor and aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+great_divide_brewing-fresh_hop_pale_ale,0,0,244737376257,"{""name"":""Fresh Hop Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The September hop harvest is a once-a-year opportunity to brew with fresh hops, also called “wet hops.” Given the perishable nature of just-harvested hop cones, they are shipped overnight to Great Divide shortly after harvest. The morning of the scheduled hop delivery in Denver, Great Divide’s brewers begin brewing Fresh Hop and are ready to hop the beer just as the fresh hops are delivered.\r\n\r\nUsing fresh hops is a big endeavor, requiring four to five times the volume of hops compared to the usual process of using pelletized hops. This complex process brings impressive results: Fresh Hop is an American-Style Pale Ale with moderate hop bitterness marked by a unique and intensely grassy hop flavor and aroma. Fresh Hop is a superbly refreshing, medium bodied, light-copper colored pale ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+chimay_abbaye_notre_dame_de_scourmont-chimay_grand_reserve_chimay_blue,0,0,244487880705,"{""name"":""Chimay Grand Reserve(Chimay Blue)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chimay_abbaye_notre_dame_de_scourmont"",""updated"":""2010-07-22 20:00:20"",""description"":""Named Grande Réserve in 75 cl (25.4 fl.oz.) bottles, it is principally distinguished by its character of a strong beer. \r\n\r\nThis is a beer whose fragrance of fresh yeast with a light, flowery rosy touch is especially pleasant. \r\n\r\nIts flavour, noticed when tasting it, only accentuates the pleasant sensations perceived in the aroma , while revealing a light but pleasant touch of roasted malt.\r\n\r\nThis top fermented Trappist beer , refermented in the bottle, is not pasteurised.""}",1,33,1
+oconomowoc_brewing,0,0,244874936321,"{""name"":""Oconomowoc Brewing"",""city"":""Oconomowoc"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.1117,""lon"":-88.4993}}",1,44,1
+aldaris-zelta,0,0,244363755520,"{""name"":""Zelta"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aldaris"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+rogue_ales-uber_pilsner,0,0,244998406144,"{""name"":""Über Pilsner"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A German style Pilsner, pale gold in color, medium bodied with a malty aroma and a crisp hop bitterness (100% Sterling hops). Uber Pils is brewed with three Great Western and two Weyermann malts, Czech Pils Yeast and Free Range Coastal Waters. UberFest Pils is available in the classic Rogue 22-ounce bottle and kegs, from late autumn through early spring. No Chemicals, Additives, or Preservatives"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,43,1
+fish_brewing_company_fish_tail_brewpub-wild_salmon_pale_ale,0,0,244618428417,"{""name"":""Wild Salmon Pale Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+liefmans_breweries-all_saints_belgian_white_ale,0,0,244736000001,"{""name"":""All Saints Belgian White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+north_country_brewery-double_vision_ipa,0,0,244858552320,"{""name"":""Double Vision IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Double your fun, double your pleasure and try and stay out of double trouble with this hopped up I.P.A."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
+brouwerij_van_honsebrouck-kasteel_bier_brune,0,0,244497645569,"{""name"":""Kasteel Bier Brune"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+dublin_brewing,0,0,244628586498,"{""name"":""Dublin Brewing"",""city"":""Dublin"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.3441,""lon"":-6.2675}}",1,52,1
+court_avenue_brewing-capital_raspberry_wheat,0,0,244477853697,"{""name"":""Capital Raspberry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,10,1
+atlantic_brewing_company-bar_harbor_real_ale,0,0,244376797186,"{""name"":""Bar Harbor Real Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atlantic_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A good, clean nutbrown ale with a malty body. This is our most popular ale due to its smooth and malty flavor.\r\n\r\nWe use a mixture of pale, crystal and black malts in this one, and our primary hop is Target, though we also add some Whitbread Goldings Variation as well.\r\n\r\nThe Real Ale is best fresh, so fresh in fact, that it's great right out of the bright tank.""}",1,49,1
+brouwerij_abdij_saint_sixtus-trappist_westvleteren_blonde,0,0,244478443523,"{""name"":""Trappist Westvleteren Blonde"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_abdij_saint_sixtus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,12,1
+onopa_brewing-nut_brown_ale,0,0,244857765890,"{""name"":""Nut Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
+breckenridge_bbq_of_omaha-oatmeal_stout,0,0,244498628608,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_bbq_of_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
+daleside_brewery-old_legover,0,0,244478312449,"{""name"":""Old Legover"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+routh_street_brewery_and_grille-classic_pale,0,0,244999520257,"{""name"":""Classic Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+old_hat_brewery-stubbins_stout,0,0,244873166849,"{""name"":""Stubbins Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
+angelic_brewing,0,0,244371030017,"{""name"":""Angelic Brewing"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53703"",""country"":""United States"",""phone"":""1-608-257-2707"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0785,""lon"":-89.382}}",1,34,1
+anheuser_busch-natural_ice,0,0,244371554305,"{""name"":""Natural Ice"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
+brasserie_brouwerij_cantillon-classic_gueuze,0,0,244372537344,"{""name"":""Classic Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_brouwerij_cantillon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,37,1
+goose_island_beer_company_fulton_street-christmas_ale,0,0,244609908738,"{""name"":""Christmas Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+gottberg_brew_pub-jack_of_spades_schwarzbier,0,0,244609581057,"{""name"":""Jack of Spades Schwarzbier"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,7,1
+coast_range_brewing-auld_lang_syne,0,0,244479754240,"{""name"":""Auld Lang Syne"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+butterfield_brewing_1-pale_bock,0,0,244499152897,"{""name"":""Pale Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""butterfield_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,59,1
+lakefront_brewery-lakefront_ipa,0,0,244734951424,"{""name"":""Lakefront IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,2,1
+manhattan_beach_brewing-pier_pale_ale,0,0,244876509185,"{""name"":""Pier Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manhattan_beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+manhattan_beach_brewing-blonde,0,0,244857241600,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manhattan_beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+four_peaks_brewing-caulfield_s_rye,0,0,244630355969,"{""name"":""Caulfield's Rye"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our rye beer is made with 20% flaked rye and rye malt. The addition of rye creates a dry, spicy flavor with a crisp, grainy aroma. We went with a lighter color and lower bitterness to compliment these flavors. It has an alcohol content of around 4.9%."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,56,1
+appalachian_brewing_company,0,0,244377255938,"{""name"":""Appalachian Brewing Company"",""city"":""Harrisburg"",""state"":""Pennsylvania"",""code"":""17110"",""country"":""United States"",""phone"":""717.221.1080"",""website"":""http://www.abcbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Appalachian Brewing Company is a unique large-capacity microbrewery and full-service brewpub located at 50 North Cameron Street Harrisburg, PA."",""address"":[""50 N. Cameron St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.2659,""lon"":-76.8753}}",1,50,1
+brauerei_schtzengarten,0,0,244480802816,"{""name"":""Brauerei Schtzengarten"",""city"":""Sankt-Gallen"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-071-/-243-43-43"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St. Jakobstrasse 37""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.4301,""lon"":9.3794}}",1,17,1
+crane_river_brewpub_and_cafe-whooping_wheat,0,0,244490567681,"{""name"":""Whooping Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+hochstiftliches_brauhaus_in_bayern,0,0,244735475712,"{""name"":""Hochstiftliches Brauhaus in Bayern"",""city"":""Motten"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9748-/-71-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brckenauer Strae 6""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.3949,""lon"":9.7724}}",1,4,1
+triumph_brewing_of_princeton-amber_ale,0,0,245107785729,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,22,1
+lion_brewery_inc-lionshead,0,0,244859600896,"{""name"":""Lionshead"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
+brewmasters_restaurant_and_brewery_south-icemaster,0,0,244497448960,"{""name"":""Icemaster"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+pony_express_brewing-tornado_ale,0,0,244997947392,"{""name"":""Tornado Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pony_express_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
+cains-ipa,0,0,244480344064,"{""name"":""IPA"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:17:57"",""description"":""IPA is one of Cains"",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,16,1
+flying_dog_brewery-kerberos,0,0,244612988930,"{""name"":""Kerberos"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The long-awaited arrival of our Belgian-style Tripel is upon us. Named after the mythical Greek three-headed dog that guards the gates of hell, Kerberos is a traditional Belgian-style Tripel with a dark golden color has a sweet flavor with a dry and spicy finish. This nectar of the Gods is deceptively strong at 8.5% and is bottle conditioned for an authentic flavor."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,15,1
+dogfish_head_craft_brewery-indian_brown_ale,0,0,244612071425,"{""name"":""Indian Brown Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A cross between a Scotch Ale, an I.P.A., and an American Brown, this beer is well-hopped and malty at the same time. It is brewed with Aromatic barley and caramelized brown sugar."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,13,1
+mcmullen_sons-special_reserve_anniversary_porter,0,0,244873297921,"{""name"":""Special Reserve Anniversary Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmullen_sons"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
+saint_arnold_brewing,0,0,245000175617,"{""name"":""Saint Arnold Brewing"",""city"":""Houston"",""state"":""Texas"",""code"":""77092"",""country"":""United States"",""phone"":""1-713-686-9494"",""website"":""http://www.saintarnold.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Saint Arnold Brewing Company, located in Houston, is Texas' Oldest Craft Brewery. Our goal is to brew world class beers and deliver them to our customers as fresh as possible making them the best beers in Texas. Our customers are beer lovers - people that appreciate great, full-flavored beers. Our small crew of seventeen does everything at the brewery: brew the beer, filter the beer, keg the beer, bottle the beer, sell the beer and drink the beer. For us, this is a passion, not a job. We believe that this comes through in the beers we make. Our beers have soul. "",""address"":[""2522 Fairway Park Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":29.8123,""lon"":-95.4675}}",1,47,1
+bethlehem_brew_works-arc_weld_alt,0,0,244369588225,"{""name"":""Arc Weld Alt"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bethlehem_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Smooth and malty dark copper German ale common to Duseldorf. Brewed with imported Munich malts, tettnang hops and imported yeast giving this brew a unique flovor."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,31,1
+dillon_dam_brewery-extra_special_bitter,0,0,244622688257,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dillon_dam_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+upstream_brewing_company_at_legacy,0,0,245107458048,"{""name"":""Upstream Brewing Company at Legacy"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68130"",""country"":""United States"",""phone"":""1-402-778-0100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""17070 Wright Plaza""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2331,""lon"":-96.1811}}",1,21,1
+victory_brewing-dark_lager,0,0,245108375553,"{""name"":""Dark Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,23,1
+great_waters_brewing_company-capitol_esb,0,0,244737441792,"{""name"":""Capitol ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+cigar_city_brewing-humidor_series_jai_alai_cedar_aged_india_pale_ale,0,0,244487880706,"{""name"":""Humidor Series Jai Alai Cedar Aged India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cigar_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""he Humidor Series is a rotating offering of Cigar City Brewing beer aged on cedar. Cedar has a more subtle effect on beer than more traditional woods like oak. But, we think that once you taste it you’ll agree that cedar deserves a place alongside oak in the brewer’s wood-aging toolbox."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
+onopa_brewing-porter,0,0,244874936322,"{""name"":""Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
+america_s_brewing-golden_light,0,0,244363821056,"{""name"":""Golden Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""america_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
+sabmiller_india-knock_out,0,0,244998406145,"{""name"":""Knock Out"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Country of origin: India \r\nBeer type: Lager \r\nAlcohol content by volume: < 8 % by volume \r\nCarbohydrates: - \r\nTaste: Smooth and strong with a rich malty taste \r\nMalts: Indian malts, 6 row barley \r\nHops: Hops extract from Germany and Indian hops palate \r\nColour: Golden yellow \r\nAvailability: India \r\nFermentation process: Bottom-fermented \r\nServing temperature: 7 - 9 °C \r\nPackaging: 650 ml, 330 ml Indian standard glass bottle ; 500 ml cans and 330 ml cans,( in select markets) \r\n\r\nhttp://www.sabmiller.in/brands_knock-out.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
+flatlander_s_restaurant_brewery-olde_orchard_ale,0,0,244618493952,"{""name"":""Olde Orchard Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
+long_valley_pub_brewery-esb,0,0,244859076608,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+north_country_brewery,0,0,244858552321,"{""name"":""North Country Brewery"",""city"":""Slippery Rock"",""state"":""Pennsylvania"",""code"":""16057"",""country"":""United States"",""phone"":""(724)-794-BEER"",""website"":""http://www.northcountrybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nestled in the heart of downtown Slippery Rock, North Country Brewery typically features 10-15 beers that rotate seasonally. While this unique restaurant and brewery inhabits a former funeral home, it is quite lively inside. Featuring a great menu and fun events, North Country Brewery is a great stop for any beer lover."",""address"":[""141 South Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.0638,""lon"":-80.0556}}",1,3,1
+budjovick_mansk_pivovar-samson_crystal_diplomat_dark_beer,0,0,244497711104,"{""name"":""Samson Crystal Diplomat Dark Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""budjovick_mansk_pivovar"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+egan_brewing-old_gak_strong_ale,0,0,244628652032,"{""name"":""old gak strong ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,52,1
+d_l_geary_brewing_company-geary_s_pale_ale,0,0,244477853698,"{""name"":""Geary's Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""d_l_geary_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""A classic British pale ale with a nod to the legendary beers of Burton-on-Trent. Copper-colored, dry, clean and crisp with lots of late hope taste in an appetizing complex with ale fruitiness from imported Hampshire yeast.\"" ~ http://www.gearybrewing.com/pages/pale.php"",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,10,1
+august_schell_brewing-weizen,0,0,244376862720,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""august_schell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,49,1
+brouwerij_de_achelse_kluis-trappist_bruin_bier_biere_brune,0,0,244478509056,"{""name"":""Trappist Bruin Bier / Bière Brune"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+ottakringer_brauerei_ag-ottakringer_helles,0,0,244857831424,"{""name"":""Ottakringer Helles"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ottakringer_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+bricktown_brewery-get_fuggled,0,0,244498694144,"{""name"":""Get Fuggled"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+de_proef_brouwerij-flemish_primitive_wild_ale_surly_bird,0,0,244610891776,"{""name"":""Flemish Primitive Wild Ale (Surly Bird)"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+san_marcos_brewery_grill-oatmeal_stout,0,0,244999520258,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,46,1
+oregon_trail_brewery-bourbon_barrel_porter,0,0,244873232384,"{""name"":""Bourbon Barrel Porter"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oregon_trail_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,40,1
+anheuser_busch-michelob_winter_s_bourbon_cask_ale,0,0,244371030018,"{""name"":""Michelob Winter's Bourbon Cask Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""During even the coldest of weather, warm up to the smooth, robust taste of our Winter's Bourbon Cask Ale. Full of rich aromas that you find in the winter months, hints of vanilla and flavorful hops, this is a beer that is great for pouring into a large tulip glass and enjoying with friends around a fireplace."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,34,1
+appalachian_brewing_company-ipa_series_horizon,0,0,244371554306,"{""name"":""IPA Series (Horizon)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appalachian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A series of single hop, small batch IPAs brewed in Camp Hill. These IPAs showcase the bitterness, flavor, and aroma of each particular hop variety."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
+brasserie_de_l_abbaye_val_dieu,0,0,244372537345,"{""name"":""Brasserie de l'Abbaye Val-Dieu"",""city"":""Aubel"",""state"":""Lige"",""code"":"""",""country"":""Belgium"",""phone"":""32-087-68-75-87"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Val Dieu 225""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.7046,""lon"":5.822}}",1,37,1
+granite_city_food_brewery_saint_cloud-oktoberfest,0,0,244736983040,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,8,1
+grand_teton_brewing_2-teton_ale,0,0,244736393216,"{""name"":""Teton Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_teton_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+columbia_bay_brewery_restaurant_and_pub-da_bier_altbier,0,0,244479754241,"{""name"":""Da Bier Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""columbia_bay_brewery_restaurant_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,14,1
+calhoun_s_microbrewery,0,0,244499218432,"{""name"":""Calhoun's Microbrewery"",""city"":""Knoxville"",""state"":""Tennessee"",""code"":""37919"",""country"":""United States"",""phone"":""1-865-673-3377"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6515 Kingston Pike""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.932,""lon"":-84.012}}",1,59,1
+listermann_brewing_company-42_cream_ale,0,0,244857896960,"{""name"":""#42 Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""listermann_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,2,1
+mcmullen_sons-special_reserve_oatmeal_ale,0,0,244876509186,"{""name"":""Special Reserve Oatmeal Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmullen_sons"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+marzoni_s_brick_oven_brewing_co-patchway_pale_ale,0,0,244857241601,"{""name"":""Patchway Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Nicely Hopped, Medium Bodied Pale Ale"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,0,1
+fratellos_restaurant_and_brewery-sesquicentennial_light_ale,0,0,244630355970,"{""name"":""Sesquicentennial Light Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+athenian_brewery-athenian,0,0,244377255939,"{""name"":""Athenian"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""athenian_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+brooklyn_brewery-local_1,0,0,244480802817,"{""name"":""Local 1"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brooklyn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In Williamsburg, Brooklyn, we forge barley malt and hops from Germany, aromatic raw sugar from Mauritius and yeast from Belgium into our latest beer, Brooklyn Local 1.\r\n\r\nBehind the full golden color you'll find an alluring aroma, a dynamic complex of flavors, Belgian flair, Brooklyn fortitude and a dusting of our special yeast. To create this beer, we use the old technique of 100% bottle re-fermentation, a practice now rare even in Europe. It gives this beer a palate of unusual depth. Enjoy it locally or globally, as an aperitif or with your favorite dishes. It is particularly nice with spicy seafood and with fine cheeses."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,17,1
+crane_river_brewpub_and_cafe-zlate_pivo_golden_beer,0,0,244490567682,"{""name"":""Zlaté Pivo Golden Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+hoppin_frog_brewery-b_o_r_i_s_the_crusher_oatmeal_imperial_stout,0,0,244735541248,"{""name"":""B.O.R.I.S. The Crusher Oatmeal-Imperial Stout"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Bodacious Oatmeal Russian Imperial Stout will crush you like no other! This is the grand-daddy of all stout styles, with an intensely deep roasted and full bodied flavor. A robust hop character adds a refreshing balance."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,4,1
+triumph_brewing_of_princeton-bengal_gold_india_pale_ale,0,0,245107851264,"{""name"":""Bengal Gold India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+little_apple_brewing-bison_brown_ale,0,0,244859600897,"{""name"":""Bison Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,6,1
+bridgeport_brewing-old_knucklehead_2000,0,0,244497448961,"{""name"":""Old Knucklehead 2000"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+port_washington_brewing,0,0,244997947393,"{""name"":""Port Washington Brewing"",""city"":""Port Washington"",""state"":""Wisconsin"",""code"":""53074"",""country"":""United States"",""phone"":""1-262-377-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.3872,""lon"":-87.8756}}",1,42,1
+cambridge_brewing-cambridge_amber,0,0,244480344065,"{""name"":""Cambridge Amber"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cambridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Well balanced, medium-bodied, with a deep amber-red color, this beer's complex palate covers all the bases. A malty caramel sweetness is followed by notes of chocolate and a dry, slightly roasty finish, complemented by a touch of fruity, spicy hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
+folx_les_caves-grottenbier,0,0,244612988931,"{""name"":""Grottenbier"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""folx_les_caves"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+east_end_brewing_company-ugly_american,0,0,244612071426,"{""name"":""Ugly American"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""THE UGLY AMERICAN is a perfectly enjoyable classic Belgian Trippel corrupted almost beyond recognition with a completely inappropriate amount of US hops. Only in America can such excessive excesses be fully appreciated, celebrated, and enjoyed...and for now, only at East End Brewing! To make this one a little more cellar-able, and a lot more portable, it's going into the bottle."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,13,1
+meckatzer_lwenbru-weiss_gold,0,0,244873363456,"{""name"":""Weiss-Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meckatzer_lwenbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+sherlock_s_home-queen_anne_light,0,0,245000175618,"{""name"":""Queen Anne Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+big_dog_s_brewing_company,0,0,244369588226,"{""name"":""Big Dog's Brewing Company"",""city"":""Las Vegas"",""state"":""Nevada"",""code"":""89130"",""country"":""United States"",""phone"":""1-702-645-1404"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4543 North Rancho Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.2426,""lon"":-115.236}}",1,31,1
+duck_rabbit_craft_brewery-duck_rabbit_brown_ale,0,0,244622753792,"{""name"":""Duck-Rabbit Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duck_rabbit_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Duck-Rabbit Brown Ale is an American brown ale brewed with loads of hops from start to finish (it’s hoppy and beautifully bitter). Amarillo hops in the boil provide a spicy citrusy bitterness. Saaz dry hops in the fermentor provide a refined flowery aroma. These hops are supported by a grain bill of seven varieties of malt. Oh yeah!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,38,1
+utah_brewers_cooperative-wasatch_polygamy_porter,0,0,245107458049,"{""name"":""Wasatch Polygamy Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""utah_brewers_cooperative"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,21,1
+viking_brewing-big_swede_swedish_style_imperial_stout,0,0,245747023872,"{""name"":""Big Swede Swedish-Style Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""viking_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,23,1
+green_bay_brewing-hinterland_amber_ale,0,0,244737441793,"{""name"":""Hinterland Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+commonwealth_brewing_1-special_old_ale,0,0,244487946240,"{""name"":""Special Old Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,33,1
+otter_creek_brewing_wolaver_s_organic_ales,0,0,244875001856,"{""name"":""Otter Creek Brewing & Wolaver's Organic Ales"",""city"":""Middlebury"",""state"":""Vermont"",""code"":""5753"",""country"":""United States"",""phone"":""1-888-473-0727"",""website"":""http://www.ottercreekbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Otter Creek beers are craft brewed with the finest domestic malts and hops available."",""address"":[""793 Exchange Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0197,""lon"":-73.1693}}",1,44,1
+anheuser_busch-michelob_black_tan,0,0,244363886592,"{""name"":""Michelob Black & Tan"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+saint_arnold_brewing-saint_arnold_amber_ale,0,0,244998471680,"{""name"":""Saint Arnold Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A well balanced, full flavored, amber ale. It has a rich, malty body with a pleasant caramel character derived from a specialty Caravienne malt. A complex hop aroma, with a hint of floral and citrus comes from a combination of Cascades and Liberty hops. It has a rich, creamy head with a fine lace. The light fruitiness, characteristic of ales, is derived from a proprietary yeast strain. \r\n\r\nSaint Arnold Amber Ale is best consumed at 50 - 55° Fahrenheit."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,43,1
+abbaye_de_leffe-brune_brown,0,0,244363362304,"{""name"":""Brune (Brown)"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""abbaye_de_leffe"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark brown with a nice tan head.\r\nSweet and aromatic.\r\nSmooth and best served cold from a goblet or chalice.\r\n\r\nI have had this on tab, in a 12oz bottle and 1 liter bottle. It is very common on to be on tap in Belgium and Paris as well as in a bottle in the UK.\r\n\r\nI have not seen it in the US nor can I find a distributor that could get it.""}",1,18,1
+gaslight_brewery-bulldog_blonde,0,0,244618493953,"{""name"":""Bulldog Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+main_street_alehouse-powell_porter,0,0,244859076609,"{""name"":""Powell Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
+northwoods_brewpub_grill-dark_walnut_stout,0,0,244858617856,"{""name"":""Dark Walnut Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,3,1
+california_cider_company-ace_pear_cider,0,0,244497711105,"{""name"":""Ace Pear Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""california_cider_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+egan_brewing-who_the_helles_chuck,0,0,244628652033,"{""name"":""Who The Helles Chuck?"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+deep_creek_brewing,0,0,244610498560,"{""name"":""Deep Creek Brewing"",""city"":""McHenry"",""state"":""Maryland"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.5584,""lon"":-79.3528}}",1,10,1
+aviator_brewing_company-old_bulldog_extra_special,0,0,244376862721,"{""name"":""Old BullDog Extra Special"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aviator_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A hearty extra special beer or basically a pale ale on steroids. A dark amber beer with a rich blend of malts. The base malt is full kilned pale 2-row barley and is combined with full tasting crystal malt. This beer has a great heavy late hop addition of East Kent Goldings (that cost us our lunch money for weeks...). ALWAYS AVAILABLE or at least we try."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,49,1
+brouwerij_lindemans-gueuze_cuvee_rene,0,0,244478574592,"{""name"":""Gueuze Cuvée René"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_lindemans"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden hue sets off the wonderful almost champagne like taste.""}",1,12,1
+pacific_beach_brewhouse-crystal_pier_pale_ale,0,0,244857831425,"{""name"":""Crystal Pier Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+bridgeport_brewing-porter,0,0,244498759680,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bridgeport_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
+double_mountain_brewery_taproom,0,0,244610957312,"{""name"":""Double Mountain Brewery & Taproom"",""city"":""Hood River"",""state"":""Oregon"",""code"":""97031"",""country"":""United States"",""phone"":""541-387-0042"",""website"":""http://www.doublemountainbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Matt Swihart and Charlie Devereux founded Double Mountain in 2007 with a clear mission: make great beer for craft beer fans. Ours is a brewers' brewery, with an uncompromising focus on beer quality. From the beginning, our goal was to make beers that we liked to drink. All of our beers are served up unfiltered and long-aged, to deliver maximum flavor and character. The beers can be very complex and assertive, but with the ultimate goal of proper balance. We aim to satisfy both the hardcore aficionados and the more casual craft beer fan, all in the same glass."",""address"":[""8 Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.71,""lon"":-121.515}}",1,11,1
+sand_creek_brewing_company-groovy_beer,0,0,244999585792,"{""name"":""Groovy Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,46,1
+pacific_rim_brewing-driftwood_ale,0,0,244997160960,"{""name"":""Driftwood Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+backwater_brewing-wingdam_wheat,0,0,244371095552,"{""name"":""Wingdam Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""backwater_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
+arcobrau_grafliches_brauhaus,0,0,244371619840,"{""name"":""Arcobrau Grafliches Brauhaus"",""city"":""Moos"",""state"":""Baden-Wurttemberg"",""code"":""94554"",""country"":""Germany"",""phone"":""09938 / 918 180"",""website"":""http://www.arcobraeu.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schlossalle 1""]}",1,35,1
+brasserie_dupont-avec_les_bons_voeux,0,0,244372602880,"{""name"":""Avec Les Bons Voeux"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+great_dane_pub_and_brewing_1-bourbon_barleywine,0,0,244737048576,"{""name"":""Bourbon Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+green_flash_brewing,0,0,244736458752,"{""name"":""Green Flash Brewing"",""city"":""Vista"",""state"":""California"",""code"":""92083"",""country"":""United States"",""phone"":""1-760-597-9012"",""website"":""http://www.greenflashbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1430 Vantage Court #104A""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.136,""lon"":-117.225}}",1,7,1
+d_l_geary_brewing_company,0,0,244479819776,"{""name"":""D.L. Geary Brewing Company"",""city"":""Portland"",""state"":""Maine"",""code"":""4103"",""country"":""United States"",""phone"":"""",""website"":""http://www.gearybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The D.L. Geary Brewing Company was incorporated in October, 1983 by David and Karen Geary who shared the vision of producing world class products on a small scale for local and regional consumption. At that time, there were only 13 so-called microbreweries in the United States, almost all of them in California and the Pacific Northwest. In the winter of 1984, David Geary began a period of training and research in Scotland and England. With the help of Peter Maxwell Stuart, a Scottish nobleman and brewer who arranged introductions and itineraries, he worked in a half-dozen small commercial breweries from the highlands of Scotland to the south coast of England."",""address"":[""38 Evergreen Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.7076,""lon"":-70.3149}}",1,14,1
+cervejaria_kaiser_brasil,0,0,244499218433,"{""name"":""Cervejaria Kaiser Brasil"",""city"":""Ponta Grossa"",""state"":""Paran"",""code"":"""",""country"":""Brazil"",""phone"":""55-(42)-219-2000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Avenida Tocantins, 199 / Caixa Postal 621""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-25.1688,""lon"":-50.1298}}",1,59,1
+mad_crab_restaurant_and_brewery-pirates_pilsner,0,0,244857896961,"{""name"":""Pirates Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+mickey_finn_s_brewery-gudenkrisp_kolsch,0,0,244876574720,"{""name"":""Güdenkrisp Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+mercury_brewing_company-1084_barleywine,0,0,244857241602,"{""name"":""1084 Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,0,1
+front_street_brewery,0,0,244630421504,"{""name"":""Front Street Brewery"",""city"":""Davenport"",""state"":""Iowa"",""code"":""52801"",""country"":""United States"",""phone"":""1-563-322-1569"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""208 East River Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5202,""lon"":-90.5725}}",1,56,1
+atwater_block_brewing-mai_bock,0,0,244377321472,"{""name"":""MAI-BOCK"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional german helles bock, golden in color and brewed with only the finest imported malt and hops. The distinct malty sweetness is balanced by a pronounced hop finish. Brewed to Welcome the Spring Season."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
+brouwerij_de_dolle_brouwers-stille_nacht,0,0,244480802818,"{""name"":""Stille Nacht"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+de_halve_maan-brugse_zot_double,0,0,244623147008,"{""name"":""Brugse Zot Double"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_halve_maan"",""updated"":""2010-07-22 20:00:20"",""description"":""Besides the goldenblond ale, a darker version of the townbeer has been created : Brugse Zot double, with 7,5 % Vol alc. It is brewed with 6 special kinds of malt, which give the beer a rich taste. The worldly renowned Tcheque Saaz hop from Zatec has been chosen to give the beer this unique bitter note. Brugse Zot double is a fill and stronger beer, highly appreciated by the beerlovers."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,39,1
+hoppy_brewing_company,0,0,244735541249,"{""name"":""Hoppy Brewing Company"",""city"":""Sacramento"",""state"":""California"",""code"":""95819"",""country"":""United States"",""phone"":""1-916-451-4677"",""website"":""http://www.hoppy.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Currently, our company is growing our full service brewpub here in Sacramento, while at the same time self-distributing our products to retailers in the Sacramento area. We are brewing all of our products here in Sacramento and have 10 products on tap here at the brewpub. In addition, our current California distribution network consists of just one hard working distributor: A & D Distributing. We utilize this established distributor in their selected market to sell principally to the packaged/bottle market through authorized retail outlets, and the on-premises draft market through establishments licensed to serve alcoholic beverages. Our core products (i.e., Hoppy Face, Liquid Sunshine and Total Eclipse) are currently available in draft and 22 ounce bottles, and only available in the Sacramento and San Jose areas, but that will likely change as we continue to expand this year."",""address"":[""6300 Folsom Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5551,""lon"":-121.43}}",1,4,1
+upstream_brewing_old_market-capitol_premium_pale_ale,0,0,245107851265,"{""name"":""Capitol Premium Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our English-style pale ale is a medium-bodied \r\namber beer. Light, malty flavors combine with aromatic \r\nhops for a beer that is thirst quenching and easy \r\nto drink. One of our most popular beers."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,22,1
+mad_crab_restaurant_and_brewery-wheat,0,0,244859666432,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
+brouwerij_alken_maes,0,0,244497448962,"{""name"":""Brouwerij Alken-Maes"",""city"":""Jumet"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-071-34-02-22"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue Derbque 7""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.4431,""lon"":4.4147}}",1,54,1
+porterhouse_restaurant_and_brewpub,0,0,244998012928,"{""name"":""Porterhouse Restaurant and Brewpub"",""city"":""Lahaska"",""state"":""Pennsylvania"",""code"":""18931"",""country"":""United States"",""phone"":""1-215-794-9373"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5775 Lower Mountain Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.3341,""lon"":-75.012}}",1,42,1
+capitol_city_brewing_4,0,0,244480344066,"{""name"":""Capitol City Brewing #4"",""city"":""Arlington"",""state"":""Virginia"",""code"":""22206"",""country"":""United States"",""phone"":""1-703-578-3888"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2700 South Quincy Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.8411,""lon"":-77.0869}}",1,16,1
+fratellos_restaurant_and_brewery-fox_light,0,0,244613054464,"{""name"":""Fox Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
+elysian_brewery_public_house-loki,0,0,244612071427,"{""name"":""Loki"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+mercury_brewing_company-ipswich_harvest,0,0,244873363457,"{""name"":""Ipswich Harvest"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Highly regarded among hop-lovers, our Harvest Ale is a balanced and flavorful autumnal offering, to be enjoyed during the cool, crisp days of fall. We use a darker Caramunich malt and just a touch of chocolate malt along with a blend of Warrior, Ahtanum, and Columbus hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
+ship_inn_brewpub-golden_wheat_light,0,0,245000241152,"{""name"":""Golden Wheat Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+blue_point_brewing-toasted_lager,0,0,244369653760,"{""name"":""Toasted Lager"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""TOASTED LAGER\r\n\r\nBlue Point Brewing's award-winning Toasted Lager is our flagship product. Copper in color this brew is made from six different malts including: English Pale, Crystal, Munich, Carapils, Wheat and Belgian Caravienna. Toasted Lager displays a balanced flavor of malt and hop which makes for easy drinking. Special lager yeast is used to produce that long lasting, smooth finish. The \""toasted\"" part of the name refers to our direct-fire brew kettle’s hot flames that impart a toasted flavor to our most popular microbrew."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+eel_river_brewing,0,0,244622753793,"{""name"":""Eel River Brewing"",""city"":""Fortuna"",""state"":""California"",""code"":""95540"",""country"":""United States"",""phone"":""1-707-725-2739"",""website"":""http://eelriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1777 Alamar Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5793,""lon"":-124.153}}",1,38,1
+valley_brewing_company-uberhoppy_imperial_ipa,0,0,245107458050,"{""name"":""Uberhoppy Imperial IPA"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A massively hopped Imperial IPA brewed to celebrate Valley Brews 10th anniversary. 1 pound of hops were added every 10 minutes during a 100 minute boil, a total of 10 different boiling hops. 4 different fresh hops were used in the hopback and then the beer was passed through a chamber containing 10 lbs of fresh hops on the way from the serving tanks to the bar taps. Hopperiffic."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,21,1
+vintage_50_restaurant_and_brew_lounge-50_cat_ipa,0,0,245747023873,"{""name"":""50 CAT IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vintage_50_restaurant_and_brew_lounge"",""updated"":""2010-07-22 20:00:20"",""description"":""An American style India Pale Ale. This medium bodied, light bronze hued brew has an aggressive hop character and flavor from the use of American hops in dry hopping. Our interpretation comes in at 13.0 degrees plato with IBU’s in the mid 40’s. The American hop varietals used as Kettle additions were Amarillo and Chinook and this was dry hopped with Chinook as well."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,23,1
+green_flash_brewing-west_coast_ipa,0,0,244737507328,"{""name"":""West Coast IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This West Coast-Style India Pale Ale is extravagantly hopped, full flavored, medium bodied and copper colored. A menagerie of hops is combined throughout the brewing process to impart specific characteristics. Hops used include Simcoe for a unique fruitiness and grapefruit zest, Columbus for strong hop pungency, Centennial for pine and citrus notes, and Cascade for floral aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
+deschutes_brewery-the_abyss,0,0,244620066816,"{""name"":""The Abyss"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Abyss has immeasurable depth inviting you to explore and discover its rich, complex profile. Hints of molasses, licorice and other alluring flavors draw you in further and further with each sip. And at 11% alcohol by volume, you will want to slowly savor each and every ounce. \r\n\r\nNovember 2008 marks the third release of this dark and mysterious imperial stout. Limited availability in wax-dipped 22-ounce bottles and on draft at a few select establishments. \r\n\r\n“The Abyss was one of those beers I didn’t want to end. I was totally blown away - this is precious stuff.” Christian DeBenedetti, beer writer and Men’s Journal contributor"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,33,1
+pleasanton_main_street_brewery-zone_7_porter,0,0,244998602752,"{""name"":""Zone 7 Porter"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
+appleton_brewing-adler_brau_classic_porter,0,0,244363886593,"{""name"":""Adler Bräu Classic Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
+san_diego_brewing-grantville_gold,0,0,244998471681,"{""name"":""Grantville Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+alesmith_brewing-wee_heavy,0,0,244363362305,"{""name"":""Wee Heavy"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""alesmith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,18,1
+granite_city_food_brewery_saint_cloud-victory_lager,0,0,244745371648,"{""name"":""Victory Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
+maritime_pacific_brewing-clipper_gold_hefeweizen,0,0,244859142144,"{""name"":""Clipper Gold Hefeweizen"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+old_hat_brewery-apple_ale,0,0,244858617857,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,3,1
+capital_brewery,0,0,244497711106,"{""name"":""Capital Brewery"",""city"":""Middleton"",""state"":""Wisconsin"",""code"":""53562"",""country"":""United States"",""phone"":""1-608-836-7100"",""website"":""http://www.capital-brewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7734 Terrace Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0949,""lon"":-89.5163}}",1,55,1
+element_brewing_company,0,0,244628652034,"{""name"":""Element Brewing Company"",""city"":""Millers Falls"",""state"":""MA"",""code"":""01349"",""country"":""United States"",""phone"":""413-835-6340"",""website"":""http://www.elementbeer.com"",""type"":""brewery"",""updated"":""2011-04-18 05:17:29"",""description"":""Nano Brewery specializing in bottle conditioned ales."",""address"":[""30 Bridge St""]}",1,52,1
+deschutes_brewery-black_butte_xxi,0,0,244610498561,"{""name"":""Black Butte XXI"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""It usually means bigger. Richer. And we can think of no better way to describe the taste of this even-bolder take on our classic, Black Butte Porter. Black Butte XX is an imperial porter with a lot more malt and hops, a wealth of coffee, cocoa nibs and aged in bourbon oak barrels. XX. It also means 20. Enjoy one during our 20th anniversary. On the flavor scale - It’s legendary."",""style"":""Porter"",""category"":""Irish Ale""}",1,10,1
+barfer_das_kleine_brauhaus-blonde,0,0,244376862722,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barfer_das_kleine_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+brouwerij_roman,0,0,244478574593,"{""name"":""Brouwerij Roman"",""city"":""Oudenaarde"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-055-45-54-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hauwaart 105""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.831,""lon"":3.6759}}",1,12,1
+paulaner-1634_urtyp_hell,0,0,244980711424,"{""name"":""1634 Urtyp Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+brouwerij_de_dolle_brouwers-special_extra_export_stout,0,0,244498759681,"{""name"":""Special Extra Export Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+fish_brewing_company_fish_tail_brewpub-winterfish_ale,0,0,244610957313,"{""name"":""WinterFish Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
+santa_rosa_brewing-wee_heavy,0,0,244999585793,"{""name"":""Wee Heavy"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_rosa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,46,1
+paulaner-hacker_pschorr_original_oktoberfest,0,0,244997226496,"{""name"":""Hacker-Pschorr Original Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,40,1
+ballast_point_brewing-navigator_doppelbock,0,0,244371161088,"{""name"":""Navigator Doppelbock"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,34,1
+bbc_brewing_co_llc-hell_for_certain,0,0,244371619841,"{""name"":""Hell for Certain"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bbc_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+brauerei_leibinger-edel_spezial,0,0,244489256960,"{""name"":""Edel-Spezial"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_leibinger"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+hereford_hops_steakhouse_and_brewpub_3-schwarzbier,0,0,244737048577,"{""name"":""Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,8,1
+grolsche_bierbrouwerij-grolsch_dunkel_weizen,0,0,244736458753,"{""name"":""Grolsch Dunkel Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""Grolsch Dunkel Weizen is the darker version of Grolsch Premium Weizen."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,7,1
+de_friese_bierbrouwerij_us_heit-us_heit_dubbel_tarwe_bier,0,0,244612333568,"{""name"":""Us Heit Dubbel Tarwe Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_friese_bierbrouwerij_us_heit"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,14,1
+cherryland_brewing-cherry_rail,0,0,244499218434,"{""name"":""Cherry Rail"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,59,1
+magic_hat-circus_boy,0,0,244857962496,"{""name"":""Circus Boy"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""THE Hefeweizen. Unfiltered and unfettered, Circus Boy is a unique and refreshing American-style Hefeweizen. Is he a who? Or a what? Or perhaps some of both? \r\n\r\nBrewed with organic lemongrass."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
+mickey_finn_s_brewery-main_street_raz,0,0,244876574721,"{""name"":""Main Street Raz"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,48,1
+middle_ages_brewing-the_duke_of_winship,0,0,244857241603,"{""name"":""The Duke of Winship"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A sensual dark brew with the softness of a Scotch ale crafted with the malt make-up of an English Porter."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,0,1
+frstliche_brauerei_thurn_und_taxis_regensburg,0,0,244630421505,"{""name"":""Frstliche Brauerei Thurn Und Taxis Regensburg"",""city"":""Regensburg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9451-/-412"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Waffnergasse 6-8""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.0156,""lon"":12.0913}}",1,56,1
+aviator_brewing_company-hotrod_red,0,0,244377321473,"{""name"":""HotRod Red"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""aviator_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A somewhat classic Irish Red Ale. This ale is feisty and a bit hoppy. There is a malty sweetness and a somewhat dry finish. Traditional East Kent Goldings but with a nice touch of Cascade and dash of roasted barley give this ale a great taste. ALWAYS AVAILABLE...or at least we try."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,50,1
+brouwerij_de_smedt-affligem_dobbel,0,0,244480868352,"{""name"":""Affligem Dobbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_smedt"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+de_leyerth_brouwerijen-urthel_novicius_vertus,0,0,244623212544,"{""name"":""Urthel Novicius Vertus"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+indian_wells_brewing-mojave_red,0,0,244735541250,"{""name"":""Mojave Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
+vetter_s_alt_heidelberger_brauhaus,0,0,245107916800,"{""name"":""Vetter�s Alt Heidelberger Brauhaus"",""city"":""Heidelberg"",""state"":""Baden-Württemberg"",""code"":""69117"",""country"":""Germany"",""phone"":"""",""website"":""http://www.brauhaus-vetter.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founded 1987, Vetter Old Heidelberg Brewpub, was the first Bewpub in Heidelberg."",""address"":[""Steingasse 9""]}",1,22,1
+mammoth_brewing-amber,0,0,244859666433,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mammoth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,6,1
+brouwerij_de_ranke-guldenberg,0,0,244497448963,"{""name"":""Guldenberg"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+prairie_rock_brewing_elgin-ale,0,0,244998012929,"{""name"":""Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,42,1
+cedar_brewing,0,0,244480409600,"{""name"":""Cedar Brewing"",""city"":""Cedar Rapids"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.9625,""lon"":-91.6918}}",1,16,1
+furstlich_furstenbergische_brauerei-pils,0,0,244613054465,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""furstlich_furstenbergische_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+endehouse_brewery_and_restaurant-porter,0,0,244612136960,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""endehouse_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
+michigan_brewing-russian_imperial_stout,0,0,244873428992,"{""name"":""Russian Imperial Stout"",""abv"":10.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Take an India Pale Ale and feed it steroids! Although open to the same interpretation as its sister styles, you should expect something robust, malty, alcoholic and with a hop profile that might rip your tongue out. The Imperial usage comes from Russian Imperial stout, a style of strong stout originally brewed in England for the Russian Imperial Court of the late 1700s; though Double IPA is often the preferred name."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,41,1
+shipwrecked_brew_pub-bayside_blonde_ale,0,0,245000241153,"{""name"":""Bayside Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+bonaventure_brewing_co,0,0,244369653761,"{""name"":""Bonaventure Brewing Co"",""city"":""Los Angeles"",""state"":""California"",""code"":""90071"",""country"":""United States"",""phone"":""(213) 236-0802"",""website"":""http://www.bonaventurebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Local beers brewed on-site on the 4th floor patio of the Bonaventure Hotel. Terrific views of Downtown LA, traditional American food, friendly staff, local flavor."",""address"":[""404 South Figueroa Street #418""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.0532,""lon"":-118.256}}",1,31,1
+egan_brewing-j_s_stout,0,0,244622819328,"{""name"":""J&S; Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+wainwright_brewing-evil_eye_ale,0,0,245746892800,"{""name"":""Evil Eye Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wainwright_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+walldorff_brew_pub-hopnoxxxious,0,0,245747089408,"{""name"":""Hopnoxxxious"",""abv"":7.45,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""This hophead's delight contains 7 hop additions. A malt background balances the hoppy bitterness for a complex flavor."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,23,1
+grizzly_bay_brewing-hammerhead_red,0,0,244737507329,"{""name"":""Hammerhead Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+diamond_knot_brewery_alehouse-icebreaker_barley_wine,0,0,244620132352,"{""name"":""Icebreaker Barley Wine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh-wiesen_edel_weisse,0,0,244998668288,"{""name"":""Wiesen Edel Weisse"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,44,1
+avery_brewing_company-karma,0,0,244363886594,"{""name"":""Karma"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,19,1
+sapporo_breweries_chuo,0,0,244998471682,"{""name"":""Sapporo Breweries - Chuo"",""city"":""Tokyo"",""state"":""Kanto"",""code"":"""",""country"":""Japan"",""phone"":""81-(03)-3572-6111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10-1 Ginza 7-chome, Chuo-ku""]}",1,43,1
+allentown_brew_works-pawn_shop_porter,0,0,244363362306,"{""name"":""Pawn Shop Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""allentown_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark brown with ruby highlights this brew has a deep chocolate flavor backed by a smooth caramel finish. Brewed with English malt and hops for an authentic flavor"",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
+green_flash_brewing-barleywine,0,0,244745437184,"{""name"":""Barleywine"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American-style Barleywine undergoes a three hour boil to intensify the caramel malts and the enormous Pacific Northwest hop charge. The result is a rich, estery brew with toffee notes and citrus hop flavors layered throughout. Enjoy this brew fresh today or lay it down for aging to see how the flavors of each vintage evolve."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,28,1
+mcguire_s_irish_pub_and_brewery_pensacola-what_the_gent_on_the_floor_is_having_1997,0,0,244859207680,"{""name"":""What the Gent on the Floor is Having 1997"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcguire_s_irish_pub_and_brewery_pensacola"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+otter_creek_brewing_wolaver_s_organic_ales-stovepipe_porter,0,0,244858617858,"{""name"":""Stovepipe Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Stovepipe Porter is made in the traditional porter stlye, and is a favorite with all porter lovers. Ruby-black in color, Stovepipe Porter has a rich palate and a roasted, hoppy aroma. It is delicious on its own or with a meal, and tastes great with chocolate."",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
+cerveceria_la_constancia-caguama,0,0,244497776640,"{""name"":""Caguama"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cerveceria_la_constancia"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,55,1
+elk_creek_cafe_and_aleworks-winkleblink_ale,0,0,244628717568,"{""name"":""Winkleblink Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""This light colored ale gains its subtle, bread-like flavor from a balance of gently kilned malted barley and choice malted wheat. A restrained addition of hops, contributes a pleasingly delicate floral aroma."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,52,1
+doemens_e_v-1809,0,0,244610564096,"{""name"":""1809"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""doemens_e_v"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+bavarian_barbarian_brewing_company-hammerin_ale,0,0,244376862723,"{""name"":""Hammerin' Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hammerin’ Ale is the Barbarian’s first beer. Brewed to be a well-balanced, easy-going beer, Hammerin’ Ale comes from a rather simple recipe which yields a deep amber color and a sublime balance of malt character and hop flavors. This beer goes very well with grilled meats and is meant to be enjoyed year-round. Hammerin’ Ale is an excellent choice for “Barbarians” who are new to craft beer."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,49,1
+brouwerij_slaghmuylder-witkap_pater_tripel,0,0,244478574594,"{""name"":""Witkap-Pater Tripel"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_slaghmuylder"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+abbaye_notre_dame_du_st_remy,0,0,244379549696,"{""name"":""Abbaye Notre Dame du St Remy"",""city"":""Rochefort"",""state"":""Namur"",""code"":"""",""country"":""Belgium"",""phone"":""32-084/22.01.47"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rue de l'Abbaye 8""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.1999,""lon"":5.2277}}",1,57,1
+pleasanton_main_street_brewery-pleasanton_pale,0,0,244980711425,"{""name"":""Pleasanton Pale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+brouwerij_kerkom,0,0,244498759682,"{""name"":""Brouwerij Kerkom"",""city"":""Kerkom"",""state"":""Limburg"",""code"":"""",""country"":""Belgium"",""phone"":""32-011-68-20-87"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Naamsesteenweg 469""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.7763,""lon"":5.166}}",1,58,1
+flyers_restraunt_and_brewery-peacemaker_porter,0,0,244611022848,"{""name"":""Peacemaker Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter in style, a dark and full bodied ale with hints of roasted barley and flavors of coffee and bitter sweet chocolate on the palate."",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
+schloss_eggenberg-urbock_23,0,0,244999651328,"{""name"":""Urbock 23°"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""Schloss Eggenberg Urbock 23° is one of the strongest beers in the world. We keep the Urbock 23° in our Schloss cellars for 9 months until it is dark gold and strongly matured. Urbock 23° has received the highest acknowledgments and honours at international exhibitions and world evaluations. It is brewed exclusively from natural raw ingredients after the purity requirement of 1516. Schloss Eggenberg Urbock is filled in a 0.33 litre designer bottle embossed with Schloss Eggenberg and in barrels for the export (20 and 30 litre)."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,46,1
+ridgeway_brewing-ipa,0,0,244997226497,"{""name"":""IPA"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
+bear_republic_brewery-xp_pale_ale,0,0,244371161089,"{""name"":""XP Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
+bear_republic_brewery,0,0,244371619842,"{""name"":""Bear Republic Brewery"",""city"":""Healdsburg"",""state"":""California"",""code"":""95448"",""country"":""United States"",""phone"":""1-707-433-2337"",""website"":""http://www.bearrepublic.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""345 Healdsburg Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.6112,""lon"":-122.871}}",1,35,1
+brauerei_und_altbierkche_pinkus_mller-organic_hefewizen,0,0,244489322496,"{""name"":""Organic Hefewizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_und_altbierkche_pinkus_mller"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,37,1
+herkimer_pub_brewery,0,0,244737048578,"{""name"":""Herkimer Pub & Brewery"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55408"",""country"":""United States"",""phone"":""1-612-821-0101"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2922 Lyndale Avenue South""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9491,""lon"":-93.2885}}",1,8,1
+hale_s_ales_3-el_jefe_weizen_ale,0,0,244736458754,"{""name"":""El Jefe Weizen Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
+de_proef_brouwerij-andelot_angelique,0,0,244612399104,"{""name"":""Andelot Angelique"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+crabby_larry_s_brewpub_steak_crab_house-crabby_larry_s_irish_red_ale,0,0,244499283968,"{""name"":""Crabby Larry's Irish Red Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crabby_larry_s_brewpub_steak_crab_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich and smooth on the pallate this ale is a near perfect \""Irish Red\"". A variety of hops, Mt. Hood, Liberty & Fuggles combined with some roasted barley make an agreeable brew."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,59,1
+michigan_brewing-mackinac_pale_ale,0,0,244857962497,"{""name"":""Mackinac Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic American style pale ale. A well balanced, light copper colored, medium bodied ale with a distinctive hop bitterness and aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
+moylan_s_brewery_restaurant-kilt_lifter_scottish_ale,0,0,244876574722,"{""name"":""Kilt Lifter Scottish Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,48,1
+mill_steakhouse,0,0,244857307136,"{""name"":""Mill Steakhouse"",""city"":""Littleton"",""state"":""Colorado"",""code"":""80120"",""country"":""United States"",""phone"":""1-303-798-5280"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5798 South Rapp Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.612,""lon"":-105.019}}",1,0,1
+g_heileman_brewing-special_export,0,0,244630421506,"{""name"":""Special Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""g_heileman_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
+bamberger_mahr_s_bru-hefeweissbier,0,0,244377321474,"{""name"":""Hefeweißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bamberger_mahr_s_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
+brouwerij_strubbe-vlas_kop,0,0,244480868353,"{""name"":""Vlas Kop"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_strubbe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+denver_chophouse_and_brewery-redwing,0,0,244623212545,"{""name"":""Redwing"",""abv"":4.73,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
+isle_of_skye_brewing_company-wee_beast,0,0,244735606784,"{""name"":""Wee Beast"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""isle_of_skye_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,4,1
+yaletown_brewing-downtown_brown,0,0,245747023872,"{""name"":""Downtown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yaletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,22,1
+marshall_brewing_company,0,0,244859666434,"{""name"":""Marshall Brewing Company"",""city"":""Tulsa"",""state"":""Oklahoma"",""code"":""74104"",""country"":""United States"",""phone"":""(918) 292-8781"",""website"":""http://marshallbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""618 S. Wheeling Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":36.152,""lon"":-95.9647}}",1,6,1
+cains-finest_bitter,0,0,244497448964,"{""name"":""Finest Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cains"",""updated"":""2011-05-17 03:09:21"",""description"":""A regular winner of awards for quality and flavour, and winner of the silver medal at the International Brewing Industry Awards 2002, this refreshing yet full-bodied bitter is a favourite with beer drinkers everywhere. The rich flavours of premium malt and goldings hops are unmistakable in this well balanced, traditionally brewed bitter."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,54,1
+privatbrauerei_erdinger_weissbru-erdinger_weizen,0,0,244998012930,"{""name"":""Erdinger Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":""The famous Bavarian specialty\r\n\r\nErdinger Weissbier 'crystal clear' is particularly welcome as a tasty thirst-quencher for hot summer days.\r\n\r\nThis specialty wheat beer gets its 'crystal clear' appearance from a particularly long filtration process, known in the industry as \""fine filtration\"", whereby the beer becomes completely clear.\r\n\r\nThis gives Erdinger Weissbier 'crystal clear' its sparkling and refreshing character - which also makes it the ideal wheat beer for warm summer days.\r\n\r\nBrewed in strict accordance with our own traditional recipe, Erdinger Weissbier 'crystal clear' meets the highest quality standards and satisfies the most sophisticated palate."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
+cervecera_cuauhtmoc_moctezuma-dos_equis_amber_lager,0,0,244480409601,"{""name"":""Dos Equis Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+george_bateman_and_son_ltd-victory_ale,0,0,244613054466,"{""name"":""Victory Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_bateman_and_son_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+engine_house_9-hefeweizen,0,0,244612136961,"{""name"":""Hefeweizen"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engine_house_9"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,13,1
+midnight_sun_brewing_co-kodiak_brown_nut_brown_ale,0,0,244873428993,"{""name"":""Kodiak Brown Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Rugged yet smooth, Kodiak Brown Ale balances caramel and roasted malts with enticing Northwest hops. Inspired by the adventurous spirit readily found in Alaska, Kodiak Brown Ale invites you to take the road less traveled. Like true Alaskans, we are not afraid of the dark."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,41,1
+shipyard_brewing_portland-fuggles_ipa,0,0,245000241154,"{""name"":""Fuggles IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,47,1
+boston_beer_company-samuel_adams_utopias_mmiv,0,0,244369653762,"{""name"":""Samuel Adams Utopias MMIV"",""abv"":24.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+egan_brewing-queen_of_clubs_schwarzbier,0,0,244622819329,"{""name"":""Queen of Clubs Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
+wedge_brewery-iron_rail_ipa,0,0,245746892801,"{""name"":""Iron Rail IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wedge_brewery"",""updated"":""2011-05-23 10:39:09"",""description"":""English Style India Pale Ale, Maris Otter 2-row, Canadian Honey Malt and Belgian Crystal.\nCentennial, Kent Golding, and Cascade are added Five times during the process, including Dry Hopping.\n\nAroma: Earthy, Citrusy, and Resinous\nTasting/Flavor: Orangy and Sugary Apricots\nFinish: Malt Sweetness Balanced by Dry Hops"",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,21,1
+warsteiner_brauerei-warsteiner_premium_oktoberfest,0,0,245747089409,"{""name"":""Warsteiner Premium Oktoberfest"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,23,1
+high_falls_brewing,0,0,244737507330,"{""name"":""High Falls Brewing"",""city"":""Rochester"",""state"":""New York"",""code"":""14605"",""country"":""United States"",""phone"":""1-585-263-9446"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""445 St.Paul Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1646,""lon"":-77.6155}}",1,9,1
+diamond_knot_brewery_alehouse-steamer_glide_stout,0,0,244620197888,"{""name"":""Steamer Glide Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,33,1
+pyramid_ales_brewery-hart_espresso_stout,0,0,244998668289,"{""name"":""Hart Espresso Stout"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,44,1
+avery_brewing_company-mephistopheles_stout,0,0,244363886595,"{""name"":""Mephistopheles Stout"",""abv"":16.03,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""avery_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
+schussenrieder_erlebnisbrauerei-pils,0,0,244998471683,"{""name"":""Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+alltech_s_lexington_brewing_company,0,0,244363427840,"{""name"":""Alltech's Lexington Brewing Company"",""city"":""Lexington"",""state"":""Kentucky"",""code"":""40508"",""country"":""United States"",""phone"":""1-859-887-3406"",""website"":""http://www.kentuckyale.com/kentuckyale/Index.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Producers of Kentucky Ale brand. Also a very esteemed educational institution, specializing in distilling sciences and fermentation sciences."",""address"":[""401 Cross Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.0501,""lon"":-84.5088}}",1,18,1
+hacker_pschorr_bru-original_oktoberfest,0,0,244745502720,"{""name"":""Original Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hacker_pschorr_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,28,1
+midnight_sun_brewing_co-sloth,0,0,244859207681,"{""name"":""Sloth"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""SLOTH Belgian-style Imperial Stout is deliberately dark as hell. The pour is slow and sluggish. Its head is menacing, becoming torn and tattered Belgian lace on the sides of the glass as you cautiously consume this brew—sip by insidious sip. \r\n\r\nThe aroma is sweet from heavy malt and big alcohol with notes of vanilla, coconut and whiskey from the oak. The depth & breadth of roasted malt flavors loiters on the palate while the robust finish lingers, well, forever. \r\n\r\nSLOTH...Just add couch."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,5,1
+pacific_coast_brewing-gray_whale,0,0,244981432320,"{""name"":""Gray Whale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
+copper_eagle_brewing-guinea_pig_amber_ale,0,0,244497776641,"{""name"":""Guinea Pig Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
+faultline_brewing_1-belgian_tripel,0,0,244628717569,"{""name"":""Belgian Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+dubuque_brewing_and_bottling,0,0,244610564097,"{""name"":""Dubuque Brewing and Bottling"",""city"":""Dubuque"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.5006,""lon"":-90.6646}}",1,10,1
+bavarian_barbarian_brewing_company-square_feet_wheat,0,0,244376862724,"{""name"":""Square Feet Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bavarian_barbarian_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Square Feet Wheat is loosely based on a Berliner Weisse style of beer from Germany. It has a refreshing, yet slight wheat and malt sweetness that is supported by a distinct hop presence. On hot Summer days, Square Feet Wheat will cool you off. Bring it along to pool parties, picnics and backyard cookouts. Instead of a boring wedge of lemon or orange, try Square Feet Wheat with a splash of raspberry extract or a dash of essence of Woodruff – both a customary addition to Berliner Weisse beers in Berlin.""}",1,49,1
+brouwerij_st_bernardus-biere_blanche,0,0,244478574595,"{""name"":""Bière Blanche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+allguer_brauhaus_ag_kempten_brausttte_leuterschach,0,0,244379615232,"{""name"":""Allguer Brauhaus AG Kempten, Brausttte Leuterschach"",""city"":""Marktoberdorf"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8342-/-9647-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schwendener Strae 18""]}",1,57,1
+port_brewing_company-bombshell_barleywine,0,0,244980776960,"{""name"":""Bombshell Barleywine"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+brouwerij_st_bernardus-pater_6,0,0,244498825216,"{""name"":""Pater 6"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This name became a reference. This beer is mostly pointed out with its product name: “a Paterke”. \r\n\r\nThis “Paterke” is a chestnut coloured dark beer with a high fermentation (6.7 alcohol content) and a full taste."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,58,1
+flying_dog_brewery-k_9_cruiser_winter_ale,0,0,244611022849,"{""name"":""K-9 Cruiser Winter Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The psycho in the pack... K-9 Cruiser is a dark, sweet and malty winter warmer that will captivate any adventurous craft brew drinker. A true Flying Dog original, K-9 Cruiser is the perfect brew to warm you up in those cold winter months."",""style"":""Old Ale"",""category"":""British Ale""}",1,11,1
+sierra_nevada_brewing_co-bigfoot_1997,0,0,244999651329,"{""name"":""Bigfoot 1997"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+rivers_effortless_dining,0,0,244997292032,"{""name"":""Rivers Effortless Dining"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84121"",""country"":""United States"",""phone"":""1-801-733-6600"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.638,""lon"":-111.69}}",1,40,1
+bell_s_brewery_inc-oberon_ale,0,0,244371161090,"{""name"":""Oberon Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""An American wheat ale brewed with Saaz hops. Spicy and fruity, Oberon is the color and scent of a summer afternoon."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
+bell_s_brewery_inc-pale_ale,0,0,244371685376,"{""name"":""Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing, blond colored pale ale. Bell's pale ale is made almost exclusively from pale malt. It expresses a spicy floral hop aroma and taste."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+brauhaus_onuma,0,0,244489322497,"{""name"":""Brauhaus Onuma"",""city"":""Onuma"",""state"":""Hokkaido"",""code"":"""",""country"":""Japan"",""phone"":""81-0138-67-2227"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Onuma""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0646,""lon"":141.347}}",1,37,1
+high_falls_brewing-genesee_cream_ale,0,0,244737114112,"{""name"":""Genesee Cream Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+hannen_brauerei-alt,0,0,244736524288,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hannen_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
+dempsey_s_restaurant_brewery,0,0,244612464640,"{""name"":""Dempsey's Restaurant & Brewery"",""city"":""Petaluma"",""state"":""California"",""code"":""94952"",""country"":""United States"",""phone"":""1-707-765-9694"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""50 East Washington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.2362,""lon"":-122.64}}",1,14,1
+de_dochter_van_de_korenaar-bravoure,0,0,244631339008,"{""name"":""Bravoure"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_dochter_van_de_korenaar"",""updated"":""2010-07-22 20:00:20"",""description"":""copper -coloured complex tasting ale with a soft smokey taste combined with some caramel-malt to give it a long lasting chocolate-like aftertaste""}",1,59,1
+middle_ages_brewing-wailing_wench,0,0,244857962498,"{""name"":""Wailing Wench"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and robust brewed in the style of a American strong ale, full bodied and screaming with hops.""}",1,2,1
+nebraska_brewing_company-cardinal_pale_ale,0,0,244876574723,"{""name"":""Cardinal Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+miller_brewing-red_dog,0,0,244857307137,"{""name"":""Red Dog"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,0,1
+gore_range_brewery,0,0,244630487040,"{""name"":""Gore Range Brewery"",""city"":""Edwards"",""state"":""Colorado"",""code"":""81632"",""country"":""United States"",""phone"":""1-970-926-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""105 Edwards Village Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.6441,""lon"":-106.596}}",1,56,1
+bandana_brewery-saint_peter_red,0,0,244377387008,"{""name"":""Saint Peter Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
+brown_street_brewery-czech_pilsner,0,0,244480933888,"{""name"":""Czech Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+dortmunder_actien_brauerei_dab-hansa_imported_dortmunder,0,0,244623278080,"{""name"":""Hansa Imported Dortmunder"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dortmunder_actien_brauerei_dab"",""updated"":""2010-07-22 20:00:20"",""description"":""Surviving beer from the Dortmunder Hansa-Brauerei before being acquired by Actien."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+jacob_leinenkugel_brewing_company-leinenkugel_s_sunset_wheat,0,0,244735606785,"{""name"":""Leinenkugel's Sunset Wheat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,4,1
+mia_and_pia_s_pizzeria_and_brewhouse,0,0,244859666435,"{""name"":""Mia and Pia's Pizzeria and Brewhouse"",""city"":""Klamath Falls"",""state"":""Oregon"",""code"":""97603"",""country"":""United States"",""phone"":""1-541-884-4880"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3545 Summers Lane (restaurant)""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.2249,""lon"":-121.782}}",1,6,1
+cleveland_chophouse_and_brewery,0,0,244497448965,"{""name"":""Cleveland ChopHouse and Brewery"",""city"":""Cleveland"",""state"":""Ohio"",""code"":""44113"",""country"":""United States"",""phone"":""1-216-623-0909"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""824 West St.Clair Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.4995,""lon"":-81.6994}}",1,54,1
+privatbrauerei_hofmhl,0,0,244998012931,"{""name"":""Privatbrauerei Hofmhl"",""city"":""Eichsttt"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8421-/-9808-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofmhlstrae 10""]}",1,42,1
+cervecera_jerome,0,0,244480409602,"{""name"":""Cervecera Jerome"",""city"":""Mendoza"",""state"":"""",""code"":"""",""country"":""Argentina"",""phone"":""54-0261-4320449"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mendoza""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-32.8902,""lon"":-68.844}}",1,16,1
+glacial_lakes_brewing,0,0,244613054467,"{""name"":""Glacial Lakes Brewing"",""city"":""New York Mills"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.518,""lon"":-95.3761}}",1,15,1
+ettaler_klosterbetriebe_abteilung_brauerei_destillerie,0,0,244612136962,"{""name"":""Ettaler Klosterbetriebe Abteilung Brauerei & Destillerie"",""city"":""Ettal"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8822-/-74450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kaiser-Ludwig-Platz 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.569,""lon"":11.0942}}",1,13,1
+midnight_sun_brewing_co-obliteration_ii,0,0,244873494528,"{""name"":""Obliteration II"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the world of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration II is yet another dynamic Double IPA. Its aroma is intense with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration II finishes with poignant bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,41,1
+skagit_river_brewing-highwater_porter,0,0,245000306688,"{""name"":""Highwater Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
+brasserie_de_l_abbaye_des_rocs-belgian_burgundy_ale,0,0,244369719296,"{""name"":""Belgian Burgundy Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_des_rocs"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+empyrean_brewing_company-dark_side_vanilla_porter,0,0,244622819330,"{""name"":""Dark Side Vanilla Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+weinkeller_brewery_berwyn-marzen,0,0,245746892802,"{""name"":""Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,21,1
+wild_onion_brewing-paddy_pale_ale,0,0,245747089410,"{""name"":""Paddy Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_onion_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,23,1
+holsten_brauerei,0,0,244737572864,"{""name"":""Holsten-Brauerei"",""city"":""Hamburg"",""state"":""Hamburg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)40-/-381010"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Holstenstrae 224""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":53.5621,""lon"":9.9451}}",1,9,1
+dinkelacker_schwaben_bru-sanwald_dunkelweizen,0,0,244620197889,"{""name"":""Sanwald Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dinkelacker_schwaben_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+redhook_ale_brewery-wheat_hook,0,0,244998668290,"{""name"":""Wheat Hook"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+ballast_point_brewing-come_about_imperial_stout,0,0,244363952128,"{""name"":""Come About Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ballast_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,19,1
+shepherd_neame-bishops_finger_kentish_strong_ale,0,0,244998537216,"{""name"":""Bishops Finger Kentish Strong Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shepherd_neame"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+anchor_brewing-bock,0,0,244363427841,"{""name"":""Bock"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anchor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,18,1
+half_moon_bay_brewing-mavericks_amber_ale,0,0,244745502721,"{""name"":""Mavericks Amber Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
+minneapolis_town_hall_brewery-smoked_helles_lager,0,0,244859207682,"{""name"":""Smoked Helles Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This light german style Helles Lager was brewed with a small percentage of beechwood smoked malt. Light and delicate east drinking lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+ph_woods_diner_and_brewery,0,0,244981497856,"{""name"":""PH Woods Diner and Brewery"",""city"":""Moreno Valley"",""state"":""California"",""code"":""92553"",""country"":""United States"",""phone"":""1-951-653-3850"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23060 Alessandro Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.9176,""lon"":-117.26}}",1,3,1
+dick_s_brewing-danger_ale,0,0,244629700608,"{""name"":""Danger Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,55,1
+fifty_fifty_brewing_co-trifecta_belgian_style_tripel,0,0,244628717570,"{""name"":""Trifecta Belgian Style Tripel"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""There are hundreds of Trappist Monasteries in the world, many of them make fruitcake. This beer is not made by Monks nor does it resemble fruitcake. Furthermore, Truckee has no Trappist Monastery and that, my friend, is why we at FiftyFifty bring you Trifecta. This is one of FiftyFifty's seasonal ales, and is a high alcohol Belgian style beer. Brewed with inspiration from Belgian Trappist Ales, Trifecta also includes locally grown Purple Sage Honey. With a complex spiciness tempered by the sweeter notes from the sage honey, flavors of spicy sage, alcohol, and mild malt sweetness are apparent, and sage and clove like aromas predominate. Coming in at over 8%, this beer is deceptively strong."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,52,1
+duclaw-venom,0,0,244610629632,"{""name"":""Venom"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""This American-Style Pale Ale is aggressively hopped giving it a citrusy flavor and aroma. No antidote needed. This beer is dark-golden, medium-bodied and very “hoppy.” It is American-style because American-grown hops are used rather that European."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+bj_s_pizza_grill_and_brewery_jantzen_beach-whiskey_stout,0,0,244376928256,"{""name"":""Whiskey Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bj_s_pizza_grill_and_brewery_jantzen_beach"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+brouwerij_sterkens-st_paul_special,0,0,244478640128,"{""name"":""St. Paul Special"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+amherst_brewing_company-lewmeister_oktoberfest,0,0,244379615233,"{""name"":""Lewmeister Oktoberfest"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""amherst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Amber, full-bodied lager made in the traditional style with German hops. Brewed in early August and put on tap with a keg of the previous years batch by October of each year. This beer is brewed in memory of \""Lewis\"", the owners beer-drinking long-haired Dachsund, who passed away at 17-1/2 on 8/17/99."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,57,1
+port_brewing_company-z_u_later_doppelbock,0,0,244980776961,"{""name"":""Z-U-Later Doppelbock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,1,1
+brouwerij_sterkens-st_sebastiaan_golden,0,0,244498825217,"{""name"":""St. Sebastiaan Golden"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+flying_fish_brewing_company-imperial_espresso_porter,0,0,244611022850,"{""name"":""Imperial Espresso Porter"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust dark brew has been created using rich Colombian dark roast coffee to celebrate our 10th anniversary in royal fashion. The enticing regal aromas of toffee and licorice lead to the coronation of taste; a palate of malty richness exhibiting chocolate and coffee notes, balanced by the noble and novel Mt. Rainer hop, all topped with a rich creamy crown. This very special offering will warm your soul and lift your spirits. Oh yeah, it also packs a royal kick at 8% alcohol."",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
+sly_fox_brewhouse_and_eatery_royersford-seamus_irish_red,0,0,245117616128,"{""name"":""Seamus Irish Red"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+rogue_ales-artisan_lager,0,0,244997292033,"{""name"":""Artisan Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A vienna style lager"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,40,1
+bellows_brew_crew-pretty_girl_pilsner,0,0,244371161091,"{""name"":""Pretty Girl Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+bierbrouwerij_bavaria-de_horste_vermeer_traditional_dutch_ale,0,0,244371685377,"{""name"":""De Horste Vermeer Traditional Dutch Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_bavaria"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+brauhaus_sternen-honey_brown_ale,0,0,244489388032,"{""name"":""Honey Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+hopworks_urban_brewery,0,0,244737114113,"{""name"":""Hopworks Urban Brewery"",""city"":""Portland"",""state"":""Oregon"",""code"":""97202"",""country"":""United States"",""phone"":""(503) 201-8957"",""website"":""http://hopworksbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""HUB is Portland's first Eco-Brewpub to offer all organic handcrafted beers, fresh local ingredients, and a sustainable building with a relaxed and casual atmosphere. Brewmaster Christian Ettinger has spent the past year and half constructing his dream brewpub. HUB incorporates all aspects of sustainability. From composting to rain barrels, and from pervious pavers to hand dryers, we have made every effort to protect our future with a thoughtful alternative. Hopworks has four distinct areas including a family friendly restaurant with play area, a vibrant bicycle bar, banquet mezzanine, and outdoor beer-garden. Our 20 barrel brewery produces 3000 barrels a year and provides our restaurant with ten different HUB organic beers on tap and two cask ales at all times. We have parking for seventy cars, eight motorcycles and up to fifty bikes. Our world-class beer, New York style pizza, and wonderful staff are some of the best you will find anywhere."",""address"":[""2944 SE Powell Blvd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.4969,""lon"":-122.635}}",1,8,1
+harpoon_brewery_windsor-esb,0,0,244736524289,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_windsor"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+denver_chophouse_and_brewery-pilsner,0,0,244612464641,"{""name"":""Pilsner"",""abv"":4.99,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
+denver_chophouse_and_brewery-buffalo_gold,0,0,244631404544,"{""name"":""Buffalo Gold"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+midnight_sun_brewing_co-old_whiskers,0,0,244858028032,"{""name"":""Old Whiskers"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our perennial summer seasonal beer, first brewed in Summer 1995 when we opened. \r\n\r\nAffectionately called \""Spunky and Chunky\"", Old Whiskers Hefeweizen is a traditional Bavarian-style unfiltered wheat beer. Created with equal parts malted wheat and pale two-row malt, Old Whiskers is lightly hopped to style. A unique Bavarian strain of yeast imparts a clove- or banana-like aroma and flavor. (We swear we did not put cloves into the brew. It is the magical powers of The Yeast.) Old Whisker is delicious and refeshing--the perfect summer quencher, served with or without a slice of lemon."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
+new_glarus_brewing_company-tripel,0,0,244876640256,"{""name"":""Tripel"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+mudshark_brewing-upriver_lager,0,0,244857307138,"{""name"":""UpRiver Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Light American Lager, Our Lightest, Lowest Carb. Beer"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,0,1
+gottberg_brew_pub-all_american_gold,0,0,244630487041,"{""name"":""All-American Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+beach_chalet_brewery-endless_summer_cream_ale,0,0,244377387009,"{""name"":""Endless Summer Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""beach_chalet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+bryggeriet_lfabrikken-porter,0,0,244480933889,"{""name"":""Porter"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bryggeriet_lfabrikken"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
+eder_heylands-schlappeseppl_export,0,0,244623278081,"{""name"":""Schlappeseppl Export"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eder_heylands"",""updated"":""2010-07-22 20:00:20"",""description"":""A classically brewed export beer with a slight aroma of hops.\r\n\r\n\r\nAwarded with the gold medal by\r\nGerman Agriculture Society-DLG\r\n2005, 2006 and 2007\r\nMonde Selection, Brüssel 2003 and 2005\r\n2007 with Grand Gold\r\nand with the silver medal by\r\nWorld Beer Cup, Colorado 2002"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+john_martin_sa,0,0,244735606786,"{""name"":""John Martin sa"",""city"":""Genval"",""state"":"""",""code"":""1332"",""country"":""Belgium"",""phone"":"""",""website"":""http://www.anthonymartin.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""rue du cerf""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":50.7298,""lon"":4.508}}",1,4,1
+midnight_sun_brewing_co-jupiter_belgian_style_champagne_trippel,0,0,244859731968,"{""name"":""Jupiter - Belgian-style \""Champagne\"" Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,6,1
+coast_brewing-ruby_red_lager,0,0,244497514496,"{""name"":""Ruby Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+randy_s_fun_hunters_brewery_restaurant_and_banquet_center-wheat_ale,0,0,244998078464,"{""name"":""Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
+cervejaria_sudbrack-eisenbahn_south_american_pale_ale_s_a_p_a,0,0,244480475136,"{""name"":""Eisenbahn South American Pale Ale (S.A.P.A.)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
+goose_island_beer_company_fulton_street-pils,0,0,244613120000,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+firehouse_brewery_restaurant-stout,0,0,244612202496,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
+millstream_brewing,0,0,244873494529,"{""name"":""Millstream Brewing"",""city"":""Amana"",""state"":""Iowa"",""code"":""52203"",""country"":""United States"",""phone"":""1-319-622-3672"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""835 48th Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.7972,""lon"":-91.8652}}",1,41,1
+south_shore_brewery-cream_ale,0,0,245117943808,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+brewery_de_troch-chapeau_fraises_lambic,0,0,244486832128,"{""name"":""Chapeau Fraises Lambic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_de_troch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,31,1
+engine_house_9,0,0,244622884864,"{""name"":""Engine House #9"",""city"":""Tacoma"",""state"":""Washington"",""code"":""98406"",""country"":""United States"",""phone"":""1-253-272-3435"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""611 North Pine""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.256,""lon"":-122.473}}",1,38,1
+wild_onion_brewing,0,0,245746892803,"{""name"":""Wild Onion Brewing"",""city"":""Lake Barrington"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.2108,""lon"":-88.1652}}",1,21,1
+wychwood_brewery-black_wych_stout,0,0,245747089411,"{""name"":""Black Wych Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,23,1
+hops_grillhouse_brewery_cherry_creek-alligator_ale,0,0,244737572865,"{""name"":""Alligator Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+duneland_brewhouse_pub_and_restaurant-salmon_tail_pale_ale,0,0,244620263424,"{""name"":""Salmon Tail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duneland_brewhouse_pub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+rivers_effortless_dining-porter,0,0,244998733824,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivers_effortless_dining"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,44,1
+bandana_brewery-kasota_ipa,0,0,244363952129,"{""name"":""Kasota IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bandana_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+sierra_nevada_brewing_co-bigfoot,0,0,244998537217,"{""name"":""Bigfoot"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nThis year marks the 25th release of Bigfoot®. Our award-winning barleywine boasts a dense, fruity bouquet, an intense flavor palate and a deep reddish-brown color. Its big maltiness is superbly balanced by a wonderfully bittersweet hoppiness. \r\n\r\n"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,43,1
+anderson_valley_brewing-high_rollers_wheat_beer,0,0,244363427842,"{""name"":""High Rollers Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anderson_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+hapa_s_brew_haus_and_restaurant-el_nino_pale_ale,0,0,244745502722,"{""name"":""El Niño Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+moon_river_brewing_company,0,0,244859273216,"{""name"":""Moon River Brewing Company"",""city"":""Savannah"",""state"":""Georgia"",""code"":""31401"",""country"":""United States"",""phone"":""912.447.0943"",""website"":""http://www.moonriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Moon River Brewing Company is founded on our obsession with creating the ideal restaurant and brewery experience. Striving for this ideal, we are committed to providing three basic services. We are dedicated, first and foremost, to providing you with a comfortable and relaxing environment with prompt and cheerful service. Secondly, we are committed to serving you a delicious variety of freshly prepared foods. Our kitchen is a boiling pot of diversity, offering a range of dishes from simple comfort food to eclectic gourmet cuisine. Finally, we are undeniably passionate about serving great beer."",""address"":[""21 W. Bay St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.081,""lon"":-81.0915}}",1,5,1
+pivovar_v_hurbanove,0,0,244981497857,"{""name"":""Pivovar v Hurbanove"",""city"":""Hurbanovo"",""state"":"""",""code"":"""",""country"":""Slovakia"",""phone"":""421-35---765-41-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Novozamocka Cesta 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8809,""lon"":18.1972}}",1,3,1
+ej_phair_brewing_company_and_alehouse,0,0,244629766144,"{""name"":""EJ Phair Brewing Company and Alehouse"",""city"":""Concord"",""state"":""California"",""code"":""94520"",""country"":""United States"",""phone"":""1-925-691-4253"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2151 Salvio Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.978,""lon"":-122.034}}",1,55,1
+fish_brewing_company_fish_tail_brewpub-10_squared_10,0,0,244628783104,"{""name"":""10 Squared (10²)"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""The Mighty Fish Brewers first produced Ten Squared Anniversary Ale to celebrate Fish Brewing Company’s tenth anniversary. The ale was so good and the response to it so overwhelmingly positive that it has become the crown jewel of REEL ALEs. Ten different hops: Horizon, Chinook, Columbus, Willamette, Tradition, Northern Brewer, Santiam, Tettnanger, Cascade and Golding, in the order of their use -- give Ten Squared a unique hop character which has to be tasted to be believed. \r\n\r\nEven with 100 IBUs, this brew sports a strong malt backbone. Two-row Pale, Caramel 40, Caramel 75, Special B and Aromatic malts impart remarkable balance for such a hop monster. This is smooth ale with surprising similarities to ten year old malt whiskey. Produced for the holidays, 10 102 Anniversary Ale is usually available into late spring."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
+f_x_matt_brewing-saranac_imperial_stout,0,0,244610695168,"{""name"":""Saranac Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Imperial Stout is part of our \""High Peaks Series,\"" a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial Stout is brewed with 11 malts to balance a deliciouse chocolate and coffee roasted flavor with a spicy herbal character of the generous kettle and dry hops."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,10,1
+bj_s_pizza_grill_and_brewery_jantzen_beach,0,0,244376928257,"{""name"":""BJ's Pizza, Grill, and Brewery - Jantzen Beach"",""city"":""Portland"",""state"":""Oregon"",""code"":""97217"",""country"":""United States"",""phone"":""1-503-289-5566"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""12105 North Center Avenue""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5235,""lon"":-122.676}}",1,49,1
+bull_bush_pub_brewery,0,0,244478640129,"{""name"":""Bull & Bush Pub & Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80246"",""country"":""United States"",""phone"":""1-303-759-0333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4700 Cherry Creek Drive South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.705,""lon"":-104.936}}",1,12,1
+anheuser_busch-bud_light_lime,0,0,244379680768,"{""name"":""Bud Light Lime"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Exactly what it says, Bud Light and Lime. Brewed in Georgia."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,57,1
+prescott_brewing_company-ponderosa_ipa,0,0,244980776962,"{""name"":""Ponderosa IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
+calhoun_s_microbrewery-cherokee_red_ale,0,0,244498825218,"{""name"":""Cherokee Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""calhoun_s_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+four_peaks_brewing-kilt_lifter_scottish_style_ale,0,0,244611088384,"{""name"":""Kilt Lifter Scottish-Style Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our award-winning Flagship ale is now in bottles!! This is an ale made in the tradition of the great strong ales of Scotland. Amber colored, malty sweet with underlying note of smokiness. \r\n\r\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,11,1
+sly_fox_brewhouse_and_eatery_royersford,0,0,245117681664,"{""name"":""Sly Fox Brewhouse and Eatery - Royersford"",""city"":""Royersford"",""state"":""Pennsylvania"",""code"":""19468"",""country"":""United States"",""phone"":""1-610-948-8088"",""website"":""http://www.slyfoxbeer.com/index1.asp"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A full production brewery and accompanying restaurant opened in 2004 by the owners of Sly Fox Brewhouse & Eatery in nearby Phoenixville. The 20bbl brewhouse packages a wide range of beers in 12oz cans, 22oz bottles and 750ml bottles. Pikeland Pils, a multiple GABF Gold Medal Winner, and O'Reilly's Stout, a nitro-poured, draught-only beer named after brewer Brian O'Reilly's grandfather are among its most popular beers, on and off premises, as are such Belgian-style delights as Incubus Tripel, Ichor Quadrupel, Saison Vos & Black Raspberry Reserve. Sly Fox is also noted for its Bock Beers (see listing for the Phoenixville pub for more details) and annual Christmas Ale."",""address"":[""312 North Lewis Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1943,""lon"":-75.534}}",1,46,1
+rogue_ales-chocolate_stout,0,0,244997292034,"{""name"":""Chocolate Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The recipe for Rogue Chocolate Stout was created several years ago for export to Japan. The exported twelve ounce Chocolate Bear Beer bottle label is in Kanji and features a teddy bear with a pink heart on his belly. Chocolate Stout was released for Valentines Day in 2001 in a twenty-two ounce bottle for the US market. The label features a Roguester (Sebbie Buhler) on the label. The bottled of Chocolate Stout is available on a very limited basis in the US, so get it while you can! \r\n\r\nHedonistic! Ebony in color with a rich creamy head. The mellow flavor of oats, chocolate malts, and real chocolate are balanced perfectly with the right amount of hops for a bittersweet finish. Chocolate Stout is brewed with 10 ingredients: Northwest Harrington and Klages, Crystal 135-165 and Beeston Chocolate Malts, Cascade Hops, Rolled Oats and Roasted Barley, Natural Chocolate Flavor, Free Range Coastal Waters and PacMan Yeast. Chocolate Stout is available year-round only in the classic 22-ounce bottle and on draft."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,40,1
+big_river_brewing,0,0,244371226624,"{""name"":""Big River Brewing"",""city"":""Richmond"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-271-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""180 - 14200 Entertainment Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.1344,""lon"":-123.065}}",1,34,1
+big_sky_brewing-trout_slayer,0,0,244371750912,"{""name"":""Trout Slayer"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_sky_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Trout Slayer is a filtered wheat ale, fermented at cool temperatures, making it a smooth drinkable session beer. Brewed with Palisade, Glacier, and Mt. Hood hops, this straw colored beer is sure to please any craft beer drinker. IBU 35 SRM 5 ABV 4.7%"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,35,1
+brewery_creek_brewing-dark_mild,0,0,244489388033,"{""name"":""Dark Mild"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""To quote Dr. John Harrison, a great influence on my brewing, \""Mild ale is the only beer with an uninterrupted history from medieval times to the present day.\"" The \""mild\"" means low hop bitterness, \""...which is the only essential feature of a mild ale.\"" They can be light or dark in color, high or low in alcohol, dry or sweet. This is difficult for modern style wiennies to grasp. How can one style be so many things? How can I judge it good or bad?. The current Brewery Creek Dark Mild is medium brown, soft hops and about 3.5% abv. It could be a bit more estery. It is a lovely style."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,37,1
+iron_city_brewing_co-iron_city,0,0,244737179648,"{""name"":""Iron City"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Iron City has been the ‘Burgh’s signature beer since 1861. This premium lager has become a proud tradition of the city and its people. Just try to imagine a Pittsburgh football, baseball or hockey game without an ice cold Iron.\r\n\r\nWe still brew Iron City fresh daily – but now, instead of delivering it to Pittsburgh neighborhoods in horse-drawn buggies, we deliver it to your favorite hangouts. You can get an Iron at national restaurant chains, upscale eateries, and – of course – your favorite local bar. You can also find it at more than 330 regional beer distributors. Because Iron City is brewed locally, it goes from the brewery to you within a matter of days. You won’t find a fresher beer anywhere in Pittsburgh!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+heller_bru_trum-aecht_schlenkerla_rauchbier_urbock,0,0,244736524290,"{""name"":""Aecht Schlenkerla Rauchbier Urbock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":""A smoked bock beer for Bamberg's strong beer season (October through December). Matured for months in ancient rock-cellars underneath Bamberg and tapped freshly from the oakwood cask. Similar to, but much bigger than the classic Maerzen style."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,7,1
+devil_s_canyon,0,0,244612530176,"{""name"":""Devil's Canyon"",""city"":""Belmont"",""state"":""CA"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-07-28 19:03:35"",""description"":"""",""address"":[]}",1,14,1
+denver_chophouse_and_brewery-wild_turkey_bourbon_stout,0,0,244631404545,"{""name"":""Wild Turkey Bourbon Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+miller_brewing-miller_chill,0,0,244858028033,"{""name"":""Miller Chill"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Launched in 2007, Miller Chill is the only light beer brewed with a hint of lime and a pinch of salt to provide a truly refreshing beer experience. Through all of our marketing efforts, beer drinkers will see that Miller Chill is a celebration and fusion of the best of two cultures, great light beer from America and the chelada style from Mexico. It's the new alternative in mainstream low-cal beers ... one that provides a crisper, smoother, more refreshing beer experience."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,2,1
+niagara_falls_brewing-weisse_beer,0,0,244876640257,"{""name"":""Weisse Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+namibia_breweries,0,0,244857307139,"{""name"":""Namibia Breweries"",""city"":""Windhoek"",""state"":"""",""code"":"""",""country"":""Namibia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 206""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-22.5589,""lon"":17.0825}}",1,0,1
+gray_brewing-witbier,0,0,244756643840,"{""name"":""Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+bethlehem_brew_works-ch_47_pale_ale,0,0,244377387010,"{""name"":""CH-47 Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bethlehem_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""This light copper, dry finishing American Pale Ale is an excellent addition to the Brew Works fleet of pale ales. A hefty sling load weight of Chinook hops gives this beer its distinctive bite. Chinook and Amarillo hops contribute to its almost citrus aroma. A hopheads delight!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+cervecera_cuauhtmoc_moctezuma-bohemia_clasica,0,0,244480933890,"{""name"":""Bohemia Clásica"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
+egan_brewing-blonde_ale,0,0,244623278082,"{""name"":""Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,39,1
+jolly_pumpkin_artisan_ales-weizen_bam_biere,0,0,244735672320,"{""name"":""Weizen Bam Bière"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Ruddy golden, with yeast driven esters of banana, spicy clove, and nutmeg all wrapped up with a generous dose of rapscillion delight."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,4,1
+midnight_sun_brewing_co-oosik_amber_ale,0,0,244859731969,"{""name"":""Oosik Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Oosik Amber Ale is a true German-style altbier, brewed with pale, Munich and crystal malts. Deep amber with copper highlights, Oosik sports a toasted and caramel malt profile, balanced by traditional noble hops. A special yeast strain ferments this ale at cooler lager temperatures, giving it a smooth malt character and a clean finish. \r\n\r\nWant to hang—so to speak—for a while? Oosik Amber Ale gives you hang time. Great flavor, big mouthfeel, satisfying finish…all in a session-worthy beer. Compare it to other ambers—Oosik rules. Look for our 20-inch Oosik tap in better beer bars throughout AK. \r\n\r\nYou can't just have a little Oosik. \r\n\r\nBUY the Oosik \""Love is Hard\"" tee - men's and women's styles available.\r\n\r\nAvailability:\r\nAK - draft (year-round)"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
+coast_range_brewing-california_blonde_ale,0,0,244497514497,"{""name"":""California Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coast_range_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+river_west_brewing-spiced_porter,0,0,244998078465,"{""name"":""Spiced Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+cervezas_alhambra,0,0,244480475137,"{""name"":""Cervezas Alhambra"",""city"":""Granada"",""state"":"""",""code"":"""",""country"":""Spain"",""phone"":""34-958817205"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Avenida de Murcia, 1""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":37.1875,""lon"":-3.6018}}",1,16,1
+grand_teton_brewing_1,0,0,244739997696,"{""name"":""Grand Teton Brewing #1"",""city"":""Wilson"",""state"":""Wyoming"",""code"":""83014"",""country"":""United States"",""phone"":""1-307-733-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1295 North West Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.4988,""lon"":-110.877}}",1,15,1
+fish_brewing_company_fish_tail_brewpub,0,0,244612202497,"{""name"":""Fish Brewing Company & Fish Tail Brewpub"",""city"":""Olympia"",""state"":""Washington"",""code"":""98501"",""country"":""United States"",""phone"":""1-360-943-3650"",""website"":""http://www.fishbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""From our home in beautiful Olympia, Washington, Fish Brewing Company has been hand-crafting ales of Northwest proportions since 1993. Then, using a system cobbled from brewing and dairy equipment, we brewed for our neighbors up and down Puget Sound. Growing steadily since, Fish is now an award-winning craft brewer with distribution throughout the Pacific Northwest and beyond."",""address"":[""515 Jefferson Street SE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.0437,""lon"":-122.897}}",1,13,1
+minhas_craft_brewery-berghoff_oktoberfest_beer,0,0,244873494530,"{""name"":""Berghoff Oktoberfest Beer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,41,1
+south_shore_brewery-pale_ale,0,0,245118009344,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
+brewery_vivant,0,0,244486897664,"{""name"":""Brewery Vivant"",""city"":""Grand Rapids"",""state"":""MI"",""code"":""49506"",""country"":""United States"",""phone"":""616 719 1604"",""website"":""http://breweryvivant.com"",""type"":""brewery"",""updated"":""2011-06-22 12:19:30"",""description"":""Brewery Vivant is the realization of years of dreaming and much discussion of what a great brewery can be. What makes our brewery different from the rest is the way we approach our craft and operate our business. The core of Brewery Vivant can be found at the crossroads of three passions:\n\n 1. Our love of the tradition and artistic approach of the Belgian & French styles of beers\n 2. Devotion to using local sources for ingredients and running our business according to the three pillars of sustainability; Environmental Integrity, Social Equity, and Economic Viability\n 3. Sharing the experience of how beer and food can be paired to uplift the enjoyment of both\n"",""address"":[""925 Cherry Street SE""]}",1,31,1
+foster_s_australia_ltd,0,0,244622884865,"{""name"":""Foster's Australia Ltd."",""city"":"""",""state"":"""",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":""http://www.fostersbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Foster's Lager is the largest selling Australian beer brand in the world with more than 100 million cases of Foster's consumed worldwide every year. Brewed in nine countries and over 20 plants, Foster's Lager is widely sold and distributed throughout Australia, Asia, the Pacific, Europe, the Americas and the Middle East. It is the world's third most widely distributed brand, available in more than 150 countries. Foster's Lager is the international flagship brand for the Foster's group. -http://www.fosters.com.au/enjoy/beer/fosters_the_brand.htm"",""address"":[]}",1,38,1
+yellowstone_valley_brewing-grizzly_wulff_wheat,0,0,245746958336,"{""name"":""Grizzly Wulff Wheat"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yellowstone_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,21,1
+illinois_brewing-porter_from_hell,0,0,244737572866,"{""name"":""Porter From Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""illinois_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
+eel_river_brewing-certified_organic_extra_pale_ale,0,0,244620263425,"{""name"":""Certified Organic Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+rivertowne_pour_house-leroy_s_brown_ale,0,0,244998733825,"{""name"":""LeRoy's Brown Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in honor of Andrew’s Grandfather LeRoy, this big bad nut brown ale has a fantastic malt character made up of caramel and chocolate flavors. One taste and you will see why this is the baddest beer in the whole damn town!!!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
+barley_creek_brewing-mountaineer_maibock,0,0,244363952130,"{""name"":""Mountaineer Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A German style lager. Light in color, with medium to full body and mild hop bitterness."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,19,1
+sierra_nevada_brewing_co-bigfoot_2001,0,0,244998537218,"{""name"":""Bigfoot 2001"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+anheuser_busch-spring_heat_spiced_wheat,0,0,244363427843,"{""name"":""Spring Heat Spiced Wheat"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+heineken_international-dark_lager,0,0,244745568256,"{""name"":""Dark Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+mussel_inn-strong_ox,0,0,244859273217,"{""name"":""Strong Ox"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mussel_inn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+portsmouth_brewery-bottle_rocket_ipa,0,0,244981563392,"{""name"":""Bottle Rocket IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An explosion of hops dominate this deep golden ale. Brewed with four varieties of hops & dry hopped with three other hops, the flavor is powerful. Not a harsh bitterness, but a full hop flavor."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
+elliott_bay_brewery_and_pub-alembic_pale,0,0,244629831680,"{""name"":""Alembic Pale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+fitzpatrick_s_brewing-prairie_thunder_pale_ale,0,0,244628783105,"{""name"":""Prairie Thunder Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
+faultline_brewing_2-hefe_weizen,0,0,244610695169,"{""name"":""Hefe Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,10,1
+blue_point_brewing-fresh_hops_pale_ale,0,0,244376928258,"{""name"":""Fresh Hops Pale Ale"",""abv"":5.0,""ibu"":36.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-12-20 15:32:12"",""description"":""Blue Point Brewing's Pale Ale has a light golden color but explodes with a rich full-flavor. This refreshing ale is top-fermented and hopped at four different stages of the brewing process. English pale malt lends complexity to this brew. Small amounts of Wheat and Carapils round out the malt bill. Brewed to satisfy the hop lover, this pale ale has an immediate floral-citrus flavor that pervades the overall character of this hoppy, quenching microbrew."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+captain_lawrence_brewing_company-captin_lawrence_smoked_porter,0,0,244478705664,"{""name"":""Captin Lawrence Smoked Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A complex beer, with layers of flavors unfolding as this beer slides down your throat. Before the introduction of indirect-fired malt kilns, all beers had a smoky flavor. Today only a handful of brewers produce beer reminiscent of those of the past. We use imported German smoked malt to add depth and complexity to our Smoked Porter."",""style"":""Porter"",""category"":""Irish Ale""}",1,12,1
+anheuser_busch-budweiser_select,0,0,244379680769,"{""name"":""Budweiser Select"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Bud Select is a new beer offering a bold taste with a full and distinct flavor that finishes clean. Budweiser Select was developed using two-row and roasted specialty malts for a rich color. It offers excellent drinkability and a taste that does not linger."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,57,1
+pugsley_brewing_llc,0,0,244980842496,"{""name"":""Pugsley Brewing LLC"",""city"":""Portland"",""state"":""Maine"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.6615,""lon"":-70.2553}}",1,1,1
+cambridge_brewing,0,0,244498825219,"{""name"":""Cambridge Brewing"",""city"":""Cambridge"",""state"":""Massachusetts"",""code"":""2139"",""country"":""United States"",""phone"":""1-617-494-1994"",""website"":""http://www.cambrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Kendall Square #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3664,""lon"":-71.0911}}",1,58,1
+fratellos_restaurant_and_brewery-trolleycar_stout,0,0,244611153920,"{""name"":""Trolleycar Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
+smuttynose_brewing_co-robust_porter,0,0,245117681665,"{""name"":""Robust Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This hearty, mahogany colored ale is brewed to evoke the dark, full-bodied ales that were a favorite of dockworkers and warehousemen (hence the name “Porter”) in 19th century London. It is a good bet that when Dickens’ Mr. Pickwick sat down for a pint, we would have been drinking an ale much like our Robust Porter.This is a smooth and very drinkable beer, characterized by its well-balanced malt and hops, plus subtle notes of coffee and chocolate."",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
+saint_louis_brewery_schlafy_tap_room-dry_hopped_apa,0,0,244997357568,"{""name"":""Dry-Hopped APA"",""abv"":5.9,""ibu"":50.0,""srm"":10.6,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2011-02-07 14:26:33"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+blackstone_restaurant_brewery-nut_brown_ale,0,0,244371226625,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blackstone_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
+bison_brewing-organic_gingerbread_ale,0,0,244371750913,"{""name"":""Organic Gingerbread Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+brimstone_brewing-big_ale,0,0,244489388034,"{""name"":""Big Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brimstone_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,37,1
+iron_hill_brewery_wilmingon-irish_red_ale,0,0,244737179649,"{""name"":""Irish Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+hereford_hops_restaurant_and_brewpub_1-wolverine_wheat_beer,0,0,244736589824,"{""name"":""Wolverine Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
+diamond_knot_brewery_alehouse-ipa,0,0,244612530177,"{""name"":""IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""OUR FLAGSHIP BEER, the one for which we're known throughout the Puget Sound. Columbus hops impart intense bitterness with flavors of grapefruit and a hint of cedar."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
+deschutes_brewery-black_butte_porter,0,0,244631470080,"{""name"":""Black Butte Porter"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Towering high above Central Oregon, jetting into clear blue skies, Black Butte can be seen for miles. From its base flows the legendary Metolius River--with its source hidden deep beneath ancient lava flows. \r\n\r\nBlack Butte Porter, crafted from chocolate and crystal malts, is Deschutes Brewery’s flagship brand. With a rich and distinctive flavor, this porter has enjoyed a loyal and passionate following since its first pint in 1988."",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
+moab_brewery-dead_horse_ale,0,0,244858093568,"{""name"":""Dead Horse Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moab_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+northwoods_brewpub_grill-birch_wood_ale,0,0,244876640258,"{""name"":""Birch Wood Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+new_belgium_brewing-la_folie,0,0,244857372672,"{""name"":""La Folie"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""La Folie Wood-Aged Biere, is our original wood-conditioned beer, resting in French Oak barrels between one and three years before being bottled. . Peter Bouckaert, came to us from Rodenbach – home of the fabled sour red. Our La Folie emulates the spontaneous fermentation beers of Peter’s beloved Flanders with sour apple notes, a dry effervescence, and earthy undertones. New in 2010, we'll do a single bottling of La Folie for the year. Collect the 22oz unique to 2010 designed bottle and start a yearly wood-aged collection of goodness.""}",1,0,1
+great_divide_brewing-oak_aged_yeti_imperial_stout,0,0,244756709376,"{""name"":""Oak Aged Yeti Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Crack open Yeti Imperial Stout’s sophisticated sibling – Oak Aged Yeti Imperial Stout. Although these beers come from the same clan, they have entirely different personalities. Aging on a blend of French and toasted oak chips infuses a subtle oak and vanilla character into Yeti’s already intense chocolate, roasted coffee malt flavor and hugely assertive hop profile. Who says you can’t tame a Yeti?"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,56,1
+bierbrouwerij_de_koningshoeven-dubbel,0,0,244377452544,"{""name"":""Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bierbrouwerij_de_koningshoeven"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+chelsea_brewing_company-sunset_red_ale,0,0,244480999424,"{""name"":""Sunset Red Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chelsea_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+elysian_brewery_public_house-perseus_porter,0,0,244623278083,"{""name"":""Perseus Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewery_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
+keg_microbrewery_restaurant,0,0,244735672321,"{""name"":""Keg Microbrewery & Restaurant"",""city"":""Stevens Point"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.5236,""lon"":-89.5746}}",1,4,1
+montana_brewing-sandbagger_gold,0,0,244859797504,"{""name"":""Sandbagger Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+coeur_d_alene_brewing_company,0,0,244497514498,"{""name"":""Coeur d'Alene Brewing Company"",""city"":""Coeur d'Alene"",""state"":""Idaho"",""code"":""83814"",""country"":""United States"",""phone"":""(208) 664-2739"",""website"":""http://www.cdabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""209 Lakeside Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6745,""lon"":-116.784}}",1,54,1
+sabmiller_india-foster_s_lager_beer,0,0,244998078466,"{""name"":""Foster's Lager Beer"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Foster's® Lager is a uniquely Australian beer, brewed with the finest sun-dried malted barley, the purest water, and Foster's® own specially bred 'Pride of Ringwood' hops imported directly from Australia to give the beer an authentic flavor. Foster's® Lager Beer has always been at the forefront of brewing technology and the Foster's® Lager brewed today is the result of over a century of attention of the brewing art. Quality has been the strength of Foster's® since its earliest days and remains a paramount concern at every stage of the beer's journey from brewery to consumer. Foster's® crisp, clean flavour won it immediate international acclaim when it was first brewed in Melbourne in 1888. Today, more than one hundred years later, it is still recognized as one of the world's best beers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,42,1
+cherryland_brewing-raspberry_beer,0,0,244480475138,"{""name"":""Raspberry Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,16,1
+hambleton_ales-toleration,0,0,244740063232,"{""name"":""Toleration"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hambleton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+frederic_robinson_ltd-old_tom_barley_wine,0,0,244612268032,"{""name"":""Old Tom Barley Wine"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederic_robinson_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+minhas_craft_brewery-dempsey_stout,0,0,244873494531,"{""name"":""Dempsey Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
+spanish_peaks_brewing,0,0,245118074880,"{""name"":""Spanish Peaks Brewing"",""city"":""Polson"",""state"":""Montana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.blackdogales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Polson MT 59860""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6959,""lon"":-114.176}}",1,47,1
+brouwerij_bavik_de_brabandere-petrus_blond_ale,0,0,244486963200,"{""name"":""Petrus Blond Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+founders_brewing-founders_devil_dancer,0,0,244622884866,"{""name"":""Founders Devil Dancer"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Founders most complex, most innovative, most feared and yet most revered ale produced. Massive in complexity the huge malt character balances the insane amount of alpha's used to create this monster. More IBU's than any brewery has documented, more than you would believe and dry-hopped for twenty-six days straight with a combination of 10 hop varieties. Dangerously drinkable and deliciously evil. We dare you to dance with the Devil."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,38,1
+independence_brew_pub,0,0,244737572867,"{""name"":""Independence Brew Pub"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19107"",""country"":""United States"",""phone"":""1-215-922-4292"",""website"":""http://www.independencebrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1150 Filbert Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9526,""lon"":-75.1594}}",1,9,1
+elliott_bay_brewery_and_pub-dry_hopped_ipa,0,0,244620263426,"{""name"":""Dry Hopped IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
+rock_bottom_restaurant_brewery_chicago-goat_toppler_mai_bock,0,0,244998733826,"{""name"":""Goat Toppler Mai Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_chicago"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,44,1
+barrel_house_brewing_co,0,0,244364017664,"{""name"":""Barrel House Brewing Co."",""city"":""Cincinnati"",""state"":""Ohio"",""code"":""45214"",""country"":""United States"",""phone"":""513-421-2337"",""website"":""http://www.barrelhouse.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established as a brewpub in 1995 in the historic Over-The-Rhine neighborhood of Cincinnati, The BarrelHouse Brewing Company has since transitioned into a regionally distributed microbrewery offering an impressive selection of both innovative styles of ales and traditional lagers. Brewed and bottled in small batches with only honest ingredients, BarrelHouse beers are extremely fresh and exceptionally flavorful. Thank you for embracing our fiercely independent vision of a hand-crafted future for all! Operating as a brewpub from August 1995 until February 2005, The BarrelHouse Brewing Company recently relocated to our current location in the West End of downtown Cincinnati. We officially reopened with a completed expansion plan in April 2005. Our expansion included almost doubling our fermentation capacity as well as the addition of a brand new bottling line. Our first order of bottled beer hit Ohio area stores in June 2006 and we have subsequently begun to enter markets that were previously unavailable. The BarrelHouse Brewing Company brews on a 15 BBL brewhouse manufactured by Century. One BBL equals 31 gallons therefore; our beers are hand-crafted in 465 gallon batches. Our ales are ready after approximately fourteen days while our lagers are conditioned for upwards of six weeks. By brewing in small batches, our brewers are able to achieve an optimal level of quality control while creating a consistently flavorful product. While our brewing process is quite labor intensive, we believe that hand-crafting our beers sets us apart from the majority of breweries in the U.S. today. Our dedication is unparalleled and quite evident in the final packaged product."",""address"":[""544B W. Liberty St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1136,""lon"":-84.526}}",1,19,1
+ska_brewing_company,0,0,244998602752,"{""name"":""Ska Brewing Company"",""city"":""Durango"",""state"":""Colorado"",""code"":""81301"",""country"":""United States"",""phone"":""970.247.5792"",""website"":""http://www.skabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""545 Turner Drive""]}",1,43,1
+anheuser_busch-wild_blue_blueberry_lager,0,0,244363493376,"{""name"":""Wild Blue Blueberry Lager"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""anheuser_busch"",""updated"":""2010-07-22 20:00:20"",""description"":""Wild Blue is brewed with a blend of German hops from the Hallertau region in Bavaria and classic Aroma hops from the Willamette Valley in the Pacific Northwest. A combination of two- and six-row barley malt was also chosen specifically for this recipe. Beer lovers will also appreciate this specialty fruit-infused lager's striking burgundy color, ripe blueberry aroma and its ability to stand up to the strongest of foods."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,18,1
+high_falls_brewing-dundee_pale_bock_lager,0,0,244745568257,"{""name"":""Dundee Pale Bock Lager"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Certain things seem interminable. The line at the DMV. The commencement address. Winter. \r\n\r\nBut take heart. Even the longest, darkest winter gives way to spring and a new sense of optimism that the best is just ahead. That thought—and an itchy wool robe—sustained the monks through times of fasting. Their reward? A bock beer with the power to rejuvenate the body and the soul. That, and the opportunity to exchange the wool robe for a nice burlap one. \r\n\r\nSo when you’re stuck in the middle of that seemingly endless glass of mediocre beer, be optimistic. A Dundee Pale Bock awaits.\r\n\r\nA traditional German Maibock with a deep, golden color, malty-sweet aroma, and clean finish from Magnum and Czech Saaz hops."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,28,1
+new_century_brewing_company-edison_light_beer,0,0,244859338752,"{""name"":""Edison Light Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_century_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+privat_brauerei_schmucker_ober_mossau_kg-schwarz_bier,0,0,244981563393,"{""name"":""Schwarz Bier"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privat_brauerei_schmucker_ober_mossau_kg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,3,1
+elliott_bay_brewery_and_pub-luna_weizen,0,0,244629831681,"{""name"":""Luna Weizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+full_sail_brewing_1-amber_ale,0,0,244628848640,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,52,1
+fish_brewing_company_fish_tail_brewpub-thornton_creel_ale,0,0,244610695170,"{""name"":""Thornton Creel Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+blue_point_brewing-hoptical_illusion,0,0,244376993792,"{""name"":""Hoptical Illusion"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blue_point_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
+carlow_brewing_company,0,0,244478705665,"{""name"":""Carlow Brewing Company"",""city"":""Carlow"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353 (0)59 9134356"",""website"":""http://www.carlowbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Carlow Brewing Company is a small Irish Brewery established in 1998. Carlow, a small town located in the Barrow Valley Region, the traditional malt and hop producing region in Ireland, once boasted a number of breweries, but the practice had been discontinued for over 100 years until revived in 1998 by Carlow Brewing Company. "",""address"":[""The Goods Store, Station Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.7196,""lon"":-6.846}}",1,12,1
+appleton_brewing-adler_brau_1848_lager,0,0,244379680770,"{""name"":""Adler Bräu 1848 Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+pumphouse_pizza_and_brewing-t_p_h_porter,0,0,244980842497,"{""name"":""T.P.H. Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pumphouse_pizza_and_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+capital_brewery-autumnal_fire,0,0,244498890752,"{""name"":""Autumnal Fire"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
+front_street_brewery-raging_river_ale,0,0,244611153921,"{""name"":""Raging River Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+southern_tier_brewing_co-raspberry_porter,0,0,245117747200,"{""name"":""Raspberry Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,46,1
+samuel_smith_old_brewery_tadcaster-nut_brown_ale,0,0,244997357569,"{""name"":""Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""Often called “mild” if it is on draft, brown ale is a walnut-colored specialty of the North of England. A festive-occasion beer, brown ale is one of the oldest English brewing styles, mentioned in literature in the 16th century. Beers brewed at the old brewery have a round, nutty flavor because of the Yorkshire square system of fermentation."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
+boston_beer_company-samuel_adams_golden_pilsner,0,0,244371292160,"{""name"":""Samuel Adams Golden Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+blicks_brewing-blind_side_pale_ale,0,0,244371816448,"{""name"":""Blind Side Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""blicks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+brouwerij_abdij_saint_sixtus,0,0,244489453568,"{""name"":""Brouwerij Abdij Saint Sixtus"",""city"":""Westvleteren"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-057-40-10-57"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Donkerstraat 12""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8961,""lon"":2.7222}}",1,37,1
+james_page_brewing-voyageur_extra_pale_ale,0,0,244737179650,"{""name"":""Voyageur Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""james_page_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
+hereford_hops_steakhouse_and_brewpub_3-india_pale_ale,0,0,244736589825,"{""name"":""India Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+dixon_s_downtown_grill,0,0,244612530178,"{""name"":""Dixon's Downtown Grill"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-573-6100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7541,""lon"":-105.0}}",1,14,1
+deschutes_brewery-mirrorpond_pale_ale,0,0,244631470081,"{""name"":""Mirrorpond Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mirror Pond is just a short walk from the Deschutes Brewery & Public House in downtown Bend and reflects the Three Sisters Mountains. This scenic spot alongside the Deschutes River is the locals’ choice for summer festivals and concerts."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+moosejaw_pizza_dells_brewing_company-pilsner,0,0,244858093569,"{""name"":""Pilsner"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+o_grady_s_brewery_and_pub_1-prohibition_smokehouse_porter,0,0,244876705792,"{""name"":""Prohibition Smokehouse Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+new_jersey_beer_company-hudson_pale_ale,0,0,244857372673,"{""name"":""Hudson Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_jersey_beer_company"",""updated"":""2010-11-17 14:13:17"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,0,1
+great_lakes_brewing-holy_moses,0,0,244756774912,"{""name"":""Holy Moses"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Wit Ale spiced with orange peel, chamomile and coriander."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,56,1
+big_rock_brewery-cold_cock_porter_discontinued,0,0,244377452545,"{""name"":""Cold Cock Porter (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
+cooper_s_cave_ale_company-sagamore_stout,0,0,244480999425,"{""name"":""Sagamore Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sagamore Stout is a light, dry Irish Draught Stout. It is not only named for the street on which our brewery is located but also for the \""Sagamore\"" of the Mohicans, the Chief Chingachgook. Best quaffed using a wide mouthed, full blown English Pint."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
+f_x_matt_brewing-saranac_rachbier,0,0,244623343616,"{""name"":""Saranac Rachbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty German style lager is brewed with Bamberg smoked malt using only the best German hops and traditional lager yeast. Look for a smooth malty flavor with a hint of smoke in the finish.""}",1,39,1
+kostritzer_schwarzbierbrauerei-maibock,0,0,244735672322,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kostritzer_schwarzbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,4,1
+new_glarus_brewing_company-apple_ale,0,0,244859797505,"{""name"":""Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,6,1
+commonwealth_brewing_1-classic_stout,0,0,244497580032,"{""name"":""Classic Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
+samuel_smith_old_brewery_tadcaster-imperial_stout,0,0,244998144000,"{""name"":""Imperial Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
+cleveland_chophouse_and_brewery-kolsch,0,0,244480540672,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cleveland_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+hampshire_brewery-pride_of_romsey_ipa,0,0,244740063233,"{""name"":""Pride of Romsey IPA"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hampshire_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+furstlich_furstenbergische_brauerei-export,0,0,244612268033,"{""name"":""Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""furstlich_furstenbergische_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+mishawaka_brewing-indiana_pale_ale,0,0,244873494532,"{""name"":""INDIAna Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+st_stan_s_brewing_co-vhb,0,0,245118074881,"{""name"":""VHB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_stan_s_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,47,1
+brouwerij_de_ranke-kriek,0,0,244487028736,"{""name"":""Kriek"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_ranke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+four_peaks_brewing-hop_knot_ipa,0,0,244622950400,"{""name"":""Hop Knot IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Hop Knot IPA is made only from American malt and lots of American hops, which produce a big, broad-shouldered, hoppy beer backed up by a character as warm as, well, Mom and apple pie… \r\n\r\nHop Knot IPA get its peculiar name from the weaving of four different hops added at four separate times during the brewing process. Including our cavernous hop-back, which gets so stuffed with whole leaf hops that we feel genuine guilt for its excess. Hop Knot is an ale that is to be enjoyed with friends, spicy food or any time you need a good hop fix without the harsh bitterness. We hope you enjoy this pioneering beer made in the bold spirit of Americans everywhere. \r\n\r\nAlcohol content approximately 6.0% by volume (ALWAYS ON TAP!!)"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+industrias_la_constancia_ilc-pilsner_of_el_salvador,0,0,244737638400,"{""name"":""Pilsner of El Salvador"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""industrias_la_constancia_ilc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
+empyrean_brewing_company-festive_ale_2000,0,0,244620394496,"{""name"":""Festive Ale 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+sabmiller_india-peroni_nastro_azzurro,0,0,244998799360,"{""name"":""Peroni Nastro Azzurro"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Peroni its unique taste which is refreshing and dry, with a clear-cut, clean character and clarity, achieved through the exclusive brewing process. This ensures that the beer has both a fresh and natural quality. \r\n\r\nPositioned as ‘Italian style in a bottle’, from presentation to pouring the brand, Peroni has struck a chord with modern urbanites looking for cosmopolitan class. \r\n\r\nhttp://www.sabmiller.in/brands_peroni.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+bear_republic_brewery-late_harvest_fest_lager,0,0,244364017665,"{""name"":""Late Harvest Fest Lager"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bear_republic_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty, copper-colored lager is styled after Munich's traditional \""Oktoberfest\"" beers. A full-bodied, rich malt character is balanced by a slight bitter finish. Perfect for cooler fall days, it is lagered for five weeks. Prost!!"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,19,1
+snipes_mountain_microbrewery_restaurant-roza_reserve,0,0,245116370944,"{""name"":""Roza Reserve"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snipes_mountain_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+appleton_brewing-adler_brau_eagle_lager,0,0,244363493377,"{""name"":""Adler Bräu Eagle Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""appleton_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+hofmark_brauerei-original_pils,0,0,244745633792,"{""name"":""Original Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofmark_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+niagara_falls_brewing,0,0,244859338753,"{""name"":""Niagara Falls Brewing"",""city"":""Niagara Falls"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-905-356-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6863 Lundy's Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0893,""lon"":-79.11}}",1,5,1
+pugsley_brewing_llc-kennebunkport_ipa,0,0,244981563394,"{""name"":""Kennebunkport IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pugsley_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Below-average but drinkable IPA, cheaply priced (~$1/bottle), and available at Trader Joe's."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
+emmett_s_tavern_and_brewery-belgian_wit,0,0,244629831682,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emmett_s_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+gaslight_brewery-80_shilling,0,0,244628848641,"{""name"":""80 Shilling"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+flyers_restraunt_and_brewery-barnstormer_brown_ale,0,0,244610760704,"{""name"":""Barnstormer Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""As the name implies, a rich deep brown ale in color with dark amber highlights. The flavor is slightly sweet with hints of nuts and toffee finishing smooth with no after taste."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
+boulevard_brewing_company-bob_s_47_oktoberfest,0,0,244376993793,"{""name"":""Bob's '47 Oktoberfest"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Boulevard’s fall seasonal beer, Bob’s ’47 Oktoberfest is a medium-bodied, dark amber brew with a malty flavor and well-balanced hop character. With this Munich-style lager we solute our friend Bob Werkowitch, Master Brewer and 1947 graduate of the U.S. Brewer‘s Academy. Available from September through October in bottles and on draught."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,49,1
+catawba_valley_brewing_company,0,0,244478705666,"{""name"":""Catawba Valley Brewing Company"",""city"":""Glen Alpine"",""state"":""NC"",""code"":""28628"",""country"":""United States"",""phone"":""828-430-6883"",""website"":""http://www.catawbavalleybrewingcompany.com/"",""type"":""brewery"",""updated"":""2011-02-16 12:36:49"",""description"":""The Catawba Valley Brewing Company grew out of a simple gift, and the love of good beer. A beginner's home brewing kit given years ago began a passion for brewing that could only culminate with production on a larger scale. It seemed natural to take production from a few gallons to a few barrels and beyond. During the summer of 1999 the business that is now Catawba Valley Brewing Company was born.\n\nIn April of 2007 the brewery relocated from Glen Alpine, NC to downtown Morganton, NC. In the process we didn't lose a customer or miss a delivery. In fact we achieved record spring sales. In addition to relocating we've also opened our taproom to the public. We encourage those interested in finely crafted beers to stop by and try our selection of beers. Getting a fresher beer is a near impossibility."",""address"":[""P.O. Box 1154""]}",1,12,1
+bell_s_brewery_inc-hopslam_ale,0,0,244379680771,"{""name"":""Hopslam Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""A biting, bitter, tongue bruiser of an ale. With a name like Hopslam, what did you expect?"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
+pyramid_ales_brewery-scotch_brand_ale,0,0,244980842498,"{""name"":""Scotch brand Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,1,1
+cervejaria_sudbrack-eisenbahn_defumada,0,0,244498890753,"{""name"":""Eisenbahn Defumada"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervejaria_sudbrack"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+gordon_biersch_brewing-pilsner,0,0,244611219456,"{""name"":""Pilsner"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+southern_tier_brewing_co-southern_tier_tripel,0,0,245117747201,"{""name"":""Southern Tier Tripel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Don't let Tripel's light color and delicate aroma fool you, this is one serious beer brewed with maximum effort. First, we introduce the freshest barley to crystal filtered water. Second, we add the best hops shipped directly from Europe. Third, our special yeast is the catalyst for fermentations, gobbling sugar and creating alcohol as it works. \r\n\r\nSome say that the Belgian monks who first brewed this style called it triple to denote it's high alcohol content. Still others believe triple's origins lay in its triple fermentations; twice in the brewery and once in the bottle. Whatever the answer, ours is the Tripel threat."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
+scotch_irish_brewing-black_irish_plain_porter,0,0,244997423104,"{""name"":""Black Irish Plain Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scotch_irish_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
+boston_beer_company-samuel_adams_hefeweizen,0,0,244371292161,"{""name"":""Samuel Adams Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Unfiltered wheat ale, fruity, bright, with a crisp flavor of wheat. Samuel Adams® Hefeweizen beer is a traditional spin on a classic American craft brewing style. The brewers of Samuel Adams® used both malted and unmalted wheat, and two row Pale barley for a clean malty, cereal note. This bright, fruity wheat ale is unfiltered, retaining a natural haze from malt proteins, crisp, bright flavors of wheat, and fresh, fruity ester complexity from our proprietary ale yeast. Accentuated with Noble Spalt-Spalter hops, Samuel Adams® Hefeweizen has an elegant and pleasant bitterness, finishing smooth and clean."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
+boston_beer_works-buckeye_oatmeal_stout,0,0,244371816449,"{""name"":""Buckeye Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boston_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+brouwerij_van_eecke-het_kapittel_pater,0,0,244489453569,"{""name"":""Het Kapittel Pater"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_eecke"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+jt_whitney_s_brewpub_and_eatery-black_diamond_porter,0,0,244737245184,"{""name"":""Black Diamond Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
+hirschbru_privatbrauerei_hss-bavarian_weissbier_hefeweisse_weisser_hirsch,0,0,244736589826,"{""name"":""Bavarian-Weissbier Hefeweisse / Weisser Hirsch"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hirschbru_privatbrauerei_hss"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
+dragonmead_microbrewery-dead_monk_abbey_ale,0,0,244612595712,"{""name"":""Dead Monk Abbey Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian beer is brewed in the style of the Trappist Monks. Belgian Candi Sugar, Pilsen, Aromatic and Caramunich malts are balance by E. Kent Goldings, Mt. Hood and Saaz hops to construct a \""Big Beer\"". Traditional White Beer Yeast is used to make this beer have a large mouth-feel and lingering spice notes in the finish."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,14,1
+deschutes_brewery-obsidian_stout,0,0,244631470082,"{""name"":""Obsidian Stout"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Obsidian Stout gets is inspiration from one of the world's largest obsidian flows at Newberry Volcano--just a few miles south of the brewery. \""The Big Obsidian Flow,\"" as they call it, covers more than 700 acres with shiny black obsidian."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
+new_belgium_brewing-sunshine_wheat,0,0,244858093570,"{""name"":""Sunshine Wheat"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""SUNSHINE WHEAT is a great beer for trouncing thirst. Yet, it has a depth of character that inspires a quiet moment’s reflection. Sunshine Wheat swirls in the mouth with ripples of coriander and orange peel tartness, settling nicely into a tranquil sea of apple and honey tones. A filtered wheat beer, Sunshine offers a crisp, refreshing alternative to heavier-bodied heffe-weizens."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,2,1
+oak_creek_brewery-horseshoe_hefeweizen,0,0,244876705793,"{""name"":""Horseshoe Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
+olde_main_brewing-marzen_lager,0,0,244857372674,"{""name"":""Marzen Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,0,1
+hambleton_ales,0,0,244756774913,"{""name"":""Hambleton Ales"",""city"":""Melmerby"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01765)-640108"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Melmerby Green Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":54.1744,""lon"":-1.4844}}",1,56,1
+blitz_weinhard_brewing,0,0,244377452546,"{""name"":""Blitz-Weinhard Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Portland OR 97209""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5325,""lon"":-122.686}}",1,50,1
+dark_horse_brewing_co-tres_blueberry_stout,0,0,244613382144,"{""name"":""Tres Blueberry Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dark_horse_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A full bodied stout made with all malted barley and blueberry. Flavors of chocolate, roast malt and light blueberry make up the palate with lots of fruity blueberry aroma."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
+faultline_brewing_2-pale_ale,0,0,244623343617,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
+loaf_and_stein_brewing-railroad_street_porter,0,0,244858683392,"{""name"":""Railroad Street Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,4,1
+new_holland_brewing_company-pilgrim_s_dole,0,0,244859797506,"{""name"":""Pilgrim's Dole"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pilgrim’s Dole is a barleywine-style ale made with fifty percent wheat malt, or what we at New Holland call a wheatwine. Pilgrim’s Dole blends warming and slightly sweet flavors with a unique caramelized character. It would be an excellent accent to nutty dishes, fruit crisps or creme brulee."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,6,1
+del_mar_stuft_pizza_and_brewing-stuft_pizza_torrey_pines_ipa,0,0,244629307392,"{""name"":""Stuft Pizza Torrey Pines IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""del_mar_stuft_pizza_and_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,54,1
+schlobrauerei_reckendorf-kellerbier,0,0,244998144001,"{""name"":""Kellerbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+copper_eagle_brewing,0,0,244480606208,"{""name"":""Copper Eagle Brewing"",""city"":""Grand Island"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.9454,""lon"":-122.304}}",1,16,1
+hereford_hops_steakhouse_and_brewpub_3-piva_bohemia,0,0,244740128768,"{""name"":""Piva Bohemia"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+gasthaus_brauerei_max_moritz-kellerpils,0,0,244612268034,"{""name"":""Kellerpils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_brauerei_max_moritz"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+mission_springs_brewing,0,0,244873494533,"{""name"":""Mission Springs Brewing"",""city"":""Mission"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-820-1009"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7160 Oliver Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.1323,""lon"":-122.343}}",1,41,1
+stone_brewing_co-stone_09_09_09_vertical_epic_ale,0,0,245118074882,"{""name"":""Stone 09.09.09 Vertical Epic Ale"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,47,1
+brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_blond_8,0,0,244487028737,"{""name"":""Achel Blond 8°"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,31,1
+fratellos_restaurant_and_brewery-titan_porter,0,0,244622950401,"{""name"":""Titan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
+iron_springs_pub_brewery-epiphany_ale,0,0,244737638401,"{""name"":""Epiphany Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+f_x_matt_brewing-saranac_belgian_white,0,0,244620394497,"{""name"":""Saranac Belgian White"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Belgian Style White beer is smooth, tangy and very thirst quenching. Brewed with a delicate combination of oats, wheat and barley malt, we season it ever so lightly with hops. Then we add sprinklings of coriander and orange peel for a refreshing brew with a citrus aroma. Don't be fooled by the cloudy appearance, that's expected of a classic Belgian-style \""Whitbier\"" or white beer."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,33,1
+saku_lletehas,0,0,244998799361,"{""name"":""Saku lletehas"",""city"":""Saku"",""state"":"""",""code"":"""",""country"":""Estonia"",""phone"":""372-6-508-400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tallinna mnt.2""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":59.3014,""lon"":24.6679}}",1,44,1
+bell_s_brewery_inc-java_stout,0,0,244364017666,"{""name"":""Java Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bell_s_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":""The satisfying elements of both stout and coffee come together in this full-bodied treat. A marriage of Sumatra's best with rich chocolate and roasted malt provides for a truly enlightening beer."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,19,1
+south_shore_brewery-witbier,0,0,245116436480,"{""name"":""Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+atwater_block_brewing-rost,0,0,244363558912,"{""name"":""Rost"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""atwater_block_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Rost (pronounced Roast) is a German word for Amber. Our Amber gets its coppery color from Pilsner. Munich and Caramel malts. Its rich malty sweetness is perfectly balanced by a slight hop finish and creamy head."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,18,1
+hops_grillhouse_brewery_cherry_creek-clearwater_light,0,0,244745633793,"{""name"":""Clearwater Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
+oaken_barrel_brewing-gnaw_bone_pale_ale,0,0,244859404288,"{""name"":""Gnaw Bone Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
+pyramid_ales_brewery,0,0,244981628928,"{""name"":""Pyramid Ales Brewery"",""city"":""Seattle"",""state"":""Washington"",""code"":""98134"",""country"":""United States"",""phone"":""(206) 682-8322"",""website"":""http://www.pyramidbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""91 S Royal Brougham Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.5924,""lon"":-122.334}}",1,3,1
+estes_park_brewery,0,0,244629897216,"{""name"":""Estes Park Brewery"",""city"":""Estes Park"",""state"":""Colorado"",""code"":""80517"",""country"":""United States"",""phone"":""970-586.5421"",""website"":""http://www.epbrewery.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The original Brewing equipment which consisted of a 4 1/4 Barrel Brewhouse was moved to Estes. For the first summer the Event Center kept the main floor as a stage and dance floor. For the first summer we offered four beers: Estes Park Porter, Estes Park Renegade, Longs Peak Raspberry Wheat and Estes Park Pale Ale. In the fall of 1994, Gordon Knight decided to sell his half of the business. When Gordon left, Eric Bratrud took over as the head Brewer. The Brewery also expanded to a 14 BBL Brewhouse and moved out onto the main floor where is now located. In 1995 we started packaging our beers in 12 oz bottles, which expanded our market. By this time we had added a number of beers including Trail Ridge Red, Estes Park Gold, Stinger Wild Honey Wheat and Samson Stout. 1995 was also the first year of the Best of the West Brewfest held in the Brewery parking lot. Since '95 we've continued to evolve both in our restaurant and with our brewing operations. In 2003 Tyler Lemirande and Eric Bratrud took over as owners."",""address"":[""470 Prospect Village Dr.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3707,""lon"":-105.526}}",1,55,1
+gold_crown_brewing-kings_pilsener,0,0,244628848642,"{""name"":""Kings Pilsener"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gold_crown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+fox_river_brewing_1-ipa,0,0,244610760705,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
+brasserie_de_brunehaut-abbaye_de_saint_martin_cuvee_de_noel,0,0,244376993794,"{""name"":""Abbaye de Saint-Martin Cuvée de Noel"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""A limited production, spiced Christmas ale available during the cold-weather months. (across the northern hemisphere)\r\nAbbye St. Martin Ales are pure Belgium.""}",1,49,1
+charles_wells_ltd-bombardier_premium_ale,0,0,244478771200,"{""name"":""Bombardier Premium Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""charles_wells_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+bellows_brew_crew-ipa,0,0,244379680772,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bellows_brew_crew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
+river_west_brewing-whistle_stop_weiss_beer,0,0,244980842499,"{""name"":""Whistle Stop Weiss Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
+clipper_city_brewing_co-heavy_seas_the_great_pumpkin_imperial_pumpkin_ale,0,0,244498890754,"{""name"":""Heavy Seas The Great Pumpkin Imperial Pumpkin Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The secret is in the 2.5 pounds of spice per barrel for this fall brew. We add the pumpkin during the mash at precisely the right time to create just the perfect balance of malt, hops, pumpkin and spice.\r\n\r\nestimated ABV 8.5% estimated IBU 25\r\nMalt, Hops, Pumpkin & our Secret Spices"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,58,1
+govnor_s_public_house-american_cream_ale,0,0,244611219457,"{""name"":""American Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
+spanish_peaks_brewing-american_pale_ale,0,0,245117747202,"{""name"":""American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,46,1
+shipyard_brewing_portland-pugsley_s_signature_series_imperial_porter,0,0,244997423105,"{""name"":""Pugsley's Signature Series Imperial Porter"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Porter is a full bodied, very dark, malty beer with a good roasted character coming from the Crystal, Chocolate and Black Patent Malts used in the mash. Warrior, English Fuggles, and East Kent Goldings Hops balance the malts with a good hop bite. The beer has an OG of 1.070, rounding out after fermentation with just a slight residual sweetness and cutting dry at the finish."",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
+boulevard_brewing_company-lunar_ale,0,0,244371357696,"{""name"":""Lunar Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first new year-round brand launch since 1996, Lunar Ale is in a category all its own. Brewed using a unique aromatic yeast, this refreshing variety is best described as a cloudy brown ale with a complex, malty aroma and flavor, and a crisp, dry finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
+brasserie_d_achouffe-la_chouffe_golden_ale,0,0,244371816450,"{""name"":""La Chouffe Golden Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_d_achouffe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,35,1
+brownings,0,0,244489453570,"{""name"":""Brownings"",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40202"",""country"":""United States"",""phone"":""502.515.0174"",""website"":""http://www.diningonmain.com/Brownings/Brownings_home.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In Browning's unique three-story brewing facility, Brew Master Brian Reymiller creates superior artisnal beers using only the best available grains and hops from England, Germany, and the Pacific Northwest. Reymiller brings to each pint of beer years of experience brewing award winning beer for Hops! Brewery, Smoky Mountain Brewing Company, and Victory Brewing Company. \t Executive Chef Jay Denham brings casual, Kentucky comfort-foods to the menu at Browning's. Jay's loves to use fresh and local ingredients for his inspiration of good old-fashioned home cooking. Growing up in Maysville, Ky. Jay learned to use the freshest and most wholesome ingredients while cooking for his family. His solid upbringing gave him a palate for great taste and is certainly eminent in his cuisine."",""address"":[""401 East Main St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2554,""lon"":-85.7441}}",1,37,1
+kulmbacher_brauerei_ag-kapuziner_kristall_weizen,0,0,244737245185,"{""name"":""Kapuziner Kristall-Weizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+hook_ladder_brewing_company-hook_ladder_backdraft_brown,0,0,244736655360,"{""name"":""Hook & Ladder Backdraft Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_ladder_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth and refreshing beer loaded with flavor. Specialty malts balanced with just the right amount of cascade hops give it a roasted taste and beautiful brown color. This drinkable brown ale easily rivals an expensive import."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
+eagle_brewing,0,0,244612595713,"{""name"":""Eagle Brewing"",""city"":""Mukilteo"",""state"":""Washington"",""code"":""98275"",""country"":""United States"",""phone"":""1-425-348-8088"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""625 Fourth Street""]}",1,14,1
+diamond_bear_brewing_co-paradise_porter,0,0,244631470083,"{""name"":""Paradise Porter"",""abv"":4.99,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_bear_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This medium bodied porter has notes of roasted and chocolate malts, making it a perfect balance of sweet and bitter. Generous hops give this brew a dry finish."",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
+odell_brewing-double_pilsner,0,0,244858159104,"{""name"":""Double Pilsner"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+oasis_brewery_annex-extra_special_bitter_ale,0,0,244876705794,"{""name"":""Extra Special Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oasis_brewery_annex"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+pacific_coast_brewing-hammerhead_barleywine_1990,0,0,244980449280,"{""name"":""Hammerhead Barleywine 1990"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+heartland_brewery_union_square-red_rooster_ale,0,0,244756840448,"{""name"":""Red Rooster Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
+boulevard_brewing_company-ten_penny_american_bitter,0,0,244377452547,"{""name"":""Ten Penny American Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+dogfish_head_craft_brewery-120_minute_ipa,0,0,244613447680,"{""name"":""120 Minute IPA"",""abv"":18.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Too extreme to be called beer? Brewed to a colossal 45-degree plato, boiled for a full 2 hours while being continuously hopped with high-alpha American hops, then dry-hopped daily in the fermenter for a month & aged for nother month on whole-leaf hops!!! Our 120 Minute I.P.A. is by far the biggest I.P.A. ever brewed! At 20% abv and 120 ibus you can see why we call this beer THE HOLY GRAIL for hopheads!\r\n\r\n-changed to be 18% for aging purposes according to Dogfish Head brewery."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,17,1
+finnegans,0,0,244623409152,"{""name"":""FINNEGANS"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55404"",""country"":""United States"",""phone"":"""",""website"":""http://www.finnegans.org"",""type"":""brewery"",""updated"":""2010-12-03 17:53:48"",""description"":""FINNEGANS was founded in 2000 in Minneapolis, Minnesota, from the belief that each and every one of us can make a difference in our community. And that true passion in that belief can move mountains and make magical things happen.\n\nWhen we created our first product, FINNEGANS Irish Amber, we made the decision to donate 100 percent of the profits back to the community where it's sold to help alleviate poverty. And we knew it was going to take hard work, unwavering passion, and even a little magic along the way to make it a sustainable effort.\n\nWhat a journey it's been.\n\nFINNEGANS Irish Amber is now sold throughout Minnesota, Wisconsin, and North Dakota. Since first being profitable in 2003, we have donated over $150,000 to the FINNEGANS Community Fund, which in turn has given grants to non-profits across the Midwest to support life-changing programs for the working poor. We plan to roll out a new FINNEGANS product in 2011, and eventually have an entire line of FINNEGANS branded products"",""address"":[""619 10th St. South"",""Suite 100""]}",1,39,1
+long_valley_pub_brewery-german_valley_amber,0,0,244858748928,"{""name"":""German Valley Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
+north_coast_brewing_company-red_seal_ale,0,0,244859797507,"{""name"":""Red Seal Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Malt and hops are beautifully married in this full-bodied, copper-red Pale Ale. Red Seal is generously hopped for a long, spicy finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
+deschutes_brewery,0,0,244629372928,"{""name"":""Deschutes Brewery"",""city"":""Bend"",""state"":""Oregon"",""code"":""97702"",""country"":""United States"",""phone"":""1-541-385-8606"",""website"":""http://www.deschutesbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Deschutes Brewery, located in Central Oregon along the banks of the wild and scenic Deschutes River, has brewed handcrafted traditional ales since 1988. Starting out as a small brewpub in the heart of downtown Bend, Deschutes' first beers were Black Butte Porter, Bachelor Bitter and Cascade Golden Ale. In 1993, Deschutes moved into its current brewing facility and has continued expanding and improving the facilities. With a 50-barrel traditional gravity brew house and a new one-of-a-kind 131-barrel Huppmann brew system from Germany, Deschutes now creates and experiments with specialty batches of limited beers while brewing large quantities of everyone's favorites like Mirror Pond Pale Ale. Consistently producing the highest quality beers is always Deschutes' number one priority and commitment. The Deschutes Brewery & Public House continues brewing unique beers at our original location while serving the finest Northwest pub cuisine. So when you find yourself in Bend, come on in and have a pint of Bachelor Bitter, the locals' favorite, or any of our other original ales brewed on-site. Deschutes Brewery's distinct ales; Black Butte Porter, Mirror Pond Pale Ale, Obsidian Stout, Inversion IPA, Bachelor ESB, Cascade Ale, Buzzsaw Brown (winter), Cinder Cone Red (spring), Twilight Ale (summer), Jubelale (fall) and other seasonal beers are available at pubs and markets in a neighborhood near you. --http://www.deschutesbrewery.com/About+Us/default.aspx"",""address"":[""901 SW Simpson Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.0474,""lon"":-121.323}}",1,54,1
+sharktooth_brewing-stout,0,0,244998209536,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,42,1
+crabby_larry_s_brewpub_steak_crab_house,0,0,244480606209,"{""name"":""Crabby Larry's Brewpub Steak & Crab House"",""city"":""Chalfont"",""state"":""Pennsylvania"",""code"":""18914"",""country"":""United States"",""phone"":""1-215-822-8788"",""website"":""http://www.crabbylarrys.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""237 West Butler Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2795,""lon"":-75.2143}}",1,16,1
+hida_takayama_brewing_agricultural_company-weizen,0,0,244740128769,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hida_takayama_brewing_agricultural_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
+george_bateman_and_son_ltd,0,0,244612333568,"{""name"":""George Bateman and Son Ltd."",""city"":""Skegness"",""state"":""Lincoln"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01754)-880317"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mill Lane""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":53.1691,""lon"":0.3169}}",1,13,1
+new_belgium_brewing-1554_enlightened_black_ale,0,0,244873560064,"{""name"":""1554 Enlightened Black Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Born of a flood and centuries-old Belgian text, 1554 Enlightened Black Ale uses a light lager yeast strain and dark chocolaty malts to redefine what dark beer can be. In 1997, a Fort Collins flood destroyed the original recipe our researcher, Phil Benstein, found in the library. So Phil and brewmaster, Peter Bouckaert, traveled to Belgium to retrieve this unique style lost to the ages. Their first challenge was deciphering antiquated script and outdated units of measurement, but trial and error (and many months of in-house sampling) culminated in 1554, a highly quaffable dark beer with a moderate body and mouthfeel."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,41,1
+stuttgarter_hofbru,0,0,245118140416,"{""name"":""Stuttgarter Hofbru"",""city"":""Stuttgart"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)711-/-6488-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bblinger Strae 104""]}",1,47,1
+brouwerij_rodenbach,0,0,244487094272,"{""name"":""Brouwerij Rodenbach"",""city"":""Roeselare"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-051-27-28-10"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Spanjestraat 133-141""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9462,""lon"":3.1362}}",1,31,1
+g_heileman_brewing,0,0,244622950402,"{""name"":""G. Heileman Brewing"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.8014,""lon"":-91.2396}}",1,38,1
+kaiserdom_privatbrauerei_bamberg-premium_pilsener,0,0,244737638402,"{""name"":""Premium Pilsener"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+federation_brewery,0,0,244620460032,"{""name"":""Federation Brewery"",""city"":""Gateshead"",""state"":""Tyne and Wear"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0191)-4609023"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lancaster Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":54.9548,""lon"":-1.6576}}",1,33,1
+scharer_s_little_brewery,0,0,244998864896,"{""name"":""Scharer's Little Brewery"",""city"":""Picton"",""state"":""NSW"",""code"":""2571"",""country"":""Australia"",""phone"":""+61 2 4677 1415"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""180 Old Hume Hwy""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-34.1855,""lon"":150.607}}",1,44,1
+berliner_kindl_schultheiss_brauerei,0,0,244364083200,"{""name"":""Berliner-Kindl-Schultheiss-Brauerei"",""city"":""Berlin"",""state"":""Berlin"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)30-/-9609-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Indira-Ghandi-Strae 66-69""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.5234,""lon"":13.4114}}",1,19,1
+southend_brewery_and_smokehouse_charleston-ruby_red_lager,0,0,245116436481,"{""name"":""Ruby Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
+barley_brothers_brewery_and_grill,0,0,244363558913,"{""name"":""Barley Brothers Brewery and Grill"",""city"":""Lake Havasu City"",""state"":""Arizona"",""code"":""86403"",""country"":""United States"",""phone"":""1-928-505-7837"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1425 McCulloch Boulevard""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.4702,""lon"":-114.35}}",1,18,1
+hoptown_brewing,0,0,244745699328,"{""name"":""HopTown Brewing"",""city"":""Pleasanton"",""state"":""California"",""code"":""94588"",""country"":""United States"",""phone"":""1-925-426-1450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3015-D Hopyard Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.677,""lon"":-121.898}}",1,28,1
+odell_brewing-levity_amber_ale,0,0,244859404289,"{""name"":""Levity Amber Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Levity is our lighter take on the amber ale. Munich and honey malts give it a full-bodied flavor and a happy-go-lucky personality. Then we let the finishing hops shine, for a beer that's crisp instead of bitter, as many ambers are. Levity was named by our brewers partly for its light color - and partly for the way it just refuses to take itself too seriously. Hey, we could all use a little levity once in a while."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
+san_marcos_brewery_grill-pale_ale,0,0,244981628929,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
+ettaler_klosterbetriebe_abteilung_brauerei_destillerie-curator_dunkler_doppelbock,0,0,244629897217,"{""name"":""Curator Dunkler Doppelbock"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ettaler_klosterbetriebe_abteilung_brauerei_destillerie"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,55,1
+gottberg_brew_pub-cow_palace_scotch_ale,0,0,244628848643,"{""name"":""Cow Palace Scotch Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,52,1
+fratellos_restaurant_and_brewery-foxtoberfest,0,0,244610760706,"{""name"":""Foxtoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,10,1
+brasserie_des_vosges-bete_des_vosges,0,0,244377059328,"{""name"":""Bête des Vosges"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_des_vosges"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,49,1
+city_brewing_company_llc-pale_ale,0,0,244478771201,"{""name"":""Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""city_brewing_company_llc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+bierbrouwerij_bavaria,0,0,244379746304,"{""name"":""Bierbrouwerij Bavaria"",""city"":""Lieshout"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-0499-428111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Burg. van den Heuvelstraat 35""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.5163,""lon"":5.5977}}",1,57,1
+rock_bottom_restaurant_brewery_san_jose-raccoon_red_ale,0,0,244980842500,"{""name"":""Raccoon Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
+crane_river_brewpub_and_cafe-red_top_rye,0,0,244498956288,"{""name"":""Red Top Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crane_river_brewpub_and_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+govnor_s_public_house-dublin_dunkelweizenbock,0,0,244611219458,"{""name"":""Dublin Dunkelweizenbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,11,1
+spoetzl_brewery-shiner_hefeweizen,0,0,245117747203,"{""name"":""Shiner Hefeweizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
+shmaltz_brewing_company,0,0,244997423106,"{""name"":""Shmaltz Brewing Company"",""city"":""San Francisco"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.shmaltz.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.7749,""lon"":-122.419}}",1,40,1
+boundary_bay_brewery_and_bistro-doppel_bock,0,0,244371357697,"{""name"":""Doppel Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boundary_bay_brewery_and_bistro"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,34,1
+brasserie_de_l_abbaye_val_dieu-blonde,0,0,244371881984,"{""name"":""Blonde"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_l_abbaye_val_dieu"",""updated"":""2010-07-22 20:00:20"",""description"":""This authentic Abbey Ale is based on the recipe perfected centuries ago by the monks of Abbey Du Val-Dieu."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,35,1
+cat_s_paw_home_brew,0,0,244489519104,"{""name"":""Cat's Paw Home Brew"",""city"":"""",""state"":"""",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,37,1
+lagunitas_brewing_company-ipa,0,0,244737245186,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This is our unique version of an ancient style. A style as old as the ocean trade routes of the last centuries Great Ships. Not as old as the equator they had to cross twice enroute, nor as old as the 10,000 or so miles of Di-Hydrogen Oxide and Sodium upon which they sailed, but older than the Circulithium-4 Lentloid that binds the Lupulin Quartnate onto your taste buds. Weird. Think about it. Now stop. OK, go again, now stop. Think again, and stop. But we digress. Made with 43 different hops and 65 various malts, this redolent ale will likely float your boat, whatever planet you're on. \"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
+hop_back_brewery-thunder_storm,0,0,244736655361,"{""name"":""Thunder Storm"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
+emerson_brewing-taieri_george,0,0,244612595714,"{""name"":""Taieri George"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emerson_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+dick_s_brewing-irish_style_ale,0,0,244631535616,"{""name"":""Irish Style Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+otto_s_pub_and_brewery-jolly_roger_imperial_stout,0,0,244858159105,"{""name"":""Jolly Roger Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,2,1
+orchard_street_brewery-pale_ale,0,0,244876705795,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orchard_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+penn_brewery-penn_pilsner,0,0,244980514816,"{""name"":""Penn Pilsner"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship brand! An amber Vienna-style lager beer that is smooth, mellow and full bodied, with delicate hop aroma. Uses two-row barley malt and caramel-roasted malt. Based on founder Tom Pastorius' favorite German bier."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,0,1
+hereford_hops_restaurant_and_brewpub_1-stump_sitter_stout,0,0,244756840449,"{""name"":""Stump Sitter Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
+brasserie_de_brunehaut-abbaye_de_saint_martin_blonde,0,0,244377518080,"{""name"":""Abbaye de Saint-Martin Blonde"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_de_brunehaut"",""updated"":""2010-07-22 20:00:20"",""description"":""11.2oz bottle. Slightly hazy golden color with a white head. Earthy clay, light molasses, and buttered cauliflower aromas. A crisp, frothy entry leads to a dryish medium body of figs, creamy caramel, and roasted carrot flavors. This St. Martin Blonde ale finishes with dried fruit and cashew fade.\r\nAbbye St. Martin Ales are pure Belgium."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,50,1
+dortmunder_actien_brauerei_dab,0,0,244613513216,"{""name"":""Dortmunder Actien Brauerei DAB"",""city"":""Dortmund"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)231-/-8400-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Steigerstrae 20""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.5298,""lon"":7.4692}}",1,17,1
+flying_bison_brewing-barnstormer_pale_ale,0,0,244623409153,"{""name"":""Barnstormer Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American Pale Ale. Made with American pale malt for a brilliant straw gold color, American hops (Cascade) for a refreshing citrusy hop character, and our signature ale yeast for a clean smooth finish. Available on draft, and seasonally in our Mixed"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
+magic_hat-braggot,0,0,244858814464,"{""name"":""Braggot"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""An Ale Brewed with Honey\r\nOur inaugural Epic Elixir, Braggot is a most remarkable honey ale, made with specialty malts & wildflower honey from Vermont's Champlain Valley. The honey adds smoothness with subtle hints of chamomile.\r\n\r\nBraggot is an ale of shining perfection that simply must be experienced to be understood. But hurry ... for Braggot, as with each entry in our Humdinger series, vanishes almost as soon as it arrives. Get a bottle of Braggot today and come to know a new 'Ale of Legend'. \r\n\r\nWild Flower Honey, primarily Red Clover and Alfalfa from Champlain Valley Apiaries in Middlebury, Vermont. This represents 50% of the total fermentable sugars.\r\n\r\nChamomile: Whole Chamomile flowers steeped in hot wort.""}",1,4,1
+o_gara_s_bar_grill-honey_brown,0,0,244859863040,"{""name"":""Honey Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
+dix_barbecue_brewery-honey_brown,0,0,244629372929,"{""name"":""Honey Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dix_barbecue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+siletz_roadhouse_brewery,0,0,244998209537,"{""name"":""Siletz Roadhouse & Brewery"",""city"":""Siletz"",""state"":""Oregon"",""code"":""97380"",""country"":""United States"",""phone"":""1-541-444-2335"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""243 North Gaither Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.722,""lon"":-123.918}}",1,42,1
+cricket_hill-east_coast_lager,0,0,244480671744,"{""name"":""East Coast lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-07-22 20:00:20"",""description"":""The East Coast Lager is an easy drinking “golden” lager with a wonderful balance of crisp malt flavors and flowery hop finish. Built specifically with very low bitter aftertaste, the aroma is as clean as the taste.A difficult beer to brew because of the gentleness… this beer is magnificent!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+hoppin_frog_brewery,0,0,244740194304,"{""name"":""Hoppin Frog Brewery"",""city"":""Akron"",""state"":""Ohio"",""code"":""44306"",""country"":""United States"",""phone"":""(330) 352-4578"",""website"":""http://www.hoppinfrog.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1680-F East Waterloo Rd.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.0247,""lon"":-81.4676}}",1,15,1
+goose_island_beer_company_clybourn-night_stalker,0,0,244612333569,"{""name"":""Night Stalker"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,13,1
+new_belgium_brewing-skinny_dip,0,0,244873560065,"{""name"":""Skinny Dip"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ever tried a Skinny Dip? You wouldn't be alone. Featured by both Men's Journal and the Today Show as a favorite summer brew, this full-bodied, highly drinkable beer makes a splash every summer in our Seasonal line-up. Cascade hops frolic with a hint of lime leaf, giving the beer complexity that's surprisingly refreshing."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,41,1
+surly_brewing-bender_beer,0,0,245118140417,"{""name"":""Bender Beer"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""surly_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is an amalgamation of styles; brown/porter/apa. Five distinct malts, including two from Belgium, give this beer added complexity and depth. We also add oatmeal to this beer to give it a smooth texture not usually associated with this type of beer. We add large amounts of American finishing hops to give Bender a citrus hop aroma because... we like hops. This is a session beer weighing in around 5% alcohol and 25 IBUs. Grab one today, we think you will want another!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,47,1
+brouwerij_t_ij-zatte_amsterdamse_tripel,0,0,244487094273,"{""name"":""Zatte Amsterdamse Tripel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_t_ij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+gasthof_brauerei_zum_frohsinn-maisbier,0,0,244623015936,"{""name"":""Maisbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+kelmer_s_brewhouse-klout,0,0,244737703936,"{""name"":""Klout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
+flensburger_brauerei,0,0,244620525568,"{""name"":""Flensburger Brauerei"",""city"":""Flensburg"",""state"":""Schleswig-Holstein"",""code"":""24937"",""country"":""Germany"",""phone"":"""",""website"":""http://www.flens.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Munketoft 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":54.779,""lon"":9.4355}}",1,33,1
+schofferhofer-schofferhofer_hefeweizen_hell,0,0,244998864897,"{""name"":""Schöfferhofer Hefeweizen Hell"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schofferhofer"",""updated"":""2010-07-22 20:00:20"",""description"":""classic Hefeweizen, cloud because it is traditionally unfiltered, was tested and rated by the German consumer magazin \""Ökotest\"" as \""very good\"" for pureness and residues of pesticides and so on"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,44,1
+birrificia_le_baladin-wayan,0,0,244364083201,"{""name"":""Wayan"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birrificia_le_baladin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+southern_tier_brewing_co-raspberry_wheat,0,0,245116502016,"{""name"":""Raspberry Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A golden wheat beer brewed with the finest North American malted barley and wheat. It's then lightly hopped with the choicest European varieties. The smooth, crisp golden wheat beer is then finished with a hint of rasberry. Enjoy this beer any time of the year."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,43,1
+barley_creek_brewing-cliffhanger_light_ale,0,0,244363624448,"{""name"":""Cliffhanger Light Ale"",""abv"":3.22,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""barley_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest brew, this ale has a lower alcohol content than other Barley Creek brews. The Munich malt and Saaz and Hallertau hops give it a distinct German profile. Refreshing with a clean, dry finish."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,18,1
+icobes_b_v_b_a-biere_du_boucanier,0,0,244745699329,"{""name"":""Bière du Boucanier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""icobes_b_v_b_a"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+orkney_brewery,0,0,244859469824,"{""name"":""Orkney Brewery"",""city"":""Orkney"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01856)-841802"",""website"":""http://www.orkneybrewery.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Quoyloo""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":59.0697,""lon"":-3.3135}}",1,5,1
+sand_creek_brewing_company,0,0,244981694464,"{""name"":""Sand Creek Brewing Company"",""city"":""Black River Falls"",""state"":""Wisconsin"",""code"":""54615"",""country"":""United States"",""phone"":""(715) 284-7553"",""website"":""http://www.sandcreekbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""320 Pierce St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2929,""lon"":-90.8511}}",1,3,1
+fitger_s_brewhouse_brewery_and_grill-1100_wheat_wine,0,0,244629962752,"{""name"":""1100 Wheat Wine"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+gottberg_brew_pub-rumble_seat_stout_discontinued,0,0,244628979712,"{""name"":""Rumble Seat Stout (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
+front_street_brewery-old_davenport_gold,0,0,244610826240,"{""name"":""Old Davenport Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+brasserie_du_bocq-blanche_des_moines,0,0,244377059329,"{""name"":""Blanche des Moines"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_du_bocq"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+coronado_brewing_company-nutter_brown,0,0,244478771202,"{""name"":""Nutter Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Medium-bodied and light brown in color. This mild ale has a sweet maltiness and roasted character. Unlike English brown ales, this brown ale has a noticeably hoppy flavor from its Willamette hops. Don’t be afraid to have a Nutter!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,12,1
+big_river_brewing-pale_ale,0,0,244379746305,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
+rogue_ales-shakespeare_stout,0,0,244980908032,"{""name"":""Shakespeare Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Stout was first introduced by Guinness in Ireland as \""Extra Stout\"" (a stronger version of their Porter). Later, the stronger Imperial and Double Stouts emerged. Sweet, Milk, and Oatmeal Stouts are English adaptations with less alcohol and less bitter then the dry Irish Stouts. Victorian England recognized Oatmeal Stouts nutritional value and it is traditionally the drink of choice for nursing mothers and athletes. It is a beer equally at home with oysters as it is with a homemade pizza and freshly tossed green salad (or as a float over ice cream).\r\n\r\nRogues Shakespeare Stout received a 99, the highest score of the 309 beers in 44 categories at the 1994 World Beer Championships. The June/July 1998 issue of Mens Journal included Rogue Ales Shakespeare Stout as one of \""The 100 Best Things to Eat in America.\""Based on Stuart Kallens book, \""The 50 Best Beers in the World\"", Shakespeare Stout was ranked the third best beer in the world and best American Beer--which makes it the Worlds Best Stout!\r\n\r\nRogues Shakespeare Stout is ebony in color, a rich creamy head and a mellow chocolate aftertaste. It is made from Northwest Harrington, Crystal, and Chocolate malts, roasted barley and rolled oats, along with Cascade hop. Shakespeare Stout is available in the classic 22-ounce bottle, a commemorative 3-litre bottle with ceramic swing-top, and on draft."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,1,1
+de_leyerth_brouwerijen-urthel_samaranth_quadrium_ale,0,0,244630814720,"{""name"":""Urthel Samaranth Quadrium Ale"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+great_divide_brewing-espresso_oak_aged_yeti,0,0,244738359296,"{""name"":""Espresso Oak Aged Yeti"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
+steamworks-ipanema_summer_white,0,0,245117812736,"{""name"":""Ipanema Summer White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Tall and tan and young and lovely\""\r\n\r\nOriginating in Belgium, this is a truly bilingual brew. Known as Biere Blanche in French, Witbier in Flemish and White beer in English. Unmalted wheat and oats are used in the grist to lend this brew its smooth, light body. Coriander seed and Curacao orange peel are added to the kettle to infuse this beer with a subtle, perfumey spiciness. The result is a light wheat beer with a fruity, tart finish - the essence of summer."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,46,1
+sonoran_brewing_company,0,0,245115191296,"{""name"":""Sonoran Brewing Company"",""city"":""Scottsdale"",""state"":""Arizona"",""code"":""85255"",""country"":""United States"",""phone"":""602-484-7775"",""website"":""http://www.sonoranbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10426 East Jomax Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.7268,""lon"":-111.853}}",1,40,1
+brasserie_artisanale_de_rulles-biere_de_gamme,0,0,244371357698,"{""name"":""Bière de Gamme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_artisanale_de_rulles"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+brauerei_schwelm,0,0,244488404992,"{""name"":""Brauerei Schwelm"",""city"":""Schwelm"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2336-/-4908-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Neumarkt 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2847,""lon"":7.2936}}",1,35,1
+central_city_brewing_company-boomers_red_ale,0,0,244489519105,"{""name"":""Boomers Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+lakefront_brewery-rendezvous_biere_de_garde,0,0,244737245187,"{""name"":""Rendezvous Bière de Garde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+independence_brew_pub-red_ale,0,0,244736720896,"{""name"":""Red Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+far_west_ireland_brewing,0,0,244612661248,"{""name"":""Far West Ireland Brewing"",""city"":""Redmond"",""state"":""Washington"",""code"":""98052"",""country"":""United States"",""phone"":""1-425-869-5933"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6701,""lon"":-122.118}}",1,14,1
+dockside_brewing-old_bridge_dark_lager,0,0,244631535617,"{""name"":""Old Bridge Dark Lager"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dockside_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+otto_s_pub_and_brewery-tripel_ale,0,0,244858224640,"{""name"":""Tripel Ale"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An Abbey-style Tripel ale. This light colored traditional tripel is made with Pils malt and candisugar and fermented with a traditional yeast strain. Esterey and strong best describe this unique specialty beer."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,2,1
+otter_creek_brewing_wolaver_s_organic_ales-pale_ale,0,0,244876771328,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Pale Ale is a golden amber brew, made with Cascade hops from the Yakima Valley. Adding Cascades during conditioning captures the rich aroma of the hop, and completes the clean, well-balanced flavor of our American pale ale. Crisp, refreshing, exotically aromatic, and available all year."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+philadelphia_brewing_co,0,0,244980514817,"{""name"":""Philadelphia Brewing Co"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19125"",""country"":""United States"",""phone"":""215-427-BREW (2739)"",""website"":""http://philadelphiabrewing.com/index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is, Philadelphia's one and only Philadelphia Brewing Company; brewers of fine hand crafted Ales from our historic brewery building in the Kensington neighborhood of Philadelphia. Like the history of brewing in Philadelphia the name Philadelphia Brewing Company has gone through many revivals. The same can be said of our brewery building - the former Wiesbrod and Hess Brewing Company complex in Kensington. At Philadelphia Brewing Co we take pride in our brews, our people, and our community. One person could never do everything that it takes to get beer into your glass. And it may sound obvious, but we won't brew anything that we wouldn't drink ourselves - you won't catch us drinking anything called Ultra unless it's a literal name meaning more flavor, more hops, more malt, more carbs. That's because we are Brewers; proud brewers of fine hand crafted Ales from our historic brewery building in the Kensington neighborhood of Philadelphia. Now that's out of the way; we will be starting out with four mainstay brews which will be available in draught and in bottles. Once we're stocked up on the core brews we'll start pumping out regular seasonal or specialty brews. The specialty series will be driven by our individual brewers and the desires and whims of the rest of our family. The beer is flowing at Philadelphia Brewing co! You can find our four brands on tap at finer establishments all around town!"",""address"":[""2423 Amber St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9827,""lon"":-75.1275}}",1,0,1
+high_desert_brewing_co,0,0,244756840450,"{""name"":""High Desert Brewing Co."",""city"":""Las Cruces"",""state"":""New Mexico"",""code"":""88005"",""country"":""United States"",""phone"":""(575) 525-6752"",""website"":""http://www.highdesertbrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""After years of recipe development, remodeling, and parking lot paving, the High Desert Brewing Co. opened it's doors in July of 1997 and has quickly become one of New Mexico's premier brewpubs. Our selection of hand crafted lagers and ales are produced on premises using the finest grains and hops. We brew small batches of about 100 gallons, ensuring that each beer is served at the peak of freshness. Our brews are available by the glass, pint, or pitcher and to-go in 1/2 gallon growlers and 5 gallon kegs. We make every attempt to keep all of our beers on tap at all times but once in a while one or two may not be available for a few days. These times are the perfect opportunity to stretch your taste and try something other than your favorite. Please let Bob or Donna, or any of the High Desert Brewing Co. staff know how you think we are doing."",""address"":[""1201 W. Hadley Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.3096,""lon"":-106.793}}",1,56,1
+brasserie_de_l_abbaye_des_rocs,0,0,244377518081,"{""name"":""Brasserie De L'Abbaye Des Rocs"",""city"":""Montignies-sur-Roc"",""state"":""Hainaut"",""code"":"""",""country"":""Belgium"",""phone"":""32-065-75-59-99"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chausse Brunehault 37""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.3705,""lon"":3.7263}}",1,50,1
+eel_river_brewing-climax_california_classic,0,0,244613513217,"{""name"":""Climax California Classic"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+flying_dog_brewery-horn_dog,0,0,244623474688,"{""name"":""Horn Dog"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""By far the biggest dog in the yard... Horn Dog Barley Wine is a dark and malty English-style Barely Wine that is aged for a minimum of three months before being packaged. Like a fine wine, this beer will only get better with age when stored at optimum conditions."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,39,1
+marin_brewing-hoppy_holidaze,0,0,244858814465,"{""name"":""Hoppy Holidaze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+o_gara_s_bar_grill,0,0,244859863041,"{""name"":""O'Gara's Bar & Grill"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":""55104"",""country"":""United States"",""phone"":""1-651-644-3333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""146 Snelling Avenue North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.9458,""lon"":-93.167}}",1,6,1
+dogfish_head_craft_brewery-immort_ale,0,0,244629438464,"{""name"":""Immort Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+southampton_publick_house,0,0,245116108800,"{""name"":""Southampton Publick House"",""city"":""Southampton"",""state"":""New York"",""code"":""11968"",""country"":""United States"",""phone"":""1-631-283-2800"",""website"":""http://southamptonbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The word about the quality of our beer began to get around the metro New York region as soon as we turned on the spigots and started to serve it in our Southampton restaurant. Almost from day one, leading restaurants, pubs and taverns have requested our crafted brews for their own patrons. Our Brewmaster, Phil Markowski has personally directed the flow of our ales and lagers into the finest outlets. Our Mission is to offer a wide variety of specialty ales and lagers. Our small batch brews range from classic farmhouse styles to traditional sessions beers to be enjoyed year-round."",""address"":[""40 Bowden Square""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8903,""lon"":-72.3927}}",1,42,1
+dogfish_head_craft_brewery-beewolf_braggot,0,0,244613185536,"{""name"":""Beewolf Braggot"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a hybrid of ale and mead made with 51% malted barley (Pale and Munich malted barley) and 49% Orange blossom honey, it is lightly hopped, spiced with Hibiscus flowers and fermented with Australian ale yeast.\r\n\r\nOur Milton, DE microbrewery brewer Jon Talkington came up with this beer because of his love of different kinds of meads and his interest in Nordic lore and mythology. The name Beewolf is the name Beowulf translated, meaning bear.\r\n \r\nColor- light amber.\r\nAroma- Pear like fruitiness, with a clean malt and floral honey nose.\r\nFlavor- sweet malt and honey with a subtle fruitiness and a hint of caramel.\r\nABV 7.0%\r\nIBU's 25\r\n\r\nDue to the limited availability of Beewolf Braggot, we are sorry that we are not able to offer growlers to go.""}",1,16,1
+hp_bulmer,0,0,244740194305,"{""name"":""HP Bulmer"",""city"":""Hereford"",""state"":""Hereford and Worcester"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-01432-352000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Cider Mills""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.2626,""lon"":-71.8023}}",1,15,1
+great_dane_pub_and_brewing_1-landmark_gold,0,0,244739211264,"{""name"":""Landmark Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+new_glarus_brewing_company-home_town_blonde,0,0,244873560066,"{""name"":""Home Town Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+swan_brewery,0,0,245118140418,"{""name"":""Swan Brewery"",""city"":""Canning Vale"",""state"":""Western Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(08)-9350-0222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""25 Baile Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-32.0638,""lon"":115.912}}",1,47,1
+brown_street_brewery-munich_helle,0,0,244487094274,"{""name"":""Munich Helle"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brown_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+gatz_brauhaus-helles_naturtrub,0,0,244623015937,"{""name"":""Helles Naturtrub"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gatz_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+kessler_brewing,0,0,244737703937,"{""name"":""Kessler Brewing"",""city"":""Helena"",""state"":""Montana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.5958,""lon"":-112.027}}",1,9,1
+flossmoor_station_brewery-station_master_wheat_ale,0,0,244620525569,"{""name"":""Station Master Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
+scuttlebutt_brewing-amber_ale,0,0,244998864898,"{""name"":""Amber Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,44,1
+boston_beer_company,0,0,244364148736,"{""name"":""Boston Beer Company"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2130"",""country"":""United States"",""phone"":""1-800-372-1131"",""website"":""http://www.samueladams.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Jim Koch founded The Boston Beer Company in 1984 because he believed that Americans deserved better beer. Today, we're a team of about 350 people, and we all share a common passion for bringing great Samuel Adams beers to beer lovers everywhere. We've worked hard for the many successes we've enjoyed over the years. The Boston Beer Company has been cited as one of the best companies to work for by Boston Magazine, one of the Best Entry-Level Jobs by The Princeton Review, and our beers have won more awards than any beer in history. Jim has been named an Entrepreneur of the Year by Inc. Magazine. Our brewers keep amazing us with innovative new brews, most recently Samuel Adams Utopias and Samuel Adams Chocolate Bock."",""address"":[""30 Germania Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3144,""lon"":-71.1034}}",1,19,1
+southern_tier_brewing_co,0,0,245116502017,"{""name"":""Southern Tier Brewing Co"",""city"":""Lakewood"",""state"":""New York"",""code"":""14750"",""country"":""United States"",""phone"":""716-763-5479"",""website"":""http://www.southerntierbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Southern Tier Brewing Company was founded in 2004 by Phineas DeMink and Allen Yahn with the vision of bringing small batch brewing back to a region rich in brewing tradition. In 2003 Skip and Phin purchased the defunct Old Saddle Back Brewing Co. in Pittsfield, Massachusetts. All the equipment was removed and brought back to Lakewood, New York and set up at its new 10,000 square foot home, The Southern Tier Brewing Company. The Brewery began operations in February 2004 distributing regionally. By 2005 sales covered the majority of the New York State and the eastern half of Pennsylvania. In the beginning their two Flagship brands were a Pilsner and Mild Ale. Oh yeah they also brewed IPA! As it turned out the flagships were a flop and the IPA was a huge success. They next launched a line of seasonal beers which have gained great success. Since the beginning, Southern Tier has experienced steady growth, currently distributing to over 25% of the United States. Multiple expansions have been made to keep up with demand and the brewery continues to be innovative by producing new products. Keep a look out for new products coming to stores near you."",""address"":[""2051A Stoneman Circle""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":42.1008,""lon"":-79.3357}}",1,43,1
+barley_s_2_smokehouse_and_brewpub,0,0,244363624449,"{""name"":""Barley's #2 Smokehouse and Brewpub"",""city"":""Columbus"",""state"":""Ohio"",""code"":""43215"",""country"":""United States"",""phone"":""1-614-485-0227"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1130 Dublin Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9745,""lon"":-83.049}}",1,18,1
+inveralmond_brewery-blackfriar,0,0,244745699330,"{""name"":""Blackfriar"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""inveralmond_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,28,1
+otto_s_pub_and_brewery-kclinger_s_brown_ale,0,0,244859469825,"{""name"":""KClinger's Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A brown ale brewed by Otto's for KClinger's Tavern in Hanover Pennsylvania."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,5,1
+santa_cruz_brewing,0,0,244981694465,"{""name"":""Santa Cruz Brewing"",""city"":""Santa Cruz"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.9741,""lon"":-122.031}}",1,3,1
+flying_dog_brewery-gonzo_imperial_porter,0,0,244629962753,"{""name"":""Gonzo Imperial Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Gonzo Imperial Porter is deep and complex. This turbo charged version of the Road Dog Porter is mysteriously dark with a rich malty body, intense roasted flavors, and a surprisingly unique hop kick. With Gonzo weighing in at 7.8% ABV, it will bite you in the ass if you don't show it the proper respect."",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
+hale_s_ales_3-amber_ale,0,0,244755267584,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,52,1
+golden_valley_brewery_and_pub-geist_bock,0,0,244610826241,"{""name"":""Geist Bock"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_valley_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""This is one of our rare lagers brewed in the style of the German Heiliges Geist Bock, or Holy Ghost Bock. The name refers to the lighter nature of the beer as opposed to the darker and heavier Doppel Bock and Mai Bock also brewed during the spring in Germany. There is a rich malt flavor, a firm German style lager head, and a clean lagered finish to this beer. Available on draft or in 12 oz. bottles."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,10,1
+brasserie_duyck,0,0,244494565376,"{""name"":""Brasserie Duyck"",""city"":""Jenlain"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.27.49.70.03"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""113, rte Nationale""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.3089,""lon"":3.6285}}",1,49,1
+courage_brewery-john_courage_amber,0,0,244478836736,"{""name"":""John Courage Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courage_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+boulder_beer_company-obovoid_empirical_stout,0,0,244379746306,"{""name"":""Obovoid Empirical Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,57,1
+ronald_mengerink,0,0,244980908033,"{""name"":""ronald mengerink"",""city"":""baarle-hertog"",""state"":"""",""code"":""2387"",""country"":""Belgium"",""phone"":""0032 14699800"",""website"":""http://www.dedochtervandekorenaar.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""pastoor de katerstraat 24""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4421,""lon"":4.9232}}",1,1,1
+denver_chophouse_and_brewery-nut_brown_ale,0,0,244630880256,"{""name"":""Nut Brown Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
+great_divide_brewing,0,0,244738359297,"{""name"":""Great Divide Brewing"",""city"":""Denver"",""state"":""Colorado"",""code"":""80205"",""country"":""United States"",""phone"":""1-303-296-9460"",""website"":""http://www.greatdivide.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Since 1994, Great Divide has brewed the most balanced yet assertive and flavorful beers possible. This commitment has not gone unrewarded Great Divide has racked up 12 Great American Beer Festival Medals and four World Beer Cup awards, and was recently honored as the 23rd Best Brewer in the World in Ratebeer.com's World's Top 100 Brewers, (2007). See for yourself what the excitement is about and then introduce your friends to the new frontier of beer. --http://www.greatdivide.com"",""address"":[""2201 Arapahoe Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7539,""lon"":-104.989}}",1,11,1
+stillwater_artisanal_ales-stateside_saison,0,0,245117812737,"{""name"":""Stateside Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stillwater_artisanal_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An 'American Farmhouse Ale.' It's a Belgian-inspired brew that uses a combination of European malts, hops from New New Zealand and the United States.. and a classic farmhouse yeast to achieve a fruity, yet spicy, melange of flavors and aroma."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,46,1
+st_john_brewers-tropical_mango,0,0,245115191297,"{""name"":""Tropical Mango"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_john_brewers"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship beer that embodies the uniqueness and character of the Caribbean. Subtle malt notes start this beer off and it finishes with just the right amount of hops for balance.\r\n\r\nTropical Mango Pale Ale is a light pale ale with a mango fruit essence that is one of a kind taste. No matter where you are enjoying one it will bring you to a Caribbean state of mind."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+brasserie_des_vosges,0,0,244371423232,"{""name"":""Brasserie des Vosges"",""city"":""Dommartin les Remiremont"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.29.22.11.36"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""680 rue de la Brasserie""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":48.0028,""lon"":6.6583}}",1,34,1
+brewery_ommegang-obamagang_inauguration_ale,0,0,244488404993,"{""name"":""Obamagang Inauguration Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_ommegang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+cigar_city_brewing,0,0,244489519106,"{""name"":""Cigar City Brewing"",""city"":""Tampa"",""state"":""Florida"",""code"":""33607"",""country"":""United States"",""phone"":""813-348-6363 ext 206"",""website"":""http://cigarcitybeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3924 West Spruce Street Suite A""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":27.9587,""lon"":-82.5093}}",1,37,1
+left_coast_brewing,0,0,244737310720,"{""name"":""Left Coast Brewing"",""city"":""San Clemente"",""state"":""California"",""code"":""92673"",""country"":""United States"",""phone"":""1-949-361-9972"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1245 Puerta del Sol""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.4577,""lon"":-117.589}}",1,8,1
+iron_city_brewing_co,0,0,244736720897,"{""name"":""Iron City Brewing Co."",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15201"",""country"":""United States"",""phone"":""412-682-7400"",""website"":""http://www.ironcitybrewingcompany.com/Default.aspx"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Iron City Brewing Company is Pittsburgh born and brewed. We've been a Pittsburgh tradition since 1861. That was the year a German immigrant by the name of Edward Frauenheim founded Iron City Brewery and began a legacy of producing quality beers and lagers in the city of Pittsburgh. Today, the new Iron City Brewing Company is poised to carry on a tradition that is synonymous with pride, innovation and the Western Pennsylvania region. The new Iron City Brewing Company is committed to its employees, its customers, and the community. We have an experienced team with deep resources that is dedicated to making Iron City Brewing Company a successful brewery that the region can be proud to call its own."",""address"":[""3340 Liberty Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.461,""lon"":-79.9653}}",1,7,1
+fifty_fifty_brewing_co-base_camp_golden_ale,0,0,244612726784,"{""name"":""Base Camp Golden Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The lightest of FiftyFifty's ales, Base Camp is a thirst quenching delight. Pale straw to light gold in color, this beer has a mild malt flavor combined with light bitterness and hop flavor. This beer finishes dry and is very light and refreshing on the palate. Base Camp is a \""session beer\"", meaning you can easily toss back a few in one sitting. So go ahead, pull up a chair and camp out for awhile."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,14,1
+dogfish_head_craft_brewery-lawnmower,0,0,244631601152,"{""name"":""Lawnmower"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Lawnmower is our intro for those who need a little help jumping feet first into the crazy world that is Dogfish Head beer.\r\n\r\nIt's a starter beer, but it's not dumbed down. Lawnmower is made with quality ingredients and is a great thirst quencher - perfect to enjoy after a day in the sun mowing the lawn (or anything else that gets you hot and bothered)!\r\n\r\nDraft-Only, Limited Distribution"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+oyster_bar_bistro_and_brewery-belgian_style_wit,0,0,244858224641,"{""name"":""Belgian Style Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+otto_s_pub_and_brewery-mount_hill_pale_ale,0,0,244876771329,"{""name"":""Mount Hill Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An English pale ale brewed by Otto's for the Mount Hill Tavern in Harrisburg Pennsylvania."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,48,1
+pokka_beer_works,0,0,244980514818,"{""name"":""Pokka Beer Works"",""city"":""Nagoya"",""state"":""Chubu"",""code"":"""",""country"":""Japan"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.1814,""lon"":136.906}}",1,0,1
+high_falls_brewing-honey_brown,0,0,244756840451,"{""name"":""Honey Brown"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Brewer's Website:\r\nThe Dundee family began with Honey Brown Lager in the early 1990's during the height of the craft brewing resurgence. Introduced by then brewery head Jack \""JW\"" Wehle, Honey Brown was a full bodied lager brewed with natural honey provided by Wixon's Farm in the Finger Lakes town of Dundee, New York. The brand was an overwhelming success that defied definition as a style and grew to tremendous acclaim, garnering several medals at the World Beer Cup and the Great American Beer Festival."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
+brasserie_thiriez,0,0,244495286272,"{""name"":""Brasserie Thiriez"",""city"":""Esquelbecq"",""state"":"""",""code"":"""",""country"":""France"",""phone"":""33-03.28.62.88.44"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""22 rue Wormhout""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.8851,""lon"":2.4329}}",1,50,1
+element_brewing_company-dark_element,0,0,244613513218,"{""name"":""Dark Element"",""abv"":8.75,""ibu"":65.5,""srm"":22.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""element_brewing_company"",""updated"":""2011-04-18 05:25:23"",""description"":""American Black Ale. Aromas of an American IPA, dark toffee and chocolate flavors without roasted bitterness."",""style"":""Specialty Beer"",""category"":""Other Style""}",1,17,1
+frederic_robinson_ltd-northern_glory_premium_ale,0,0,244623474689,"{""name"":""Northern Glory Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frederic_robinson_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+miller_brewing-miller_lite,0,0,244858814466,"{""name"":""Miller Lite"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our flagship brand, Miller Lite, is the great tasting, less filling beer that defined the American light beer category in 1975. We deliver a clear, simple message to consumers: \""Miller Lite is the better beer choice.\"" What's our proof? \r\n1) Miller Lite is the original light beer. \r\n2) Miller Lite has real beer taste because it's never watered down. \r\n3) Miller Lite is the only beer to win four gold awards in the World Beer Cup for best American-style light lager. (2006, 2002, 1998, 1996) \r\n4) Miller Lite has half the carbs of Bud Light and fewer calories*. \""Miller Lite. Good Call.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
+orkney_brewery-red_macgregor,0,0,244859863042,"{""name"":""Red MacGregor"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Macgregor is a unique beer: delicate and sophisticated yet the robust cask conditioned version of this beer was the first Scottish beer to win the BIIA World Cask Beer Gold Medal.\r\n\r\nOn the nose, this ruby-red beer is delicate, floral and fruity, with notes of violets, cherries, toffee and caramel. \r\n\r\nOn the palate, the fruits combine with a juicy malt character and hints of toasted malt, with a biscuit malt and spicy hop finish."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,6,1
+dragonmead_microbrewery-nagelweiss,0,0,244629504000,"{""name"":""Nagelweiss"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This German style wheat beer contains about 50% malted wheat and is balanced with Hallertau hops. This beer finishes low in gravity so the final taste is light on the palette and extremely drinkable. This is sure to be a favorite with first time and long time wheat beer drinkers."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,54,1
+southern_tier_brewing_co-hoppe_imperial_extra_pale_ale,0,0,245116174336,"{""name"":""Hoppe Imperial Extra Pale Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The simplicity of Hoppe tests the skill and ability of the brewer to create something truly majestic. We craft this much like a sculptor who uses only a hammer and chisel to shape stone into a masterpiece. Hoppe is spawned of these few essentials: barley, wheat, hops, yeast and water. This limited palette is an exercise in minimalism, with refined elements which are deliberately selected. This simple combination creates a golden shimmering brew infused with delicate aromas. The artful nature of this beer is exposed with the first taste. As the malt and hops create a composition of flavors, an elegant finish leaves an impression that your tastes will not soon forget."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,42,1
+f_x_matt_brewing-saranac_winter_wassail,0,0,244613185537,"{""name"":""Saranac Winter Wassail"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""At the heart of Saranac Winter Wassail is a classic English ale brewed with English Malt & Fuggles Hops. Look for hits of cinnamon, nutmeg, orange and allspice. Cheers to the holiday season!"",""style"":""Winter Warmer"",""category"":""Other Style""}",1,16,1
+humboldt_brewing-hemp_ale,0,0,244740259840,"{""name"":""Hemp Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+great_divide_brewing-hades,0,0,244739276800,"{""name"":""Hades"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hades is a Belgian-style strong golden ale brewed with a rare Belgian yeast strain that gives the beer a distinctive spicy flavor and aroma. Noticeable hops and medium malt character make it an extremely well-balanced, crisp ale."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,13,1
+new_glarus_brewing_company-wisconsin_belgian_red_brand,0,0,244873560067,"{""name"":""Wisconsin Belgian Red Brand"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+thomas_creek_brewery,0,0,245118205952,"{""name"":""Thomas Creek Brewery"",""city"":""Greenville"",""state"":""South Carolina"",""code"":""29605"",""country"":""United States"",""phone"":""1-864-605-1166"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2054 Piedmont Highway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.7968,""lon"":-82.4245}}",1,47,1
+c_h_evans_brewing_company,0,0,244487159808,"{""name"":""C.H. Evans Brewing Company"",""city"":""Albany"",""state"":""New York"",""code"":""12207"",""country"":""United States"",""phone"":""(518) 447-9000"",""website"":""http://www.evansale.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""19 Quackenbush Square""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6542,""lon"":-73.7481}}",1,31,1
+gold_crown_brewing,0,0,244623081472,"{""name"":""Gold Crown Brewing"",""city"":""Waterloo"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-886-2071"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""71 King Street North""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.4676,""lon"":-80.5231}}",1,38,1
+krogh_s_restaurant_and_brewpub-brogen_meadow_pale_ale,0,0,244737703938,"{""name"":""Brogen Meadow Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+flying_dog_brewery-raging_bitch_belgian_ipa,0,0,244620525570,"{""name"":""Raging Bitch Belgian IPA"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""“Two inflammatory words... one wild drink. Nectar imprisoned in a bottle. Let it out. It is cruel to keep a wild animal locked up. Uncap it. Release it....stand back!! Wallow in its golden glow in a glass beneath a white foaming head. Remember, enjoying a RAGING BITCH, unleashed, untamed, unbridled- and in heat- is pure GONZO!! It has taken 20 years to get from there to here. Enjoy!”"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,33,1
+shepherd_neame-master_brew_bitter,0,0,244998930432,"{""name"":""Master Brew Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shepherd_neame"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+boulder_beer_company-planet_porter_boulder_porter,0,0,244364214272,"{""name"":""Planet Porter / Boulder Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulder_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
+spanish_peaks_brewing-winter_cheer,0,0,245116567552,"{""name"":""Winter Cheer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
+barley_s_brewing_1,0,0,244363624450,"{""name"":""Barley's Brewing #1"",""city"":""Columbus"",""state"":""Ohio"",""code"":""43215"",""country"":""United States"",""phone"":""1-614-228-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""467 North High Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9719,""lon"":-83.0027}}",1,18,1
+iron_hill_brewery_newark,0,0,244745764864,"{""name"":""Iron Hill Brewery - Newark"",""city"":""Newark"",""state"":""Delaware"",""code"":""19711"",""country"":""United States"",""phone"":""1-302-266-9000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""147 East Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.6834,""lon"":-75.7467}}",1,28,1
+pacific_rim_brewing-castaway_barley_wine_winter_ale,0,0,244982153216,"{""name"":""Castaway Barley Wine Winter Ale"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+schloss_eggenberg,0,0,244981760000,"{""name"":""Schloss Eggenberg"",""city"":""Vorchdorf"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-76-14/63-45-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Eggenberg 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.9904,""lon"":13.9238}}",1,3,1
+folx_les_caves,0,0,244629962754,"{""name"":""Folx-les-Caves"",""city"":""Jauche"",""state"":""Brabant Wallon"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""B-1350 Jauche""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.6818,""lon"":4.9547}}",1,55,1
+hannen_brauerei-hannen_alt,0,0,244755333120,"{""name"":""Hannen Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hannen_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""Classic German Alt"",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,52,1
+gordon_biersch_brewing-schwarzbier,0,0,244610891776,"{""name"":""Schwarzbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,10,1
+brasserie_la_binchoise-blonde_tradition,0,0,244494565377,"{""name"":""Blonde Tradition"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_binchoise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+de_leyerth_brouwerijen-urthel_vlaemse_bock,0,0,244611350528,"{""name"":""Urthel Vlaemse Bock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_leyerth_brouwerijen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
+boulevard_brewing_company-double_wide_i_p_a,0,0,244379746307,"{""name"":""Double Wide I.P.A."",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""boulevard_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Double-Wide I.P.A. uses Zeus and Magnum hops for both bittering and aroma, with Ahtanum hops added solely for aroma. Two additional dry hopping regimens employ Ahtanum, Centennial, and Chinook varietals. The resulting beer – not surprisingly – has a hop forward aroma, redolent of peach and apricot. The assertive flavor bursts forth with citrus notes of blood orange and lemon, a caramel malt backbone serves to balance the intensity of the hops. There is little restraint in the flavor of this beer; it is certainly not for the pedestrian palate."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
+sacramento_brewing_company-abbey_extra,0,0,244980908034,"{""name"":""Abbey Extra"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,1,1
+dragonmead_microbrewery-willy_s_oompa_loompa,0,0,244630945792,"{""name"":""Willy's Oompa-Loompa"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dragonmead_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Little more can be said about this beer than these two words: Chocolate and Stout. This brew fills the palate with slightly sweet, super chocolate, malty flavor.""}",1,58,1
+gulpener_bierbrouwerij-mestreechs_aajt,0,0,244738424832,"{""name"":""Mestreechs Aajt"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gulpener_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+terrapin_beer_company-rye_squared,0,0,245117812738,"{""name"":""Rye Squared"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Double the malt, double the hops, and double the flavor of the original Rye Pale Ale recipe. (Hence the name Rye Squared.) With its mammoth hop aroma, bitterness and flavor, this beer is not for the faint at heart. The Rye Squared clocks in at a hefty 9.5% ABV so double your pleasure and double your fun because Terrapin went a little crazy with this one!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,46,1
+st_peter_s_brewery,0,0,245115256832,"{""name"":""St Peter's Brewery"",""city"":""Bungay"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01986)-782322"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""St Peter's Hall""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.7282,""lon"":-76.5836}}",1,40,1
+brasserie_ellezelloise-hercule_stout,0,0,244488011776,"{""name"":""Hercule Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_ellezelloise"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
+broad_ripple_brewing-lawnmower_pale_ale,0,0,244488470528,"{""name"":""Lawnmower Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""broad_ripple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+columbus_brewing_company-summer_teeth,0,0,244489584640,"{""name"":""Summer Teeth"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""columbus_brewing_company"",""updated"":""2011-03-08 12:22:14"",""description"":""This traditional Bavarian-style kellerbier originated from the small artisanal breweries of Franconia, where it is still a favorite in the local beer gardens. Ours is served unfiltered with a crisp, smooth finish that taste like sunshine. "",""style"":""Kellerbier - Ale"",""category"":""German Ale""}",1,37,1
+live_oak_brewing-live_oak_pilz,0,0,244860518400,"{""name"":""Live Oak Pilz"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Crisp, clean, and refreshing, this pilsner is styled after the original Bohemian classic from the town of Pizen, Czech Republic, Pilz is a golden-colored brew that balances a pleasant hoppiness with its smooth malt flavor. It finishes dry with a moderate bitterness that is a hallmark of the style."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,8,1
+jacob_leinenkugel_brewing_company-original,0,0,244736720898,"{""name"":""Original"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
+gottberg_brew_pub-steinworthy_oktoberfest,0,0,244612726785,"{""name"":""Steinworthy Oktoberfest"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,14,1
+egan_brewing-irish_stout,0,0,244631601153,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
+oyster_bar_bistro_and_brewery,0,0,244858224642,"{""name"":""Oyster Bar Bistro and Brewery"",""city"":""Fort Wayne"",""state"":""Indiana"",""code"":""46825"",""country"":""United States"",""phone"":""1-260-490-6755"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.1475,""lon"":-85.1168}}",1,2,1
+paulaner-original_munich_premium_lager,0,0,245000306688,"{""name"":""Original Munich Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+pumphouse_brewery_restaurant-four_alarm_alt,0,0,244980514819,"{""name"":""Four Alarm Alt"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pumphouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,0,1
+hirschbru_privatbrauerei_hss-doppel_hirsch_bavarian_doppelbock,0,0,244756905984,"{""name"":""Doppel-Hirsch Bavarian-Doppelbock"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hirschbru_privatbrauerei_hss"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,56,1
+brauerei_fssla-weizla_hell,0,0,244495351808,"{""name"":""Weizla Hell"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_fssla"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
+ellicott_mills_brewing-alpenhof_baltic_porter,0,0,244613578752,"{""name"":""Alpenhof Baltic Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ellicott_mills_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
+fuller_smith_turner_pbc-refreshing_summer_ale,0,0,244623474690,"{""name"":""Refreshing Summer Ale"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+minocqua_brewing_company-nut_brown_ale,0,0,244858880000,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Perhaps the most ancient style of beer, our brown ale is robust with a hint of nut flavor. With definable malt characteristics, this dark ale is sure to please any beer enthusiast’s palate."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
+ostankinskij_pivovarennij_zavod,0,0,244859928576,"{""name"":""Ostankinskij Pivovarennij Zavod"",""city"":""Moskva"",""state"":""Moskva"",""code"":"""",""country"":""Russia"",""phone"":""7-(095)-979-32-36"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ogorodnyj Pr. 20""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":55.7558,""lon"":37.6176}}",1,6,1
+egan_brewing-the_lonely_guy_india_pale_ale,0,0,244629504001,"{""name"":""The Lonely Guy India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
+sprecher_brewing-sprecher_doppelbock,0,0,245116174337,"{""name"":""Sprecher Doppelbock"",""abv"":7.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark lager was originally brewed as liquid bread to sustain Bavarian monks while fasting. Its sweet complex malt character comes from brewing with many varieties of dark roasted caramel malts and long periods of cold storage (6 months)."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,42,1
+faultline_brewing_1-pale_ale,0,0,244613251072,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
+humboldt_brewing-red_nectar,0,0,244740259841,"{""name"":""Red Nectar"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
+great_waters_brewing_company-honey_wheat,0,0,244739276801,"{""name"":""Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+niagara_falls_brewing-kriek,0,0,244873625600,"{""name"":""Kriek"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
+thunderhead_brewery-amber_ale,0,0,245118205953,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
+capital_brewery-capital_brown_ale,0,0,244487159809,"{""name"":""Capital Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
+goose_island_beer_company_clybourn-hex_nut_brown_ale,0,0,244623081473,"{""name"":""Hex Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,38,1
+kulmbacher_brauerei_ag-kapuziner_schwarz_weizen,0,0,244737703939,"{""name"":""Kapuziner Schwarz-Weizen"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+foster_s_australia_ltd-foster_s_premium_ale,0,0,244620591104,"{""name"":""Foster's Premium Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""foster_s_australia_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,33,1
+sherlock_s_home,0,0,244998930433,"{""name"":""Sherlock's Home"",""city"":""Minnetonka"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.9133,""lon"":-93.5033}}",1,44,1
+brasserie_dupont-foret_saison,0,0,244364214273,"{""name"":""Foret Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-classic_pale_ale,0,0,245116567553,"{""name"":""Classic Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,43,1
+beck_s,0,0,244363689984,"{""name"":""Beck's"",""city"":"""",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.becks.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,18,1
+jacob_leinenkugel_brewing_company-leinenkugel_s_honey_weiss,0,0,244745764865,"{""name"":""Leinenkugel's Honey Weiss"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Select Pale and Wheat Malt, Cluster hops and a hint of Wisconsin honey give this unique refresher a clean, crisp, slightly sweet taste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
+pike_pub_and_brewery-kilt_lifter_scotch_ale,0,0,244982218752,"{""name"":""Kilt Lifter Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,5,1
+shaftebury_brewing,0,0,244981760001,"{""name"":""Shaftebury Brewing"",""city"":""Delta"",""state"":""British Columbia"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":49.1487,""lon"":-122.912}}",1,3,1
+front_street_brewery-bucktown_stout,0,0,244630028288,"{""name"":""Bucktown Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""front_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
+harbor_city_brewing-full_tilt_ipa,0,0,244755398656,"{""name"":""Full Tilt IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harbor_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,52,1
+gray_brewing-classic_american_pale_ale,0,0,244737900544,"{""name"":""Classic American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+brasserie_la_choulette-blonde,0,0,244494630912,"{""name"":""Blonde"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_choulette"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+de_struise_brouwers-witte,0,0,244611416064,"{""name"":""Witte"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_struise_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+brasserie_dupont-moinette_brune,0,0,244498169856,"{""name"":""Moinette Brune"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_dupont"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+santa_cruz_brewing-pacific_porter,0,0,244980908035,"{""name"":""Pacific Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_cruz_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,1,1
+egan_brewing-cow_palace_scotch_ale_1998,0,0,244630945793,"{""name"":""Cow Palace Scotch Ale 1998"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,58,1
+half_acre_beer_company,0,0,244738490368,"{""name"":""Half Acre Beer Company"",""city"":""Chicago"",""state"":""IL"",""code"":""60618"",""country"":""United States"",""phone"":"""",""website"":""http://inyourguts.blogspot.com/"",""type"":""brewery"",""updated"":""2010-11-14 11:17:07"",""description"":"""",""address"":[""4257 North Lincoln Avenue""]}",1,11,1
+terrapin_beer_company-terrapin_monk_s_revenge,0,0,245117878272,"{""name"":""Terrapin Monk's Revenge"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian IPA has a malt bill of a Belgian Tripel and a hop bill of a Double IPA. The yeast I chose for this beer comes from one of the 7 Trappist breweries.\r\n\r\nBelieve it or not, this is the first time in my professional brewing career that I have used dextrose (corn syrup) in a Terrapin brew. True to style no doubt.\r\n\r\n“Monk’s Revenge” (otherwise known as the “Big Nasty”) has all the flavor and aroma of a Double IPA while hidden beneath lies the malt character of a fine Belgian Tripel.\r\n\r\nI hope you enjoy my interpretation of this very fun style."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,46,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-bull_town_brown,0,0,245115256833,"{""name"":""Bull Town Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
+brewery_at_martha_s_vineyard,0,0,244488077312,"{""name"":""Brewery at Martha's Vineyard"",""city"":""Oak Bluffs"",""state"":""Massachusetts"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.4548,""lon"":-70.565}}",1,34,1
+brouwerij_de_ranke,0,0,244488470529,"{""name"":""Brouwerij De Ranke"",""city"":""Wevelgem"",""state"":""West-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-056-41-82-41"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brugsstraat 43""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8105,""lon"":3.1857}}",1,35,1
+copper_eagle_brewing-red_rooster_pale_ale,0,0,244489584641,"{""name"":""Red Rooster Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_eagle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+malt_shovel_brewery,0,0,244860518401,"{""name"":""Malt Shovel Brewery"",""city"":""Camperdown"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":""61-(02)-9519-3579"",""website"":""http://www.maltshovel.com.au/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""99 Pyrmont Bridge Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":-33.8867,""lon"":151.174}}",1,8,1
+kelmer_s_brewhouse,0,0,244736786432,"{""name"":""Kelmer's Brewhouse"",""city"":""Santa Rosa"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.4405,""lon"":-122.714}}",1,7,1
+govnor_s_public_house,0,0,244739604480,"{""name"":""Govnor's Public House"",""city"":""Lake In The Hills"",""state"":""Illinois"",""code"":""60156"",""country"":""United States"",""phone"":""1-847-658-4700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""220 North Randall Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1779,""lon"":-88.3377}}",1,14,1
+elk_creek_cafe_and_aleworks-great_blue_heron_pale_ale,0,0,244631601154,"{""name"":""Great Blue Heron Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_creek_cafe_and_aleworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Much like the local icon it is named for, our version of American Pale Ale has a bold character. We add a healthy dose of hops in both the kettle and the finishing tank."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+pacific_coast_brewing-holiday_scottish_strong_ale,0,0,244981039104,"{""name"":""Holiday Scottish Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,2,1
+paulaner-salvator,0,0,245000372224,"{""name"":""Salvator"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":""Paulaner Salvator, with its strong, typically malty flavour, is what you could call the \""original\"" Paulaner. The bottom-fermented \""Doppelbock\"" beer combines the finest hops and dark barley malt. The Paulaner monks used to drink Salvator as a food substitute during Lent. The most famous master brewer was Frater Barnabas, who took over the Paulaner monastery brewery in 1773. His original recipe remains practically unchanged to this day. In order to preserve the original, Paulaner registered the name \""Salvator\"" with the patent office in 1896.\r\n\r\nSalvator:\r\n18.3% original wort; 7.9% alcohol; 70.6 kcal/100 ml"",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,48,1
+rahr_sons_brewing_company-ugly_pug,0,0,244980580352,"{""name"":""Ugly Pug"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ugly Pug is a schwarzbier, or black lager. But the real story is its name. Fritz saw his mother-in-law’s pug, Oscar, lounging in a chair and he (Fritz) shouted, “What an ugly pug!” Everyone laughed. Your’re right – they were drinking a test batch that night."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,0,1
+hoptown_brewing-golden_ale,0,0,244756905985,"{""name"":""Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoptown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+brauhaus_johann_albrecht_dsseldorf-messing,0,0,244495482880,"{""name"":""Messing"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_johann_albrecht_dsseldorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+elliott_bay_brewery_and_pub-ipa,0,0,244613578753,"{""name"":""IPA"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elliott_bay_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
+gordon_biersch_brewing-maibock,0,0,244623540224,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,39,1
+molson_breweries_of_canada-full_moon_winter_ale,0,0,244858880001,"{""name"":""Full Moon Winter Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":""This full-bodied ale is brewed with roasted malts and a hint of Dark Belgian sugar for a perfectly balanced taste."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,4,1
+pacific_beach_brewhouse,0,0,244859928577,"{""name"":""Pacific Beach Brewhouse"",""city"":""Pacific Beach"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7978,""lon"":-117.24}}",1,6,1
+emery_pub-porter,0,0,244629569536,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emery_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
+staatliches_hofbrauhaus_in_munchen-munchner_kindl_weissbier_munchner_weisse,0,0,245116239872,"{""name"":""Münchner Kindl Weissbier / Münchner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,42,1
+firehouse_brewing-brown_cow_ale,0,0,244613251073,"{""name"":""Brown Cow Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,16,1
+independence_brew_pub-ipa,0,0,244740259842,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+green_flash_brewing-le_freak_belgian_style_ipa,0,0,244739342336,"{""name"":""Le Freak Belgian Style IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Extreme ale converging San Diego-style imperial pale ale and Belgian-style trippel."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,13,1
+nor_wester_brewery_and_public_house,0,0,244873625601,"{""name"":""Nor'Wester Brewery and Public House"",""city"":""Portland"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5235,""lon"":-122.676}}",1,41,1
+thunderhead_brewery-eigenberg_smoked_porter,0,0,245118271488,"{""name"":""Eigenberg Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+capital_brewery-capital_island_wheat,0,0,244487225344,"{""name"":""Capital Island Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,31,1
+govnor_s_public_house-fomharfest,0,0,244623147008,"{""name"":""Fomharfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,38,1
+lakefront_brewery-white,0,0,244737769472,"{""name"":""White"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+fox_river_brewing_1-caber_tossing_scottish_ale,0,0,244620591105,"{""name"":""Caber Tossing Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+sierra_nevada_brewing_co-bigfoot_2000,0,0,244998930434,"{""name"":""Bigfoot 2000"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+brasserie_fantme-strange_ghost,0,0,244481458176,"{""name"":""Strange Ghost"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_fantme"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-honey_wheat,0,0,245116567554,"{""name"":""Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,43,1
+big_ridge_brewing-clover_pale_ale,0,0,244363689985,"{""name"":""Clover Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""big_ridge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+jennings_brewery,0,0,244745764866,"{""name"":""Jennings Brewery"",""city"":""Cockermouth"",""state"":""Cumbria"",""code"":""CA13 9NE"",""country"":""United Kingdom"",""phone"":""0845 1297185"",""website"":""http://www.jenningsbrewery.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Castle Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.6649,""lon"":-3.3634}}",1,28,1
+pivara_skopje-skopsko,0,0,244982284288,"{""name"":""Skopsko"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivara_skopje"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+silverado_brewing-impale_ale,0,0,244981825536,"{""name"":""Impale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""silverado_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,3,1
+gilde_brauerei,0,0,244630028289,"{""name"":""Gilde Brauerei"",""city"":""Hannover"",""state"":""Niedersachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)511-/-9808-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hildesheimer Strae 132""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.3544,""lon"":9.7532}}",1,55,1
+harpoon_brewery_windsor,0,0,244755398657,"{""name"":""Harpoon Brewery - Windsor"",""city"":""Windsor"",""state"":""Vermont"",""code"":""5089"",""country"":""United States"",""phone"":""1-802-674-5491"",""website"":""http://www.harpoonbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We started the Harpoon Brewery in 1986 because, like today, we loved beer and wanted more good choices. While traveling in Europe after college, we drank many wonderfully diverse, fresh, local beers. We also saw firsthand how important local breweries were to their communities. After our travels, we asked each other, why not bring great beer and that sense of community to New England? That was the genesis of the Harpoon Brewery. Twenty years later we still revel in making great beer and sharing that joy with our friends and neighbors. The success that we have had running Harpoon is due entirely to the wonderful employees who brew, package, warehouse, sell, deliver, and market our beer and you, the people who drink Harpoon. We hope that our sense of gratitude is reflected in both the quality of the beer and the spirit of fun and enjoyment surrounding our beer and breweries."",""address"":[""336 Ruth Carney Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.513,""lon"":-72.4015}}",1,52,1
+half_moon_bay_brewing-sandy_beach_blonde_hefeweizen,0,0,244737966080,"{""name"":""Sandy Beach Blonde Hefeweizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,10,1
+brasserie_la_choulette-les_sans_culottes,0,0,244494827520,"{""name"":""Les Sans Culottes"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_choulette"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+delafield_brewhaus-hopfenstange_pils,0,0,244611416065,"{""name"":""Hopfenstange Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+brew_makers,0,0,244498169857,"{""name"":""Brew Makers"",""city"":""Mountain View"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.3861,""lon"":-122.084}}",1,57,1
+schlobrauerei_reckendorf-dunkel,0,0,244980908036,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+empyrean_brewing_company-chaco_canyon_honey_gold,0,0,244630945794,"{""name"":""Chaco Canyon Honey Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+half_pints_brewing_company,0,0,244738490369,"{""name"":""Half Pints Brewing Company"",""city"":""Winnipeg"",""state"":""Manitoba"",""code"":"""",""country"":""Canada"",""phone"":"""",""website"":""http://www.halfpintsbrewing.com"",""type"":""brewery"",""updated"":""2010-12-13 19:30:01"",""description"":"""",""address"":[""550 Roseberry Street""]}",1,11,1
+the_church_brew_works-millennium_trippel,0,0,245117878273,"{""name"":""Millennium Trippel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Trippel is a very special type of beer. A Belgian Trippel could be called the beer version of a Champagne. It is very light in color and highly carbonated giving an appearance similar to Champagne. The flavor is somewhat sweet and malty as well as strong."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,46,1
+stieglbrauerei_zu_salzburg_gmbh,0,0,245115322368,"{""name"":""Stieglbrauerei zu Salzburg GmbH"",""city"":""Salzburg"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-662-/-83-87-0"",""website"":""http://www.stieglbrauerei.at/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kendlerstraße 1""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.8005,""lon"":13.0444}}",1,40,1
+brewmasters_restaurant_and_brewery_south-olde_st_nick,0,0,244488142848,"{""name"":""Olde St.Nick"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewmasters_restaurant_and_brewery_south"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+brouwerij_girardin-gueuze_1882,0,0,244488470530,"{""name"":""Gueuze 1882"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_girardin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,35,1
+copper_kettle_brewery-eislin_dubbel,0,0,244489584642,"{""name"":""Eislin Dubbel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""copper_kettle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Dubbel is a nice brown creamy sweet, malty and strong ale. It is a traditional Belgian dubbel ale with a secondary fermentation. This complex ale has many flavor characteristics. At 8% abv you will notice a slight alcohol warmth at the finish ."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,37,1
+mccashin_s_brewery_malthouse,0,0,244860518402,"{""name"":""McCashin's Brewery & Malthouse"",""city"":""Nelson"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(03)-547-0526"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""660 Main Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1989,""lon"":-98.0673}}",1,8,1
+klosterbrauerei_neuzelle-original_badebier_original_bathbeer_monastery_fun,0,0,244736786433,"{""name"":""Original Badebier / Original Bathbeer Monastery Fun"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,7,1
+gray_brewing-autumn_ale,0,0,244739670016,"{""name"":""Autumn Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,14,1
+erie_brewing_company-presque_isle_pilsner,0,0,244631666688,"{""name"":""Presque Isle Pilsner"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Presque Isle and the bay it creates have played many significant roles in the history of Erie and our young nation. The US Government chose this location to build a fleet of ships during the war of 1812 because it formed the only protected harbor on Lake Erie. In 1813, during the battle of Lake Erie, Commodore Oliver Hazard Perry successfully defended Lake Erie against the British with ships that were built on Presque Isle Bay, making a significant mark on the pages of history. Presque Isle Pilsner, a tribute to history is a hand crafted pilsner that is \""A noble beer for Noble People.\"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,59,1
+pacific_rim_brewing,0,0,244981039105,"{""name"":""Pacific Rim Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98106"",""country"":""United States"",""phone"":""1-206-764-3844"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9832 14th Avenue SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.5143,""lon"":-122.353}}",1,2,1
+pennichuck_brewing_company-fireman_s_pail_ale,0,0,245000372225,"{""name"":""Fireman's Pail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+rail_house_restaurant_and_brewpub-red,0,0,244980580353,"{""name"":""Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,0,1
+kalamazoo_brewing-two_hearted_ale,0,0,244756905986,"{""name"":""Two-Hearted Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kalamazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
+brewer_s_art,0,0,244495482881,"{""name"":""Brewer's Art"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21201"",""country"":""United States"",""phone"":""410-547-6925"",""website"":""http://www.belgianbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Set in a grand Mt. Vernon townhouse, The Brewer's Art offers many temptations for your palate. Our seasonally-influenced menu of European-style country fare features meats, fish, seafood, pasta, and vegetarian offerings. Dinner is served daily between 5:30pm - 9:00pm (later on Thursdays, Fridays and Saturdays) and light fare is available from 4:00pm - 11:00pm. Our creative pastry chef prepares our homemade desserts. In addition to brewing our fine beers on the premises, we offer a carefully picked selection of beers and fine wines from around the world, and one of Baltimore's best selections of scotches and spirits."",""address"":[""1106 N. Charles St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.3028,""lon"":-76.6164}}",1,50,1
+elm_city_brewing_co-elm_city_schwarzbier,0,0,244613578754,"{""name"":""Elm City Schwarzbier"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elm_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,17,1
+gottberg_brew_pub-1916_irish_stout,0,0,244623540225,"{""name"":""1916 Irish Stout"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
+mordue_brewery,0,0,244858945536,"{""name"":""Mordue Brewery"",""city"":""Wallsend"",""state"":""Tyne and Wear"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0191)-2961879"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""21A Oak Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":55.0167,""lon"":-1.4925}}",1,4,1
+penn_brewery-penndemonium,0,0,244982611968,"{""name"":""PENNdemonium"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Introduced on May 1, 2007. Available May and June. Distributed throughout our network of wholesalers in draft and 22 oz. bottles."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,6,1
+english_ales_brewery-ironside_best,0,0,244629569537,"{""name"":""Ironside Best"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""english_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-rhubarb,0,0,245116239873,"{""name"":""Rhubarb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
+founders_brewing,0,0,244613251074,"{""name"":""Founders Brewing"",""city"":""Grand Rapids"",""state"":""Michigan"",""code"":""49503"",""country"":""United States"",""phone"":""1-616-776-1195"",""website"":""http://www.foundersbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Founders Brewing Company, founded by Mike Stevens and Dave Engbers produced its first beer in November of 1997. Built out of a dream and a passion for home brewing, what started out as a hobby quickly became a thriving business. As the years have passed, Founders has built its brewery on the exploration of recipe development and brewing techniques. We are not the standard micro-brewery, rather we have traveled a path that breaks from the standard craft-brewer. Carving a niche out of the craft industry, Founders Brewing Company has built its reputation on producing very unique beers. Our focus is to offer our wholesalers, retailers and consumers a product that stands alone on the shelf and offers a true drinking experience to our friends, the consumer. As the years have passed, Founders has built its brewery on the exploration of recipe development and brewing techniques. We are not the standard micro-brewery, rather we have traveled a path that breaks from the standard craft-brewer. Carving a niche out of the craft industry, Founders Brewing Company has built its reputation on producing very unique beers. Our focus is to offer our wholesalers, retailers and consumers a product that stands alone on the shelf and offers a true drinking experience to our friends, the consumer."",""address"":[""235 Grandville Avenue SW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.9585,""lon"":-85.6735}}",1,16,1
+industrias_la_constancia_ilc,0,0,244740259843,"{""name"":""Industrias La Constancia ILC"",""city"":""San Salvador"",""state"":"""",""code"":"""",""country"":""El Salvador"",""phone"":""503-231-5444"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Avenida Independencia No.526""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":13.6998,""lon"":-89.1832}}",1,15,1
+green_mountain_beverage-woodchuck_amber_draft_cider,0,0,244739342337,"{""name"":""Woodchuck Amber Draft Cider"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":""Woodchuck Amber is the original Woodchuck Cider. It's made from a blend of apples and fermented with champagne yeast to produce a great tasting and refreshing alcoholic drink. It's available in 6-packs and 12-packs, as well as on draft."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,13,1
+onion_pub_brewery-pale_ale,0,0,244873625602,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onion_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+thunderhead_brewery-honey_lager,0,0,245118271489,"{""name"":""Honey Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+carlsberg_bryggerierne,0,0,244487225345,"{""name"":""Carlsberg Bryggerierne"",""city"":""Kbenhavn"",""state"":"""",""code"":"""",""country"":""Denmark"",""phone"":""45-33-27-33-27"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Vesterflledvej 100""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.6667,""lon"":12.5393}}",1,31,1
+gray_brewing-classic_oatmeal_stout,0,0,244749238272,"{""name"":""Classic Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+lazy_magnolia_brewing_company,0,0,244737769473,"{""name"":""Lazy Magnolia Brewing Company"",""city"":""Kiln"",""state"":""Mississippi"",""code"":""39556"",""country"":""United States"",""phone"":""(228) 467-2727"",""website"":""http://www.lazymagnolia.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7030 Roscoe Turner Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.3764,""lon"":-89.4497}}",1,9,1
+fuller_smith_turner_pbc-vintage_ale_2008,0,0,244620656640,"{""name"":""Vintage Ale 2008"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""I have crafted this very special ale from the finest Challenger and Northdown hops, Maris Otter malted barley, and of course, our unique yeast, to create a truly extraordinary limited edition brew.\r\n\r\nIndividually packed and numbered, this bottle is one of only one hundred and forty-five thousand produced."",""style"":""Old Ale"",""category"":""British Ale""}",1,33,1
+sly_fox_brewhouse_and_eatery_royersford-burns_scottish_ale,0,0,245116895232,"{""name"":""Burns Scottish Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+brasserie_la_binchoise-bruin_tradition_brune_tradition,0,0,244481523712,"{""name"":""Bruin Tradition / Brune Tradition"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_la_binchoise"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+stieglbrauerei_zu_salzburg_gmbh-weizengold_dunkel,0,0,245116633088,"{""name"":""Weizengold Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This dark wheat beer specialty is a natural and spicy beer brand.""}",1,43,1
+birra_moretti-la_rossa,0,0,244363689986,"{""name"":""La Rossa"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""birra_moretti"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,18,1
+keesmann_bru-bamberger_herren_pils,0,0,244745764867,"{""name"":""Bamberger Herren Pils"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keesmann_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+prairie_rock_brewing_elgin-vanilla_creme_ale,0,0,244982349824,"{""name"":""Vanilla Creme Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+slottskllans_bryggeri,0,0,245098676224,"{""name"":""Slottskllans Bryggeri"",""city"":""Uppsala"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":""46-018-15-58-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mrstagatan 10-12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":59.8544,""lon"":17.6627}}",1,3,1
+goose_island_beer_company_clybourn-goose_island_midway_ipa,0,0,244630028290,"{""name"":""Goose Island Midway IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
+hochstiftliches_brauhaus_in_bayern-will_brau_ur_bock,0,0,244755398658,"{""name"":""Will-Bräu Ur-Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hochstiftliches_brauhaus_in_bayern"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,52,1
+harpoon_brewery_boston-glacier_harvest_09_wet_hop_100_barrel_series_28,0,0,244738031616,"{""name"":""Glacier Harvest '09 Wet Hop (100 Barrel Series #28)"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""For the 28th session of the Harpoon 100 Barrel Series, we’re celebrating this year’s hop harvest with Glacier Harvest Wet Hop beer, a pale ale made with fresh Glacier hops.\r\n \r\nWet hop beers are brewed using fresh, “wet” hops instead of traditional dried hops—hops contain about 60% moisture when they are first picked.\r\n\r\nTypically, when hops are picked they are quickly dried and refrigerated to increase shelf life and make them more consistent for brewing. Freshly picked wet hops, however, need to be used within hours of harvest or they will begin to degrade rapidly. Wet hops retain more of their natural aroma and volatile flavors that dissipate when dried. This gives wet hop beers a fresher hop flavor and aroma than that of beers hopped with processed hops.\r\nThis yields an immersed, intense hop flavor in the beer.\r\n\r\nHarpoon brewer Ray Dobens, creator of the beer, added a heroic dose of fresh hops the day of the harvest.The hop flavor and aroma from this copper-colored ale comes from a generous late addition of freshly harvested “wet” hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+brauhaus_sternen-huusbier_hell,0,0,244494827521,"{""name"":""Huusbier Hell"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauhaus_sternen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+diamond_knot_brewery_alehouse-hefe_weizen,0,0,244611416066,"{""name"":""Hefe-Weizen"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""diamond_knot_brewery_alehouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,12,1
+brewery_corsendonk-christmas_ale,0,0,244498235392,"{""name"":""Christmas Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+schooner_brewery-vail_pale_ale,0,0,244980908037,"{""name"":""Vail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+empyrean_brewing_company-eccentric_ale,0,0,244631011328,"{""name"":""Eccentric Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
+harvest_moon_brewery_cafe-golden_blonde,0,0,244738555904,"{""name"":""Golden Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvest_moon_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+unibroue-chambly_noire,0,0,245117878274,"{""name"":""Chambly Noire"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""The opaque blackness and beige-colored\r\nfoam mousse of Chambly Noire belie its light,\r\nrefreshing body and clean, long finish,\r\nfeaturing hints of roasted coffee beans, toast\r\nand toffee. \r\n\r\nWe recommend pairing it with grilled salmon,\r\nsteak or tuna au poivre, smoked meats,\r\ncoffee-crusted rack of lamb, or chocolate\r\nespresso flan."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,46,1
+stone_brewing_co,0,0,245115322369,"{""name"":""Stone Brewing Co."",""city"":""Escondido"",""state"":""California"",""code"":""92029"",""country"":""United States"",""phone"":""1-760-471-4999"",""website"":""http://www.stonebrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1999 Citracado Parkway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.1157,""lon"":-117.12}}",1,40,1
+bricktown_brewery-vanilla_berry_orange,0,0,244488142849,"{""name"":""Vanilla Berry Orange"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bricktown_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
+brouwerij_slaghmuylder-witkap_pater_singel_abbey_ale,0,0,244488470531,"{""name"":""Witkap-Pater Singel Abbey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_slaghmuylder"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+dc_brau,0,0,244622229504,"{""name"":""DC Brau"",""city"":""Washington"",""state"":""DC"",""code"":""20018"",""country"":""United States"",""phone"":"""",""website"":""http://www.dcbrau.com/"",""type"":""brewery"",""updated"":""2011-08-08 19:02:40"",""description"":""The first brewery to open in the nation's capital since Prohibition."",""address"":[""3178-B Bladensburg Rd. NE""]}",1,37,1
+mendocino_brewing_ukiah-talon,0,0,244860583936,"{""name"":""Talon"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_ukiah"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+klosterbrauerei_weltenburg-hefe_weizen_hell,0,0,244736851968,"{""name"":""Hefe-Weizen Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
+hacker_pschorr_bru-weisse,0,0,244739670017,"{""name"":""Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hacker_pschorr_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,14,1
+estes_park_brewery-staggering_elk,0,0,244631666689,"{""name"":""Staggering Elk"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+palm_breweries-palm_speciale,0,0,244981104640,"{""name"":""Palm Speciale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""palm_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Since 250 years Palm, a top-fermented amber beer, is brewed in the Belgian province of Brabant. It has a soft, full and fruity taste. It is only available in the Benelux. In France it is known as \""Palm Belgique\"" with 6% alcohol percent."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
+pennichuck_brewing_company-halligan_ipa,0,0,245000437760,"{""name"":""Halligan IPA"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+rock_bottom_restaurant_brewery_south_denver,0,0,244980580354,"{""name"":""Rock Bottom Restaurant & Brewery - South Denver"",""city"":""Englewood"",""state"":""Colorado"",""code"":""80112"",""country"":""United States"",""phone"":""1-303-792-9090"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9627 East County Line Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.5678,""lon"":-104.874}}",1,0,1
+karl_strauss_brewery_gardens_sorrento_mesa-belgian_abbey_red,0,0,244756905987,"{""name"":""Belgian Abbey Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+brouwerij_de_landtsheer-malheur_brut_reserve,0,0,244495482882,"{""name"":""Malheur Brut Reserve"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_landtsheer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+empyrean_brewing_company-burning_skye_scottish_ale,0,0,244613644288,"{""name"":""Burning Skye Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+granville_island_brewing_company-kitsilano_maple_cream_ale,0,0,244750024704,"{""name"":""Kitsilano Maple Cream Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granville_island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+nogne_o_det_kompromisslose_bryggeri_a_s-god_jul_winter_ale,0,0,244858945537,"{""name"":""God Jul - Winter Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark ale brewed specially for the Christmas season, with a rich, complex taste of caramel. This is a strong, dark and rather sweet Christmas Beer – just the way we think a Christmas beer should be."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
+pivovar_starobrno-czech_premium_lager,0,0,244982677504,"{""name"":""Czech Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_starobrno"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+epic_brewing_company-epic_pale_ale,0,0,244629569538,"{""name"":""Epic Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""epic_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Supreme Champion Beer - New Zealand International Beer Awards"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
+stone_city_brewing-artist_colony_ale,0,0,245116239874,"{""name"":""Artist Colony Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
+fuller_smith_turner_pbc-fuller_s_esb,0,0,244613316608,"{""name"":""Fuller's ESB"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fuller_smith_turner_pbc"",""updated"":""2010-07-22 20:00:20"",""description"":""ESB was launched into the Fuller's family in 1971, as a winter brew to replace a beer named Old Burton Extra. The potential of the beer was soon realised and ESB was installed as a permanent fixture, creating an immediate impact. \r\n\r\nNot only was it one of the strongest regularly brewed draught beers in the country (at 5.5% ABV), it was also one of the tastiest, and as the awareness of the beer grew, so did its popularity. ESB's reputation was soon enhanced after being named CAMRA's (Campaign for Real Ale) Beer of the Year in 1978, and the beer has not stopped winning since! \r\n\r\nWith three CAMRA Beer of the Year awards, two World Champion Beer awards, and numerous other gold medals to speak of, ESB is, quite simply, the Champion Ale."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,16,1
+ithaca_beer_company-nut_brown,0,0,244740325376,"{""name"":""Nut Brown"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The rich mahogany hue of the Nut Brown is the first thing you will notice. You'll find subtle hints of both chocolate and coffee. We delicately blend chocolate and caramel malts with four others to make this flavorful, easy drinking beer. The malt character will appeal to those looking for a moderately dark ale, but the smoothness is what will surprise all."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
+grolsche_bierbrouwerij-grolsch_premium_pilsner,0,0,244739342338,"{""name"":""Grolsch Premium Pilsner"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grolsche_bierbrouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""The 'standard' Grolsch beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,13,1
+oyster_bar_bistro_and_brewery-pumpkin_ale,0,0,244873691136,"{""name"":""Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+titletown_brewing-railyard_ale,0,0,245118271490,"{""name"":""Railyard Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,47,1
+carolina_beer_company-cottonwood_endo_india_pale_ale,0,0,244487225346,"{""name"":""Cottonwood Endo India Pale Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This brew is a favorite for those who love hops! This medium copper-colored ale is dry hopped for a strong hop nose with medium malt overtones and hint of caramel that blend for one great tasting beer!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
+great_dane_pub_and_brewing_1-raspberry_ale,0,0,244749238273,"{""name"":""Raspberry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,38,1
+legacy_brewing_co-midnight_wit,0,0,244737769474,"{""name"":""Midnight Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Midnight Wit is a Belgian-style white ale with a medium body and spicy, citrus overtones. The texture is silky, creamy, and refreshingly delightful. Brewed with European Pilsner malt, unmalted wheat, a blend of 5 different spices and then fermented with a classic Belgian yeast strain. Our Brewmaster learned the art of brewing tantalizing and award-winning white beers during his time in Belgium and this beer shows it."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,9,1
+gaslight_brewery-bison_brown,0,0,244620656641,"{""name"":""Bison Brown"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
+smuttynose_brewing_co-shoals_pale_ale,0,0,245116960768,"{""name"":""Shoals Pale Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our interpretation of a classic English beer style is copper-colored, medium-bodied and highly hopped. Its flavor is delightfully complex: tangy fruit at the start, with an assertive hop crispness and a long malty palate that one well-known beer writer has compared to the flavor of freshly-baked bread."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+brauerei_hrle-dunkle_weisse,0,0,244481523713,"{""name"":""Dunkle Weisse"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brauerei_hrle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+stone_brewing_co-7th_anniversary_ipa,0,0,245116633089,"{""name"":""7th Anniversary IPA"",""abv"":7.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+blucreek_brewing_company,0,0,244363755520,"{""name"":""BluCreek Brewing Company"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53716"",""country"":""United States"",""phone"":""1-608-204-0868"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2605 South Stoughton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0598,""lon"":-89.3085}}",1,18,1
+kirin_brewery_company_ltd-kirin_light,0,0,244745830400,"{""name"":""Kirin Light"",""abv"":3.31,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kirin_brewery_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""From Kirin's Site:\r\n\r\nWith just 95 calories and full-flavor, Kirin Light is one of the few great world-class Lights.\r\n\r\nYou might think Kirin Light would be a lightweight contender, content to let his sturdier siblings steal the show. But this fitness-minded newcomer won't compromise. You won't have to compromise either - with just 95 calories and full flavor, Kirin Light is one of the few great world-class lights.\r\n\r\nWhat makes Kirin Light great\r\nCanadian barley malt, Czech hops, rich golden color"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,28,1
+pumphouse_brewery_restaurant-red_alert_ale,0,0,244982349825,"{""name"":""Red Alert Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pumphouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
+southern_tier_brewing_co-creme_brulee_imperial_milk_stout,0,0,245098741760,"{""name"":""Creme Brulee Imperial Milk Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Sweet Stout"",""category"":""British Ale""}",1,3,1
+goose_island_beer_company_clybourn-ruby_mild,0,0,244630093824,"{""name"":""Ruby Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,55,1
+hopworks_urban_brewery-crosstown_pale_ale,0,0,244755398659,"{""name"":""Crosstown Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer bridges east and west with a lane dedicated to riders who aren't afraid to get dirty. Three kinds of organic caramel malts and a 24 pound whirlpool hop bomb keep things interesting while the wheels go round and round. Cheers to narrow knobbies, kazoos, and more cowbell!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
+heartland_brewery_union_square-cornhusker_lager,0,0,244738031617,"{""name"":""Cornhusker Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+breckenridge_brewery-mountain_wheat,0,0,244494827522,"{""name"":""Mountain Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
+dirt_cheap_cigarettes_and_beer-beer,0,0,244611481600,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dirt_cheap_cigarettes_and_beer"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+brouwerij_bosteels-pauwel_kwak,0,0,244498300928,"{""name"":""Pauwel Kwak"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bosteels"",""updated"":""2010-07-22 20:00:20"",""description"":""LOOK:\r\nKwak is recognisable by its deep bright amber colour and a dense, creamy coloured head. The pale wood of the glass holder makes a pleasant contrast with the beer.\r\n\r\nSMELL:\r\nYou will smell a mellow, fruity and malty aroma with a slightly spicy character (coriander, hops). Additional earthy and very subtle aromas of banana and perhaps also a whiff of pineapple or mango in the background.\r\n\r\nTASTE:\r\nDiscover a very mellow, fruity attack, a nougat-like solidity, and a slightly spicy character with hints of liquorice passing into a warm finish that reminds you of caramelised banana. The bitterness always remains in the background but in the end emerges delicately.""}",1,57,1
+schussenrieder_erlebnisbrauerei-original_n_1_naturtrub,0,0,244980973568,"{""name"":""Original Nº 1 Naturtrüb"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+empyrean_brewing_company-eccentric_belgian_wheat,0,0,244631011329,"{""name"":""Eccentric Belgian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+harvey_son_lewes,0,0,244738555905,"{""name"":""Harvey & Son (Lewes)"",""city"":""Lewes"",""state"":""East Sussex"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01273)-480209"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6 Cliffe High Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8742,""lon"":0.0167}}",1,11,1
+unicer-superbock,0,0,245117943808,"{""name"":""SuperBock"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unicer"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Authentic Flavour\"" Super Bock is the leading beer brand on the Portuguese market and is the only brand to have won 19 consecutive gold medals in the international contest \""Monde Sélection da la Qualité"",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,46,1
+sullivan_s_black_forest_brew_haus_grill-lost_sailor,0,0,245115387904,"{""name"":""Lost Sailor"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""A Hop Head's dream beer, enough said."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
+brouwerij_de_smedt-affligem_noel,0,0,244488142850,"{""name"":""Affligem Noël"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_smedt"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+brouwerij_van_honsebrouck-kasteel_bier_donker_foncee,0,0,244488536064,"{""name"":""Kasteel Bier Donker-Foncee"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_honsebrouck"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+egan_brewing-czech_out_this_pils,0,0,244622295040,"{""name"":""Czech Out This Pils!"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+midnight_sun_brewing_co-fallen_angel,0,0,244860583937,"{""name"":""Fallen Angel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Fallen Angel Golden Strong Ale, brewed on 6-6-6, is named in the tradition of Belgian golden strong ales--after the devil himself. \r\n\r\nMidnight Sun's Fallen Angel Golden Strong Ale is a traditional Belgian-style golden ale--beautiful gold in color with tiny, conniving bubbles forming a very thick, meticulous head. Effervescent and crisp, this seriously delicious elixir tempts the palate with apple (oh so Garden of Eden), pear and a little earthy mustiness. Fallen Angel captivates your senses with its lightness and brightness while its 8% ABV strength breathes fire into your soul, warming you from the inside out. \r\n\r\nAngel-like in appearance, the devil is in its strength. \r\n\r\nWith its introduction in 2006 and its immediate cult following, Fallen Angel is now brewed and released about once a year."",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,8,1
+klosterbru_bamberg-braunbier,0,0,244736851969,"{""name"":""Braunbier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
+hair_of_the_dog_brewing-doggie_claws_2004,0,0,244739735552,"{""name"":""Doggie Claws 2004"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+f_x_matt_brewing-saranac_adirondack_lager,0,0,244631732224,"{""name"":""Saranac Adirondack Lager"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our classic German lager has a perfect balance of caramel malt sweetness. Look for a rich, amber color and medium body."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+pivovary_staropramen,0,0,244981104641,"{""name"":""Pivovary Staropramen"",""city"":""Praha"",""state"":"""",""code"":""150 54"",""country"":""Czech Republic"",""phone"":"""",""website"":""http://www.staropramen.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Nadrazni 84""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0685,""lon"":14.4067}}",1,2,1
+port_brewing_company-wipeout_ipa,0,0,245000503296,"{""name"":""Wipeout IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This one is dedicated to everyone who has gotten up at the butt crack of dawn, headed towards the shores and found it 4-6 feet and offshore only to find 30 of your \""buddies\"" have already claimed the peak. As you paddle out, a swell arrives from nowhere signaling your turn to go. The surf Gods are shinning on you today. You turn, stroke like mad for the wave. Standing up you are alone and blammo you Wipeout....blowing the only chance of a right hander all to yourself. You know who you are. We've all been there too. It's inside each and every one of us.\r\n\r\nWelcome to the waters of Wipeout IPA, a massively hopped India Pale Ale with enough substance and body to overcome even the worst and most tragic of on the water spills. We brew Wipeout IPA for everyone- especially those hardy souls who brave the cold winter water and monster sets produced by an amazing northwest swell. \r\n\r\nOnly a tidal wave of hops can overcome the surging tide of malt that is required to produce a beer of this shape. We invite you to drop in, hang on and kick out the backside. That is, unless you enjoy wiping out and all the glory that goes with it.\r\n\r\nMalts- Two Row, Wheat, Carapils and English Crystal Malts\r\nHops- Amarillo, Centennial and Simcoe \r\nYeast- White Labs California Ale\r\n\r\nOriginal Gravity- 1.064\r\nTerminal Gravity- 1.008\r\n7.0% ABV\r\n\r\nDraft- Available in Southern California and Arizona 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+rogue_ales-trafalgar_ipa,0,0,244980580355,"{""name"":""Trafalgar IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Let Battle Commence... Trafalgar is a Gold Medal Award winning bottle conditioned India Pale Ale brewed to a 19th Century recipe. Listed in the Top 500 Ales in the World, Trafalgar measures 6% ABV. Brewed in the Royal Forest of Dean at Freeminer Brewery in the UK and distributed by Rogue Ales in the US.\r\n\r\nTrafalgar IPA is a true India Pale Ale, brewed to an original 19th Century recipe. IPA's were brewed at high APV and heavily hopped to enable their preservation on the long journey to the colonies from England. This Ale is brewed from the oldest working traditional floor maltings in Warminster, Wiltshire. The hops are traditional \""Goldings\"" variety grown around Ledbury, Herefordshire as they have been for centuries."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,0,1
+lake_placid_pub_brewery,0,0,244756905988,"{""name"":""Lake Placid Pub & Brewery"",""city"":""Lake Placid"",""state"":""New York"",""code"":""12946"",""country"":""United States"",""phone"":""518-523-3813"",""website"":""http://www.ubuale.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""813 Mirror Lake Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.2829,""lon"":-73.9813}}",1,56,1
+brouwerij_der_sint_benedictusabdij_de_achelse_kluis,0,0,244495548416,"{""name"":""Brouwerij der Sint-Benedictusabdij de Achelse Kluis"",""city"":""Achel"",""state"":"""",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":""http://www.achelsekluis.org/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.2515,""lon"":5.546}}",1,50,1
+empyrean_brewing_company-third_stone_brown,0,0,244613644289,"{""name"":""Third Stone Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
+great_dane_pub_and_brewing_2-landmark_light,0,0,244750090240,"{""name"":""Landmark Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+oaken_barrel_brewing,0,0,244859011072,"{""name"":""Oaken Barrel Brewing"",""city"":""Greenwood"",""state"":""Indiana"",""code"":""46143"",""country"":""United States"",""phone"":""1-317-887-2287"",""website"":""http://www.oakenbarrel.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Oaken Barrel Brewing Co. has built its reputation on its award-winning beers. Head brewer Mark Havens and assistant brewer Andrew Castner brew a variety of fresh ales on-site in small batches. They use a fifteen barrel system to brew six standard house ales and a steady stream of specialty beers."",""address"":[""50 North Airport Parkway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.615,""lon"":-86.0901}}",1,4,1
+pivovar_v_hurbanove-golden_pheasant,0,0,244982677505,"{""name"":""Golden Pheasant"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_v_hurbanove"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+erie_brewing_company-heritage_alt_beer,0,0,244629635072,"{""name"":""Heritage Alt Beer"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Erie Brewing Co. Heritage Alt Beer - a classic, old style dark German ale possessing a subtle hint of roasted and chocolate malt flavor, with a smooth balanced finish. Erie Brewing first brewed this annually for the Erie German Heritage Festival. Erie Brewing’s Heritage Alt Beer popularity lead this beer from a commemorative beer for the festival to a complete packaged seasonal release for all to enjoy, whether you are of German Heritage or not. Prost!"",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,54,1
+thirsty_dog_brewing-cerberus_10_dog_ale,0,0,245116239875,"{""name"":""Cerberus 10 Dog Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is made with one grain and 4 Belgian yeasts, a deceptive golden color, and a malty palate lend complexity to this Belgian Trippel Ale."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,42,1
+goose_island_beer_company_clybourn-pmd_mild_ale,0,0,244613382144,"{""name"":""PMD Mild Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,16,1
+jarre_creek_ranch_brewing-amber_ale,0,0,244740325377,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jarre_creek_ranch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
+hambleton_ales-nightmare,0,0,244739407872,"{""name"":""Nightmare"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hambleton_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
+pinehurst_village_brewery-double_eagle_high_test_scotch_ale,0,0,244997488640,"{""name"":""Double Eagle \""High-Test\"" Scotch Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinehurst_village_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,41,1
+tooheys-new,0,0,245118271491,"{""name"":""New"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tooheys"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,47,1
+climax_brewing_copmany-climax_doppel_bock,0,0,244487225347,"{""name"":""Climax Doppel Bock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally brewed by Monks to sustain them while they fasted during lent; the Doppel Bock is a big-bodied and flavorful beer."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,31,1
+great_divide_brewing-ridgeline_amber,0,0,244749303808,"{""name"":""Ridgeline Amber"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ridgeline Amber stands out as a stellar, complex choice in a sea of over-simplified amber beers available today. A malty, copper-hued treat from start to finish, Ridgeline begins with a distinctive, estery aroma. Followed with a complex, nutty malt flavor true to its Scottish-style heritage, Ridgeline delivers unparalleled character and dimension. A touch of hops rounds out its silky, full body, highlighting Ridgeline’s subtle but engrossing character. Show your friends that you care about their taste buds by turning them on to our imminently balanced and perfectly complex Ridgeline Amber. \r\n\r\nOf interest to Great Divide historians – Ridgeline originally debuted at the brewery as Great Divide’s first beer, Arapahoe Amber. It was renamed in 2004 to better reflect the Colorado lifestyle that Great Divide’s beers perfectly complement."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
+legends_brewhouse_eatery_of_green_bay-amber,0,0,244737835008,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legends_brewhouse_eatery_of_green_bay"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+goose_island_beer_company_clybourn-aviator_doppelbock,0,0,244620722176,"{""name"":""Aviator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
+southern_tier_brewing_co-imperial_mokah_blended_stout,0,0,245117026304,"{""name"":""Imperial Mokah Blended Stout"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A Jahva-Choklat hybrid.""}",1,44,1
+brauerei_leibinger,0,0,244481589248,"{""name"":""Brauerei Leibinger"",""city"":""Ravensburg"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)751-/-22469"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Friedhofstrae 20-36""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.7818,""lon"":9.6215}}",1,19,1
+storm_brewing,0,0,245116698624,"{""name"":""Storm Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""V5L 3V6"",""country"":""Canada"",""phone"":""(604) 255-9119"",""website"":""http://www.stormbrewing.org"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Storm Brewing thundered onto the market in June of 1995 with a brilliantly balanced ale called Red Sky Alt which was reminiscent of the great German Alt Biers of the Golden Years of European brewing. The instant success of Red Sky quickly established the reputation of Brewmaster and owner, James Walton. He is perceived as an innovator and as a stickler for quality by both the media and the trade. Recent expert evaluation rated Storm Brewing's Hurricane I.P.A. among the best in the whole of Canada."",""address"":[""310 Commercial Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2821,""lon"":-123.07}}",1,43,1
+brasserie_bnifontaine-jade,0,0,244363755521,"{""name"":""Jade"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_bnifontaine"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+klosterbrauerei_weltenburg,0,0,244745830401,"{""name"":""Klosterbrauerei Weltenburg"",""city"":""Regensburg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)941-/-2001-0"",""website"":""http://www.weltenburger.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Heitzerstrae 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.0144,""lon"":12.075}}",1,28,1
+pyramid_ales_brewery-traditional_esb,0,0,244982349826,"{""name"":""Traditional ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+speakeasy_ales_and_lagers,0,0,245098741761,"{""name"":""Speakeasy Ales and Lagers"",""city"":""San Francisco"",""state"":""California"",""code"":""94124"",""country"":""United States"",""phone"":""1-415-642-3371"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1195-A Evans Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.7387,""lon"":-122.381}}",1,3,1
+gottberg_brew_pub-abtskelder_tripel,0,0,244630093825,"{""name"":""Abtskelder Tripel"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+jack_russell_brewing-farm_house_ale,0,0,244755464192,"{""name"":""Farm House Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+heavyweight_brewing,0,0,244738031618,"{""name"":""Heavyweight Brewing"",""city"":""Ocean"",""state"":""New Jersey"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Closed in 1996."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.9653,""lon"":-74.3118}}",1,10,1
+breckenridge_brewery-thunder_stout,0,0,244494893056,"{""name"":""Thunder Stout"",""abv"":4.95,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""breckenridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+dreher_srgyrak_zrt-bak,0,0,244611481601,"{""name"":""Bak"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dreher_srgyrak_zrt"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
+brouwerij_slaghmuylder,0,0,244498300929,"{""name"":""Brouwerij Slaghmuylder"",""city"":""Ninove"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-054-33-18-31"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Denterhoutembaan 2""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8417,""lon"":4.0213}}",1,57,1
+sierra_nevada_brewing_co-bigfoot_2004,0,0,244980973569,"{""name"":""Bigfoot 2004"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+estes_park_brewery-renegade_ipa,0,0,244631011330,"{""name"":""Renegade IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our award-winning India Pale Ale is a hop lover’s dream. We use Galena and Cascade hops in the kettle and dry-hop with more cascade during conditioning. This copper-colored ale has a nice maltiness to balance all the hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
+highland_brewing_company-cold_mountain_winter_ale,0,0,244738555906,"{""name"":""Cold Mountain Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our ever-changing spiced winter seasonal. A tasty brew that complements all your holiday festivities. It is typically malty in body, lightly hopped, and rounded out with spices that we vary from year to year."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,11,1
+weyerbacher_brewing_company-blanche,0,0,245750235136,"{""name"":""Blanche"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Clean, refreshing and perhaps just a bit tart, our brewers developed Weyerbacher Blanche just after their trip to Belgium during the winter of 2000. Blanche, meaning \""white\"", takes its name from the whitish haze in this pale gold brew, which is a result of the raw wheat and wheat malts used to brew this Belgian-style beer. \r\n\r\nIn 2002, Blanche was named as Best of the Mid-Atlantic/Southeast in the Belgian Specialty category at the US Beer Tasting Championships.\r\n\r\nWhite beers are well known as the principal product from Hoegaarden, a small town in a wheat-growing region east of Brussels. Light, cloudy and smooth, Weyerbacher Blanche brings you authentic Belgian-style flavor along with microbrewed quality and freshness.\r\n\r\nBlanche is a thirst quenching beer that combines character and flavor with a moderate alcohol content. Just try a bottle. In the nose you'll notice spiciness from the coriander seeds and dried curacao orange peels added during the boil. In the mouth you'll find a mild and refreshing ale with a hint of dryness from the wheat ingredients. A clean finish follows with just a hint of tart spiciness."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,46,1
+summit_brewing-great_northern_porter,0,0,245115387905,"{""name"":""Great Northern Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
+brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_bruin_5,0,0,244488208384,"{""name"":""Achel Bruin 5°"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,34,1
+c_b_potts_of_cheyenne-big_horn_total_disorder_porter,0,0,244488536065,"{""name"":""Big Horn Total Disorder Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""c_b_potts_of_cheyenne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
+f_x_matt_brewing-saranac_summer_ale,0,0,244622295041,"{""name"":""Saranac Summer Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""ith more than 2,800 bodies of water in the Adirondacks, it's not too hard to find a sunny place to relax, rest your feet and look out over the water. To celebrate summer in the Adirondacks, we've brewed a beer with generous amounts of wheat malt for a light, refreshing taste. Look for subtle hints of lemon."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,37,1
+mishawaka_brewing,0,0,244860583938,"{""name"":""Mishawaka Brewing"",""city"":""Mishawaka"",""state"":""Indiana"",""code"":""46545"",""country"":""United States"",""phone"":""1-574-256-9993"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3703 North Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6931,""lon"":-86.1818}}",1,8,1
+kulmbacher_brauerei_ag,0,0,244736917504,"{""name"":""Kulmbacher Brauerei AG"",""city"":""Kulmbach"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9221-/-705-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lichtenfelser Strae 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.106,""lon"":11.4442}}",1,7,1
+hale_s_ales_3-moss_bay_extra,0,0,244739735553,"{""name"":""Moss Bay Extra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+flagstaff_brewing-sasquatch_stout,0,0,244631732225,"{""name"":""Sasquatch Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
+port_brewing_company-broken_keg_ice_bock,0,0,244981170176,"{""name"":""Broken Keg Ice Bock"",""abv"":15.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,2,1
+prescott_brewing_company-pine_tar_stout,0,0,245000503297,"{""name"":""Pine Tar Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+route_66_brewery-lake_shore_light,0,0,244980580356,"{""name"":""Lake Shore Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,0,1
+lost_coast_brewery,0,0,244879720448,"{""name"":""Lost Coast Brewery"",""city"":""Eureka"",""state"":""California"",""code"":""95501"",""country"":""United States"",""phone"":""1-707-445-4484"",""website"":""http://www.lostcoast.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""617 Fourth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8032,""lon"":-124.165}}",1,56,1
+brouwerij_st_bernardus-st_bernardus_witbier,0,0,244495548417,"{""name"":""St. Bernardus Witbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional Witbier (Wheat beer) has been developed in cooperation with Master Brewer Pierre Celis, the Godfather of Hoegaarden and Celis White. \r\n\r\nThis beer as well has a second fermentation in the bottle, giving this beer its specific taste (5.5% alcohol content)."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,50,1
+engel_brauerei_schwbisch_gmnd_lang-trompe_la_mort,0,0,244613709824,"{""name"":""Trompe La Mort"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""engel_brauerei_schwbisch_gmnd_lang"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,17,1
+grumpy_troll_restaurant_and_brewery-2nd_street_amber,0,0,244750090241,"{""name"":""2nd Street Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
+oriental_brewery,0,0,244859011073,"{""name"":""Oriental Brewery"",""city"":"""",""state"":"""",""code"":"""",""country"":""Korea, Republic of"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Oriental Brewery or OB is a South Korean brewery established by the Doosan Group in 1952. It was purchased by InBev in 2003. Today OB produces several of Korea's most popular beverages including the OB, Cass and Cafri lager brands."",""address"":[]}",1,4,1
+prescott_brewing_company-prescott_pale_ale,0,0,244982677506,"{""name"":""Prescott Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
+f_x_matt_brewing-saranac_mountain_ale,0,0,244629635073,"{""name"":""Saranac Mountain Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Delicious Fruity ale is brewed with blackberries, raspberries and sweetened with a touch of blueberry honey. Light and refreshing.With a reddish-Amber color, be sure to look for the ale bitter and berry sweetness. Enjoy!"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,54,1
+tied_house_cafe_brewery_san_jose-maibock,0,0,245116305408,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,42,1
+goose_island_beer_company_clybourn-rye_stout,0,0,244613382145,"{""name"":""Rye Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+jasper_ridge_brewery,0,0,244740390912,"{""name"":""Jasper Ridge Brewery"",""city"":""Ishpeming"",""state"":""Michigan"",""code"":""49849"",""country"":""United States"",""phone"":""1-906-485-6017"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1075 Country Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.5015,""lon"":-87.679}}",1,15,1
+hereford_hops_steakhouse_and_brewpub_3-cleary_red,0,0,244739407873,"{""name"":""Cleary Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+pleasanton_main_street_brewery-island_wheat,0,0,244997488641,"{""name"":""Island Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
+trailhead_brewing_company-old_courthouse_stout,0,0,245118337024,"{""name"":""Old Courthouse Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
+commonwealth_brewing_1-amber_ale,0,0,244487290880,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""commonwealth_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
+great_waters_brewing_company-saint_peter_pale_ale,0,0,244749369344,"{""name"":""Saint Peter Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
+lewis_clark_brewing_company-tumbleweed_ipa,0,0,244737835009,"{""name"":""Tumbleweed IPA"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lewis_clark_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A GOLD MEDAL WINNER at the Great American Beer Festival, beating out 98 other IPA's and chosen as the best IPA in the country! It's amber color and incredible hoppy aroma will keep you coming back for more. R-U-HOPPY?"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
+govnor_s_public_house-leprechaun_light,0,0,244747337728,"{""name"":""Leprechaun Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+spaten_franziskaner_brau-maibock,0,0,245117091840,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,44,1
+brewery_creek_brewing-american_blonde,0,0,244481654784,"{""name"":""American Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+sweetwater_brewing_atlanta-hummer,0,0,245116698625,"{""name"":""Hummer"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""SweetWater Hummer is a tasty Belgian White Ale brewed with coriander and orange peel. Cloudy with subtle fruit tones and a lingering finish. Everybody loves a Hummer!"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,43,1
+brasserie_mcauslan-st_ambroise_apricot_wheat_ale,0,0,244481064960,"{""name"":""St-Ambroise Apricot Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brasserie_mcauslan"",""updated"":""2010-07-22 20:00:20"",""description"":""Apricot Wheat Ale blends various barley malts with malted wheat and natural apricot essence to create an original-tasting beer with a clean, fruit nose.\r\n\r\n5% alc/vol Available in Bottles and Draft"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
+lagunitas_brewing_company-undercover_investigation_shut_down_ale,0,0,244745895936,"{""name"":""Undercover Investigation Shut-Down Ale"",""abv"":9.28,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+qingdao_brewery-green_beer,0,0,244982415360,"{""name"":""Green Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""qingdao_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+steam_whistle_brewery,0,0,245098807296,"{""name"":""Steam Whistle Brewery"",""city"":""Toronto"",""state"":""ON"",""code"":""M5V 3M9"",""country"":""Canada"",""phone"":"""",""website"":""http://www.steamwhistle.ca"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""One kind of beer - Steamwhistle Lager."",""address"":[""255 Bremner Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.6414,""lon"":-79.3869}}",1,3,1
+great_dane_pub_and_brewing_2-new_peculier,0,0,244756119552,"{""name"":""New Peculier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,55,1
+jinro_coors_brewing-cass_fresh,0,0,244755464193,"{""name"":""Cass Fresh"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jinro_coors_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
+independence_brew_pub-kolsch,0,0,244738097152,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+brew_kettle_taproom_smokehouse_bop-big_woody_lager,0,0,244494893057,"{""name"":""Big Woody Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brew_kettle_taproom_smokehouse_bop"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+duclaw,0,0,244611481602,"{""name"":""DuClaw"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21231"",""country"":""United States"",""phone"":""410-563-3400"",""website"":""http://www.duclaw.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""901 S. Bond St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2807,""lon"":-76.5944}}",1,12,1
+brouwerij_van_steenberge-bornem_double,0,0,244498300930,"{""name"":""Bornem Double"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,57,1
+sioux_falls_brewing,0,0,244980973570,"{""name"":""Sioux Falls Brewing"",""city"":""Sioux Falls"",""state"":""South Dakota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.55,""lon"":-96.7003}}",1,1,1
+f_x_matt_brewing-saranac_imperial_ipa,0,0,244631076864,"{""name"":""Saranac Imperial IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Imperial IPA is part our new High Peak Series, a line of beers that are bigger, more complex and flavorful; beers that are meant to be sipped and savored. Saranac Imperial IPA is brewed with 10 different malts and 10 different hops to make a delectably flavorful and complex Imperial IPA - at 85 IBU's and 8.5 % alc/vol."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,58,1
+indian_wells_brewing,0,0,244738555907,"{""name"":""Indian Wells Brewing"",""city"":""Inyokern"",""state"":""California"",""code"":""93527"",""country"":""United States"",""phone"":""1-760-377-5989"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2565 North Highway 14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6675,""lon"":-117.874}}",1,11,1
+whim_ales-old_izaak,0,0,245750300672,"{""name"":""Old Izaak"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whim_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,46,1
+sweetwater_brewing_atlanta,0,0,245115387906,"{""name"":""Sweetwater Brewing - Atlanta"",""city"":""Atlanta"",""state"":""Georgia"",""code"":""30324"",""country"":""United States"",""phone"":""1-404-691-2537"",""website"":""http://www.sweetwaterbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""195 Ottley Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.8087,""lon"":-84.3813}}",1,40,1
+browar_namyslow_sp_z_o_o-rycerskie,0,0,244488208385,"{""name"":""Rycerskie"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""browar_namyslow_sp_z_o_o"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,34,1
+carlyle_brewing,0,0,244488601600,"{""name"":""Carlyle Brewing"",""city"":""Rockford"",""state"":""Illinois"",""code"":""61104"",""country"":""United States"",""phone"":""1-815-963-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""215 East State Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2689,""lon"":-89.0907}}",1,35,1
+firehouse_grill_brewery-double_ipa,0,0,244622426112,"{""name"":""Double IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,37,1
+molson_breweries_of_canada-golden,0,0,244860649472,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+lagunitas_brewing_company,0,0,244736917505,"{""name"":""Lagunitas Brewing Company"",""city"":""Petaluma"",""state"":""California"",""code"":""94954"",""country"":""United States"",""phone"":""1-707-769-4495"",""website"":""http://www.lagunitas.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1280 North McDowell Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2724,""lon"":-122.662}}",1,7,1
+hofbruhaus_traunstein,0,0,244739801088,"{""name"":""Hofbruhaus Traunstein"",""city"":""Traunstein"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)861-/-98866-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hofgasse 6-11""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.8691,""lon"":12.6505}}",1,14,1
+founders_brewing-canadian_breakfast_stout,0,0,244631797760,"{""name"":""Canadian Breakfast Stout"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,59,1
+rch_brewery-pitchfork_rebellious_bitter,0,0,244981170177,"{""name"":""Pitchfork Rebellious Bitter"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rch_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-snow_cap_ale,0,0,245000503298,"{""name"":""Snow Cap Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,48,1
+san_diego_brewing-old_395_barleywine,0,0,244980645888,"{""name"":""Old 395 Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+maclay_and_co,0,0,244879785984,"{""name"":""Maclay and Co."",""city"":""Clackmannan"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.1073,""lon"":-3.7528}}",1,56,1
+brouwerij_van_steenberge-bornem_triple,0,0,244495548418,"{""name"":""Bornem Triple"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,50,1
+fitger_s_brewhouse_brewery_and_grill-lighthouse_ale,0,0,244613709825,"{""name"":""Lighthouse Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
+hereford_hops_steakhouse_and_brewpub_3-doppelbock,0,0,244750155776,"{""name"":""Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,39,1
+oskar_blues_grill_and_brew-one_nut_brown_ale,0,0,244859011074,"{""name"":""One Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""This big tasting brew is only available in the brewpub. Very smooth and balanced with a deep clear brown color. Lightly hopped."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
+prescott_brewing_company,0,0,244982743040,"{""name"":""Prescott Brewing Company"",""city"":""Prescott"",""state"":""Arizona"",""code"":""86301"",""country"":""United States"",""phone"":""(928) 771-2795"",""website"":""http://prescottbrewingcompany.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""130 W Gurley St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.542,""lon"":-112.47}}",1,6,1
+faultline_brewing_2-alt_bier,0,0,244629635074,"{""name"":""Alt Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
+tommyknocker_brewery_and_pub-maple_nut_brown_ale_ale,0,0,245116305409,"{""name"":""Maple Nut Brown Ale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Maple syrup is added to each barrel of Maple Nut Brown Ale to impart roasted sweetness balancing the nut flavor produced by chocolate malts."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,42,1
+great_dane_pub_and_brewing_1-stone_of_scone_scotch_ale,0,0,244740653056,"{""name"":""Stone of Scone Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+joboy_s_brew_pub-joboy_s_ipa,0,0,244740390913,"{""name"":""JoBoy's IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our offering to the hop heads! A decidedly hoppy, bitter, and moderately strong American IPA. We use a generous amount of whole leaf Cascade, Centennial and Citra hops to showcase the freshness and earthy flavors that only hops can provide."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+hoppin_frog_brewery-fresh_frog_raw_hop_imperial_pale_ale,0,0,244739407874,"{""name"":""Fresh Frog Raw Hop Imperial Pale Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Special hoppy flavors and aromas are captured by adding freshly picked, undired hops during the harvest.\r\n\r\nThese wet hops impart a character unlike other brews, that is quite unique and satisfying for those who love hops – the spice of beer. Smell the hop fields, smell the freshness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+prescott_brewing_company-petrified_porter,0,0,244997488642,"{""name"":""Petrified Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
+triumph_brewing_of_princeton-imperial_stout,0,0,245118337025,"{""name"":""Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,47,1
+deschutes_brewery-bond_street_19th_anniversary,0,0,244619280384,"{""name"":""Bond Street 19th Anniversary"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+hapa_s_brew_haus_and_restaurant-black_lava_lager,0,0,244749434880,"{""name"":""Black Lava Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
+licher_privatbrauerei,0,0,244737900544,"{""name"":""Licher Privatbrauerei"",""city"":""Lich"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)6404-/-82-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""In den Hardtberggrten""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.5208,""lon"":8.8166}}",1,9,1
+granite_city_food_brewery_omaha-duke_ipa,0,0,244747403264,"{""name"":""Duke IPA"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_omaha"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
+the_alchemist-heady_topper,0,0,245117091841,"{""name"":""Heady Topper"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Is our double I.P.A.! Loaded with hops, this one will put hair on your chest."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,44,1
+brouwerij_bavik_de_brabandere-petrus_dubbel_bruin_ale,0,0,244481720320,"{""name"":""Petrus Dubbel Bruin Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_bavik_de_brabandere"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,19,1
+t_bonz_gill_grill_and_brewery-stout,0,0,245116698626,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,43,1
+brauhaus_johann_albrecht_konstanz,0,0,244481130496,"{""name"":""Brauhaus Johann Albrecht - Konstanz"",""city"":""Konstanz"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7531-/-25045"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Konradigasse 2""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6651,""lon"":9.175}}",1,18,1
+lake_superior_brewing,0,0,244745895937,"{""name"":""Lake Superior Brewing"",""city"":""Duluth"",""state"":""Minnesota"",""code"":""55806"",""country"":""United States"",""phone"":""1-218-723-4000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2711 West Superior Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.7611,""lon"":-92.1319}}",1,28,1
+raccoon_river_brewing-vanilla_creme_ale,0,0,244982415361,"{""name"":""Vanilla Creme Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+sweetwater_tavern_centreville-flying_armadillo_porter,0,0,245098872832,"{""name"":""Flying Armadillo Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_tavern_centreville"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
+great_divide_brewing-claymore_scotch_ale,0,0,244756119553,"{""name"":""Claymore Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,55,1
+knig_ludwig_schlobrauerei_kaltenberg-konig_ludwig_weissbier_dunkel,0,0,244755464194,"{""name"":""König Ludwig Weissbier Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knig_ludwig_schlobrauerei_kaltenberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+indian_wells_brewing-eastern_sierra_lager,0,0,244738097153,"{""name"":""Eastern Sierra Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+brewdog_ltd-punk_ipa,0,0,244494893058,"{""name"":""Punk IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewdog_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""This 6% trans-atlantic fusion IPA is light golden in colour with tropical fruits and light caramel on the nose. The palate soon becomes assertive and resinous with the New Zealand hops balanced by the biscuit malt. The finish is aggressive and dry with the hops emerging over the warming alcohol.\r\n\r\nThis fresh, full flavour natural beer is our tribute to the classic IPAs of yester-year. The post modern twist is the addition of amazing fruity hops giving an explosion of tropical fruit flavours and a sharp bitter finish."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
+eastern_shore_brewing-st_michaels_blonde_ale,0,0,244611481603,"{""name"":""St. Michaels Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eastern_shore_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,12,1
+bube_s_brewery-bube_s_hefeweizen,0,0,244498366464,"{""name"":""Bube's Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bube_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional German-style wheat beer is rich in banana and clove undertones, with a wonderful frothy head."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,57,1
+skagit_river_brewing-del_rio_lager,0,0,244980973571,"{""name"":""Del Rio Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
+f_x_matt_brewing-saranac_kolsch,0,0,244631076865,"{""name"":""Saranac Kolsch"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This golden sparkling blond ale was brewed to pay homage to a 1000-year tradition rooted in Cologne, Germany. Clear, crisp and easy to drink, the Kolsch of today is lighter than the \""House\"" beer that was served in Cologne 200 years ago - the city that made Kolsch famous. We hope you'll enjoy it!""}",1,58,1
+jack_s_brewing-grid_iron_amber_ale,0,0,244738621440,"{""name"":""Grid Iron Amber Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,11,1
+white_marsh_brewing_company,0,0,245750300673,"{""name"":""White Marsh Brewing Company"",""city"":""White Marsh"",""state"":""Maryland"",""code"":""21236"",""country"":""United States"",""phone"":""410.931.PUBS"",""website"":""http://www.redbrickstation.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8149 Honeygo Blvd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.3722,""lon"":-76.4638}}",1,46,1
+terrapin_beer_company-terrapin_golden_ale,0,0,245115453440,"{""name"":""Terrapin Golden Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Terrapin Beer Company was started by two guys who love big, bold beers. We are known for using a ton of flavorful ingredients and for pushing the envelope with the brews we create.\r\n\r\nWe have also been known to take pleasure in hiking, biking, kayaking, and just plain having fun in the great outdoors. When we get hot and sweaty even hopheads like us want nothing more than to enjoy a beer that is crisp and refreshing.\r\n\r\nWhich is why we created the perfect session beer – the Terrapin Golden Ale."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,40,1
+captain_lawrence_brewing_company-captin_lawrence_pale_ale,0,0,244488208386,"{""name"":""Captin Lawrence Pale Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""captain_lawrence_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""One of the first beers I brewed after moving out to California to begin my brewing education was a Pale Ale. This version is a true testament to the influences the Wild West had on my early brewing. My Pale Ale is loaded with US-grown Cascade, Crystal, and Columbus hops, so be sure to take a good sniff to enjoy their robust aromas before taking your first sip."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
+cherryland_brewing-golden_rail,0,0,244488667136,"{""name"":""Golden Rail"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cherryland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+fitger_s_brewhouse_brewery_and_grill-9_wheats,0,0,244622426113,"{""name"":""9½ Wheats"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+molson_breweries_of_canada-rickard_s_white_ale,0,0,244860649473,"{""name"":""Rickard's White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,8,1
+lancaster_brewing_co-baltic_porter,0,0,244736983040,"{""name"":""Baltic Porter"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional lager-style beer, with its dark color and medium body, has a defined hop flavor balanced by the smoothness of extra special roasted malt. This healthy dose of over six malt flavors makes this beer perfect for the transition from winter into spring."",""style"":""Porter"",""category"":""Irish Ale""}",1,7,1
+hoffbrau_steaks_brewery_1-rodeo_red,0,0,244739801089,"{""name"":""Rodeo Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
+fuller_smith_turner_pbc,0,0,244631797761,"{""name"":""Fuller, Smith & Turner PBC"",""city"":""London"",""state"":""London"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0208)-996-2000"",""website"":""http://www.fullers.co.uk/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Chiswick Lane South""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.4877,""lon"":-0.2498}}",1,59,1
+redhook_ale_brewery-double_black_stout,0,0,244981170178,"{""name"":""Double Black Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,2,1
+pyramid_ales_brewery-apricot_weizen_ale,0,0,245000568832,"{""name"":""Apricot Weizen Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma.\r\n\r\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known.\r\n\r\nOriginal Gravity: 11.75\r\nAlcohol By Volume: 5.10%\r\nMalts: 2-Row Barley, Malted Wheat, Caramel\r\nHops: Nugget\r\nAvailability: Year Round\r\nBest Paired With: Appetizers, salads, and desserts such as pies and pastries.\r\n\r\nBest of the Northwest/Pacific in the \""Fruit Beer\"" category at the 2000 United States Beer Tasting Championship, 2000\r\nGold Medal, GABF, \""Fruit and Vegetable Beers\"", 1994"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,48,1
+shipyard_brewing_portland-ringwood_brewery_old_thumper_extra_special_ale,0,0,244980645889,"{""name"":""Ringwood Brewery Old Thumper Extra Special Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+magic_hat,0,0,244879785985,"{""name"":""Magic Hat"",""city"":""South Burlington"",""state"":""Vermont"",""code"":""5403"",""country"":""United States"",""phone"":""1-802-658-2739"",""website"":""http://www.magichat.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Burlington microbrewers of Humble Patience, Fat Angel, #9, Blind Faith IPA, and Heart of Darkness Oatmeal Stout."",""address"":[""5 Bartlett Bay Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4284,""lon"":-73.2131}}",1,56,1
+bull_bush_pub_brewery-big_ben_brown,0,0,244495548419,"{""name"":""Big Ben Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
+flatlander_s_restaurant_brewery-harvest_amber_ale,0,0,244613709826,"{""name"":""Harvest Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flatlander_s_restaurant_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,17,1
+hoffbrau_steaks_brewery_2-buffalo_ale,0,0,244750155777,"{""name"":""Buffalo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
+pabst_brewing_company-piels_draft,0,0,244859076608,"{""name"":""Piels Draft"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It took “The Beer Drinker’s Beer” to introduce a real draft in a can—and you can still taste that milestone in brewing history today with every can of Piels. Our Draft Style delivers unsurpassed flavor and character like it was drawn straight from the tap!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
+r_b_brewing-pale_ale,0,0,244982808576,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""r_b_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,6,1
+firehouse_brewery_restaurant-bock,0,0,244629635075,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,54,1
+trade_winds_brewing,0,0,245116305410,"{""name"":""Trade Winds Brewing"",""city"":""Wailuku"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":20.8911,""lon"":-156.505}}",1,42,1
+great_lakes_brewing-blackout_stout,0,0,244740718592,"{""name"":""Blackout Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Russian Imperial Stout with a hearty malt body and bold hop flavor."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,16,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2005,0,0,244740456448,"{""name"":""Harvest Ale 2005"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,15,1
+hoppin_frog_brewery-silk_porter,0,0,244739473408,"{""name"":""Silk Porter"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, robust and silky-smooth, with many flavors of roasted, toasted and caramel malts. Porter is an old-world beer style, so popular that it helped start the industrial revolution. Taste the history."",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
+raccoon_river_brewing,0,0,244997554176,"{""name"":""Raccoon River Brewing"",""city"":""Des Moines"",""state"":""Iowa"",""code"":""50309"",""country"":""United States"",""phone"":""1-515-362-5222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 North Tenth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.5841,""lon"":-93.6296}}",1,41,1
+troegs_brewing-scratch_24_2009_van_de_hoorn,0,0,245118337026,"{""name"":""Scratch #24 2009 Van de Hoorn"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+deschutes_brewery-quail_springs_ipa,0,0,244619280385,"{""name"":""Quail Springs IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
+harviestoun_brewery-old_engine_oil_special_reserve_aged_in_malt_whisky_casks,0,0,244749434881,"{""name"":""Old Engine Oil Special Reserve (aged in malt whisky casks)"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harviestoun_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+lion_brewery_inc,0,0,244860846080,"{""name"":""Lion Brewery Inc."",""city"":""Wilkes Barre"",""state"":""Pennsylvania"",""code"":""18705"",""country"":""United States"",""phone"":""(800) 233-8327"",""website"":""http://www.lionbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""With a proud brewing heritage dating back to 1905, The Lion Brewery merges rustic architecture with state-of-the-art brewing technology, a contrast typified by the gleaming stainless steel aging tanks that sit alongside the traditional copper brew kettle. Our brewing process utilizes the traditional English method of upward infusion mashing in our combination mash lauter tun to create lagers and ales inspired by old world values, but with modern quality and consistency. The staff at The Lion Brewery is dedicated to producing true handcrafted beers, made right here in our century-old Brewhouse. All of our premium beers are made using only the four basic ingredients allowed by the Reinheitsgebot, or German purity law. Under the skillful supervision of our Master Brewer, Leo Orlandini, each of our lagers and ales are brewed in small batches using only the finest hops and malts available to guarantee the highest quality and freshness. Each product we brew is an original recipe especially created to deliver a fuller flavor than ordinary beers, yet with an approachable style and character. As a result, our beers have garnered numerous medals from the Great American Beer Festival and the World Beer Championships in recent years."",""address"":[""700 North Pennsylvania Blvd.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2557,""lon"":-75.8583}}",1,9,1
+granite_city_food_brewery_saint_cloud-pride_of_pilsen,0,0,244747468800,"{""name"":""Pride of Pilsen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+thirsty_dog_brewing-labrador_lager,0,0,245117091842,"{""name"":""Labrador Lager"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Traditional German Lager brewed with all German grain & yeast. Very drinkable."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+brouwerij_boon-geuze_boon,0,0,244481720321,"{""name"":""Geuze Boon"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_boon"",""updated"":""2010-07-22 20:00:20"",""description"":""Geuze, a mixture of old and young Lambic. The young Lambic is added to cause a refermentation in the bottle making for a delightfully sparkling and dry beer that has been likened, in all seriousness, to Champagne."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,19,1
+t_bonz_gill_grill_and_brewery-winterfest,0,0,245116764160,"{""name"":""Winterfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
+brewpub_on_the_green,0,0,244481130497,"{""name"":""Brewpub-on-the-Green"",""city"":""Fremont"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.5483,""lon"":-121.989}}",1,18,1
+lancaster_brewing_co-lancaster_hefe_weizen,0,0,244745961472,"{""name"":""Lancaster Hefe Weizen"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Light and refreshing! This very bubbly Munich style weizen beer is highlighted by a spicy, banana finish.\r\n\r\nAvailable at the Brewery from May - October"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,28,1
+radeberger_exportbierbrauerei-pilsener,0,0,244982480896,"{""name"":""Pilsener"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""radeberger_exportbierbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,5,1
+terrapin_beer_company-big_hoppy_monster,0,0,245098872833,"{""name"":""Big Hoppy Monster"",""abv"":8.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This mammoth imperial red ale leads with a tantalizing hop aroma that is quickly complemented by an enormous malt backbone & finished with a multitude of hoppy goodness."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
+green_bay_brewing-hinterland_packerland_pilsner,0,0,244756250624,"{""name"":""Hinterland Packerland Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+la_jolla_brewing,0,0,244755464195,"{""name"":""La Jolla Brewing"",""city"":""La Jolla"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.8575,""lon"":-117.876}}",1,52,1
+iron_city_brewing_co-augustiner,0,0,244738097154,"{""name"":""Augustiner"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Augustiner is a premium amber lager with a smooth, full-bodied flavor. From the rich copper color to the subtle caramel taste and clean finish, it’s brewed to please the beer drinker who appreciates the best. This distinctive, well-balanced brew is quickly becoming Pittsburgh’s most talked-about beer. Upgrade to Augustiner!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+brewery_corsendonk-monk_brown_ale,0,0,244494958592,"{""name"":""Monk Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brewery_corsendonk"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+edelweissbrauerei_farny-kristall_weizen,0,0,244611547136,"{""name"":""Kristall-Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""edelweissbrauerei_farny"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+bulmer_cider,0,0,244498366465,"{""name"":""Bulmer Cider"",""city"":""Hereford"",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.056,""lon"":-2.7175}}",1,57,1
+spring_house_brewing_company-beyond_the_gates_double_ipa,0,0,245097496576,"{""name"":""Beyond The Gates Double IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is for those of you who have been enjoying Seven Gates Pale Ale, and are ready for that next step. Beyond the Gates Double IPA is a highly hopped brew featuring plenty of Cascade and Columbus hops. These varieties give Beyond the Gates a floral citrus aroma, and pack plenty of hopped up flavor into this full-bodied ale, which is coming in @ 7.5 ABV. Let us take you Beyond the Gates, and you'll never look back!"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,1,1
+flensburger_brauerei-pilsener,0,0,244631076866,"{""name"":""Pilsener"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flensburger_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+jt_whitney_s_brewpub_and_eatery-frozen_tundra,0,0,244738621441,"{""name"":""Frozen Tundra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
+wild_goose_brewery_llc-wild_goose_pumpkin_patch,0,0,245750300674,"{""name"":""Wild Goose Pumpkin Patch"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_goose_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Fall Seasonal, Pumpkin Patch Ale, is the perfect beer for an autumn night. Pumpkin Patch pours a hazy orange with frothy, ivory colored head. The nose immediately conjures images of Grandma baking pumpkin pie with notes of nutmeg, cinnamon and ginger. Medium body and mild carbonation yield a spicy, pumpkin flavor - from the 300 lbs. of pumpkin we use to brew this unique beer."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,46,1
+the_alchemist-mortal_sin,0,0,245115453441,"{""name"":""Mortal Sin"",""abv"":6.66,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This I.P.A. is so rich and delicious that you'll need to confess after drinking one! Generously dry-hopped for your olefactory pleasure."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,40,1
+coopers_brewery-coopers_premium_lager,0,0,244488273920,"{""name"":""Coopers Premium Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coopers Premium Lager is quite different to the famous Coopers ales. This lager produces a refreshing flavour with a good balance of malt and hop characters and is brewed using no sugar. With its subtle fruity esters and light golden colour, combined with a judicious blend of Pride of Ringwood and Saaz hops. This produces a Lager with a crisp malty full flavour."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+climax_brewing_copmany-climax_helles,0,0,244488667137,"{""name"":""Climax Helles"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""The Hoffmann Helles (pronounced Hell-es), which is German for \""bright\"" is a pleasant and easy to drink summer beer with a bready/grainy taste."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,35,1
+flossmoor_station_brewery-el_diablo_tripel,0,0,244622426114,"{""name"":""El Diablo Tripel"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+mountain_sun_pub_brewery-chazz_cat_rye,0,0,244860649474,"{""name"":""Chazz Cat Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mountain_sun_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+leinenkugel_s_ballyard_brewery,0,0,244736983041,"{""name"":""Leinenkugel's Ballyard Brewery"",""city"":""Phoenix"",""state"":""Arizona"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.4484,""lon"":-112.074}}",1,7,1
+hook_norton_brewery-generation,0,0,244739801090,"{""name"":""Generation"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hook_norton_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+gasthof_brauerei_zum_frohsinn-hell,0,0,244631863296,"{""name"":""Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+rock_bottom_restaurant_brewery_minneapolis-saison_goux,0,0,244981170179,"{""name"":""Saison Goux"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+red_kettle_brewing-pale,0,0,245000568833,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_kettle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+simmerberg_brusttt_und_taferne-dunkles_lager,0,0,244980645890,"{""name"":""Dunkles Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+magnolia_pub_and_brewery-blue_bell_bitter,0,0,244879851520,"{""name"":""Blue Bell Bitter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Diacetyl dominated cask bitter."",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,56,1
+bull_bush_pub_brewery-cream,0,0,244495613952,"{""name"":""Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+flossmoor_station_brewery,0,0,244613775360,"{""name"":""Flossmoor Station Brewery"",""city"":""Flossmoor"",""state"":""Illinois"",""code"":""60422"",""country"":""United States"",""phone"":""1-708-957-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1035 Sterling Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5433,""lon"":-87.6789}}",1,17,1
+hoppy_brewing_company-hoppy_claus_holiday_ale,0,0,244750221312,"{""name"":""Hoppy Claus Holiday Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Holiday Ale is a “special” version of our flagship product - Hoppy Face™ Amber Ale; only bigger for you to enjoy during this holiday season!!! Characterized by its distinctive hop aroma and rich, ruby color, Hoppy Claus redefines the way you think about a holiday ale. Hoppy Claus uses only the finest two row malted barley, hops grown in the great Pacific Northwest, and some secret spices that we would love to tell you about; but are unable to do so. This combination results in a clean, crisp, and refreshingly unique hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,39,1
+pennichuck_brewing_company-feuerwehrmann_schwarzbier,0,0,244981825536,"{""name"":""Feuerwehrmann Schwarzbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,4,1
+rahr_sons_brewing_company-bourbon_barrel_aged_winter_warmer,0,0,244982808577,"{""name"":""Bourbon Barrel Aged Winter Warmer"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a special edition of Rahr's Winter Warmer. This fine English ale has been aged in freshly emptied Kentucky oak whisky barrels. The barrel aging has given this already big ale a beautiful whiskey nose along with notes of vanilla and oak. A perfect ale for sipping around a winter fire."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,6,1
+flying_bison_brewing-sky_pilot_scotch_ale,0,0,244629700608,"{""name"":""Sky Pilot Scotch Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""With a coppery-amber color and a full malty body with flavors of nuts and toffee. The English hops lend enough “spice” to leave a very drinkable finish to this comfort food of a beer. Available on draft from November to May."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,54,1
+unibroue-blanche_de_chambly,0,0,245116370944,"{""name"":""Blanche de Chambly"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""(White of Chambly) was the first bottle\r\nrefermented ale produced by Unibroue. It is\r\nbrewed from a blend of pale barley malt,\r\nwheat malt and unmalted wheat, to which\r\nwe blend selected spices and hops.\r\n \r\nBlanche de Chambly is only partially filtered,\r\nretaining its natural cloud of yeast that is\r\ncharacteristic of the original white ales\r\nbrewed during the Middle Ages.\r\n\r\nWe recommend this remarkably refreshing"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,42,1
+greenshields_brewery_and_pub-stout,0,0,244740718593,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greenshields_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
+kuhnhenn_brewing-120_shilling_scotch_ale,0,0,244740456449,"{""name"":""120 Shilling Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kuhnhenn_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,15,1
+kentucky_hemp_beer_company,0,0,244739473409,"{""name"":""Kentucky Hemp Beer Company"",""city"":""Lexington"",""state"":""Kentucky"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.0317,""lon"":-84.4951}}",1,13,1
+rail_house_restaurant_and_brewpub-raspberry_pilsner,0,0,244997619712,"{""name"":""Raspberry Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+tui_brewery,0,0,245118402560,"{""name"":""Tui Brewery"",""city"":""Mangatainoka"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(06)-3767549"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""State Highway 2""]}",1,47,1
+dockside_brewing,0,0,244619345920,"{""name"":""Dockside Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-685-7070"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1253 Johnston Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2698,""lon"":-123.132}}",1,31,1
+heavenly_daze_brewery_and_grill-heavenly_hefeweizen,0,0,244749500416,"{""name"":""Heavenly Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
+logjam_microbrewery-swede_saw_red_ale,0,0,244860911616,"{""name"":""Swede Saw Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""logjam_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+great_lakes_brewing,0,0,244747468801,"{""name"":""Great Lakes Brewing"",""city"":""Cleveland"",""state"":""Ohio"",""code"":""44113"",""country"":""United States"",""phone"":""1-216-771-4404"",""website"":""http://www.greatlakesbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2516 Market Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.4844,""lon"":-81.7042}}",1,33,1
+traffic_jam_and_snug,0,0,245117157376,"{""name"":""Traffic Jam and Snug"",""city"":""Detroit"",""state"":""Michigan"",""code"":""48201"",""country"":""United States"",""phone"":""313-831-9470"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4268 Second Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.351,""lon"":-83.0665}}",1,44,1
+brouwerij_der_sint_benedictusabdij_de_achelse_kluis-achel_bruin_8,0,0,244481720322,"{""name"":""Achel Bruin 8°"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_der_sint_benedictusabdij_de_achelse_kluis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,19,1
+taylor_brewing-dark_satin,0,0,245116764161,"{""name"":""Dark Satin"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,43,1
+brouwerij_huyghe-duinen_dubbel,0,0,244481196032,"{""name"":""Duinen Dubbel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+left_hand_brewing_company-snow_bound_winter_ale,0,0,244745961473,"{""name"":""Snow Bound Winter Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+rahr_sons_brewing_company-buffalo_butt,0,0,244982480897,"{""name"":""Buffalo Butt"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rahr's Buffalo Butt is a smooth, medium-bodied amber lager. Notes of caramel with a sound malt character. Nice hop finish, it's as smooth as a baby buffalo's...!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
+the_alchemist-holy_moly,0,0,245098938368,"{""name"":""Holy Moly"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,3,1
+green_mountain_beverage-woodchuck_dark_and_dry_draft_cider,0,0,244756250625,"{""name"":""Woodchuck Dark and Dry Draft Cider"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,55,1
+lake_superior_brewing-sir_duluth_oatmeal_stout,0,0,244755529728,"{""name"":""Sir Duluth Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
+john_martin_sa-martin_s_pale_ale,0,0,244738162688,"{""name"":""Martin's Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_martin_sa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,10,1
+brouwerij_de_dolle_brouwers-arabier,0,0,244494958593,"{""name"":""Arabier"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_de_dolle_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""An arabier is a pure malt beer 8°vol/alc brewed with flower Nugget-hops from Poperinge. It has the special dry-hopping taste and aroma, so appreciated by beer lovers all over the world. It is one of the two main beers from De Dolle Brouwers throughout the year. Aging time is limited due to the fact that hop bitterness is declining with the time. Store arabier cool and dark and serve cool at 10°C. Cheers!"",""style"":""Belgian-Style Pale Strong Ale"",""category"":""Belgian and French Ale""}",1,49,1
+elk_grove_brewery_restaurant,0,0,244611547137,"{""name"":""Elk Grove Brewery & Restaurant"",""city"":""Elk Grove"",""state"":""California"",""code"":""95624"",""country"":""United States"",""phone"":""1-916-685-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9085 Elk Grove Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.4093,""lon"":-121.363}}",1,12,1
+c_b_potts_of_cheyenne,0,0,244498366466,"{""name"":""C.B. & Potts of Cheyenne"",""city"":""Cheyenne"",""state"":""Wyoming"",""code"":""82001"",""country"":""United States"",""phone"":""1-307-632-8636"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1650 Dell Range Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.1607,""lon"":-104.802}}",1,57,1
+steinfels_back_brau,0,0,245097562112,"{""name"":""Steinfels Back & Brau"",""city"":""Zrich"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.369,""lon"":8.538}}",1,1,1
+full_sail_brewing_1-ltd_02_lager,0,0,244631142400,"{""name"":""LTD 02 Lager"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""full_sail_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
+keg_microbrewery_restaurant-wheat,0,0,244738621442,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""keg_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
+wilmington_brewing,0,0,245750366208,"{""name"":""Wilmington Brewing"",""city"":""Wilmington"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":34.2257,""lon"":-77.9447}}",1,46,1
+the_bruery-saison_rue,0,0,245115518976,"{""name"":""Saison Rue"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Saison Rue is an unfiltered, bottle conditioned, Belgian/French-style farmhouse ale. This is a beer of subtlety and complexity, with malted rye, spicy, fruity yeast notes, biscuit-like malt backbone, and a slight citrus hop character. With age, this beer will dry out and will become more complex with rustic notes of leather and earth from the contribution of a wild yeast strain. Being a Saison, Saison Rue is ambiguous unto itself as it is a different beer when fresh and when aged. We hope you enjoy it in all of its incarnations."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,40,1
+coors_brewing_golden_brewery-honey_moon_summer_ale,0,0,244488273921,"{""name"":""Honey Moon Summer Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coors_brewing_golden_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Gold Medal-winning Honey Moon Summer Ale is a classic summer ale made even better with real clover honey, fresh orange peel and both pale and white wheat malts. Proff that brewing the perfect summer ale is a true art."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
+coeur_d_alene_brewing_company-huckleberry_ale,0,0,244488732672,"{""name"":""Huckleberry Ale"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coeur_d_alene_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,35,1
+flying_dog_brewery-doggie_style_ale,0,0,244622491648,"{""name"":""Doggie Style Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+mudshark_brewing-skyline_stout,0,0,244860715008,"{""name"":""Skyline Stout"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Watch Your Pint Cascade From Brown to Black, As This Chocolaty Settles, Creamy, Dark, Not Too Bitter Finish""}",1,8,1
+limburg_beer_company-witbier,0,0,244859994112,"{""name"":""Witbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""limburg_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+hop_back_brewery-pickled_santa,0,0,244739866624,"{""name"":""Pickled Santa"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+george_gale_company,0,0,244631863297,"{""name"":""George Gale & Company"",""city"":""Portsmouth"",""state"":""Hampshire"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.7989,""lon"":-1.0912}}",1,59,1
+rock_bottom_restaurant_brewery_minneapolis,0,0,244981235712,"{""name"":""Rock Bottom Restaurant & Brewery - Minneapolis"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55402"",""country"":""United States"",""phone"":""1-612-332-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""800 LaSalle Plaza""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9765,""lon"":-93.2747}}",1,2,1
+redhook_ale_brewery-esb,0,0,245000568834,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+six_rivers_brewery-fat_bastard_barleywine_discontinued,0,0,244980711424,"{""name"":""Fat Bastard Barleywine (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""six_rivers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+marine_pub_brewhouse-premium_gold,0,0,244879851521,"{""name"":""Premium Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marine_pub_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
+bull_bush_pub_brewery-kolsch,0,0,244495613953,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bull_bush_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+flyers_restraunt_and_brewery,0,0,244613840896,"{""name"":""Flyers Restraunt and Brewery"",""city"":""Oak Harbor"",""state"":""Washington"",""code"":""98277"",""country"":""United States"",""phone"":""360.675.5858"",""website"":""http://www.eatatflyers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""32295 State Route 20""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.2992,""lon"":-122.652}}",1,17,1
+hops_grillhouse_brewery_cherry_creek-hoptoberfest,0,0,244750221313,"{""name"":""Hoptoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_grillhouse_brewery_cherry_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,39,1
+portland_brewing-benchmark_old_ale,0,0,244981891072,"{""name"":""Benchmark Old Ale"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,4,1
+river_west_brewing-windy_city_pilsner,0,0,244982874112,"{""name"":""Windy City Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,6,1
+frontwaters_restaurant_and_brewing-port_clinton_porter,0,0,244629700609,"{""name"":""Port Clinton Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""frontwaters_restaurant_and_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
+voodoo_brewing_co_llc-white_magick_of_the_sun,0,0,245749645312,"{""name"":""White Magick of the Sun"",""abv"":6.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This Wheat ale is made with a little Voodoo Twist. We use our house Belgian Ale yeast and add the average unmalted wheat, wheat, barley,raw oats, malted rye and just add more of each. Hopped evenly and spiced with coriander, bitter and sweet orange peel, juniper berries, 12 varieties of peppercorns,lemon grass and caraway. About 6.75% alc by vol. \r\n\r\nBottle Conditioned and Refermented. NOT A WIT BIER!!! Just stuff we like in beer that goes great with food. \r\n\r\nThis beer is to be the answer to those hot summer days. Blows away carbonated water!!!!!"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
+harmon_brewing_company-point_defiance_ipa,0,0,244740718594,"{""name"":""Point Defiance IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Four types of malted barley, including a specially roasted Belgium barley make up the grain bill. Centennial, Sterling, and Amarillo hops provide the big hoppy flavor. Double dry-hopped, once with raw Centennial hops and once with raw Amarillo hops present this beer's huge hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
+kulmbacher_brauerei_ag-eku_pils,0,0,244740456450,"{""name"":""EKU Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+labatt_ontario_breweries-labatt_ice,0,0,244739538944,"{""name"":""Labatt Ice"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Ice, introduced in 1993, was the world’s first Ice-Brewed™ beer and the most successful new brand introduction in Canadian brewing history. Labatt Ice is a fully fermented beer that is allowed to mature at cold temperatures. Labatt Ice uses selected North American hops to complement its smooth, full flavour."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+red_oak_brewery-battlefield_bock,0,0,244997619713,"{""name"":""Battlefield Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_oak_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Battlefield Bock is a smooth and creamy Bavarian Style Bock Lager. It is brewed with our proprietary blend of Bavarian Dark Roasted Malts giving it a distinct taste with hints of coffee and chocolate. We add Noble Czech Saaz Hops to balance the flavor of this rich full bodied lager. Battlefield Bock is slow cold aged for a minimum of 8 weeks."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,41,1
+twin_rivers_brewing-saison,0,0,245118402561,"{""name"":""Saison"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+dogfish_head_craft_brewery-shelter_pale_ale,0,0,244619411456,"{""name"":""Shelter Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our original brew and our most approachable beer. It's brewed with a premium barley and whole-leaf Glacial & Warrior hops. Our Shelter Pale Ale has a fine malt backbone and a slightly nutty flavor. A versatile, quaffable beer. The Shelter Pale Ale is available exclusively in the Mid-Atlantic region."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+herkimer_pub_brewery-high_point_dunkel,0,0,244749500417,"{""name"":""High Point Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""herkimer_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+mad_anthony_brewing-big_daddy_brown,0,0,244860977152,"{""name"":""Big Daddy Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
+green_bay_brewing-hinterland_mild_cask_ale,0,0,244747468802,"{""name"":""Hinterland Mild Cask Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,33,1
+two_brothers_brewing-the_bitter_end_pale_ale,0,0,245117157377,"{""name"":""The Bitter End Pale Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Very drinkable light golden ale. Extremely refreshing hop finish"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,44,1
+browar_warka,0,0,244481785856,"{""name"":""Browar Warka"",""city"":""Warka"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""+48(0-48) 666 11 11"",""website"":""http://www.warka.com.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""ul. Gośniewska 65""]}",1,19,1
+terrapin_beer_company-india_style_brown_ale,0,0,245116829696,"{""name"":""India Style Brown Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Terrapin India Style Brown Ale is a head on collision between a hoppy, west coast IPA and a complex, malty brown ale. Brewed with 5 varieties of hops and 7 different malts, this hybrid style represents the best of both worlds."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,43,1
+brouwerij_rodenbach-rodenbach,0,0,244481196033,"{""name"":""Rodenbach"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_rodenbach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+maclay_and_co-wallace,0,0,244868513792,"{""name"":""Wallace"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+revolution_brewing_llc-iron_fist_pale_ale,0,0,244982480898,"{""name"":""Iron Fist Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber pale ale dry hopped with a blend of American hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
+the_blind_bat_brewery_llc-harborfields_hefeweizen,0,0,245098938369,"{""name"":""Harborfields HefeWeizen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Sometimes it's good to keep it simple. \r\n\r\nHarborfields HefeWeizen is modeled after the German classic, but meant to be available fresh (like you would enjoy if you were in Germany). Shipping over long distances is not always a friend to beer. \r\n\r\nNamed for the Centerport-Greenlawn area of Long Island that is home to the Blind Bat Brewery, Harborfields Hefeweizen goes great with fish, chicken, or a summer salad. Some even like it with brunch! (Please enjoy your waffles responsibly.)"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,3,1
+grizzly_bay_brewing-weizen,0,0,244756316160,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+lakefront_brewery-holiday_spice_lager_beer,0,0,244755529729,"{""name"":""Holiday Spice Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+kaiserdom_privatbrauerei_bamberg,0,0,244738162689,"{""name"":""Kaiserdom Privatbrauerei Bamberg"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-60450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Breitckerstrae 9""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.9043,""lon"":10.8524}}",1,10,1
+brouwerij_huyghe-delirium_nocturnum,0,0,244494958594,"{""name"":""Delirium Nocturnum"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_huyghe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,49,1
+elysian_brewing_tangletown-warminster_special_bitter,0,0,244611612672,"{""name"":""Warminster Special Bitter"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elysian_brewing_tangletown"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+capital_brewery-capital_bavarian_lager,0,0,244498432000,"{""name"":""Capital Bavarian Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Munich Helles style Lager""}",1,57,1
+stone_brewing_co-double_bastard_ale,0,0,245097562113,"{""name"":""Double Bastard Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,1,1
+gatz_brauhaus-alt,0,0,244631142401,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gatz_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
+kiuchi_shuzou_goushi_kaisya,0,0,244738686976,"{""name"":""Kiuchi Shuzou Goushi Kaisya"",""city"":""Ibaraki"",""state"":""Kanto"",""code"":"""",""country"":""Japan"",""phone"":""81-029-298-0105"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1257, Kounsosu""]}",1,11,1
+yaletown_brewing-yippee_ipa,0,0,245750366209,"{""name"":""Yippee IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yaletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,46,1
+thirsty_dog_brewing-nut_brown_ale,0,0,245115518977,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,40,1
+court_avenue_brewing-topping_pale_ale,0,0,244488273922,"{""name"":""Topping Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""court_avenue_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
+deschutes_brewery-bachelor_bitter,0,0,244621246464,"{""name"":""Bachelor Bitter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deschutes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""\""The Traditional British Pint\"" lives on at Deschutes Brewery & Public House. One of the original three packaged beers, it is still available year-round, but only at our pub. Coppery in color and robust in flavor, Bachelor Bitter will leave your taste buds humming. Galena, Willamette and Kent Golding hops create fantastic hop bitterness, aroma and flavor.\r\n\r\nBachelor Bitter also kicked off the Bond Street Series that launched in April 2005. The Bond Street Series is a specialty line of beers available in 22-ounce bottles."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,35,1
+four_peaks_brewing-the_raj_india_pale_ale,0,0,244622491649,"{""name"":""The Raj India Pale Ale"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong India Pale Ale that is marked by intense hop flavor and high hop bitterness. This style of beer needed the high hop and alcohol to survive the trip around Africa. Medium to light body and very bitter. \r\n\r\nAlcohol content approximately 6.9% by volume (ALWAYS ON TAP!!)"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,37,1
+nebraska_brewing_company-red_sled_winter_ale,0,0,244860715009,"{""name"":""Red Sled Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+loaf_and_stein_brewing-nut_brown,0,0,244859994113,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""loaf_and_stein_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
+iron_springs_pub_brewery,0,0,244739866625,"{""name"":""Iron Springs Pub & Brewery"",""city"":""Fairfax"",""state"":""California"",""code"":""94930"",""country"":""United States"",""phone"":""1-415-485-1005"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""765 Center Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.986,""lon"":-122.584}}",1,14,1
+gray_brewing-pre_prohibition_lager,0,0,244757757952,"{""name"":""Pre-Prohibition Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+rocky_river_brewing-artisan_saison,0,0,244981235713,"{""name"":""Artisan Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+river_horse_brewing_company-river_horse_lager,0,0,245000568835,"{""name"":""River Horse Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We mill the choicest two row barley malt in our 100 year old mill room for this all natural, unfiltered Lager. Lightly hopped, fermented slowly. River Horse Lager gets plenty of quality time with us before we pass it on to you."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+slab_city_brewing-high_noon_wheat_beer,0,0,244980711425,"{""name"":""High Noon Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,0,1
+mash_house_restaurant_and_brewery,0,0,244879917056,"{""name"":""Mash House Restaurant and Brewery"",""city"":""Fayetteville"",""state"":""North Carolina"",""code"":""28303"",""country"":""United States"",""phone"":""1-910-867-9223"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4150 Sycamore Dairy Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.0707,""lon"":-78.9545}}",1,56,1
+bullfrog_brewery-hands_off_maibock,0,0,244495613954,"{""name"":""Hands Off Maibock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""bullfrog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A springtime favorite, this traditional German Maibock (my-bock) is golden in color with a rich maltiness and a long, spicy finish."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,50,1
+flying_dog_brewery-heller_hound_bock_beer,0,0,244613840897,"{""name"":""Heller Hound Bock Beer"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,17,1
+hp_bulmer-woodpecker,0,0,244750221314,"{""name"":""Woodpecker"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hp_bulmer"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+privatbrauerei_frankenheim-alt,0,0,244981891073,"{""name"":""Alt"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_frankenheim"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,4,1
+rock_bottom_restaurant_brewery_minneapolis-itasca_extra_pale_ale,0,0,244982874113,"{""name"":""Itasca Extra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,6,1
+great_bear_brewing-pioneer_peak_porter,0,0,244755857408,"{""name"":""Pioneer Peak Porter"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_bear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
+wdi_bru_huus,0,0,245749645313,"{""name"":""Wdi-Bru-Huus"",""city"":""Wdenswil"",""state"":"""",""code"":"""",""country"":""Switzerland"",""phone"":""41-01-783-93-92"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Florhofstrasse 13""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.2311,""lon"":8.6691}}",1,42,1
+heineken_international-premium_light_lager_beer,0,0,244740784128,"{""name"":""Premium Light Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_international"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+kulmbacher_brauerei_ag-premium_pils_edelherb,0,0,244740521984,"{""name"":""Premium Pils Edelherb"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+lagunitas_brewing_company-sirius,0,0,244739538945,"{""name"":""Sirius"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,13,1
+rogue_ales-tracktown_ipa,0,0,244997685248,"{""name"":""Tracktown IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Offering a hop-heads paradise, this unfiltered Northwest-Style India Pale Ale introduces a big floral hop character to the aroma, flavor and finish. Hops, Hops, Hops from front to back but nicely offset with a malty richness that prevents this ale from being overbearing. Tracktown is made from 100% Floor Malted Maris Otter, 100% Northwest Amarillo Hops, Free Range Coastal Water, and absolutely No Chemicals, Additives, or Preservatives."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,41,1
+uinta_brewing_compnay-king_s_peak_porter,0,0,245118402562,"{""name"":""King's Peak Porter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uinta_brewing_compnay"",""updated"":""2010-07-22 20:00:20"",""description"":""King's Peak Porter is deep mahogany in color and has a full-bodied malty flavor. Hints of chocolate malt are easily detectable.\r\n\r\nTopped with a tan creamy head, this beer has a definite hop character that nicely balances its mild bitterness. \r\n\r\nKing's Peak is the highest point in the state of Utah at 13,528 feet, located in northeastern Utah in the Uinta Mountains."",""style"":""Porter"",""category"":""Irish Ale""}",1,47,1
+dublin_brewing-1798_revolution,0,0,244619411457,"{""name"":""1798 Revolution"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dublin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,31,1
+hofbru_kaltenhausen_salzachtal,0,0,244749565952,"{""name"":""Hofbru Kaltenhausen Salzachtal"",""city"":""Hallein"",""state"":"""",""code"":"""",""country"":""Austria"",""phone"":""43-0-62-45/795-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Salzachtal Bundesstrae Nord 37""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6942,""lon"":13.0784}}",1,38,1
+maisel_bru-eine_bamberger_weisse_hell,0,0,244860977153,"{""name"":""Eine Bamberger Weisse Hell"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maisel_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,9,1
+grumpy_troll_restaurant_and_brewery-how_now,0,0,244747534336,"{""name"":""How Now"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
+valley_brewing_company-fat_city_ale,0,0,245117222912,"{""name"":""Fat City Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Fat City Ale is the newest release from Valley Brewing Company. Fat City Ale is produced using only the finest 2-Row Barley and fresh Hops resulting in a crisp and refreshing flavor."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,44,1
+california_cider_company,0,0,244481785857,"{""name"":""California Cider Company"",""city"":""San Rafael"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.9735,""lon"":-122.531}}",1,19,1
+the_cambridge_house-abijah_rowe_ipa,0,0,245116895232,"{""name"":""Abijah Rowe IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditional English India Pale Ale brewed with all English malt & hopped with a blend of English & American hops. High in strength, bitterness & aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+brouwerij_st_bernardus-watou_tripel,0,0,244481196034,"{""name"":""Watou Tripel"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_st_bernardus"",""updated"":""2010-07-22 20:00:20"",""description"":""The flavour of this beer is pleasantly soft and is characterized by a delicate bitterness where the balance between malt and hop is based upon a fruity orange taste with a straight fresh after taste (7.5% alcohol content)"",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,18,1
+magnolia_pub_and_brewery-stout_of_circumstance,0,0,244868579328,"{""name"":""Stout of Circumstance"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,28,1
+richbrau_brewing_company-richbrau_oatmeal_stout,0,0,244982546432,"{""name"":""Richbrau Oatmeal Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""If you don’t do dark beers, do yourself a favor and cancel that policy for this Oatmeal Stout. Keywords: Sweet Lusciousness; Roasty chocolate. Served on a nitro tap."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,5,1
+titletown_brewing-johnny_blood_mcnally_irish_red,0,0,245099003904,"{""name"":""Johnny \""Blood\"" McNally Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,3,1
+hair_of_the_dog_brewing-ruth,0,0,244756316161,"{""name"":""Ruth"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+long_trail_brewing_co-double_bag_ale,0,0,244878016512,"{""name"":""Double Bag Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This malty, full-bodied double alt is also know as \""Stickebier\"" - German slang for \""secret brew\"". Double Bag was originally offered only in our brewery taproom as a special treat to our visitors."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,52,1
+karl_strauss_brewery_gardens_sorrento_mesa-star_of_india_pale_ale,0,0,244738162690,"{""name"":""Star of India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+brouwerij_kerkom-winterkoninkse,0,0,244495024128,"{""name"":""Winterkoninkse"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_kerkom"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+far_west_ireland_brewing-three_threads_porter,0,0,244611612673,"{""name"":""Three Threads Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""far_west_ireland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,12,1
+carlyle_brewing-scottish_ale,0,0,244498432001,"{""name"":""Scottish Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carlyle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,57,1
+summit_brewing-india_pale_ale,0,0,245097562114,"{""name"":""India Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""First brewed with an extra dose of hops to help it survive the long journey from England to beer lovers in India, India Pale Ale is now brewed just for the pleasure of its distinctive hoppy flavor."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
+glacier_brewhouse,0,0,244631142402,"{""name"":""Glacier Brewhouse"",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99501"",""country"":""United States"",""phone"":""(907) 274-2739"",""website"":""http://www.glacierbrewhouse.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""737 W. 5th Ave., Suite 110""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":61.2179,""lon"":-149.896}}",1,58,1
+la_jolla_brewing-blitzen,0,0,244738686977,"{""name"":""Blitzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+yazoo_brewing-hefeweizen,0,0,245750366210,"{""name"":""Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An authentic example of a Bavarian Hefeweizen. “Hefe” means cloudy or yeasty and “weizen” means wheat. This beer is made with mostly wheat and uses a true Hefeweizen yeast that gives it a fruity, banana aroma with just a hint of cloves. The tart finish makes this the perfect summer beer.\r\n\r\nFood pairings: Almost anything goes well with Hefeweizen but it especially shines when paired with salads and omelets.\r\n\r\nOG: 12.0 Plato\r\nFG: 2.3 Plato\r\nIBUs: 13\r\nSRM: 3\r\n5.0% abv"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,46,1
+timmermans-timmermans_peche,0,0,245115518978,"{""name"":""Timmermans Pêche"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,40,1
+court_avenue_brewing,0,0,244488339456,"{""name"":""Court Avenue Brewing"",""city"":""Des Moines"",""state"":""Iowa"",""code"":""50309"",""country"":""United States"",""phone"":""1-515-282-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""309 Court Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.5855,""lon"":-93.621}}",1,34,1
+dick_s_brewing-best_bitter,0,0,244621312000,"{""name"":""Best Bitter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+fratellos_restaurant_and_brewery-nut_brown_ale,0,0,244622557184,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fratellos_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
+new_glarus_brewing_company-copper_kettle_weiss,0,0,244860715010,"{""name"":""Copper Kettle Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,8,1
+long_trail_brewing_co-traditional_ipa,0,0,244860059648,"{""name"":""Traditional IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The first IPAs were unfiltered and featured extra hops and higher strength as a preservative for the long trip from England to the colony of India. Our Traditional IPA is naturally carbonated, dry-hopped & unfiltered like the old days."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
+jolly_pumpkin_artisan_ales-fuego_del_otono,0,0,244739866626,"{""name"":""Fuego del Otono"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""To catch a bit of soft radiance in each bottle, we wait for fall colors to begin their bright and fleeting glow before brewing this wonderful ale under their autumn fire. Gentle amber malt blend smooth caramel notes, gently lapping against a shore of distant forgotten spice. A beer to sip, contemplate and enjoy."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
+great_divide_brewing-hercules_double_ipa,0,0,244757757953,"{""name"":""Hercules Double IPA"",""abv"":9.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hoppier, maltier and with more alcohol than a standard IPA, Hercules Double IPA definitely is not for the faint of heart. Hercules Double IPA is, however, an elixir fit for the gods. A brash but creamy wonder, Hercules pours a deep orange-coppery color, forming substantial lace in the glass. Hercules Double IPA delivers a huge amount of piney, floral, and citrusy hop aroma and flavor from start to finish. A hefty backbone of nutty, toffee-like malt character balances Hercules’ aggressive, punchy hop profile."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+rogue_ales-dry_hopped_st_rogue_red_ale,0,0,244981235714,"{""name"":""Dry Hopped St. Rogue Red Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The Malt Advocate described Saint Rogue Red as \""An ale with great character and plenty of hops to satisfy. Full aromatic punch of caramel, citrus fruit and melon, with underlying fresh earth tones. Sweet caramel notes up front are quickly taken over by an array of fruit and hops bitterness that lingers into the night. A more adventurous ale than most.\""\r\n\r\nReddish copper in color, a roasty malt flavor with a hoppy sprucy finish. Saint Rogue Red is made with two-row Harrington, Klages and Munich malts, along with Hugh Baird 30-37, 13-17 Carastan, and Crystal 70-80 malts (44.4% speciality grains .39 lbs grain per bottle); Chinook and Centennial hops. Saint Rogue Red is available in a 22-ounce bottle, 12-ounce 6-pack (new for 2005), and on draft. Saint Rogue Red Dry Hopped-a draft only variation with raw Centennial hops added to the keg, giving the beer an increased hop finish and intense hop aroma."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,2,1
+river_west_brewing,0,0,245000634368,"{""name"":""River West Brewing"",""city"":""Chicago"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.85,""lon"":-87.6501}}",1,48,1
+st_austell_brewery-hsd_hicks_special_draught,0,0,245097365504,"{""name"":""HSD Hicks Special Draught"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_austell_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""St Austell’s most legendary ale, HSD is fullbodied strong and Cornish, brimming with a kaleidoscope of flavours. Brewed with plenty of malt and lashings of English Fuggles and Golding hops, HSD is truly a classic ale of considerable depth and complexity. The real ale alternative to a well rounded premium red wine and simply superb with steaks and other red meat dishes."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,0,1
+mcmenamins_mill_creek-india_pale_ale,0,0,244879917057,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
+capital_brewery-capital_weizen_doppelbock,0,0,244495679488,"{""name"":""Capital Weizen Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,50,1
+flying_fish_brewing_company-hopfish_ipa,0,0,244613906432,"{""name"":""HopFish IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At the request of you hopheads, we produced this I.P.A. with a deep golden color, plenty of hop bitterness balanced by malt sweetness. Because of the extensive dry hopping, there's a floral and citrus hop finish. It's then lightly filtered to maintain the appropriate body and flavor. The beer features a combination of American, English and German malts to balance the large amount of hops. The HopFish also uses three hop varieties at five different times and has been dry-hopped for two weeks with 22lbs of Nugget whole leaf hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
+idaho_brewing,0,0,244750286848,"{""name"":""Idaho Brewing"",""city"":""Idaho Falls"",""state"":""Idaho"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.4666,""lon"":-112.034}}",1,39,1
+pug_ryan_s_steakhouse_and_brewery-pallavicini_pilsner,0,0,244981956608,"{""name"":""Pallavicini Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pug_ryan_s_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+rogue_ales-hazelnut_brown_nectar,0,0,244982939648,"{""name"":""Hazelnut Brown Nectar"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""HazelNut Brown Nectar is a nutty twist to a traditional European Brown Ale. Dark brown in color with a hazelnut aroma, a rich nutty flavor and a smooth malty finish. Dedicated to the homebrewer in each of us--the homebrewer who inspired this creation is Chris Studach, a friend of Rogues resident wizard John Maier, who added a Northwest twist to the classic style by adding hazelnuts for the host homebrew at the 1993 American Homebrewers Association convention. Chris put the nut in nut brown!\r\n\r\nHazelnut Brown Nectar Ale is a blend of Great Western 2-row Pale, Munich, Hugh Baird Brown, Crystal 80 and Crystal 135, Carastan, and Beeston Pale Chocolate malts; hazelnut extract; Perle and Saaz hops. HazelNut Brown Nectar is available in a 22-ounce bottle, a special commemorative 3-litre bottle with ceramic swing-top, and on draft."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,6,1
+great_dane_pub_and_brewing_2-foxy_brown,0,0,244755922944,"{""name"":""Foxy Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
+weyerbacher_brewing_company-golf,0,0,245749710848,"{""name"":""Golf"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Brewer's Select Series, Golf is a fest-weisse hybrid or 'Festeweizen.' It will weigh in at 5.0% and is made with Munich, Wheat, and CaraVienna malts and Spalt hops."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,42,1
+high_falls_brewing-dundee_wheat_beer,0,0,244740784129,"{""name"":""Dundee Wheat Beer"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Senator Joseph McCarthy. The Hollow Earth Society. Members of the Spanish Inquisition. All convinced they were blessed with the gift of clarity. And proof that clarity might be overrated. \r\n\r\nSometimes, being unclear—and a little flexible—is a good thing. Like when you are looking for the perfect refreshment. Dundee Wheat Beer combines wheat and yeast into a refreshing hefeweizen-style brew. Unfiltered, so it is slightly cloudy and pleasantly unclear. \r\n\r\nSo the next time you’re convinced you’re right about what you’ve been drinking, give a little “unclarity” a try.\r\n\r\nAn American-style, unfiltered wheat beer. Pale straw in color with a light cloudiness from carefully selected wheat and yeast. Pleasant spicy malt aroma and a crisp hop finish."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,16,1
+labatt_ontario_breweries-canadian_ale,0,0,244740521985,"{""name"":""Canadian Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
+legacy_brewing_co,0,0,244739604480,"{""name"":""Legacy Brewing Co."",""city"":""Reading"",""state"":""Pennsylvania"",""code"":""19602"",""country"":""United States"",""phone"":""(610) 376-9996"",""website"":""http://www.legacybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Legacy Brewing Co. is committed to handcrafting unique, high quality beer by employing brewing techniques learned from European and American brewers. The complexity of flavors comes from a combination of high quality imported malts and our hopping methods which includes the use of whole flower hops. The Legacy team includes a creative collection of brewers, engineers, a microbiologist and our friends in the arts community; all with a passion for innovative products. Legacy...we brew pure pleasure!"",""address"":[""545 Canal Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.3256,""lon"":-75.9283}}",1,13,1
+s_a_damm-estrella_levante_clasica,0,0,244997685249,"{""name"":""Estrella Levante Clasica"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""s_a_damm"",""updated"":""2011-07-14 08:52:30"",""description"":"""",""style"":""Baltic-Style Porter"",""category"":""Other Lager""}",1,41,1
+upstream_brewing_old_market-grand_cru,0,0,245118402563,"{""name"":""Grand Cru"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+dubuque_brewing_and_bottling-wild_boar_wild_wheat,0,0,244619476992,"{""name"":""Wild Boar Wild Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dubuque_brewing_and_bottling"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+hoffbrau_steaks_brewery_2,0,0,244749565953,"{""name"":""Hoffbrau Steaks Brewery #2"",""city"":""Dallas"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.803,""lon"":-96.7699}}",1,38,1
+midnight_sun_brewing_co-mayhem_belgian_style_double_ipa,0,0,244861042688,"{""name"":""Mayhem Belgian-style Double IPA"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Chaotic yet hypnotic, Mayhem is a deliberate Double IPA, brewed and conditioned with a special Belgian yeast that contributes complexity and spice. Abundant American hops offer grapefruit, pine, must and mint, which play off the fullness and sweetness of pale malts then provide a biting yet enticing finish.\r\n\r\nMayhem Double IPA accents the complex spice combinations found in Thai, Indian, Cajun, Morrocan, Mexican and Southwest American cuisines as well as BBQ marinades, dry rubs and sauces.\r\n\r\nMayhem creates MAYHEM."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,9,1
+hops_grillhouse_brewery_cherry_creek,0,0,244747534337,"{""name"":""Hops Grillhouse & Brewery - Cherry Creek"",""city"":""Denver"",""state"":""Colorado"",""code"":""80206"",""country"":""United States"",""phone"":""1-303-377-0909"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""149 Steele Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7187,""lon"":-104.95}}",1,33,1
+victory_brewing-brandywine_valley_lager,0,0,245117222913,"{""name"":""Brandywine Valley Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,44,1
+callahan_s_pub_and_brewery,0,0,244481785858,"{""name"":""Callahan's Pub and Brewery"",""city"":""San Diego"",""state"":""California"",""code"":""92126"",""country"":""United States"",""phone"":""1-858-578-7892"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""8280-A Mira Mesa Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.9147,""lon"":-117.146}}",1,19,1
+valley_brewing_company-valley_berry_wheat,0,0,245116895233,"{""name"":""Valley Berry Wheat"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Valley Berry Wheat is a fruit beer produced using pure fruit extracts of Raspberry, Wildberry, Cherry and Blueberry. The beer has a wonderful fruity nose and a smooth clean finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,43,1
+brouwerij_van_steenberge-leute_bok_bier,0,0,244481261568,"{""name"":""Leute Bok Bier"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_van_steenberge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,18,1
+mcmullen_sons-ak_original_bitter,0,0,244868644864,"{""name"":""AK Original Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmullen_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+rogue_ales-mogul_ale,0,0,244982546433,"{""name"":""Mogul Ale"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Mogul is a complex blend of 5 malts and 7 hops. This years Mogul (12/05) will only get better with time...its a hedonistic mouthful with layers of rich malt and tremendous bitterness. A quote from John \""more hops\"" Maier, \""Keep Warm, Drink Mogul ~ Prost!\"" This batch of Mogul was brewed with Pale, Munich, Dark caramunich, Melanoidin, and Amber malts. \r\nMoguls hops include Newport, Amarillo, Chinook, Horizon, Cascade, Centennial and Crystal...and Mogul (12/05) is dry-hopped with Amarillo and Centennial at the rate of 1 pound per barrel! Oh Hoppy Day!""}",1,5,1
+titletown_brewing-new_century_beer,0,0,245099003905,"{""name"":""New Century Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+hale_s_ales_3-pale_ale,0,0,244756381696,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+lost_coast_brewery-great_white_beer,0,0,244878082048,"{""name"":""Great White Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+laconner_brewing-india_pale_ale,0,0,244738228224,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+brouwerij_sterkens-white_ale,0,0,244495024129,"{""name"":""White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""brouwerij_sterkens"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+first_coast_brewing,0,0,244611612674,"{""name"":""First Coast Brewing"",""city"":""Wilmington"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":34.2257,""lon"":-77.9447}}",1,12,1
+carolina_brewery-ipa,0,0,244498432002,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
+the_alchemist-donovan_s_red,0,0,245097627648,"{""name"":""Donovan's Red"",""abv"":5.16,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after Donovan's, a 19th century Irish restaurant in downtown Waterbury. This medium-bodied, red-colored ale has a nice hop flavor and aroma."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,1,1
+golden_pacific_brewing-golden_gate_amber_ale,0,0,244631207936,"{""name"":""Golden Gate Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+lagunitas_brewing_company-the_hairy_eyeball,0,0,244738752512,"{""name"":""The Hairy Eyeball"",""abv"":8.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+titletown_brewing-dousman_street_wheat,0,0,245115584512,"{""name"":""Dousman Street Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,40,1
+cucapa_brewing_company,0,0,244488339457,"{""name"":""Cucapa Brewing Company"",""city"":""Mexicali"",""state"":""Baja"",""code"":"""",""country"":""Mexico"",""phone"":"""",""website"":""http://www.cucapa.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Craft beer, just across the border."",""address"":[],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":31.7291,""lon"":-116.578}}",1,34,1
+dinkelacker_schwaben_bru,0,0,244621312001,"{""name"":""Dinkelacker-Schwaben Bru"",""city"":""Stuttgart"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)711-/-6481-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Tbinger Strae 46""]}",1,35,1
+gasthof_brauerei_zum_frohsinn-weizenbier,0,0,244622557185,"{""name"":""Weizenbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthof_brauerei_zum_frohsinn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,37,1
+new_glarus_brewing_company-hop_hearty_ipa,0,0,244860780544,"{""name"":""Hop Hearty IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
+manayunk_brewery_and_restaurant-manayunk_lager,0,0,244860125184,"{""name"":""Manayunk Lager"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""In strict accordance with the German purity law of 1516, we present to you this annually brewed festbier. Traditionally brewed in March and stored deep in the caves of Germany, this beer was brought to the masses to celebrate in October. It is a Vienna-style lager with a bit more malt and hops making a malty but balanced beverage. Copper-orange in color, it sports a toasty malt backbone that wonderfully compliments itself with many of our menu items."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
+klosterbrauerei_weltenburg-hefe_weizen_dunkel,0,0,244739866627,"{""name"":""Hefe-Weizen Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_weltenburg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+green_flash_brewing-first_anniversary_ale,0,0,244757823488,"{""name"":""First Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_flash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+ruppaner_brauerei-spezial_export,0,0,244981235715,"{""name"":""Spezial-Export"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+rogue_ales-chamomellow,0,0,245000634369,"{""name"":""Chamomellow"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Chamomellow is an herbal golden ale infused with chamomile, which provides an enticing floral aroma. Chamomile is one of the oldest garden herbs used by ancient Egyptians and other cultures to battle illness, promote calm and relieve anxiety, hence the name Chamomellow. Dedicated to Caleb McLoughlin, a revolutionary brewer who created this elixir at Rogues Issaquah Brewhouse and won a Gold medal in the Herbs & Spice category at the 2003 Great American Beer Festival.\r\n\r\nChamemollow is created from Northwest Harrington and Klages, and Maier Munich Malts (18% speciality grains, .19 lbs grain per bottle). Kent Golding and Cascade hops, and infused with Chamomile. Available in a limited edition 22-ounce bottles (originally as Test Batch 1 - Gold Medal Series), and on draft at Rogues six Public Houses."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+stone_brewing_co-old_guardian_barley_wine_2007,0,0,245097431040,"{""name"":""Old Guardian Barley Wine 2007"",""abv"":11.26,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+mendocino_brewing_hopland-yuletide_porter,0,0,244879982592,"{""name"":""Yuletide Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
+capital_city_brewing_company-amber_waves,0,0,244495679489,"{""name"":""Amber Waves"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A medium bodied west coast style amber ale. This is aggressively hopped with Perle and Cascade hops, and is held together by its sweet malty center."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
+fosters_tien_gang,0,0,244613906433,"{""name"":""Fosters Tien Gang"",""city"":""Thnh Pho Ho Ch Minh"",""state"":"""",""code"":"""",""country"":""Viet Nam"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Thnh Pho Ho Ch Minh""]}",1,17,1
+jinro_coors_brewing,0,0,244750286849,"{""name"":""Jinro Coors Brewing"",""city"":""Seoul"",""state"":"""",""code"":"""",""country"":""Korea, Republic of"",""phone"":""82-(0)431-279-4702"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Cheongwon Factory: 52, Joongsam-Ri, Hyundo-Myun""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.5665,""lon"":126.978}}",1,39,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-hefeweizen,0,0,244981956609,"{""name"":""HefeWeizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
+ruppaner_brauerei-schimmele_hefe_pils,0,0,244982939649,"{""name"":""Schimmele Hefe Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+hair_of_the_dog_brewing-rose,0,0,244755922945,"{""name"":""Rose"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hair_of_the_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+wharf_rat-oliver_irish_red,0,0,245749710849,"{""name"":""Oliver Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wharf_rat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,42,1
+htt_brauerei_bettenhuser,0,0,244740784130,"{""name"":""Htt-Brauerei Bettenhuser"",""city"":""Baunatal"",""state"":""Hessen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)561-/-492076"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Knallhtte""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.2615,""lon"":9.4494}}",1,16,1
+labatt_ontario_breweries-genuine_honey_lager,0,0,244740521986,"{""name"":""Genuine Honey Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Genuine Honey Lager was introduced in 2005 in response to consumer demand for honey lagers. Labatt Genuine Honey uses genuine, all-natural, 100% Canadian honey to give consumers a softer, smoother taste. This naturally-aged lager is brewed to the same uncompromising standards applied to every Labatt beer. Genuine Honey Lager is the real thing!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
+magic_hat-9,0,0,244862550016,"{""name"":""#9"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Not quite pale ale. A beer cloaked in secrecy. An ale whose mysterious unusual palate will swirl across your tongue and ask more questions than it answers.\r\n\r\nA sort of dry, crisp, fruity, refreshing, not-quite pale ale. #9 is really impossible to describe because there's never been anything else quite like it. Our secret ingredient introduces a most unusual aroma which is balanced with residual sweetness."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+sandlot_brewery_at_coors_field-oktoberfest,0,0,244997685250,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sandlot_brewery_at_coors_field"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,41,1
+vyturio_alaus_darykla-baltas_alus,0,0,245750431744,"{""name"":""Baltas Alus"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vyturio_alaus_darykla"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,47,1
+duclaw-bad_moon_porter,0,0,244619476993,"{""name"":""Bad Moon Porter"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""A complex, robust porter, Bad Moon is medium to full bodied with a slightly sweet, malty presence combined with hints of chocolate and coffee. This is a full-bodied beer that gets its chocolate and coffee-like flavors and color from the use of generous amounts of roasted malts. It has a smooth finish and a balanced hop character."",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
+hoppin_frog_brewery-frosted_frog_christmas_ale,0,0,244749565954,"{""name"":""Frosted Frog Christmas Ale"",""abv"":8.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The essence of Christmas is captured in this very bottle you are holding. Perfectly blended spices compliment Frosted Frog’s rich malt flavors, creating the ultimate Christmas experience. Celebrate the holidays as you savor this very special seasonal offering."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,38,1
+montana_brewing-billings_ipa,0,0,244861042689,"{""name"":""Billings IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,9,1
+ithaca_beer_company-apricot_wheat,0,0,244747534338,"{""name"":""Apricot Wheat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our easy drinking wheat beer is light in color and body ... perfect for those looking for a lighter taste. The combination of wheat and barley give our Apricot Wheat a different malt character than any of our other ales. The hint of apricot gives this beer a fruity finish, making it a fun beer to drink."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
+victory_brewing-throwback_lager,0,0,245750104064,"{""name"":""Throwback Lager"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Crisp, lighter in body, yet still full flavored brew. Before Prohibition, thirst quenching lagers were firm and substantial, and enjoyed in huge volumes. This recipe incorporates yeast from the C. Schmidt Brewery of Philadelphia and a small portion of brewer's corn to recreate an \""industrial\"" lager of the turn of the century. \r\n\r\nReleased April 6 to celebrate Prohibition's repeal 73 yrs. ago, Throwback Lager is a draft only release that should flow into June"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,44,1
+capital_brewery-blonde_doppelbock,0,0,244481851392,"{""name"":""Blonde Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,19,1
+wagner_valley_brewing-sled_dog_doppelbock,0,0,245749907456,"{""name"":""Sled Dog Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wagner_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,43,1
+caldera_brewing-pale_ale,0,0,244481261569,"{""name"":""Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""caldera_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Available in 12 oz. cans and kegs. A West-Coast-style pale ale balancing plenty of hops with a malty backbone."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+meckatzer_lwenbru,0,0,244868644865,"{""name"":""Meckatzer Lwenbru"",""city"":""Heimenkirch"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8381-/-504-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Meckatz 10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6308,""lon"":9.8889}}",1,28,1
+scottish_newcastle_breweries,0,0,244982546434,"{""name"":""Scottish & Newcastle Breweries"",""city"":""Newcastle-upon-Tyne"",""state"":""Northumberland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0191)-2325092"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Gallowgate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.8918,""lon"":-76.7975}}",1,5,1
+trinity_brewing_company,0,0,245099069440,"{""name"":""Trinity Brewing Company"",""city"":""Colorado Springs"",""state"":""Colorado"",""code"":""80907"",""country"":""United States"",""phone"":""719-634-0029"",""website"":""http://trinitybrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1446 Garden of the Gods""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8967,""lon"":-104.855}}",1,3,1
+hansa_bryggeri-pilsner,0,0,244756381697,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hansa_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+main_street_brewery,0,0,244878147584,"{""name"":""Main Street Brewery"",""city"":""Corona"",""state"":""California"",""code"":""92880"",""country"":""United States"",""phone"":""1-951-371-1471"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""300 North Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.8835,""lon"":-117.565}}",1,52,1
+latrobe_brewing-rolling_rock,0,0,244738228225,"{""name"":""Rolling Rock"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""latrobe_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,10,1
+capital_brewery-capital_special_pilsner,0,0,244495024130,"{""name"":""Capital Special Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,49,1
+flat_branch_pub_brewing-oil_change_oatmeal_stout,0,0,244611678208,"{""name"":""Oil Change Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flat_branch_pub_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Black as diesel oil, Oil Change is big in roasty chocolate flavors. A large amount of flaked oats gives this stout a velvety smoothness. Oil Change is nitrogen charged to give it a thick creamy head."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,12,1
+celis_brewery-dubbel_ale,0,0,244498497536,"{""name"":""Dubbel Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""celis_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+the_bruery-partridge_in_a_pear_tree,0,0,245097627649,"{""name"":""Partridge In A Pear Tree"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our holiday beer is a Belgian-style Dark Strong Ale, brewed with our brewery-made dark candi sugar, Munich and Vienna malts. Dark brown in color, fruity and complex with a rich malt backbone. This is a simple yet immensely complex beer meant to be savored and shared with friends and family."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,1,1
+goose_island_beer_company_fulton_street-demolition,0,0,244631273472,"{""name"":""Demolition"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+lift_bridge_brewery-harvestor_fresh_hop_ale,0,0,244738752513,"{""name"":""Harvestör Fresh Hop Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Constant addition of fresh Cascade and Willamette hops from Brad’s Stillwater hop garden during boil and fermentation process. Aromatic and caramel malts compliment the hop character for an incredibly balanced beer that celebrates the hop harvest without killing your tongue."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
+twin_ports_brewing-burntwood_black_ale,0,0,245115584513,"{""name"":""Burntwood Black Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,40,1
+dirt_cheap_cigarettes_and_beer,0,0,244620787712,"{""name"":""Dirt Cheap Cigarettes and Beer"",""city"":""Fenton"",""state"":""Missouri"",""code"":""63026"",""country"":""United States"",""phone"":""1-636-343-9770"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""895 Bolger Court""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5405,""lon"":-90.4607}}",1,34,1
+double_mountain_brewery_taproom-double_mountain_kolsch,0,0,244621377536,"{""name"":""Double Mountain Kolsch"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""In Cologne, Germany, many a brewery produces a light-bodied ale with a delicate fruitiness and rounded maltiness, attributable to the unique yeast strain commonly used. Our Kölsch is unfiltered and more generously hopped than its German cousin.""}",1,35,1
+goose_island_beer_company_clybourn-porter,0,0,244622557186,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,37,1
+new_glarus_brewing_company-imperial_stout,0,0,244860780545,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,8,1
+marquette_harbor_brewery_and_restaurant-plank_road_pale_ale,0,0,244860125185,"{""name"":""Plank Road Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marquette_harbor_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+kulmbacher_brauerei_ag-kapuziner_gold,0,0,244739932160,"{""name"":""Kapuziner Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,14,1
+half_moon_bay_brewing-old_princeton_landing_ipa,0,0,244757823489,"{""name"":""Old Princeton Landing IPA"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+sacramento_brewing_company-abbey_ipa,0,0,244981301248,"{""name"":""Abbey IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian IPA, West Coast hops meet belgian yeast. Spicy, fruity and citrusy notes combine for an interesting fusion brew."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,2,1
+rogue_ales-yellow_snow_ipa,0,0,245000699904,"{""name"":""Yellow Snow IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Yellow Snow IPA was originally introduced for the 2000 Winter Olympics in Salt Lake City.\r\n\r\nYellow Snow is Rogue’s tribute to winter sports everywhere—downhill skiing, snowboarding, cross country, ice hockey, ice fishing, snowmobiling, and even curling. \r\n\r\nIt will be available November 1st in select states where mountains and snow can be found.\r\n\r\nPale golden in color with a hoppy fruity aroma. Big hop flavor up front complemented by medium body and hoppyness mid-pallet. Finishes with a characteristic lingering bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+stoudt_s_brewery-market_alley,0,0,245097431041,"{""name"":""Market Alley"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Made exclusively for the Lancaster Dispensing Company."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,0,1
+midnight_sun_brewing_co-big_slick_american_barleywine_ale,0,0,244879982593,"{""name"":""Big Slick American Barleywine Ale"",""abv"":11.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This kick ass American Barley Wine is all about hops —Nugget, Chinook, Simcoe and Centennial. And, yeah, LoTs of ‘em. OK…there’s a substantial malt base on which these juicy Pacific NW hops lie down and do their dirty work. Maybe that’s too much info…"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,56,1
+capital_city_brewing_company-st_adrian_s_alt,0,0,244495679490,"{""name"":""St. Adrian's Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,50,1
+freeminer_brewery,0,0,244613906434,"{""name"":""Freeminer Brewery"",""city"":""Cinderford"",""state"":""Gloucestershire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01594)-827989"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Whimsey Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.8325,""lon"":-2.5116}}",1,17,1
+jolly_pumpkin_artisan_ales-maracaibo_especial,0,0,244750286850,"{""name"":""Maracaibo Especial"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich brown ale inspired by the enigmatic monastic brews of Belgium, and the mysterious mist shrouded jungles of the tropics. Brewed with real cacao, and spiced with cinnamon and sweet orange peel for a sensual delight. A brew to be sipped, savored, and enjoyed!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+red_oak_brewery-red_oak_amber_lager,0,0,244981956610,"{""name"":""Red Oak Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_oak_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Red Oak Amber is a Munich Urtyp (Old Style) Lager. We begin the brewing process with custom kilned imported Munich Malt. Red Oak is then hopped with Spalt Noble Hops imported from Bavaria, the oldest hop growing region in the world. Before fermentation we add a yeast strain from Weihenstephen, the oldest brewery in the world, founded before 1040 AD. Weeks of aging gives Red Oak the smooth taste it is known for."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
+saint_louis_brewery_schlafy_tap_room-coffee_stout,0,0,244982939650,"{""name"":""Coffee Stout"",""abv"":5.7,""ibu"":30.0,""srm"":47.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2011-02-07 14:29:21"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,6,1
+harvey_son_lewes-a_lecoq_imperial_extra_double_stout_1999,0,0,244755922946,"{""name"":""A. LeCoq Imperial Extra Double Stout 1999"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
+widmer_brothers_brewing-drop_top_amber_ale,0,0,245749710850,"{""name"":""Drop Top Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""A rich, flavorful Amber that's smooth and easy to drink. Drop Top is fermented by an American Ale yeast to produce beer with a clean flavor and fruity aroma. The velvet texture is from using Honey malt and a touch of milk sugar. The Alchemy bittering hops provide soft bitterness. Simcoe, a newly developed hop variety, adds unique hop flavor and aroma. 2004 GABF Gold Medal Award Winner\""\r\n-Widmer Brothers Brewing Company"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,42,1
+humboldt_brewing-gold_nectar,0,0,244740849664,"{""name"":""Gold Nectar"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
+lafayette_brewing-bill_old_ale,0,0,244740521987,"{""name"":""Bill Old Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lafayette_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,15,1
+magnolia_pub_and_brewery-prescription_pale,0,0,244862615552,"{""name"":""Prescription Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magnolia_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+shipyard_brewing_portland-pugsley_s_signature_series_barley_wine_style_ale,0,0,244997750784,"{""name"":""Pugsley's Signature Series Barley Wine Style Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":""Barley Wine Style Ale is a big beer made with six different malts (Pale Ale, Crystal, Caramunich, Wheat, Chocolate and Roasted Barley) and balanced with a very full hop charge of Summit, Challenger and Fuggles hops. It is a deep reddish brown color with a complex fruity nose, a very full body, and an interesting balance between grains and hops which ends with a pleasing dry taste. To fully enjoy all the flavours, this ale is best drunk at 55 degrees Fahrenheit."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,41,1
+watney_brewery,0,0,245750497280,"{""name"":""Watney Brewery"",""city"":""London"",""state"":""London"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.5002,""lon"":-0.1262}}",1,47,1
+empyrean_brewing_company-fallen_angel_sweet_stout,0,0,244619542528,"{""name"":""Fallen Angel Sweet Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""empyrean_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
+hops_haven_brew_haus-pumpkin_ale,0,0,244749631488,"{""name"":""Pumpkin Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+montana_brewing-stillwater_rye,0,0,244861042690,"{""name"":""Stillwater Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+jever_brewery-jever_pilsener,0,0,244747599872,"{""name"":""Jever Pilsener"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jever_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Norther German (Friesian) Pilsener that is cattegoristic of the style. It is a little more hoppy than Czech pilseners giving it a more herb (bitter?) flavor."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
+williams_brothers_brewing_company-grozet_gooseberry_and_wheat_ale,0,0,245750104065,"{""name"":""Grozet Gooseberry and Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,44,1
+carolina_brewery-amber,0,0,244481851393,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carolina_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
+watch_city_brewing-hops_explosion_ipa,0,0,245749972992,"{""name"":""Hops Explosion IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""watch_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+caledonian_brewing,0,0,244481261570,"{""name"":""Caledonian Brewing"",""city"":""Edinburgh"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0131)-337-1286"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""42 Slateford Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":55.9358,""lon"":-3.2297}}",1,18,1
+mickey_s_brewing_co,0,0,244868644866,"{""name"":""Mickey's Brewing Co."",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.mickeys.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0389,""lon"":-87.9065}}",1,28,1
+shmaltz_enterprises,0,0,244982611968,"{""name"":""Shmaltz Enterprises"",""city"":""San Francisco"",""state"":""California"",""code"":""94110"",""country"":""United States"",""phone"":""1-650-343-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3435 Cesar Chavez #227""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.7481,""lon"":-122.419}}",1,5,1
+troegs_brewing-scratch_15_2008,0,0,245099069441,"{""name"":""Scratch #15 2008"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #15-2008 is our first collaborative beer in the Scratch series. We teamed up with St. Thomas Roasters of Linglestown to create a Double Espresso Oatmeal Stout.\r\n\r\nThe double in the name refers to the espresso (not the alcohol). Scratch #15’s espresso blend is a medium city-type roast featuring beans from three continents. St. Thomas Roasters roasted and ground the beans; we used them in our hopback. At the end of the boil the hot wort passed through the espresso beans to give a lush coffee espresso nose and hints of coffee flavor.\r\n\r\nChocolate, roasted and caramel malt flavors stand out, while the addition of oats gives Scratch #15 a full, round mouth feel. Galena and Ken Goldings hops are added to balance the overall flavor and not drive up the bitterness. The head retention diminishes quickly because of the oils from the espresso beans."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,3,1
+heartland_brewery_union_square,0,0,244756381698,"{""name"":""Heartland Brewery Union Square"",""city"":""New York"",""state"":""New York"",""code"":""10003"",""country"":""United States"",""phone"":""1-212-645-3400"",""website"":""http://www.heartlandbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.7323,""lon"":-73.9874}}",1,55,1
+mckenzie_brew_house-old_rogue_pale_ale,0,0,244878147585,"{""name"":""Old Rogue Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mckenzie_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
+liberty_steakhouse_and_brewery-liberty_raspberry_wheat_ale,0,0,244738228226,"{""name"":""Liberty Raspberry Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This brew combines the mild, tartness of a wheat beer with the flavor of real raspberries. The raspberry flavor is not overpowering. It has a wonderful berry aroma, and is a favorite even among those who claim to \""not like beer\""."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,10,1
+capital_brewery-capital_u_s_pale_ale,0,0,244495024131,"{""name"":""Capital U.S. Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+flying_fish_brewing_company-belgian_abbey_dubbel,0,0,244611678209,"{""name"":""Belgian Abbey Dubbel"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian-style Abbey Dubbel is an exceptionally complex beer with many interwoven flavors. This classic-style Abbey beer features an immense head with a fruity nose and a generous body. Malty in the middle, the beer features a clean, almondy dry finish and a slight alcohol warmth. More like a wine than a beer—it has a lot of the qualities of a fine Burgundy.\r\n\r\nBeer writer Michael Jackson has praised the Flying Fish Dubbel as \""a wonderful example of the style.\"""",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,12,1
+cervecera_cuauhtmoc_moctezuma,0,0,244498497537,"{""name"":""Cervecera Cuauhtmoc-Moctezuma"",""city"":""Monterrey"",""state"":""Nuevo Leon"",""code"":"""",""country"":""Mexico"",""phone"":""52-81-8328-5000"",""website"":""http://www.ccm.com.mx/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Av.Alfonso Reyes Norte No.2202""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":25.7091,""lon"":-100.314}}",1,57,1
+the_livery-american_brown_ale,0,0,245097627650,"{""name"":""American Brown Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Every winter 300 hardy Telemark skiers converge at Mt. Bohemia and the Porcupine Mountains ski areas for three days of back country touring, lift served high speed runs, chili cook offs, and dancing and beer drinking to Finnish Reggae, Bluegrass, or whatever else comes out of the woodwork. Steve brews this hoppy American Brown Ale in honor of his good friends and ski buddies from all over the Midwest and Canada who attend. Rich, malty, and dry-hopped to perfection. Available December through March."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,1,1
+goose_island_beer_company_fulton_street-pere_jacques,0,0,244631273473,"{""name"":""Pere Jacques"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+lightning_boy_brewery,0,0,244861566976,"{""name"":""Lightning Boy Brewery"",""city"":""Belgrade"",""state"":""Montana"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.7786,""lon"":-111.179}}",1,11,1
+upper_mississippi_brewing-pale_pale_boss_ale,0,0,245115650048,"{""name"":""Pale Pale Boss Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,40,1
+dogfish_head_craft_brewery-world_wide_stout,0,0,244620787713,"{""name"":""World Wide Stout"",""abv"":18.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dogfish_head_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark, rich, roasty and complex, World Wide Stout has more in common with a fine port than a can of cheap, mass-marketed beer. Brewed with a ridiculous amount of barley. Have one with (or as!) dessert tonight!""}",1,34,1
+duclaw-blackout,0,0,244621377537,"{""name"":""Blackout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""duclaw"",""updated"":""2010-07-22 20:00:20"",""description"":""Succumb to this dark, medium bodied German-style dark lager’s smooth roasted flavors and light hoppy bitterness. Don’t worry, you’ll remember everything the next morning."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,35,1
+gottberg_brew_pub-english_brown_ale_discontinued,0,0,244622557187,"{""name"":""English Brown Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_brown_ale,0,0,244860846080,"{""name"":""Nøgne Ø Brown Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A dark brown English ale, in which classic English malts meet the spicy hoppiness of the new world. Recommended serving temperature 8°C/45°F. Goes very well with ‘pub grub.’"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
+middle_ages_brewing-grail_ale,0,0,244860190720,"{""name"":""Grail Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An amber ale with a ruby hue, fresh hop aroma, rich malt body and a complex palate."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+lagunitas_brewing_company-cappuccino_stout,0,0,244739932161,"{""name"":""Cappuccino Stout"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ale Brewed with Columbian Coffee. Brewed with Sebastopol's Own Hard Core Coffee."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,14,1
+ham_s_restaurant_and_brewhouse-buccaneer_brown_ale,0,0,244757823490,"{""name"":""Buccaneer Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ham_s_restaurant_and_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
+saint_louis_brewery_schlafy_tap_room-schlafly_kolsch,0,0,244981301249,"{""name"":""Schlafly Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+routh_street_brewery_and_grille-dusseldorf_style_altbier,0,0,245000699905,"{""name"":""Dusseldorf-Style Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,48,1
+thirsty_dog_brewing-siberian_night_imperial_stout,0,0,245097431042,"{""name"":""Siberian Night Imperial Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Stouts are by far the \""GRAND - DADDY\"" of all stouts. For those who demand flavor, this is the perfect libation."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,0,1
+minneapolis_town_hall_brewery-smoked_hefe,0,0,244880048128,"{""name"":""Smoked Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
+central_waters_brewing_company-brewhouse_coffee_stout,0,0,244495679491,"{""name"":""Brewhouse Coffee Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A coffee lover's delight! A wonderful stout infused with coffee that is specially roasted for us by Emy J's (www.emyjs.com) in Stevens Point, WI.""}",1,50,1
+gold_crown_brewing-premium_lager,0,0,244613971968,"{""name"":""Premium Lager"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gold_crown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
+jw_lees_and_co_brewers_ltd-harvest_ale_1997,0,0,244750286851,"{""name"":""Harvest Ale 1997"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,39,1
+red_star_brewery_grille-strawberry_honey_amber_ale,0,0,244982022144,"{""name"":""Strawberry Honey Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
+samuel_smith_old_brewery_tadcaster-taddy_porter,0,0,244983005184,"{""name"":""Taddy Porter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,6,1
+hoppin_frog_brewery-mean_manalishi_double_i_p_a,0,0,244755988480,"{""name"":""Mean Manalishi Double I.P.A."",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Explore the extremes of hops, and experience all of their bitterness, flavor and aroma with this Double I.P.A. An extreme, super-assertive and satisfying amount of American hop character is balanced with a toasty, caramelized, intense malt presence."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,54,1
+willoughby_brewing,0,0,245749776384,"{""name"":""Willoughby Brewing"",""city"":""Willoughby"",""state"":""Ohio"",""code"":""44094"",""country"":""United States"",""phone"":""1-440-975-0202"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4057 Erie Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6416,""lon"":-81.4066}}",1,42,1
+humboldt_brewing-nectar_ipa,0,0,244740849665,"{""name"":""Nectar IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
+lagunitas_brewing_company-censored_aka_the_kronic,0,0,244740587520,"{""name"":""Censored (aka The Kronic)"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,15,1
+mcmenamins_mill_creek-hammerhead_ale,0,0,244862615553,"{""name"":""Hammerhead Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+sierra_leone_brewery,0,0,244997750785,"{""name"":""Sierra Leone Brewery"",""city"":""Freetown"",""state"":""Sierra Leone"",""code"":"""",""country"":""Sierra Leone"",""phone"":""+232 (22) 26 31 18"",""website"":""http://www.slbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Sierra Leone Brewery Limited's (SLBL) core values - respect, enjoyment and a passion for quality - help to define our corporate culture and working methods. They are fundamental to the way we do business today, they support our drive towards economic, environmental and social sustainability"",""address"":[""PO Box 721""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":8.4841,""lon"":-13.2287}}",1,41,1
+wells_and_youngs_brewing_company_ltd-wells_banana_bread_beer,0,0,245750497281,"{""name"":""Wells Banana Bread Beer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wells_and_youngs_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A silky, crisp, and rich amber-colored ale with a fluffy head and strong banana note on the nose."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,47,1
+estes_park_brewery-estes_park_gold,0,0,244619542529,"{""name"":""Estes Park Gold"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""estes_park_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our smooth golden ale. Our Gold has a medium body and low to medium hop bitterness \r\nand aroma."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,31,1
+hopworks_urban_brewery-velvet_esb,0,0,244749631489,"{""name"":""Velvet ESB"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This English Session Beer has a delicious floral hop aroma and flavor. A heaping helping of organic caramel malt and touch of organic chocolate malt give this beer its beautiful mahogany color while organic oats from Bob's Red Mill velvetize the texture. Smoother than an infomertial host at half the price!"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,38,1
+nebraska_brewing_company-india_pale_ale,0,0,244861108224,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+jt_whitney_s_brewpub_and_eatery-heartland_weiss,0,0,244747599873,"{""name"":""Heartland Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,33,1
+yegua_creek_brewing_dallas,0,0,245750104066,"{""name"":""Yegua Creek Brewing - Dallas"",""city"":""Dallas"",""state"":""Texas"",""code"":""75206"",""country"":""United States"",""phone"":""214-824-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2920 North Henderson Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.821,""lon"":-96.7848}}",1,44,1
+carver_brewing_co-lightner_creek_lager,0,0,244481916928,"{""name"":""Lightner Creek Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""carver_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A light bodied golden ale, low in hop character with a spicy aroma from whole Czech Saaz hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+watson_brothers_brewhouse-y2kipa,0,0,245749972993,"{""name"":""Y2KIPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""watson_brothers_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+capital_city_brewing_company-capitol_kolsch,0,0,244481327104,"{""name"":""Capitol Kolsch"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This lager like ale is modeled after the official beer of Köln, Germany. Kolsch is delicate and refreshing with a slight fruitiness and supportive, yet unobtrusive hop bitterness""}",1,18,1
+middle_ages_brewing-druid_fluid,0,0,244868644867,"{""name"":""Druid Fluid"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An epic barleywine, made in the tradition of British Farmhouse Brewing. Lavished with a velvety blend of six different malts this is a warming beer with a lush mouthfeel. The complexities your discriminating palate will detect are ever changing as this barleywine matures. When young, an assertive hop character predominates and with age the beauty of the big malt balance unfolds."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,28,1
+slab_city_brewing-william_capen_bitter_ale,0,0,244982611969,"{""name"":""William Capen Bitter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+tucher_bru-helles_hefe_weizen,0,0,245099069442,"{""name"":""Helles Hefe Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,3,1
+hite_brewery,0,0,244756447232,"{""name"":""Hite Brewery"",""city"":""Seoul"",""state"":"""",""code"":"""",""country"":""Korea, Republic of"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hite Brewery Company Limited is a South Korean brewery company headquartered in Yeongdeungpo-gu, Seoul. Its main products are beer, rice wine, and mineral water. The company was established as Chosun Breweries in 1933. In 2001 the company had three factories, and in 2002 its share of the domestic beer market was some 55%, up from 30% in 1992."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.5665,""lon"":126.978}}",1,55,1
+mcmenamins_mill_creek-wheat_beer,0,0,244878213120,"{""name"":""Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
+liefmans_breweries-all_saints_belgian_golden_ale,0,0,244738293760,"{""name"":""All Saints Belgian Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+capital_brewery-winter_skal,0,0,244495089664,"{""name"":""Winter Skål"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""capital_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,49,1
+flying_fish_brewing_company-grand_cru_winter_reserve,0,0,244611678210,"{""name"":""Grand Cru Winter Reserve"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian-style strong golden ale showcases a variety of the ingredients and brewing methods that help differentiate Flying Fish beers. The Grand Cru is fermented at a higher temperature than our other beers adding an undercurrent of fruitiness (although there is no fruit in the beer). Very lightly filtered, the Grand Cru exhibits complex mouthfeel, strong malt flavors, a spicy hop presence and a soothing alcohol warmth, followed by a clean, dry finish. It is excellent with food as well as served by itself."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,12,1
+clipper_city_brewing_co-holy_sheet,0,0,244498497538,"{""name"":""Holy Sheet"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the centuries-old tradition of Belgian Abbey monks comes our \""Über Abbey\"" Ale. Aromatic and full bodied, pouring deep burgundy in color, it's bold, it's Heavy Seas. Grab a line...Holy Sheet!...or you'll be swept overboard. Seasonally available in February while supplies last."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,57,1
+the_livery-mcgilligans_ipa,0,0,245097627651,"{""name"":""McGilligans IPA"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ales, or IPA’s, were brewed for British soldiers stationed in India. These ales needed to higher in alcohol and have more hops than normal to survive the long journey, and ours is no exception. Brewed with Belgian and German malts and dry hopped with loads of Cascades, our version honors our friend who had his own grueling journey involving a boat and cold water!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,1,1
+gore_range_brewery-fly_fisher_red,0,0,244631273474,"{""name"":""Fly Fisher Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gore_range_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+listermann_brewing_company-wild_mild_ale,0,0,244861566977,"{""name"":""Wild Mild Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""listermann_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A bottle-conditioned English style ale."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,11,1
+weyerbacher_brewing_company-double_simcoe_ipa,0,0,245749514240,"{""name"":""Double Simcoe IPA"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Double Simcoe IPA, 9.0% abv, is our incredible reward for Hopheads seeking over the top flavor in a Double IPA, without the harshness. Brewed with Simcoe hops, developed and trademarked by Select Botanicals Group, LLC, in the year 2000. This hybrid hops was created to allow maximum aromatic oils, along with low cohumulone(harshness) levels, so that brewers can really load up a lot of 'em in a beer and not have any harshness. The piney, citrusy notes are all here, and in a very clean (non-harsh) way, as well as having an aroma with impact. Introduced by Weyerbacher in 2005 originally as a seasonal, this brew has garnered numbers so high on Beer Advocate, and been in such high demand by consumers, we decided to add it to our year-round line-up in March 2007. Check it out, and you'll soon see why everyone's talking about it."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,40,1
+east_end_brewing_company-big_hop_harvest_ale,0,0,244620787714,"{""name"":""Big Hop Harvest Ale"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
+east_end_brewing_company-toaster_imperial_stout,0,0,244621443072,"{""name"":""Toaster Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is an Imperial version of our Black Strap Stout, this time brewed with MORE blackstrap molasses and MORE brown sugar, plus a whole lot more malt and hops too. Part of our FESTIVAL OF DARKNESS, this one clocks in at over 10%ABV, and is the thickest beer we've ever brewed here."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,35,1
+gray_brewing,0,0,244748845056,"{""name"":""Gray Brewing"",""city"":""Janesville"",""state"":""Wisconsin"",""code"":""53545"",""country"":""United States"",""phone"":""1-608-752-3552"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2424 West Court Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6793,""lon"":-89.0498}}",1,37,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_imperial_brown_ale,0,0,244860846081,"{""name"":""Nøgne Ø Imperial Brown Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""There is a long story to this malty ale. It was first brewed in the spring 2006 in Nørrebro Bryghus in Copenhagen, Denmark, as a joint brew between Nøgne Ø and Nørrebro. Nørrebro calls their version “Double Knot Brown”. It is the perfect thing to drink with almost any cheese."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
+midnight_sun_brewing_co-free_loader_double_red_ipa,0,0,244860190721,"{""name"":""Free Loader Double Red IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Free Loader Double Red IPA was \""double-brewed\"". [How's that for a catchy term that those BiG brewers can't TouCH. I love it, LoVe it, LOVE it.] The first batch of red IPA was mashed, sparged, and transferred to the kettle. The second batch of red IPA was mashed, sparged and transferred to the kettle using the sweet wort from batch one as its mash \""water\"". Hmmm...using \""beer\"" to make beer. Hence the name FREE LOADER. This Double Red IPA is just that--big, red, hoppy."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
+lagunitas_brewing_company-lucky_13_mondo_large_red_ale,0,0,244739997696,"{""name"":""Lucky 13 Mondo Large Red Ale"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our 13th Anniversary Beer in was a Staff Favorite, So We Make it Each Year. BIG on the Amarillo Hops and Rich Dark Malts for a Round and Huge, Smoky Flavor."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
+hansa_bryggeri,0,0,244757823491,"{""name"":""Hansa Bryggeri"",""city"":""Bergen"",""state"":"""",""code"":"""",""country"":""Norway"",""phone"":""47-55-99-77-00"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kokstaddalen 3""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":60.2945,""lon"":5.2592}}",1,59,1
+salt_lake_brewing_squatters,0,0,244981301250,"{""name"":""Salt Lake Brewing - Squatters"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84101"",""country"":""United States"",""phone"":""1-801-328-2329"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""147 West Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.7626,""lon"":-111.895}}",1,2,1
+roy_pitz_brewing_company-daddy_fat_sacs_imperial_ipa,0,0,245000699906,"{""name"":""Daddy Fat Sacs Imperial IPA"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The one and only IPA that doesn't leave your pallet with a bitter after taste. This beer took years of practice to get down and when we finally got it right, we knew it. The beer is made with three malts in considerable additions that leave it with a more malty and sweet taste. There are five different hop additions that were carefully planed out to impart just enough bitterness to give it the body and depth that it needed without leaving you with the astringent and bitter aftertaste. We then added a plethora of English flavor and aroma hops that round out the floral and citrus esters. With the beer being so well balanced between bitter and sweet, we than added \""big sacks\"" of bittering hops to the conditioning vessel to impart all the wonderful citrus and floral notes deep into the beer while leaving the bittering aspects of the hop behind. The result was a beer that makes you want to nose dive right in complimented by the well balanced taste of this wonderful brew."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,48,1
+tyranena_brewing-fargo_brothers_hefeweizen,0,0,245097496576,"{""name"":""Fargo Brothers Hefeweizen"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Fargo brothers arrived in Lake Mills in 1845, armed with a strong collective will and a pioneering spirit. The Fargo family became leaders in commerce, industry, agriculture, civics and religion. Through the years, these hard working men and their families shaped the character and very essence of our beautiful hometown. Their legacy endures in the buildings and businesses they built and the civility they brought to this city. In this same pioneering spirit, we brew our Fargo Brothers Hefeweizen to honor this \""first family\"" of Lake Mills.\r\n\r\nFargo Brothers Hefeweizen is brewed in the tradition of a Bavarian-style weißbier with a clove-like flavor and aroma with banana undertones and no bitterness. The unfiltered yeast makes this beer cloudy."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,0,1
+minneapolis_town_hall_brewery-tripel_vision,0,0,244880048129,"{""name"":""Tripel Vision"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+central_waters_brewing_company-mud_puppy_porter,0,0,244495745024,"{""name"":""Mud Puppy Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_waters_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust, yet surprisingly refreshing porter, Mud Puppy is a favorite of dark beer lovers. Characterized by a thick, rocky head and luscious chocolate-like nose, the malty profile is balanced by liberal hopping for its style."",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
+granite_city_food_brewery_saint_cloud-duke_of_wellington_ipa,0,0,244741046272,"{""name"":""Duke of Wellington IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""granite_city_food_brewery_saint_cloud"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_white_ale,0,0,244750286852,"{""name"":""Hitachino Nest White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+rivertowne_pour_house,0,0,244982022145,"{""name"":""Rivertowne Pour House"",""city"":""Monroeville"",""state"":""Pennsylvania"",""code"":""15146"",""country"":""United States"",""phone"":""412-372-8199"",""website"":""http://www.myrivertowne.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""312 Center Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4465,""lon"":-79.7642}}",1,4,1
+san_marcos_brewery_grill-premium_golden_ale,0,0,244983005185,"{""name"":""Premium Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+jurupa_valley_brewing,0,0,244755988481,"{""name"":""Jurupa Valley Brewing"",""city"":""Riverside"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.9533,""lon"":-117.396}}",1,54,1
+wye_valley_brewery-butty_bach,0,0,245749776385,"{""name"":""Butty Bach"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wye_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,42,1
+iron_hill_brewery_wilmingon-anvil_ale,0,0,244740915200,"{""name"":""Anvil Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""English style best bitter. It is a traditional English pub ale that is easy drinking, often referred to as a \""session beer\"". It is medium-bodied and copper colored with a noticeable malt flavor up front that finishes with a hop bitterness and floral hop flavor."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,16,1
+lake_superior_brewing-kayak_kolsch,0,0,244740587521,"{""name"":""Kayak Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+mercury_brewing_company-ipswich_ipa,0,0,244862681088,"{""name"":""Ipswich IPA"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our IPA is an unfiltered cross between an English and American IPA, with a strong, dry bitterness balanced with a slight malty sweetness. A mixture of first-rate U.S. and Belgian malts, combined with English roasted barley and highly hopped with Cascade and Warrior hops make our IPA a brewery favorite."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,13,1
+sierra_nevada_brewing_co-bigfoot_1996,0,0,244997816320,"{""name"":""Bigfoot 1996"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+weyerbacher_brewing_company-weyerbacher_fireside_ale,0,0,245750562816,"{""name"":""Weyerbacher Fireside Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+f_x_matt_brewing-saranac_marzenbier,0,0,244619542530,"{""name"":""Saranac Marzenbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Bigger..Richer...Smoother, are all ways to describe a Marzenbier. Look for a toasted malt character balanced with slight hop bitterness. Marzenbiers are traditionally aged for months and unveiled to great celebration.""}",1,31,1
+htt_brauerei_bettenhuser-luxus_pils,0,0,244749631490,"{""name"":""Luxus Pils"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""htt_brauerei_bettenhuser"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+new_holland_brewing_company-black_tulip,0,0,244861108225,"{""name"":""Black Tulip"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden in color with a slightly sweet body. Its ester-laden character reveals an enigmatic dance between Belgian ale yeast and candy sugar complimented by a pleasing dry finish. Black Tulip is a versatile beer for food. Enjoyable pairings include mild bleu cheeses, berries and other light desserts."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,9,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2005_calvados,0,0,244747599874,"{""name"":""Harvest Ale 2005 (Calvados)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+carver_brewing_co,0,0,244481916929,"{""name"":""Carver Brewing Co."",""city"":""Durango"",""state"":""Colorado"",""code"":""81301"",""country"":""United States"",""phone"":""(970) 259 - 2545"",""website"":""http://www.carverbrewing.com/_/home.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Carver Brothers Bakery first opened on June 1, 1983, in Winter Park, Colorado. It started with Jim, Bill, Sara and Eleanor Carver. In 1986 Jim, Bill and Barb Wynne opened Carvers Bakery / Café in Durango and the Winter Park Bakery was sold. In 1988 Carvers opened the brewery making it the first brewery in the four corners region since prohibition. Although still known affectionately by the locals as Carvers, Carvers then became Carver Brewing Company. Since then Carvers has seen many exciting changes: opening it's outdoor Beer Garden in 1994 and undergoing dramatic remodels in the restaurant and on the patio in '98 and '02. In April of '07 it was deemed necessary to expand the brewery. The brewery is now housed in the area previously occupied by the bakery. After 20 years of serving Colorado's mountain folk, Carvers continues to provide the very best in food and beer."",""address"":[""1022 Main Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2748,""lon"":-107.88}}",1,19,1
+weinkeller_brewery_berwyn-esb,0,0,245750038528,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,43,1
+cedar_brewing-black_cobra_stout,0,0,244481327105,"{""name"":""Black Cobra Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cedar_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,18,1
+middle_ages_brewing,0,0,244868710400,"{""name"":""Middle Ages Brewing"",""city"":""Syracuse"",""state"":""New York"",""code"":""13204"",""country"":""United States"",""phone"":""1-888-289-4250"",""website"":""http://www.middleagesbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Step back in time to when men were men, women were brewsters, and hand-crafted fine ale filled every flagon. Your quest for great taste leads you out of the past and into Middle Ages Brewing Company where we are sworn to uphold the tradition of brewing beer in small batches. Taste the difference hand-crafting makes."",""address"":[""120 Wilkinson Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0508,""lon"":-76.1617}}",1,28,1
+sonoran_brewing_company-victorian_ipa,0,0,245099659264,"{""name"":""Victorian IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sonoran_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our IPA has lots of malt and hop character. This style originated during Queen Victoria’s reign as a strong, flavorful ale, which was able to survive the ocean voyage from England to India during the British occupation."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
+tworows_restaurant_brewery_dallas-bulldog_brown,0,0,245099134976,"{""name"":""Bulldog Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,3,1
+hofbruhaus_traunstein-altbairisch_dunkel,0,0,244756447233,"{""name"":""Altbairisch Dunkel"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbruhaus_traunstein"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+meantime_brewing_company_limited-meantime_coffee,0,0,244878213121,"{""name"":""Meantime Coffee"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""meantime_brewing_company_limited"",""updated"":""2010-07-22 20:00:20"",""description"":""Whilst we wouldn’t recommend having this at breakfast with your bacon and eggs, our Coffee Beer is made with real coffee and has a caffeine hit to match. The natural flavours of the beans selected and hand roasted by our friends at the Union Coffee Roasters go well with the roast barley in the beer to give a silky-smooth drink with distinct chocolate and vanilla notes. \r\n\r\nOur first formulation of this beer was the first UK brewed beer to carry the Fairtrade logo, and, although we have reformulated it to create an even better blend of malt and roast coffee flavours, we can no longer get enough coffee in each bottle to qualify for Fairtrade status. However we are still using the same Faitrade Araba Bourbon beans from Rwanda’s Abuhuzamugambi Bakawa Co-operative.\r\n\r\nAt the Meantime Brewing Co we love flavour, so it wasn’t exactly difficult for us to see how the scents and aromas of coffee and barley would create a perfect match like just like mint and lamb, toffee and banana, peaches and cream, peanut butter and jam. Serve lightly chilled with as many chocolate truffles as your conscience allows.\r\n\r\nEach serving is equal to one cup of coffee"",""style"":""Porter"",""category"":""Irish Ale""}",1,52,1
+listermann_brewing_company-186_000_mps_malt_liquor,0,0,244861173760,"{""name"":""186,000 MPS Malt Liquor"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""listermann_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+carolina_brewery,0,0,244495089665,"{""name"":""Carolina Brewery"",""city"":""Chapel Hill"",""state"":""North Carolina"",""code"":""27516"",""country"":""United States"",""phone"":""1-919-942-1800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""460 West Franklin Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.9103,""lon"":-79.0632}}",1,49,1
+fox_river_brewing_1-fox_light,0,0,244611678211,"{""name"":""Fox Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+cumberland_brewery,0,0,244498563072,"{""name"":""Cumberland Brewery"",""city"":""Louisville"",""state"":""Kentucky"",""code"":""40205"",""country"":""United States"",""phone"":""(502) 458-8727"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Giving new meaning to the term microbrewery, Cumberland Brews may be one of the smallest eateries in town, with a half-dozen four-top tables and a short bar with nine stools making tight quarters of what used to be the White Mountain Creamery. (Techically, it's not a microbrewery but a brewpub - a restaurant that makes its own beer on the premises - but I'm not one to quibble in the face of a good pun.) It's usually packed, too, earning its crowds the old-fashioned way by providing very good food, friendly service, and the sine qua non for a brewpub: extremely high-quality hand-crafted artisan beers. Hand-crafted offerings are produced by Head Brewer Cameron Finnis."",""address"":[""1576 Bardstown Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.2309,""lon"":-85.7055}}",1,57,1
+three_floyds_brewing-drunk_monk_hefeweizen,0,0,245097627652,"{""name"":""Drunk Monk Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,1,1
+gottberg_brew_pub-belgian_ale_discontinued,0,0,244631339008,"{""name"":""Belgian Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+long_valley_pub_brewery-black_river_brown,0,0,244861632512,"{""name"":""Black River Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
+wychwood_brewery,0,0,245749514241,"{""name"":""Wychwood Brewery"",""city"":""Witney"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01993)-890800"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Eagle Maltings""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.7523,""lon"":-1.2558}}",1,40,1
+egan_brewing-white_fathers_witbier,0,0,244620853248,"{""name"":""White Fathers Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+elk_grove_brewery_restaurant-otis_alt,0,0,244621443073,"{""name"":""Otis Alt"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""elk_grove_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,35,1
+green_mill_brewing_saint_paul-india_pale_ale,0,0,244748910592,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+olde_main_brewing,0,0,244860846082,"{""name"":""Olde Main Brewing"",""city"":""Ames"",""state"":""Iowa"",""code"":""50010"",""country"":""United States"",""phone"":""1-515-232-0553"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""316 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.0248,""lon"":-93.6147}}",1,8,1
+midnight_sun_brewing_co-mars_belgian_imperial_red_ipa,0,0,244860256256,"{""name"":""Mars - Belgian Imperial Red IPA"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after the Roman god of war, Mars radiates red color and brilliant beauty yet enrages the taste buds with wrathful force. This Imperial IPA seizes its intense bitterness from an immense amount of hops. Belgian yeast retaliates, adding complexity and character."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,7,1
+legends_brewhouse_eatery_of_green_bay,0,0,244739997697,"{""name"":""Legends Brewhouse & Eatery of Green Bay"",""city"":""Green Bay"",""state"":""Wisconsin"",""code"":""54313"",""country"":""United States"",""phone"":""1-920-662-1111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2840 Shawano Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5534,""lon"":-88.0977}}",1,14,1
+high_falls_brewing-highfalls_indiaman_trader_india_pale_export_ale,0,0,244757823492,"{""name"":""HighFalls Indiaman Trader India Pale Export Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+santa_fe_brewing_company-chicken_killer_barley_wine,0,0,244981301251,"{""name"":""Chicken Killer Barley Wine"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Chicken Killer Barley Wine is the revolutionary beer that will someday define America's unique Barley Wine style. It is brewed with twice the ingredients of the Santa Fe Brewing Company's other beers, and only half the usual amount of liquid is extracted from these ingredients. This makes one substantial beer. At over ten percent alcohol, Chicken Killer is actually as substantial as wine, but this is not to say that it is difficult to drink. On the contrary; be careful with this one. The flavors of the beer are at first as overwhelming as the intense Santa Fe sun. But in the same way our sun gives us the unrivaled brilliant colors of Santa Fe, the potency of Chicken Killer gives us the remarkable spectrum of flavors that can be found in no other beer, in no other city. If you did not have the opportunity to try last year's vintage, come try this year's!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,2,1
+ruppaner_brauerei-hefe_weizen_dunkel,0,0,245000765440,"{""name"":""Hefe Weizen Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+uinta_brewing_compnay,0,0,245097496577,"{""name"":""Uinta Brewing Compnay"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84104"",""country"":""United States"",""phone"":""1-801-467-0909"",""website"":""http://www.uintabrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1722 South Fremont Drive (2375 West)""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7326,""lon"":-111.954}}",1,0,1
+moon_river_brewing_company-tarletons_bitters,0,0,244880113664,"{""name"":""Tarletons Bitters"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,56,1
+chicago_brewing-stout,0,0,244495745025,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""chicago_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,50,1
+green_mountain_beverage-cider_jack,0,0,244741111808,"{""name"":""Cider Jack"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,17,1
+klosterbru_bamberg,0,0,244750352384,"{""name"":""Klosterbru Bamberg"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-57722"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Obere Mhlbrcke 1-3""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8891,""lon"":10.887}}",1,39,1
+roost_brewery-porter,0,0,244982022146,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,4,1
+schussenrieder_erlebnisbrauerei-schwarzbier,0,0,244983005186,"{""name"":""Schwarzbier"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schussenrieder_erlebnisbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,6,1
+kleinbrouwerij_de_glazen_toren,0,0,244755988482,"{""name"":""Kleinbrouwerij de Glazen Toren"",""city"":""Erpe-Mere"",""state"":""Oost-Vlaanderen"",""code"":"""",""country"":""Belgium"",""phone"":""32-(0)53-83-68-17"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Glazentorenweg 11""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.9193,""lon"":3.9666}}",1,54,1
+wynkoop_brewing-patty_s_chile_beer,0,0,245749776386,"{""name"":""Patty's Chile Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A light German-style beer made with Anaheim chiles and smoked Ancho peppers. A 2006 Great American Beer Festival Bronze Medal Winner in the Fruit and Vegetable Beer category anda Wynkoop specialty."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,42,1
+jj_bitting_brewing-cappa_cappa_crusher,0,0,244740915201,"{""name"":""Cappa Cappa Crusher"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jj_bitting_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+lancaster_brewing_co-doppel_bock,0,0,244740587522,"{""name"":""Doppel Bock"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A mighty lager-style brew, dark in color. Our Doppelbock brings a big malty sweetness together with the classic lager smoothness, topped off with a slightly evident alcohol flavor. A toasty brew to battle even the coldest winter nights.\r\n\r\nAvailable at the Brewery and in bottles & cases from March - May."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
+midnight_sun_brewing_co-specialty_beer_black_double_ipa,0,0,244862681089,"{""name"":""Specialty Beer: Black Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""To commemorate the 30th anniversary of Specialty Imports' specialty wine and beer import business, Midnight Sun Brewing Company brewed a very special beer--a black double IPA--to honor this Alaska company's long-term success. \r\n\r\nThis black double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \""Specialty Beer\"" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale.\r\n\r\nAvailability: \r\nAK - 22-oz bottles (limited release begins 01/16/2009)\r\n\r\n** An oak-aged version will be released in Fall 2009.""}",1,13,1
+southern_star_brewing_company-pine_belt_pale_ale,0,0,245115650048,"{""name"":""Pine Belt Pale Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_star_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep copper colored ale with a substantial malt backbone accented with British crystal malts with aggressive hop bitterness and substantial American hop flavor and aroma. The yeast profile is neutral."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+wild_river_brewing_and_pizza_cave_junction-blackberry,0,0,245750562817,"{""name"":""Blackberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,47,1
+firehouse_grill_brewery-hefeweizen,0,0,244619542531,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+joboy_s_brew_pub,0,0,244749697024,"{""name"":""JoBoy's Brew Pub"",""city"":""Manheim"",""state"":""Pennsylvania"",""code"":""17545"",""country"":""United States"",""phone"":"""",""website"":""http://www.joboysbrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""87 Doe Run Rd""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.1707,""lon"":-76.3838}}",1,38,1
+otto_s_pub_and_brewery-arthur_s_nugget_pale_ale,0,0,244861108226,"{""name"":""Arthur's Nugget Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A cask-conditioned American Pale Ale. This is a bright dry ale brewed only with American Nugget hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+klosterbru_bamberg-bamberger_gold,0,0,244747665408,"{""name"":""Bamberger Gold"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbru_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+central_city_brewing_company-springboard_lager,0,0,244481916930,"{""name"":""Springboard Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""central_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+wolf_pack_brewing,0,0,245750038529,"{""name"":""Wolf Pack Brewing"",""city"":""West Yellowstone"",""state"":""Montana"",""code"":""59758"",""country"":""United States"",""phone"":""1-406-646-7727"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""111 South Canyon Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.6584,""lon"":-111.1}}",1,43,1
+climax_brewing_copmany-climax_extra_special_bitter_ale,0,0,244481392640,"{""name"":""Climax Extra Special Bitter Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""climax_brewing_copmany"",""updated"":""2010-07-22 20:00:20"",""description"":""Our E.S.B. is a balanced beer with notes of honey, toffee and caramel, backed by a warm spicy hop bitterness."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,18,1
+midnight_sun_brewing_co-conspiracy,0,0,244868710401,"{""name"":""Conspiracy"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Conspiracy Belgian-style Black Beer is the result of a collaboration between Midnight Sun brewers Gabe Fletcher and Ben Johnson and Pelican Pub (Pacific City, OR) brewer Ben Love. These brewers conspired during barley wine fest week to brew up a deviously delicious dark Belgian-style beer. \r\n\r\nConspiracy is opaque black with a creamy beige head. Black malt shrouds it in mystery; the Belgian yeast imparts intriguing flavor; the alcohol adds danger. If you're up for this mission, watch your back.\r\n\r\nConspiracy will be released in Anchorage and Portland in April 2007."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,28,1
+southend_brewery_and_smokehouse_charleston-bombay_pale_ale,0,0,245099724800,"{""name"":""Bombay Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,5,1
+tyranena_brewing-chief_blackhawk_porter,0,0,245099200512,"{""name"":""Chief Blackhawk Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1767 a great Sauk leader was born. His name meant \""the black sparrow hawk.\"" He came to be known as Black Hawk. Strong beliefs, independent thinking and an unwavering commitment to his family and his people earned him a reputation as a man of integrity and courage. In 1832, along with 1,200 of his people, Black Hawk was driven from his ancestral home during a war that bears his name. We celebrate this Sauk leader and his courage with our BlackHawk Porter, the kind of beer that make you say, Ma-ka-tai-she-kia-kiak!\r\n\r\nChief BlackHawk Porter is a robust black and sharply bittersweet ale. This style was traditionally the session beer consumed by the porters in London."",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
+hop_back_brewery-summer_lightning,0,0,244756447234,"{""name"":""Summer Lightning"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hop_back_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+metropolitan_brewing-flywheel_bright_lager,0,0,244878278656,"{""name"":""Flywheel Bright Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""metropolitan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The kinetic beauty of spicy hops grabs you by the nose and lets you know: this is German-inspired beer. A mild, bready malt sweetness greets you at the lips, smoothing the crisp hop flavors. Flywheel is meant for bombastic celebrations of singing voices and clamoring mugs. But then, that first contented moment of happy hour is uniquely celebratory as well.\r\n\r\nFlywheel Bright Lager goes great with hot dogs, guitar jams, stir fry, bowling, taco salad, house warmings, baked potatoes, Saturday morning cartoons, tequila, gouda cheese, karaoke, bagel & schmear, Euchre, fresh berries, asparagus, 16-inch softball, sushi, darts, Pad Thai, family reunions, pb&j, flan, romantic weekend getaways, garlic bread, pay raises, nachos, baby showers, fondue, and Frisbee golf."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,52,1
+listermann_brewing_company,0,0,244861239296,"{""name"":""Listermann Brewing Company"",""city"":""Cincinnati"",""state"":""Ohio"",""code"":""45212"",""country"":""United States"",""phone"":""(513) 731-1130"",""website"":""http://www.listermann.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1621 Dana Ave.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.1456,""lon"":-84.4741}}",1,10,1
+coast_brewing,0,0,244495155200,"{""name"":""Coast Brewing"",""city"":""Biloxi"",""state"":""Mississippi"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.396,""lon"":-88.8853}}",1,49,1
+fox_river_brewing_1-fox_tail_amber_ale,0,0,244611743744,"{""name"":""Fox Tail Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+daas-daas_organic_blond,0,0,244498563073,"{""name"":""Daas Organic Blond"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daas"",""updated"":""2010-07-22 20:00:20"",""description"":""Daas Blond is the authentic Belgian strong golden beer, its honey spice aroma and perfect balance of bitter sweet flavours are followed by a classic dry hop finish. A perfect aperitif beer.\r\n\r\nDaas Beer is the only Belgian beer brewed in Belgium to carry both the UK Soil Assoc organic certification and the Belgian Certsys certification whist still upholding its Belgian tradition of brewing excellence using the finest organic ingredients."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,57,1
+tied_house_cafe_brewery_san_jose,0,0,245097693184,"{""name"":""Tied House Cafe & Brewery - San Jose"",""city"":""San Jose"",""state"":""California"",""code"":""95110"",""country"":""United States"",""phone"":""1-408-295-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""65 North San Pedro""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.3362,""lon"":-121.894}}",1,1,1
+gottberg_brew_pub-octoberfest_discontinued,0,0,244631339009,"{""name"":""Octoberfest (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,58,1
+long_valley_pub_brewery-lazy_jake_porter,0,0,244861632513,"{""name"":""Lazy Jake Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_valley_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
+zea_rotisserie_and_brewery,0,0,245749579776,"{""name"":""Zea Rotisserie and Brewery"",""city"":""New Orleans"",""state"":""Louisiana"",""code"":""70130"",""country"":""United States"",""phone"":"""",""website"":""http://www.zearestaurants.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1525 St. Charles Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":29.9386,""lon"":-90.076}}",1,40,1
+ellicott_mills_brewing,0,0,244620918784,"{""name"":""Ellicott Mills Brewing"",""city"":""Ellicott City"",""state"":""Maryland"",""code"":""21043"",""country"":""United States"",""phone"":""1-410-313-8141"",""website"":""http://www.ellicottmillsbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Here at the Mills we have a very simple, yet demanding approach to producing Alpenhof beer. We use the very best ingredients available. We are efficient and precise in production method, yet we allow the product to age to its full maturity. Balance is the key to our beer. Alpenhof beer is not created to challenge the senses. It is not created to be a complex beer. Well balanced for Alpenhof means smooth and easy-drinking. The way a beer should taste. To achieve this well balanced taste, only the finest ingredients are used. We import our malt, hops, and yeast from Germany. (For true German style Lager beer, authentic ingredients are essential!) We might spend more for our ingredients, but it is well worth it. This is an expense you can actually taste!"",""address"":[""8308 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2684,""lon"":-76.7994}}",1,34,1
+f_x_matt_brewing-saranac_india_pale_ale,0,0,244621443074,"{""name"":""Saranac India Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover's delight. In the India Pale Ale tradition this brew is very hoppy in both aroma and flavor from the generous amounts of cascade hops used in brewing. Look for a medium to full body and golden straw color."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
+grumpy_troll_restaurant_and_brewery-liberty_pale_ale,0,0,244748976128,"{""name"":""Liberty Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grumpy_troll_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+penn_brewery-penn_oktoberfest,0,0,244983726080,"{""name"":""Penn Oktoberfest"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, deep golden-colored lager fest bier that is exceptionally smooth and mellow. Uses two-row malted barley and a combination of roasted malts. Highly rated by the National Tasting Institute."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,8,1
+moab_brewery,0,0,244860256257,"{""name"":""Moab Brewery"",""city"":""Moab"",""state"":""Utah"",""code"":""84532"",""country"":""United States"",""phone"":""1-435-259-6333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""686 South Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.5657,""lon"":-109.55}}",1,7,1
+mad_river_brewing-jamaica_brand_sunset_ipa,0,0,244862943232,"{""name"":""Jamaica Brand Sunset IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
+inveralmond_brewery,0,0,244757889024,"{""name"":""Inveralmond Brewery"",""city"":""Perth"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01738)-449448"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Inveralmond Way""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":56.4174,""lon"":-3.4779}}",1,59,1
+schooner_brewery-pegasus_pilsner,0,0,244981366784,"{""name"":""Pegasus Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+russian_river_brewing-aud_blonde,0,0,245000765441,"{""name"":""Aud Blonde"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Aud Blonde has a refined characteristic, which can be contributed to us blending pilsner malt with a unique hop called crystal. The distinctive characteristic of the crystal hop lends a citrus, almost eucalyptus quality in the aroma and mouth feel of the brew, while leaving the beer with a long dry finish."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,48,1
+vivungs_bryggeri-dragol,0,0,245744074752,"{""name"":""Dragöl"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vivungs_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,0,1
+nodding_head_brewpub-bill_payer_ale_bpa,0,0,244880113665,"{""name"":""Bill Payer Ale / BPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
+clner_hofbrau_frh,0,0,244495745026,"{""name"":""Clner Hofbrau Frh"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)221-/-2613-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Am Hof 12-14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9401,""lon"":6.957}}",1,50,1
+greene_king,0,0,244741111809,"{""name"":""Greene King"",""city"":""Bury St. Edmunds"",""state"":""Suffolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01284)-763222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Westgate Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.241,""lon"":0.7157}}",1,17,1
+lakefront_brewery-fuel_cafe,0,0,244750352385,"{""name"":""Fuel Cafe"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+russian_river_brewing-lap_dance_pale_ale,0,0,244982087680,"{""name"":""Lap Dance Pale Ale"",""abv"":5.55,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
+shipwrecked_brew_pub-door_county_cherry_wheat,0,0,244983005187,"{""name"":""Door County Cherry Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,6,1
+knig_ludwig_schlobrauerei_kaltenberg,0,0,244756054016,"{""name"":""Knig Ludwig Schlobrauerei Kaltenberg"",""city"":""Frstenfeldbruck"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8141-/-2430"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Augsburgerstrae 41""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.1826,""lon"":11.2522}}",1,54,1
+wynkoop_brewing-wixa_weiss,0,0,245749841920,"{""name"":""Wixa Weiss"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Anunfiltered wheat beer, weiss beer is a bavarian tradition. Our version is immensely refreshing and authentic, delivering the classic weiss aromas of clove and banana. A two-time Great American Beer Festival Medal winner in the German Style Wheat Ale category."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,42,1
+kleinbrouwerij_de_glazen_toren-jan_de_lichte,0,0,244740915202,"{""name"":""Jan de Lichte"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kleinbrouwerij_de_glazen_toren"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+lancaster_brewing_co-lancaster_winter_warmer,0,0,244740587523,"{""name"":""Lancaster Winter Warmer"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our classic Olde Ale redefines the term \""full-bodied\"" with its deliverance of complex and firm malt flavor. A fine blend of British and American hops provides an even bitterness as this beer finishes with a warming alcohol flavor."",""style"":""Old Ale"",""category"":""British Ale""}",1,15,1
+new_belgium_brewing-mothership_wit,0,0,244862681090,"{""name"":""Mothership Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our first venture into organically-produced beer, Mothership Wit Organic Wheat Beer elevates the zesty Wit or White beers of Belgium. Our far-flung Beer Rangers affectionately refer to our Fort Collins brewery as the Mothership, a name that conjures images of earth shot from space and the interconnectivity of it all. Mothership Wit is brewed with wheat and barley malt, as well as coriander and orange peel spicing resulting in a balance of citrus and sour flavors held in suspension by a bright burst of carbonation.""}",1,13,1
+southern_tier_brewing_co-2xipa,0,0,245115715584,"{""name"":""2xIPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,41,1
+wyder_s_cider-dry_pear_hard_cider,0,0,245750562818,"{""name"":""Dry Pear Hard Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wyder_s_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,47,1
+fitger_s_brewhouse_brewery_and_grill-starfire_pale_ale,0,0,244619608064,"{""name"":""Starfire Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitger_s_brewhouse_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+jolly_pumpkin_artisan_ales-la_roja,0,0,244749697025,"{""name"":""La Roja"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jolly_pumpkin_artisan_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An artisan amber ale brewed in the Flanders tradition. Deep amber with earthy caramel, spice, and sour fruit notes developed through natural barrel aging. Unfiltered, unpasteurized and blended from barrels ranging in age from two to ten months."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
+pinnacle_peak_patio_steakhouse_microbrewery-gunslinger_imperial_stout,0,0,244984250368,"{""name"":""Gunslinger Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pinnacle_peak_patio_steakhouse_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
+la_jolla_brewing-sealane_steam,0,0,244747665409,"{""name"":""Sealane Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+cervecera_cuauhtmoc_moctezuma-noche_buena_special_holiday_amber_beer,0,0,244481982464,"{""name"":""Noche Buena Special Holiday Amber Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_cuauhtmoc_moctezuma"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+wolf_tongue_brewery-mister_hoppy_ipa,0,0,245750038530,"{""name"":""Mister Hoppy IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wolf_tongue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,43,1
+clipper_city_brewing_co-gold_ale,0,0,244481392641,"{""name"":""Gold Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""clipper_city_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+miller_brewing-olde_english_800,0,0,244868710402,"{""name"":""Olde English 800"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+sprecher_brewing,0,0,245099790336,"{""name"":""Sprecher Brewing"",""city"":""Glendale"",""state"":""Wisconsin"",""code"":""53209"",""country"":""United States"",""phone"":""1-414-964-2739"",""website"":""http://www.sprecherbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 West Glendale Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1,""lon"":-87.9198}}",1,5,1
+tyranena_brewing-headless_man_amber_alt,0,0,245099200513,"{""name"":""Headless Man Amber Alt"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The ancient peoples that inhabited Wisconsin are known for building numerous celestial stone monuments and earthen effigy mounds to serve as symbols of their culture and their beliefs. Unfortunately, most of these structures have fallen victim to the farmer's plow over the past 150 years. Not far from the brewery, lying preserved on the floor of Rock Lake, are two effigy mounds - a Headless Man and a Turtle. Legend tells us, as the Turtle can survive on both land and in water, its spirit helped guide the Headless Man into the afterlife. May the Turtle's spirit guide you to happiness with a Headless Man Amber Alt.\r\n\r\nThe Headless Man is brewed in the \""old way\"" of a Düsseldorf-style Altbier. A unique cold lagering process gives this amber ale its smooth taste."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,3,1
+hoppin_frog_brewery-barrel_aged_b_o_r_i_s_imperial_stout,0,0,244756447235,"{""name"":""Barrel-Aged B.O.R.I.S. Imperial Stout"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Made from our B.O.R.I.S. Imperial Stout, that was rated one of the World’s 50 Best Beers, and won the Gold Medal at the GABF in 2008. BARREL-AGED B.O.R.I.S. has picked up rich characters of vanilla, dark fruit, oak, and spice. It’s unbelievably complex and savory"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,55,1
+michigan_brewing-nut_brown_ale,0,0,244878278657,"{""name"":""Nut Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A mild, roasted nut and caramel flavored ale with a deep brown color. It is a medium-bodied beer with a mild to medium hop bitterness and aroma."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
+little_creatures_brewery-little_creatures_pilsner,0,0,244861239297,"{""name"":""Little Creatures Pilsner"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_creatures_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Czech Saaz hops are added early in the boil with a late hopping using a hybrid variety we keep to ourselves, giving light flavour and a soft bitterness. Lightly kilned pilsner malt gives the beer both it’s light, slightly golden colour, and leaves a crisp clean taste on the palate."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,10,1
+coopers_brewery-extra_strong_vintage_ale,0,0,244495155201,"{""name"":""Extra Strong Vintage Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coopers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If fine wine were beer it would no doubt be Coopers Extra Strong Vintage Ale. This strong ale imparts rich full flavours that are suitable for maturation. Brewed with choice malts and an extended top fermentation, Coopers Extra Strong Vintage Ale will improve with age, becoming more interesting and complex in flavour for up to 18 months. The results are well worth the wait!""}",1,49,1
+g_heileman_brewing-old_style,0,0,244611743745,"{""name"":""Old Style"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""g_heileman_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+eel_river_brewing-certified_organic_india_pale_ale,0,0,244630552576,"{""name"":""Certified Organic India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""eel_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
+tongerlo-tongerlo_christmas,0,0,245097758720,"{""name"":""Tongerlo Christmas"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""TONGERLO CHRISTMAS 6,5°\r\nCopper-coloured beer of pure spring barley, with a touch of vanilla in the aroma, a fruity and complex flavour and a smooth aftertaste."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,1,1
+great_dane_pub_and_brewing_1-black_wolf_ale,0,0,244757233664,"{""name"":""Black Wolf Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+malt_shovel_brewery-james_squire_porter,0,0,244861632514,"{""name"":""James Squire Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""malt_shovel_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
+erie_brewing_company-derailed_black_cherry_ale,0,0,244620918785,"{""name"":""Derailed Black Cherry Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewery folklore tells a story about a train engineer with a passion for the taste of Railbender Ale. With every stop he made in Erie came an equal number of stops at our brewery. One extended visit to our fermenter left the engineer in a rather befuddled state of mind. On his fateful trip out of Erie that evening, his train mysteriously derailed. The engineer swears that a huge black cherry tree had fallen across the tracks as the culprit. No such tree was ever found, but the front of the locomotive was spattered with hundreds of red sports. In tribute to this folklore our expert brewers introduce Derailed Black Cherry Ale – brewed with fresh sweet black cherries and the finest malted barley to create a truly cherrylicious ale. Please enjoy responsibly, as we would never want you to get derailed!"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
+f_x_matt_brewing-saranac_mocha_stout,0,0,244621443075,"{""name"":""Saranac Mocha Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Combines the rich roasted flavor of our traditional stout with a deep, robust mocha. Look for a full-bodied taste with a crescendo of complex flavor notes."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+ham_s_restaurant_and_brewhouse,0,0,244748976129,"{""name"":""Ham's Restaurant and Brewhouse"",""city"":""Greenville"",""state"":""North Carolina"",""code"":""27834"",""country"":""United States"",""phone"":""1-252-830-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 Evans Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.6083,""lon"":-77.3732}}",1,37,1
+pike_pub_and_brewery-india_pale_ale,0,0,244983791616,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
+moose_s_tooth_pub_and_pizzeria-bear_tooth_ale,0,0,244860256258,"{""name"":""Bear Tooth Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep-red, full-bodied, malty ale heavily hopped with Centennial hops to produce a citrusy, spruce-like flavor and aroma. A final dose of Centennail hops in the conditioning tank lends an India Pale Ale-like aroma to the finished beer."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
+mad_river_brewing,0,0,244862943233,"{""name"":""Mad River Brewing"",""city"":""Blue Lake"",""state"":""California"",""code"":""95525"",""country"":""United States"",""phone"":""1-707-668-4151"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""195 Taylor Way""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.879,""lon"":-123.993}}",1,14,1
+iron_springs_pub_brewery-honey_bunny_blonde_ale,0,0,244757889025,"{""name"":""Honey Bunny Blonde Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+sharktooth_brewing-porter,0,0,244981366785,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,2,1
+saint_arnold_brewing-fancy_lawnmower_beer,0,0,245000765442,"{""name"":""Fancy Lawnmower Beer"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A true German-style Kölsch. Originally brewed in Cologne, this beer is light yet has a sweet malty body that is balanced by a complex, citrus hop character. Multiple additions of German Hallertauer hops are used to achieve this delicate flavor. We use a special Kölsch yeast, an ale yeast that ferments at lager temperatures, to yield the slightly fruity, clean flavor of this beer. Fancy Lawnmower Beer is a world class brew yet light enough to be enjoyed by Texans after strenuous activities, like mowing the lawn.\r\n\r\nSaint Arnold Fancy Lawnmower Beer is best consumed at 35-45° Fahrenheit.""}",1,48,1
+voodoo_brewing_co_llc-black_magick,0,0,245744140288,"{""name"":""Black Magick"",""abv"":15.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is an Imperial Stout that is Brewed to great strength and complexity. We then gently age that beer in Elaigh Craig 13 1/2 year old Bourbon Barrels for 1 yr. and then primed and bottled to bottle condition for continued aging and celler life. Black Magick should be able to be aged up to about 5 years, to heighten the complexity and smooth nature of this beer. This beer should be opened to breath, pour into snifter and enjoy at 55-60 F. \r\n\r\nThis is a truly Barrel aged ale and is not to have a large carbonation. We bottle condition it to achieve cask like characteristics."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,0,1
+o_hara_s_brewpub_and_restaurant,0,0,244880179200,"{""name"":""O'Hara's Brewpub and Restaurant"",""city"":""Saint Cloud"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5539,""lon"":-94.1703}}",1,56,1
+cooper_s_cave_ale_company-bumppo_s_brown_ale,0,0,244495810560,"{""name"":""Bumppo's Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Bumppo's Brown Ale is a dark Dark Mild Ale. It is lightly hopped with a medium body, darkened and flavored with chocolate malt."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
+grupo_modelo,0,0,244741111810,"{""name"":""Grupo Modelo"",""city"":""Mexico City"",""state"":"""",""code"":"""",""country"":""Mexico"",""phone"":"""",""website"":""http://www.gmodelo.com.mx/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":19.427,""lon"":-99.1276}}",1,17,1
+lancaster_brewing_co-hop_hog_ipa,0,0,244750352386,"{""name"":""Hop Hog IPA"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our hoppiest beer to date. This formidable India Pale Ale has a hop aroma that demands attention. The bold, citrus hop flavor is balanced by a dry malt character that makes this refreshing ale a true classic."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
+sand_creek_brewing_company-imperial_stout,0,0,244982087681,"{""name"":""Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,4,1
+sierra_nevada_brewing_co-bigfoot_2005,0,0,244983070720,"{""name"":""Bigfoot 2005"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+lakefront_brewery-big_easy_beer,0,0,244756054017,"{""name"":""Big Easy Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,54,1
+yamhill_brewing,0,0,245749841921,"{""name"":""Yamhill Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.5235,""lon"":-122.676}}",1,42,1
+klosterbrauerei_neuzelle-golden_abbot_lager,0,0,244740980736,"{""name"":""Golden Abbot Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+mad_crab_restaurant_and_brewery,0,0,244863533056,"{""name"":""Mad Crab Restaurant and Brewery"",""city"":""Strongsville"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.3145,""lon"":-81.8357}}",1,15,1
+new_glarus_brewing_company-native_ale,0,0,244862746624,"{""name"":""Native Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,13,1
+southern_tier_brewing_co-422_pale_wheat_ale,0,0,245115715585,"{""name"":""422 Pale Wheat Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Pour 422 Pale Wheat Ale into a pint glass, give it a long whiff and you’ll realize that this isn’t your average pale golden wheat. Preserved in its unfiltered state, 422 is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of orange and sweet malts waft to the fore as a touch of bitterness contributes to a smooth finish. 422 is brewed as a tribute to preserving our precious planet and it’s environment. It is responsibly packaged with over 80% recycled consumer products and is completely recyclable. Enjoy 422 all year as to take one stride closer to a eco-friendly life."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
+abdullah,0,0,89908535623680,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,47,1
+flagstaff_brewing-bubbaganoush_pale_ale,0,0,244619608065,"{""name"":""Bubbaganoush Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+jt_whitney_s_brewpub_and_eatery-ipa,0,0,244749762560,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+pyramid_ales_brewery-snow_cap,0,0,244984250369,"{""name"":""Snow Cap"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, full-bodied winter warmer crafted in the British tradition of holiday beers. This deep mahogany colored brew balances complex fruit flavors with a refreshingly smooth texture, making Snow Cap a highly drinkable and desirable cold weather companion."",""style"":""Old Ale"",""category"":""British Ale""}",1,9,1
+labatt_keith_s_brewery_oland_breweries,0,0,244747665410,"{""name"":""Labatt / Keith's Brewery / Oland Breweries"",""city"":""Halifax"",""state"":""Nova Scotia"",""code"":""0"",""country"":""Canada"",""phone"":""1-902-453-1867"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3055 Agricola Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.6598,""lon"":-63.5997}}",1,33,1
+cervecera_nacional-cabro_extra,0,0,244481982465,"{""name"":""Cabro Extra"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cervecera_nacional"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+columbus_brewing_company,0,0,244481392642,"{""name"":""Columbus Brewing Company"",""city"":""Columbus"",""state"":""OH"",""code"":""43215"",""country"":""United States"",""phone"":""614-464-2739"",""website"":""www.columbusbrewingco.com"",""type"":""brewery"",""updated"":""2011-03-08 12:19:07"",""description"":""Located just south of downtown Columbus, Ohio, adjacent to German Village in the historic Brewery District, Columbus Brewing Company Restaurant features award-winning food and beer in an upscale-casual setting. "",""address"":[""525 Short St.""]}",1,18,1
+minhas_craft_brewery,0,0,244868775936,"{""name"":""Minhas Craft Brewery"",""city"":""Monroe"",""state"":""Wisconsin"",""code"":""53566"",""country"":""United States"",""phone"":""1-608-325-3191"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1208 14th Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6001,""lon"":-89.6422}}",1,28,1
+spring_house_brewing_company-atomic_raygun_imperial_red,0,0,245099790337,"{""name"":""Atomic Raygun Imperial Red"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We welcome the latest release Atomic Raygun Imperial Red! Brewed with Pilsner, Chocolate and Caramel malts but well balanced with Columbus and Centennial Hops and coming in at 90 IBU's. The Octane level on this one is coming in at 8.3!"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,5,1
+union_barrel_works-wobbly_bob_dopplebock,0,0,245099266048,"{""name"":""Wobbly Bob Dopplebock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Dunkle style lager with an original gravity above 19 degrees Plato. Rich and malty, this is a strong bock with a mellow finish."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,3,1
+hue_brewery,0,0,244756512768,"{""name"":""Hue Brewery"",""city"":""Hue"",""state"":"""",""code"":"""",""country"":""Viet Nam"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hue""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-33.2175,""lon"":151.426}}",1,55,1
+mohrenbrauerei_august_huber-gambrinus,0,0,244878344192,"{""name"":""Gambrinus"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mohrenbrauerei_august_huber"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+lost_coast_brewery-pale_ale,0,0,244861304832,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lost_coast_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+cooperstown_brewing_company-benchwarmer_porter,0,0,244495155202,"{""name"":""Benchwarmer Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooperstown_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Benchwarmer\"" is a very smooth Porter brewed in accordance with the original \""high gravity\"" porters of early London. More than 4% chocolate malt, which is the most similar to the brown malts of the early 1700’s, gives \""Benchwarmer\"" its dry coffee-like finish. It is fermented with the Ringwood yeast which is an excellent yeast for the brewing of porters. The widely accepted theory of how porter got its name is that it was a very popular beer among the porters who hauled produce and goods around the marketplace of early industrialized London."",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
+gaslight_brewery-steam_beer,0,0,244611809280,"{""name"":""Steam Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gaslight_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+einbecker_brauhaus_ag-schwarzbier_dunkel,0,0,244630552577,"{""name"":""Schwarzbier / Dunkel"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""einbecker_brauhaus_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,57,1
+troegs_brewing-dreamweaver,0,0,245097824256,"{""name"":""Dreamweaver"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Long toasty days, cool breezy nights and a splash of magic provide the inspiration for the Troegs brothers’ dreamiest Single Batch creation—Dreamweaver Wheat. Combining four wheat types with Munich and Pils malts, noble Saaz hops, and a yeast strain that imparts a spicy, peppery, clove taste with a slight hint of bananas, Dreamweaver Wheat is an unfiltered blast of spicy, mouthwatering joy."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,1,1
+green_mill_brewing_saint_paul-knockadoon_irish_ale,0,0,244757299200,"{""name"":""Knockadoon Irish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mill_brewing_saint_paul"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+mccashin_s_brewery_malthouse-malt_mac_winter_ale,0,0,244861698048,"{""name"":""Malt Mac Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mccashin_s_brewery_malthouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+esser_s_cross_plains_brewery,0,0,244620918786,"{""name"":""Esser's Cross Plains Brewery"",""city"":""Cross Plains"",""state"":""Wisconsin"",""code"":""53528"",""country"":""United States"",""phone"":""1-608-798-3911"",""website"":""http://www.essersbest.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2109 Hickory Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.1147,""lon"":-89.6531}}",1,34,1
+f_x_matt_brewing-saranac_octoberfest,0,0,244621508608,"{""name"":""Saranac Octoberfest"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Octoberfest is a med-bodied, copper colored lager. It's rich, malty taste is subtly balanced by Saaz and Tettnang hops. The beer is aged slowly in the tradition of the Octoberfest beers of Munich."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,35,1
+hirschbru_privatbrauerei_hss-neuschwansteiner_bavarian_lager,0,0,244749041664,"{""name"":""Neuschwansteiner Bavarian Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hirschbru_privatbrauerei_hss"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+pivovar_pardubice_a_s,0,0,244983857152,"{""name"":""Pivovar Pardubice a.s."",""city"":""Pardubice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-466-511-321-4"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Palackho 250""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0355,""lon"":15.762}}",1,8,1
+morland_and_co-tanners_jack,0,0,244860321792,"{""name"":""Tanners Jack"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""morland_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+manhattan_beach_brewing,0,0,244863008768,"{""name"":""Manhattan Beach Brewing"",""city"":""Manhattan Beach"",""state"":""California"",""code"":""90266"",""country"":""United States"",""phone"":""1-310-378-2744"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""124 Manhattan Beach Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.8844,""lon"":-118.411}}",1,14,1
+iron_springs_pub_brewery-shining_star_pale_ale,0,0,244757889026,"{""name"":""Shining Star Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+smoky_mountain_brewing-black_bear_ale,0,0,245097955328,"{""name"":""Black Bear Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smoky_mountain_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
+salado_creek_brewing_company-amarossa,0,0,245000830976,"{""name"":""Amarossa"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salado_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+warwick_valley_wine_co,0,0,245744140289,"{""name"":""Warwick Valley Wine Co."",""city"":""Warwick"",""state"":""NY"",""code"":""10990"",""country"":""United States"",""phone"":""(845) 258-4858"",""website"":""http://www.wvwinery.com"",""type"":""brewery"",""updated"":""2010-12-20 16:17:52"",""description"":"""",""address"":[""114 Little York Rd""]}",1,0,1
+odell_brewing-bobby,0,0,244880179201,"{""name"":""Bobby"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+cooper_s_cave_ale_company-cooper_s_cave_pale_ale,0,0,244495810561,"{""name"":""Cooper's Cave Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cooper_s_cave_ale_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Cooper's Cave Pale Ale is an English Pale Ale throughout.It is a full bodied light colored ale with evenly pronounced hop bitterness. The grain bill consists of two English Pale Malts and an English Crystal Malt. The brewer's favorite...need we say more."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,50,1
+haarlems_biergenootschap_jopen-adriaan,0,0,244741177344,"{""name"":""Adriaan"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""haarlems_biergenootschap_jopen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+liberty_steakhouse_and_brewery,0,0,244750352387,"{""name"":""Liberty Steakhouse and Brewery"",""city"":""Myrtle Beach"",""state"":""South Carolina"",""code"":""29577"",""country"":""United States"",""phone"":""843.626.4677"",""website"":""http://www.libertysteakhouseandbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Liberty means many things to many different people. It's a celebration of the great American farmer and the rich bounty he puts on our plates. It's a celebration of America's rich ethnic cooking styles. It's a celebration of the resurgence of the handcrafted-brewing style of the pre-prohibition small American brewery. Liberty Steakhouse & Brewery is based on America's rich ethnic cooking styles, complimented by finely hand-crafted beers, tantalizing starters and perfectly seared steaks. We've got something brewing you're sure to like. Liberty is also a celebration of life, family and the pursuit of happiness. So bring us your hungry, your thirsty and fun-loving, we'll send you home refreshed and fulfilled."",""address"":[""1321 Celebrity Circle""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.7187,""lon"":-78.8831}}",1,39,1
+santa_fe_brewing_company-santa_fe_stout,0,0,244982087682,"{""name"":""Santa Fe Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A hearty sip of the Santa Fe Stout delights one’s taste buds first with a generous Irish serving of roast malt that rolls off the tongue with a creamy bitterness reminiscent of the finest coffee. Supported by the complex, yet light body only possible with a good Irish yeast strain, this coffee-like creaminess eventually yields to the warmth of a subtle variety of hops, and their mild, full flavor. A favorite with regular customers, this rare brew can occasionally be found on draft at restaurants in Santa Fe, but is more likely on tap at the Brewery's tasting room. Despite its intimidating dark color, this brew has an uncanny ability to convert those who claim not to like beer. The balance of flavors and complexity of aroma are recognized and appreciated by all who taste this fine brew.""}",1,4,1
+sly_fox_brewhouse_and_eatery_royersford-anniversary_ipa_ahtanum,0,0,245100249088,"{""name"":""Anniversary IPA Ahtanum"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,6,1
+leinenkugel_s_ballyard_brewery-splitfinger_stout,0,0,244756054018,"{""name"":""Splitfinger Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""leinenkugel_s_ballyard_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
+yellowstone_valley_brewing,0,0,245749907456,"{""name"":""Yellowstone Valley Brewing"",""city"":""Billings"",""state"":""Montana"",""code"":""59101"",""country"":""United States"",""phone"":""406-245-0918"",""website"":""http://www.yellowstonevalleybrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2123 1st Avenue North""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.7861,""lon"":-108.498}}",1,42,1
+knigsbacher_brauerei,0,0,244740980737,"{""name"":""Knigsbacher Brauerei"",""city"":""Koblenz"",""state"":""Rheinland-Pfalz"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)261-/-1397-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""An der Knigsbach 8""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.3216,""lon"":7.5862}}",1,16,1
+main_street_brewery-mesa_cerveza_schnorzenboomer,0,0,244863533057,"{""name"":""Mesa Cerveza Schnorzenboomer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
+new_glarus_brewing_company-smoked_rye_bock,0,0,244862746625,"{""name"":""Smoked Rye Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+speakeasy_ales_and_lagers-old_godfather,0,0,245115781120,"{""name"":""Old Godfather"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,41,1
+flyers_restraunt_and_brewery-heat_seeker_hefe,0,0,244619673600,"{""name"":""Heat Seeker Hefe"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flyers_restraunt_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Bavarian style Hefeweizen, a cloudy brew with slight hints of bannana and clove. Light and refreshing."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,31,1
+jt_whitney_s_brewpub_and_eatery-triple_treat,0,0,244749762561,"{""name"":""Triple Treat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+raccoon_lodge_and_brewpub_cascade_brewing-celtic_copper_ale,0,0,244984315904,"{""name"":""Celtic Copper Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Celtic Copper is a mahogany hued ale with rich malt flavor and subtle hop balance; an excellent choice for those who prefer amber ales."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,9,1
+lagunitas_brewing_company-hop_stoopid,0,0,244747665411,"{""name"":""Hop Stoopid"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,33,1
+cold_spring_brewing-aspen_meadow_black_and_tan,0,0,244482048000,"{""name"":""Aspen Meadow Black and Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cold_spring_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+coronado_brewing_company-four_brothers_pale_ale,0,0,244481458176,"{""name"":""Four Brothers Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""coronado_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+molson_breweries_of_canada-rickard_s_red_ale,0,0,244868841472,"{""name"":""Rickard's Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,28,1
+steamworks-coal_porter,0,0,245099790338,"{""name"":""Coal Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""As you look out over Vancouver's Coal Harbour, relax with this creamy delight. Don't let the colour fool you - this porter is rich but not overpowering with a head that lingers all the way down the glass. Just about anything goes with our Coal Porter, and you don't have to belong to \""High Society\"" to enjoy a glass with oysters."",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
+unionsbru_haidhausen,0,0,245099266049,"{""name"":""Unionsbru Haidhausen"",""city"":""Mnchen"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-477677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Einsteinstrae 42""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.1355,""lon"":11.6009}}",1,3,1
+karl_strauss_brewery_gardens_sorrento_mesa,0,0,244756512769,"{""name"":""Karl Strauss Brewery Gardens - Sorrento Mesa"",""city"":""San Diego"",""state"":""California"",""code"":""92121"",""country"":""United States"",""phone"":""1-858-587-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9675 Scranton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.8969,""lon"":-117.201}}",1,55,1
+moosejaw_pizza_dells_brewing_company-new_hops_ale,0,0,244878344193,"{""name"":""New Hops Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
+maisel_bru-pils,0,0,244861370368,"{""name"":""Pils"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maisel_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+courthouse_pub-courthouse_copper,0,0,244495220736,"{""name"":""Courthouse Copper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""courthouse_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
+goose_island_beer_company_clybourn-xxx_porter,0,0,244611809281,"{""name"":""XXX Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+el_toro_brewing_company-el_toro_negro_oatmeal_stout,0,0,244630618112,"{""name"":""El Toro Negro Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""el_toro_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,57,1
+union_barrel_works-union_barrel_works_mai_bock,0,0,245097824257,"{""name"":""Union Barrel Works Mai-Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A pale bock with fresh maltiness in the aroma and palate. Deep golden color with a generous amount of pure honey to smooth the high alcohol finish. Perle and Cluster hops for bittering and Sazz and Hallertau for finishing. Original gravity above 19 Plato."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,1,1
+hapa_s_brew_haus_and_restaurant-red_eye_amber,0,0,244757364736,"{""name"":""Red Eye Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hapa_s_brew_haus_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+middle_ages_brewing-kilt_tilter,0,0,244861698049,"{""name"":""Kilt Tilter"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Scottish \""90/-\"" ale. Brewed only once a year, this ale is rich and full with a dryness that is beautifully balanced with a classic malt sweetness."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,11,1
+felinfoel_brewery_co_ltd,0,0,244620984320,"{""name"":""Felinfoel Brewery Co Ltd"",""city"":""Llanelli"",""state"":""Wales"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-01554-773357"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Farmers Row""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.6987,""lon"":-4.1456}}",1,34,1
+fauerbach_brewing_company,0,0,244621508609,"{""name"":""Fauerbach Brewing Company"",""city"":""Madison"",""state"":""Wisconsin"",""code"":""53705"",""country"":""United States"",""phone"":"""",""website"":""http://www.fauerbachbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1714 Camus Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0844,""lon"":-89.4761}}",1,35,1
+jack_s_brewing-india_pale_ale,0,0,244749041665,"{""name"":""India Pale Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jack_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+porterhouse_restaurant_and_brewpub-indian_red_ale,0,0,244983857153,"{""name"":""Indian Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+moylans_brewing_company,0,0,244860321793,"{""name"":""moylans Brewing company"",""city"":""Novato"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.moylans.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.1074,""lon"":-122.57}}",1,7,1
+mccoy_s_public_house_and_brewkitchen,0,0,244863008769,"{""name"":""McCoy's Public House and Brewkitchen"",""city"":""Kansas City"",""state"":""Missouri"",""code"":""64111"",""country"":""United States"",""phone"":""1-816-960-0866"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4057 Pennsylvania Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.0534,""lon"":-94.5919}}",1,14,1
+ithaca_beer_company-flower_power_india_pale_ale,0,0,244757889027,"{""name"":""Flower Power India Pale Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Enjoy the clover honey hue and tropical nose. Simultaneously Punchy and soothing with a big body and a finish that boasts pineapple and grapefruit. Flower power is hopped and dry-hopped five different times throughout the brewing and fermentation process."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+smuttynose_brewing_co-smuttynose_pumpkin_ale,0,0,245098020864,"{""name"":""Smuttynose Pumpkin Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Smuttynose Pumpkin Ale is our homage to the craft and heritage of America’s brewers. Recipes calling for the use of pumpkins in beer date back to early colonial times, when brewers sought to extend their supply of costly imported malt with locally grown ingredients, such as squash and “pompions.”\r\n\r\nIn that spirit, we brew our ale with the addition of pumpkin to the mash, along with traditional spices to create a delicious American original."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,2,1
+samuel_smith_old_brewery_tadcaster-organic_ale,0,0,245000830977,"{""name"":""Organic Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""A delicately flavored golden ale in which subtle fruity esters from the Samuel Smith yeast strain interact with a background of maltiness and fresh hops."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,48,1
+weyerbacher_brewing_company-winter_ale,0,0,245744205824,"{""name"":""Winter Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At Weyerbacher we've created a Winter Ale that is a must for any malty beer lover. Winner of a Silver Medal in the 1998 World Beer Championships, Weyerbacher Winter Ale is brewed with deep-roasted chocolate malt. The taste predominates with a warm, roasty flavor, balanced out with a slightly dry finish. It's smooth but not cloying, with a warming belt of alcohol (5.6% ABV).\r\n\r\nAlthough winter ales predate history, they are believed to have their origin in the pagan celebrations of winter solstice. Later, when monasteries produced the local brew, winter ales were made each year to commemorate the birth of Christ. Back then, winter ales were brewed full-bodied as a source of nutrition for the upcoming winter months. Today, winter ales are typified by their seasonality, their rich, malty flavors and by their deep, dark coloration.\r\n\r\nGenerally available November-March, Weyerbacher Winter Ale is the perfect libation for a winter meal, with good friends, or beside a warm fire fending off a cold winter night."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,0,1
+odell_brewing-odell_red_ale,0,0,244880244736,"{""name"":""Odell Red Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Rocky Mountain Goat is no ordinary goat. Just like Odell Red is no ordinary red. \r\n\r\nWe took the American-style red to a whole new level by adding a variety of aggressive American hops—giving this ale a distinctive fresh hop aroma and flavor. \r\n\r\nWe think you'll agree this red has some serious kick."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
+coopers_brewery,0,0,244495876096,"{""name"":""Coopers Brewery"",""city"":""Regency Park"",""state"":""South Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(08)-8440-1800"",""website"":""http://www.coopers.com.au/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Coopers Brewery produce a range of Ales,Stouts and Lagers. Our ale range is brewed by a method of top fermentation, originating in the Middle Ages. Coopers uses only natural ingredients including malt, hops, sugar, water and a special yeast strain that's over 90 years old. Coopers do not use preservatives or chemicals in their ale range. Coopers also produce Stout and Lager beers. The Lager beers are bottom fermented in cooler conditions, matured for a short period and pasteurised."",""address"":[""461 South Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-34.8727,""lon"":138.573}}",1,50,1
+hale_s_ales_3-mongoose_ipa,0,0,244741177345,"{""name"":""Mongoose IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hale_s_ales_3"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
+main_street_beer_company_1-stubborn_mule_barleywine,0,0,244872511488,"{""name"":""Stubborn Mule Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_beer_company_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+selin_s_grove_brewing_co-captain_selin_s_cream,0,0,244982087683,"{""name"":""Captain Selin's Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""selin_s_grove_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,4,1
+southampton_publick_house-double_ice_bock,0,0,245100314624,"{""name"":""Double Ice Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,6,1
+long_trail_brewing_co-harvest,0,0,244878737408,"{""name"":""Harvest"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A light & malty experience modeled after one of our favorite old style English brews."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
+la_jolla_brew_house-pilsner,0,0,244740980738,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+maisel_bru,0,0,244863598592,"{""name"":""Maisel Bru"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-91827-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Moosstrae 46""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8928,""lon"":10.9131}}",1,15,1
+new_holland_brewing_company-dragon_s_milk,0,0,244862746626,"{""name"":""Dragon's Milk"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A barrel-aged, strong-ale with a soft and rich caramel-malt character intermingled with deep vanilla tones dancing in an oak bath. Unmistakably distinctive and hauntingly remarkable, Dragon’s Milk’s warming complexity pairs well with smoked meats and cheeses, red meat, or a nice cigar.""}",1,13,1
+sprecher_brewing-anniversary_ale,0,0,245115781121,"{""name"":""Anniversary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,41,1
+frederic_robinson_ltd,0,0,244619673601,"{""name"":""Frederic Robinson Ltd."",""city"":""Stockport"",""state"":""Cheshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(0161)-480-6571"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unicorn Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.499,""lon"":-72.9007}}",1,31,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2005_sherry,0,0,244749762562,"{""name"":""Harvest Ale 2005 (Sherry)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+railway_brewing-ironhorse_not_brown,0,0,244984381440,"{""name"":""Ironhorse Not Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""railway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
+lancaster_brewing_co-lancaster_milk_stout,0,0,244747730944,"{""name"":""Lancaster Milk Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We are proud to offer one of the few surviving examples of this traditional English style sweet stout. A bold dark ale, bursting with roasted barley dryness and mellowed by hints of chocolate and coffee."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,33,1
+daleside_brewery-monkey_wrench_dark_ale,0,0,244482048001,"{""name"":""Monkey Wrench Dark Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""daleside_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
+cricket_hill-cricket_s_nocturne,0,0,244481458177,"{""name"":""Cricket's Nocturne"",""abv"":4.5,""ibu"":19.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""cricket_hill"",""updated"":""2010-12-06 13:10:41"",""description"":""Cricket's Nocturne: a dark lager that combines a mild crispness with subtle toasty, chocolate notes to make it the perfect thirst quencher on days when there's a chill in the air. It;s a great accompaniment to hearty winter meals, or dessert by the fireside."",""style"":""American-Style Dark Lager"",""category"":""North American Lager""}",1,18,1
+moon_river_brewing_company-swamp_fox_ipa,0,0,244868841473,"{""name"":""Swamp Fox IPA"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Like its namesake, this ale is known for the sneak attack. Hop-heads will enjoy its assertive bitterness and huge floral, dry hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,28,1
+steamworks_brewing_durango-steam_engine_steam,0,0,245099855872,"{""name"":""Steam Engine Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks_brewing_durango"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+upstream_brewing_old_market,0,0,245099266050,"{""name"":""Upstream Brewing Old Market"",""city"":""Omaha"",""state"":""Nebraska"",""code"":""68102"",""country"":""United States"",""phone"":""1-402-344-0200"",""website"":""http://www.upstreambrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Derived from the Native American meaning of Omaha, upstream or against the current, the Upstream Brewing Company is just that�a restaurant different from the rest. Since opening in 1996, the Upstream has been all about fresh�from the handcrafted beers to the locally grown produce to the lively atmosphere. Not to mention the friendly, knowledgeable staff. So stop in today, and find out why we've been named one of Omaha's Best several years running."",""address"":[""514 South Eleventh Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.2553,""lon"":-95.9306}}",1,3,1
+kona_brewing-stout,0,0,244756512770,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
+moylan_s_brewery_restaurant-moylander_double_ipa,0,0,244878344194,"{""name"":""Moylander Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""“If One is Good, Then Two is Better!” Our Moylander Double IPA is fat and resiny, with aggresive and excessive hops swinging on on an enormous malt backbone like naughty monkeys on a vine. Double malt, double hops - do the math, it’s academic. This brew has twice the things you’re looking for, and it’s big enough to share with the one you love. And isn’t that what it's all about?"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,52,1
+marquette_harbor_brewery_and_restaurant,0,0,244861370369,"{""name"":""Marquette Harbor Brewery and Restaurant"",""city"":""Marquette"",""state"":""Michigan"",""code"":""49855"",""country"":""United States"",""phone"":""1-906-228-3533"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""119 South Front Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":46.5431,""lon"":-87.3929}}",1,10,1
+crescent_city_brewhouse-red_stallion,0,0,244495286272,"{""name"":""Red Stallion"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""crescent_city_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
+goose_island_beer_company_fulton_street-baderbrau_pilsener,0,0,244611874816,"{""name"":""Baderbräu Pilsener"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_fulton_street"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+fifty_fifty_brewing_co-roundabout_oatmeal_stout,0,0,244630618113,"{""name"":""Roundabout Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Everyone has their price. For some, it's measured in dollars per hour, for others it's powder days. For those that have the gift of passion for the dark side, it's measured in pints of Oatmeal Stout. Another one of FiftyFifty's seasonals, the Roundabout Oatmeal Stout is brown to black in color and nearly opaque. It has a velvet like mouthfeel, moderate hints of dark dried fruit, espresso beans and Dark Chocolate... and just a hint of hop bitterness. The addition of Flaked Oats gives this brew its wonderful creamy texture. Roundabout Oatmeal Stout is one of a series of Stouts that FiftyFifty Brewing Co. will produce during the course of the year. Enjoy!"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,57,1
+united_breweries_limited-flying_horse_royal_lager_beer,0,0,245097889792,"{""name"":""Flying Horse Royal Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""united_breweries_limited"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,1,1
+harmon_brewing_company-brown_s_point_esb,0,0,244757364737,"{""name"":""Brown's Point ESB"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This E.S.B. is definately the house favorite. Exclusively hopped with Fuggles, this full bodied amber ale finishes smooth and clean. 5.6% ABV"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,58,1
+midnight_sun_brewing_co-berserker_imperial_stout,0,0,244861763584,"{""name"":""Berserker Imperial Stout"",""abv"":12.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Vicious and viscous, this menacing brew pours opaque black with a creamy maduro-colored head. Its aroma offers seductive whiskey, chewy red wine, dark fruit and lavish tobacco. Berserker Imperial Stout invades your taste buds with in-your-face flavor. Weighing in at almost 13% alcohol by volume, Berserker is completely out-of-control. Give it a good fight.\r\n\r\nThis version of Berserker Imperial Stout was aged in both red wine and whiskey barrels. The entire batch was brought back together before being packaged in kegs and 22-oz bottles."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
+firehouse_brewery_restaurant-pilsner,0,0,244620984321,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+fitzpatrick_s_brewing-mcbride_porter,0,0,244621574144,"{""name"":""McBride Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fitzpatrick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
+joboy_s_brew_pub-manheim_stout,0,0,244749041666,"{""name"":""Manheim Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""An intense and rich, dark, roasty ale with substantial alcohol warming. Requires several months of aging."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,37,1
+prairie_rock_brewing_elgin-honey_brown_ale,0,0,244983922688,"{""name"":""Honey Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
+new_holland_brewing_company,0,0,244860321794,"{""name"":""New Holland Brewing Company"",""city"":""Holland"",""state"":""Michigan"",""code"":""49423"",""country"":""United States"",""phone"":""1-616-355-6422"",""website"":""http://newhollandbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established in 1996, NHBC has grown from a scrappy two-man start-up to a thriving regional microbrewery, recognized for its creativity and artistry. We are very proud of our accomplishments thus far, and believe in earning our place in the brewing industry and in our customer's hearts and minds everyday. All of our beer is brewed in Holland, Michigan at one of our two locations. We brew, cellar and package the main brands for distribution at our production facility on the north-side of Holland, at 690 Commerce Court. In response to our considerable growth, we opened the new brewery in October of 2006, replacing the original headquarters. We also brew beer and distill spirits in our pub. The pub is a great place for us to explore new ideas, meet our customers in a comfortable setting and provide a place of community for all who visit. The beers made here are typically special brews that rarely see their way outside of the friendly confines of our pub. In 2007, we brewed and shipped just over 7,400 barrels of beer. (A barrel = 31 gallons.) We work hard to bring you an authentic, interesting and gratifying experience."",""address"":[""66 East Eighth Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.79,""lon"":-86.1041}}",1,7,1
+mercury_brewing_company-ipswich_oatmeal_stout,0,0,244863008770,"{""name"":""Ipswich Oatmeal Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep, rich, and malty with hints of chocolate and coffee. It's what espresso would be if it had the gumption to be beer. We use three different hop additions, specially selected crystal malts, roasted barley, and oatmeal to give it a soft and silky mouth feel. Makes a great dessert. Or meal."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,14,1
+jt_whitney_s_brewpub_and_eatery-rauch_ale,0,0,244757889028,"{""name"":""Rauch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+smuttynose_brewing_co-smuttynose_winter_ale,0,0,245098086400,"{""name"":""Smuttynose Winter Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Smuttynose Winter Ale is a full-bodied, amber beer brewed with a special Trappist ale yeast. Stylistically reminiscent of a Belgian Abbey Double, it features fruity aromas and flavor, balanced by soft Crystal hops. Warming, mellow & pleasantly complex, Smuttynose Winter Ale is your perfect cold weather companion."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,2,1
+samuel_smith_old_brewery_tadcaster,0,0,245000896512,"{""name"":""Samuel Smith Old Brewery (Tadcaster)"",""city"":""Tadcaster"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01937)-839201"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""High Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":53.8834,""lon"":-1.2625}}",1,48,1
+on_tap_bistro_brewery-belgian_double,0,0,244880244737,"{""name"":""Belgian Double"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+crane_river_brewpub_and_cafe,0,0,244495876097,"{""name"":""Crane River Brewpub and Cafe"",""city"":""Lincoln"",""state"":""Nebraska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.8069,""lon"":-96.6817}}",1,50,1
+hasserder_brauerei,0,0,244741242880,"{""name"":""Hasserder Brauerei"",""city"":""Wernigerode"",""state"":""Sachsen-Anhalt"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)3943-/-9360"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Auerhahnring 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.8439,""lon"":10.7533}}",1,17,1
+michigan_brewing-celis_raspberry,0,0,244872511489,"{""name"":""Celis Raspberry"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An authentic Belgian fruit flavored and spiced ale with a pronounced raspberry flavor and aroma, accented by orange peel and coriander. Clear and bright golden color with a raspberry tint."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,39,1
+sierra_madre_brewing_co,0,0,244982153216,"{""name"":""Sierra Madre Brewing Co."",""city"":""Monterrey"",""state"":""Nuevo Leon"",""code"":""64630"",""country"":""Mexico"",""phone"":""+52 (81) 8348-4896"",""website"":""http://www.smbc.com.mx/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An interesting microbrewery -- brewpub -- that started brewing in 1998."",""address"":[""Av. Insurgentes 3915""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":25.6811,""lon"":-100.363}}",1,4,1
+southern_tier_brewing_co-choklat,0,0,245100380160,"{""name"":""Choklat"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The Popol Vuh, the sacred book of the Maya, unfolds a complex web of mystery around a beverage known as xocoatl (ch-co-atle). At Southern Tier, we’re not surprised that hieroglyphs of the ancient Maya depict chocolate being poured for rulers and gods. Even through the many voyages of Columbus, the mystical bean remained nothing more than a strange currency of the native peoples.\r\n\r\nMoving through centuries, the circular journey of cacao has been realized in our brewing house, encompassing the complexity of the darkest, bitter-sweet candy together with the original frothy cold beverage of the ancient Maya to bring to you our Blackwater Series Choklat Stout. We have combined the finest ingredients to tempt your senses & renew the power & interrelation of history in every bottle.\r\n11.0% abv • 195º L • Imperial Chocolate Stout • 22 oz / 1/6 keg\r\n2-row barley / caramel 60 malt / barley flakes / chocolate malt / bittersweet Belgian chocolate / kettle hops: chinook & willamette"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,6,1
+maui_brewing_co-bikini_blonde_lager,0,0,244878868480,"{""name"":""Bikini Blonde Lager"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maui_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer, made from 100% malted barley. This blonde lager is what sailors really swam to shore for; it's light, with very little bitterness and a slight malt finish.""}",1,54,1
+marin_brewing,0,0,244863860736,"{""name"":""Marin Brewing"",""city"":""Larkspur Landing"",""state"":""California"",""code"":""94939"",""country"":""United States"",""phone"":""1-415-461-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1809 Larkspur Landing Circle""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.9479,""lon"":-122.511}}",1,16,1
+mccoy_s_public_house_and_brewkitchen-deluxe_cream_stout,0,0,244863598593,"{""name"":""Deluxe Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mccoy_s_public_house_and_brewkitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
+niagara_falls_brewing-premium_light,0,0,244862812160,"{""name"":""Premium Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+sprecher_brewing-sprecher_irish_stout,0,0,245115781122,"{""name"":""Sprecher Irish Stout"",""abv"":5.73,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This tribute to St. Patrick's Day is smooth and creamy, with distinctive flavors and aromas reminiscent of bitter-sweet chocolate and dark coffee. Just one precious batch of this robust, ebony colored stout is brewed each year."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
+gasthaus_gosebrauerei_bayerischer_bahnhof-gose,0,0,244619673602,"{""name"":""Gose"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_gosebrauerei_bayerischer_bahnhof"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+jw_lees_and_co_brewers_ltd-moonraker,0,0,244749762563,"{""name"":""Moonraker"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+randy_s_fun_hunters_brewery_restaurant_and_banquet_center,0,0,244984381441,"{""name"":""Randy's Fun Hunters Brewery Restaurant and Banquet Center"",""city"":""Whitewater"",""state"":""Wisconsin"",""code"":""53190"",""country"":""United States"",""phone"":""1-262-473-8000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""841 East Milwaukee Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.832,""lon"":-88.714}}",1,9,1
+logjam_microbrewery-lager,0,0,244870414336,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""logjam_microbrewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
+de_proef_brouwerij-reinaert_flemish_wild_ale,0,0,244614430720,"{""name"":""Reinaert Flemish Wild Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+de_halve_maan,0,0,244613971968,"{""name"":""De Halve Maan"",""city"":""Brugge"",""state"":""West-Vlaanderen"",""code"":""BE-8000"",""country"":""Belgium"",""phone"":""+32-50-33.26.97"",""website"":""http://www.halvemaan.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Walplein 26""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.2026,""lon"":3.2242}}",1,18,1
+moonlight_brewing,0,0,244868907008,"{""name"":""Moonlight Brewing"",""city"":""Fulton"",""state"":""California"",""code"":""95439"",""country"":""United States"",""phone"":""1-707-528-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 316""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.498,""lon"":-122.78}}",1,28,1
+tailgate_beer-tailgate_hefeweizen,0,0,245099855873,"{""name"":""Tailgate Hefeweizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""TailGate Beer does the German style wheat beer right. Hints of citrus, complemented by sprinkles of spice that makes a German, full flavored brew that is really hard to say right. Proud of the names ‘weizen’ (wheat) base ingredient, TGB draws most of its flavor from the famed grass plant. This Hef is one truly crisp, and refreshing unfiltered ale that garnishes well with a lemon or an orange! Be sure to impress your friends with your fine tuned palate and sophisticated verbiage next time you belly up to order your TailGate Beer “HEH-feh-vite-zehn”"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
+voodoo_brewing_co_llc,0,0,245744467968,"{""name"":""Voodoo Brewing Co.,LLC"",""city"":""Meadville"",""state"":""Pennsylvania"",""code"":""16335"",""country"":""United States"",""phone"":""1-(412)-468-0295"",""website"":""http://www.voodoobrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""215 1/5 Arch St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.6372,""lon"":-80.1549}}",1,3,1
+la_jolla_brew_house-pale_ale,0,0,244756512771,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+new_belgium_brewing-blue_paddle_pilsener,0,0,244878344195,"{""name"":""Blue Paddle Pilsener"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Climb on in and grab a paddle. Our first foray into lagered beers, Blue Paddle Pilsener-Lager, is a Czech style pilsener with a refreshing crispness from noble hops and a rich, malty finish. ‘Blue Paddle’ refers to the implement our warehouse manager’s Grandma once used to lovingly paddle his a** when she caught him stealing sips of her beer. With more body than a traditional Belgian pils, Blue Paddle is reflective of Europe’s finest pilseners."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,52,1
+milwaukee_ale_house-sheepshead_stout,0,0,244861370370,"{""name"":""Sheepshead Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
+de_proef_brouwerij-van_den_vern_grand_cru,0,0,244627406848,"{""name"":""Van den Vern Grand Cru"",""abv"":9.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+gordash_brewing_company,0,0,244611940352,"{""name"":""Gordash Brewing Company"",""city"":""Fort Lauderdale"",""state"":""Florida"",""code"":""33312"",""country"":""United States"",""phone"":""(954) 261-0668"",""website"":""http://holymackerelbeers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3804 S.W 30th Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":26.0745,""lon"":-80.1806}}",1,12,1
+flagstaff_brewing-agassiz_amber,0,0,244630683648,"{""name"":""Agassiz Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flagstaff_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
+victory_brewing-golden_monkey_tripel,0,0,245097955328,"{""name"":""Golden Monkey Tripel"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Strong and sensual, this golden, Belgian-style ale glows with goodness. The richness of German malts and Belgian yeast are tempered by a sparkling approach and overall light body. Considerable depth of character with abundant herbal, fruity notes make this one to savor."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,1,1
+harvest_moon_brewery_cafe-altruistic_american_ale,0,0,244757364738,"{""name"":""Altruistic American Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvest_moon_brewery_cafe"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+midnight_sun_brewing_co-brewtality_espresso_black_bier,0,0,244861829120,"{""name"":""Brewtality Espresso Black Bier"",""abv"":9.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Assistant Brewer Jeremiah works primarily at Midnight Sun Brewing Company with regular hours at the AK Rock Gym and the occasional shift or two Kaladi Brothers Coffee. To keep up with his weekly work schedule, he enjoys locally roasted coffee in the morning--OK, sometimes in the afternoon as well--and locally brewed beer in the evening-- OK, sometimes in the morning as well. This beer brings two of his worlds together as an incredible antidote for hibernation.""}",1,11,1
+flossmoor_station_brewery-bavarian_helles,0,0,244621049856,"{""name"":""Bavarian Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+flying_dog_brewery-road_dog_ale,0,0,244621574145,"{""name"":""Road Dog Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Blessed by Hunter S. Thompson... Road Dog Porter was our first beer to be illustrated by Ralph Steadman. This is a dark, rich and malty beer, with hints of chocolate and licorice resulting from the use of four prized malts."",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
+jt_whitney_s_brewpub_and_eatery-goldenshine,0,0,244749107200,"{""name"":""Goldenshine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+pyramid_ales_brewery-pyramid_amber_weizen,0,0,244983922689,"{""name"":""Pyramid Amber Weizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Amber Weizen is left unfiltered for extra flavor and aroma. \r\n\r\nRich amber in color, Pyramid Amber Weizen features three different kinds of caramel barley malts and nugget hops resulting in an exceptionally smooth and well-balanced beer that follows in the tradition of our flagship style, Pyramid Hefe Weizen."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,8,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_amber_ale,0,0,244860321795,"{""name"":""Nøgne Ø Amber Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A rather malty brew, which we think goes very well with cheeses - even well matured blue cheeses. You can also try our Amber paired with a grilled dish. Recommended serving temperature 10°C/50°F."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+middle_ages_brewing-highlander_80,0,0,244863074304,"{""name"":""Highlander 80/-"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Scottish-style brown ale with an attractive dark cherry color; a soft, lightly chewy body and a hint of licorice in its malt character. Rich and dark yet not too strong. 1996 Best Show at the Chicago Real Ale Festival."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,14,1
+kelmer_s_brewhouse-klassic,0,0,244757954560,"{""name"":""Klassic"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kelmer_s_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+sockeye,0,0,245098151936,"{""name"":""Sockeye"",""city"":""Boise"",""state"":""Idaho"",""code"":""83704"",""country"":""United States"",""phone"":""(208) 658-1533"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3019 N Cole Rd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.6326,""lon"":-116.275}}",1,2,1
+san_marcos_brewery_grill-cinnabarr,0,0,245000896513,"{""name"":""Cinnabarr"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+onopa_brewing,0,0,244880310272,"{""name"":""Onopa Brewing"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0389,""lon"":-87.9065}}",1,56,1
+de_dochter_van_de_korenaar-noblesse,0,0,244627800064,"{""name"":""Noblesse"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_dochter_van_de_korenaar"",""updated"":""2010-07-22 20:00:20"",""description"":""pure malt blond ale with a touch of wheat malt.\r\ngreat hop-aroma due to hop-filtering the hot wort.\r\nbottle-conditioned."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,50,1
+hofbruhaus_traunstein-export_hell,0,0,244741242881,"{""name"":""Export-Hell"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hofbruhaus_traunstein"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+michigan_brewing-hamtramck,0,0,244872577024,"{""name"":""Hamtramck"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brightly filtered, highly carbonated, golden premium-style lager. It is lightly hopped with Polish Lublin hops. The beer will appeal to those who prefer the lighter American style beers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-apricot,0,0,245099331584,"{""name"":""Apricot"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,4,1
+spaten_franziskaner_brau-pils,0,0,245100380161,"{""name"":""Pils"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+maumee_bay_brewing,0,0,244878868481,"{""name"":""Maumee Bay Brewing"",""city"":""Toledo"",""state"":""Ohio"",""code"":""43602"",""country"":""United States"",""phone"":""1-419-243-1302"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""27 Broadway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.6432,""lon"":-83.5384}}",1,54,1
+maumee_bay_brewing-belgian_trippel,0,0,244863860737,"{""name"":""Belgian Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maumee_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+mercury_brewing_company-ipswich_nut_brown,0,0,244863664128,"{""name"":""Ipswich Nut Brown"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth, hoppy brown ale, full-bodied with caramel and chocolate malt flavors."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
+north_country_brewery-rock_n_wheat,0,0,244862812161,"{""name"":""Rock-n-Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This unfiltered, true German wheat beer has hints of clove and banana which the yeast produces during fermentation."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,13,1
+stoudt_s_brewery-fat_dog_stout,0,0,245115781123,"{""name"":""Fat Dog Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,41,1
+grand_lake_brewing-plaid_bastard,0,0,244746682368,"{""name"":""Plaid Bastard"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_lake_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,31,1
+kaiser_bru-original_lager,0,0,244749828096,"{""name"":""Original Lager"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiser_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+real_ale_brewing_company-phoenixx_double_esb,0,0,244984446976,"{""name"":""Phoenixx Double ESB"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our winter seasonal is inspired by the great ales of the UK but brewed with a distinctively American attitude. English crystal malt gives Phoenixx its subtle toffee and caramel notes, but this ale is about hops. The blend of English hops, highlighted by its namesake, Phoenix, yields a complex hop character that dominates this special brew."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,9,1
+marin_brewing-eldridge_grade_white_knuckle_ale,0,0,244870414337,"{""name"":""Eldridge Grade White Knuckle Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+delafield_brewhaus-oktoberfest,0,0,244614496256,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,19,1
+de_proef_brouwerij-andelot_mystique,0,0,244614037504,"{""name"":""Andelot Mystique"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+moosejaw_pizza_dells_brewing_company-dunkel_lager,0,0,244868907009,"{""name"":""Dunkel Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+the_blind_bat_brewery_llc-wheatley_hills_weizenbock,0,0,245099921408,"{""name"":""Wheatley Hills Weizenbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty and yeasty, with some sweetness along with hints of cloves and banana. (thanks to the yeast!) \r\n\r\nLow hop bitterness, highly carbonated. Unfiltered, and so a bit cloudy with that magical yeast. \r\n\r\nPairs well with Thai, Szechuan, Mexican, and Caribbean -- und Deutsche Nahrung! (German Food!)"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,5,1
+water_street_brewery-porter,0,0,245744533504,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
+lagunitas_brewing_company-lucky_13_anniversary_release,0,0,244756578304,"{""name"":""Lucky 13 Anniversary Release"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,55,1
+nicolet_brewing,0,0,244878409728,"{""name"":""Nicolet Brewing"",""city"":""Florence"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":45.9222,""lon"":-88.2518}}",1,52,1
+minneapolis_town_hall_brewery-thunderstorm,0,0,244861435904,"{""name"":""Thunderstorm"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our popular summer seasonal brewed with honey, orange, and lemonrass."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,10,1
+de_struise_brouwers-pannepot,0,0,244627472384,"{""name"":""Pannepot"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_struise_brouwers"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+gottberg_brew_pub-doppelbock_discontinued,0,0,244611940353,"{""name"":""Doppelbock (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
+flying_dog_brewery,0,0,244630683649,"{""name"":""Flying Dog Brewery"",""city"":""Denver"",""state"":""Colorado"",""code"":""80205"",""country"":""United States"",""phone"":""303-292-5027"",""website"":""http://www.flyingdogales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2401 Blake St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7582,""lon"":-104.99}}",1,57,1
+vyturio_alaus_darykla,0,0,245744205824,"{""name"":""vyturio Alaus Darykla"",""city"":""Klaipda"",""state"":"""",""code"":""0"",""country"":""Lithuania"",""phone"":""370-46-484-000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Kuli vart 7""]}",1,1,1
+heartland_brewery_union_square-not_tonight_honey_porter,0,0,244757430272,"{""name"":""Not Tonight Honey Porter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
+midnight_sun_brewing_co-cafe_amsterdam_s_10th_anniversary_gruit,0,0,244861829121,"{""name"":""Cafe Amsterdam's 10th Anniversary Gruit"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""SPECIAL COMMEMORATIVE BEER\r\n\r\nFormer brewer Ken Pajak teamed up with MSBC to create a very special beer to celebrate the 10 years that he and wife Shauna have owned Café Amsterdam. Since taking over this mid-town establishment, the Pajaks added a “beer & wine license” and subsequently transformed the European-style café into a beer-centric place to grab breakfast, lunch, dinner and all beers during, around and between these fabulous meals. \r\n\r\nThe cafe's beer menu is extensive and all-encompassing. The staff is knowledgeable and enthusiastic. And the beer pour is always right— temperature, glass, presentation. \r\n\r\n“No hops were harmed in the brewing of this beer.” \r\n\r\nGruit is an old style—one that incorporates spices, herbs and fruit but no hops. The latter detail makes this style very rare in modern times. Café Amsterdam’s Gruit is dark, strong and interesting. This combination of pale and dark malts, sage, thyme, cinnamon, black peppercorn and fresh orange peel composes distinctive, substantial flavors that meld together wonderfully. And at 12% ABV, this cellar-friendly ale is ready to lay you down! Thoroughly enjoy this old-world beer now but stash some away for later dwelvings. \r\n\r\nAvailability: \r\nAK - 22-oz bottles (limited release begins 05/29/2009)"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,11,1
+flying_dog_brewery-in_heat_wheat,0,0,244621049857,"{""name"":""In-Heat Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""In-Heat Wheat Hefeweizen\r\nShe taunts and teases... In-Heat Wheat is our German-style Hefeweizen. She is a full flavor beer, perfect for the more adventurous craft beer drinker. The addition of malted white wheat gives this brew its smooth, full mouthfeel. A proprietary yeast creates intriguing flavors of bananas and cloves."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
+flying_fish_brewing_company-extra_pale_ale,0,0,244621574146,"{""name"":""Extra Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_fish_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An original American pale ale, our XPA highlights the subtle, sophisticated flavors and aromas of our Midwestern two-row malt and imported aromatic and Munich malts. Washington-grown Mt. Hood and Magnum hops create an extremely balanced beer with a beautiful straw color."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2000,0,0,244749107201,"{""name"":""Harvest Ale 2000"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,37,1
+railway_brewing,0,0,244983988224,"{""name"":""Railway Brewing"",""city"":""Anchorage"",""state"":""Alaska"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":61.2181,""lon"":-149.9}}",1,8,1
+odell_brewing-cutthroat_porter,0,0,244860387328,"{""name"":""Cutthroat Porter"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Not quite a stout but definitely no lightweight, Cutthroat Porter is smooth and robust. Inspired by the classic London porters, we use dark roasted malts to create a deep, rich color and flavor that hint at chocolate and coffee. We named it Cutthroat Porter as our tribute to the Colorado state fish - with its own rich heritage and unmistakable dark coloring. And while we're big fans of small batches, here's to the currently threatened Cutthroat population reaching mass quantities."",""style"":""Porter"",""category"":""Irish Ale""}",1,7,1
+midnight_sun_brewing_co-cohoho_imperial_ipa,0,0,244863074305,"{""name"":""CoHoHo Imperial IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""When the loveable \""hopheads\"" at Humpy's Great Alaskan Alehouse requested a winter version of alehouse favorite Sockeye Red IPA, our brewers instinctively spawned CoHoHo Imperial IPA.\r\n\r\nCoHoHo begins with generous measures of pale two-row and specialty malts along with spirit-boosters like maple syrup, brown sugar and honey. Hefty doses of Cascade, Centennial and Simcoe hops beautifully balance that outrageous malt bill and heighten the festive character of this exuberant beer."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,14,1
+klosterbrauerei_neuzelle-porter,0,0,244757954561,"{""name"":""Porter"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""klosterbrauerei_neuzelle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
+southern_tier_brewing_co-old_man_winter_ale,0,0,245098151937,"{""name"":""Old Man Winter Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,2,1
+santa_fe_brewing_company-state_pen_porter,0,0,245000896514,"{""name"":""State Pen Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A trademark beer of the Santa Fe Brewing Company’s master brewer, Ty Levis, the State Pen Porter has every reason to be one of his favorites. It is flavorful, swimming with notes of nuts and chocolate; it is drinkable, so drinkable that it is almost as if pint after pint were drinking itself."",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+otto_s_pub_and_brewery-zeno_black_lager,0,0,244880310273,"{""name"":""Zeno Black Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,56,1
+de_proef_brouwerij-saison_imperiale,0,0,244627865600,"{""name"":""Saison Imperiale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""de_proef_brouwerij"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+humboldt_brewing-storm_cellar_porter,0,0,244741242882,"{""name"":""Storm Cellar Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
+mickey_finn_s_brewery-old_roundout_pale_ale,0,0,244872577025,"{""name"":""Old Roundout Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
+stone_brewing_co-13th_anniversary_ale,0,0,245099397120,"{""name"":""13th Anniversary Ale"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Stone 13th Anniversary Ale pours brilliant deep red with a light tan foam. Up front, the aroma is all piney, resinous and citrus hops. Upon tasting, the hops are still on the front, and they are balanced with the malty, toffee like flavors contributed from the blend of crystal and amber malts used in the brewhouse. The finish is deliciously bitter, with a touch of warmth provided by the 9.5% alcohol. Bitterness comes in at 90+ IBU."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,4,1
+stoudt_s_brewery-stoudt_s_double_india_pale_ale,0,0,245100445696,"{""name"":""Stoudt's Double India Pale Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Strong, full-bodied ale with an intense hop character and deep golden color"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,6,1
+miller_brewing-icehouse,0,0,244878868482,"{""name"":""Icehouse"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""America's first domestic ice beer, Icehouse is traditionally brewed, fermented and, just before aging, its temperature is lowered to below freezing. This process imparts the beer's smoothness and an alcohol content that's slightly higher (5.5% by volume) than other regular premium beer brands. Icehouse was introduced in 1993 and has reinforced its position as the ultimate beer for wind-up and pre-game occasions. Blending humor and high-energy excitement, Icehouse marketing encourages its target consumers to take occasions to the next level with a great-tasting beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,54,1
+mendocino_brewing_hopland-eye_of_the_hawk,0,0,244863926272,"{""name"":""Eye of the Hawk"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
+middle_ages_brewing-wizard_s_winter_ale,0,0,244863664129,"{""name"":""Wizard's Winter Ale"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A hearty british style strong ale with a deep chestnut color. A warming elixir that's magically delicious."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,15,1
+olde_peninsula_brewpub_and_restaurant-1_2_3_ale,0,0,244862812162,"{""name"":""1,2,3 Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,13,1
+taylor_s_crossing_brewing-baden_powell_cream_ale,0,0,245115846656,"{""name"":""Baden Powell Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,41,1
+grand_teton_brewing_1-moose_juice_stout,0,0,244746747904,"{""name"":""Moose Juice Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grand_teton_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
+kentucky_hemp_beer_company-beer,0,0,244749893632,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kentucky_hemp_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+redfish_new_orleans_brewhouse,0,0,244984446977,"{""name"":""RedFish New Orleans Brewhouse"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80302"",""country"":""United States"",""phone"":""1-303-440-5858"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2027 13th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0187,""lon"":-105.279}}",1,9,1
+maui_brewing_co,0,0,244870479872,"{""name"":""Maui Brewing Co."",""city"":""Lahaina, Maui"",""state"":""Hawaii"",""code"":""96761"",""country"":""United States"",""phone"":""808.669.3474"",""website"":""http://mauibrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Maui Brewing Co., with a brewpub in Kahana and production brewery in Lahaina, has built a reputation for creating handcrafted beers brewed using the finest natural ingredients. We have become one of the area's most popular dining locations and are the island's only microbrewery. Our menu offers a broad selection of fine foods to satisfy any palate."",""address"":[""4405 Honoapiilani Highway #217""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":20.9721,""lon"":-156.677}}",1,33,1
+dick_s_brewing-double_diamond_winter,0,0,244614496257,"{""name"":""Double Diamond Winter"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dick_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+denver_chophouse_and_brewery-honey_wheat,0,0,244614103040,"{""name"":""Honey Wheat"",""abv"":4.46,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""denver_chophouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+new_belgium_brewing,0,0,244868907010,"{""name"":""New Belgium Brewing"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":""80524"",""country"":""United States"",""phone"":""1-888-622-4044"",""website"":""http://www.newbelgium.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We'll set the scene: 1989. Belgium. Boy on bike. (OK, make that a young man of 32). As our aspiring young homebrewer rides his mountain bike with fat tires through European villages famous for beer, New Belgium Brewing Company was but a glimmer in his eye. Or basement. For Jeff Lebesch would return to Fort Collins with a handful of ingredients and an imagination full of recipes. And then there was beer. Jeff's first two basement-brewed creations? A brown dubbel with earthy undertones named Abbey and a remarkably well-balanced amber he named Fat Tire. To say the rest was history would be to overlook his wife's involvement. Kim Jordan was New Belgium's first bottler, sales rep, distributor, marketer and financial planner. And now, she's our CEO."",""address"":[""500 Linden Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5929,""lon"":-105.07}}",1,28,1
+the_cambridge_house-alt,0,0,245099921409,"{""name"":""Alt"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Alt, German for \""old,\"" is a traditional medium-bodied ale in which we use an array of the finest German malts & a generous smount of noble hops to produce a crisp, clean and refreshing \""bier.\"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,5,1
+weyerbacher_brewing_company-bravo,0,0,245744533505,"{""name"":""Bravo"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As for Bravo, according to Head Brewer, Chris Wilson, the base of the beer comes from pale, wheat, and crystal malts and features some roasted barley while Pilgrim and Hallertauer make up the light hop profile."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,3,1
+lanchester_brewing-storm_super_premium_malt_liquor,0,0,244756578305,"{""name"":""Storm Super Premium Malt Liquor"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lanchester_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+oak_creek_brewery,0,0,244878409729,"{""name"":""Oak Creek Brewery"",""city"":""Sedona"",""state"":""Arizona"",""code"":""86336"",""country"":""United States"",""phone"":""928-204-1300"",""website"":""http://oakcreekbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2050 Yavapai Dr""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.8661,""lon"":-111.796}}",1,52,1
+minnesota_brewing,0,0,244861435905,"{""name"":""Minnesota Brewing"",""city"":""Saint Paul"",""state"":""Minnesota"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.9442,""lon"":-93.0861}}",1,10,1
+deep_creek_brewing-big_bear_stout,0,0,244627537920,"{""name"":""Big Bear Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""deep_creek_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+govnor_s_public_house-2_brothers,0,0,244611940354,"{""name"":""2 Brothers"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
+founders_hill_brewing-maibock,0,0,244630749184,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_hill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,57,1
+wdi_bru_huus-blond,0,0,245744271360,"{""name"":""Blond"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+heavenly_daze_brewery_and_grill,0,0,244757430273,"{""name"":""Heavenly Daze Brewery and Grill"",""city"":""Denver"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7392,""lon"":-104.985}}",1,58,1
+midnight_sun_brewing_co-mercury_belgian_style_small_beer,0,0,244861894656,"{""name"":""Mercury - Belgian Style Small Beer"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Messenger of the gods, Mercury symbolizes commerce, travel, thievery, wit and wealth. MERCURY cleverly stole its essence from mistress lover VENUS. Second runnings of the voluptuous quadrupel created this small yet fascinating beer. Indian coriander acknowledges the traveler; a distinct Belgian yeast contributes wit & charm."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,11,1
+four_peaks_brewing-black_betty_schwartzbier,0,0,244621049858,"{""name"":""Black Betty Schwartzbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This almost black lager originates from Germany and is most closely associated with Porter. The difference being the long maturation period (or lagering time) required to produce a true Schwartzbier. The flavor is reminiscent of treacle, coffee and toasted malt. It is not and should not be perceived as burnt or ashy like some stouts. Black Betty has 5% alc/vol and a smooth character that marks most lager beers.\r\n\r\nThe name, of course, comes from the Huddy Ledbetter song from the 1940’s which was made popular by the band Ram Jam and later by the Black Crows and U2, among others."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,34,1
+fort_collins_brewery,0,0,244621639680,"{""name"":""Fort Collins Brewery"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":""80524"",""country"":""United States"",""phone"":""1-970-472-1499"",""website"":""http://www.fortcollinsbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1900-B East Lincoln Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.5832,""lon"":-105.042}}",1,35,1
+la_jolla_brew_house-amber,0,0,244749107202,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brew_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,37,1
+rch_brewery-old_slug_porter,0,0,244983988225,"{""name"":""Old Slug Porter"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rch_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
+ohio_brewing-stout,0,0,244860387329,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+milwaukee_ale_house-belgian_wit,0,0,244863139840,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+kulmbacher_brauerei_ag-eku_28,0,0,244757954562,"{""name"":""EKU 28"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,59,1
+stewart_s_brewing,0,0,245098151938,"{""name"":""Stewart's Brewing"",""city"":""Bear"",""state"":""Delaware"",""code"":""19701"",""country"":""United States"",""phone"":""1-302-836-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""219 Governor's Square""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.6318,""lon"":-75.6628}}",1,2,1
+seabright_brewery-red_nose,0,0,245000962048,"{""name"":""Red Nose"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+oyster_bar_bistro_and_brewery-oyster_stout,0,0,244880310274,"{""name"":""Oyster Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
+delafield_brewhaus-old_27_barleywine,0,0,244627865601,"{""name"":""Old #27 Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""delafield_brewhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+jacob_leinenkugel_brewing_company-1888_bock,0,0,244741308416,"{""name"":""1888 Bock"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1888, After enduring one of the coldest winters on record, the employees of Jacob Leinenkugel's spring brewery crafted their first seasonal beer to celebrate the coming of spring. They blended dark and pale roasted malted barley with select hops and allowed for longer aging to create a robust beer with an exceptionally creamy head. Unchanged since 1888, You'll find our bock's sturdy bod and deep color perfect to draw you out of one season and the into next."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,17,1
+mission_springs_brewing-cream_ale,0,0,244872642560,"{""name"":""Cream Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+stone_brewing_co-2004_symposium_ale,0,0,245099462656,"{""name"":""2004 Symposium Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+sullivan_s_black_forest_brew_haus_grill,0,0,245100445697,"{""name"":""Sullivan's Black Forest Brew Haus & Grill"",""city"":""Frankenmuth"",""state"":""Michigan"",""code"":""48734"",""country"":""United States"",""phone"":""1-800-890-6877"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""281 Heinlein Strasse""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.3152,""lon"":-83.7314}}",1,6,1
+millrose_brewing-prairie_inn_pilsner,0,0,244878934016,"{""name"":""Prairie Inn Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+mercury_brewing_company-ipswich_winter,0,0,244863926273,"{""name"":""Ipswich Winter"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A British style Old Ale perfect for easing the cold winter months, our Winter Ale offers a malt selection with hints of fig and chocolate, creating the perfect cozy balance of hops and malt."",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
+midnight_sun_brewing_co-3767_belgian_style_ipa_with_brett,0,0,244863664130,"{""name"":""3767 Belgian-style IPA with Brett"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The extensive distance between two breweries on the West Coast – 3767 miles – is bridged by this collaboration beer. Brewers Gabe Fletcher of Midnight Sun Brewing Company [Anchorage, AK] and Colby Chandler of Ballast Point Brewing Company [San Diego, CA] designed and brewed an exciting representation of their passions: hops, Belgian yeast, oak aging and Brettanomyces. \r\n\r\nJust prior to the Great Alaska Beer & Barley Wine Fest in JAN 2009, Gabe and Colby brewed a West Coast-worthy IPA at Midnight Sun Brewing Company. This hop-centric beer became the jumping-off point for other intense flavors. During its course to completion, 3767 was affected by three different yeast strains--including Brettanomyces, aged for several months in French oak Cabernet Sauvignon barrels, and then bottle- and keg-conditioned. \r\nThe plan is for 3767 to hit Anchorage, Seattle, Portland, San Francisco and San Diego in NOV 2009 for a West Coast Toast. Here’s to the collaborative spirit readily found in our brewing industry. Clink!"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,15,1
+oskar_blues_grill_and_brew-gubna_imperial_ipa,0,0,244862877696,"{""name"":""Gubna Imperial IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oskar_blues_grill_and_brew"",""updated"":""2010-07-22 20:00:20"",""description"":""Emphasizing that complexity of character can arise from simple elements, this ale is made with three malts and one hop. Its light amber color and slightly spicy malt character are derived from the use of German Dark Munich Malt and Rye Malt respectively. North American 2-row barley combines with the other grains to lay the foundation for the hop onslaught to come. Summit hops are used exclusively in the boil for bitterness, flavor and aroma but it doesn’t end there. Post-fermentation dry hopping allows the 9.5% ABV monstrosity to gently coax the citrus rind and grapefruit aroma to join the 100 IBUs already present. This beer should greet you with a pungent citrus blast, provide a spicy yet round middle and finish with a brisk, clean bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,13,1
+the_livery-hoppy_chick,0,0,245115846657,"{""name"":""Hoppy Chick"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for mug club member and local jewelry maker, Angie Caldwell. English Maris Otter pale malt, English Crystal malt, and a blend of English and North American hops create this amber, hoppy IPA with just the right balance."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,41,1
+great_dane_pub_and_brewing_1-old_glory_american_pale_ale,0,0,244746747905,"{""name"":""Old Glory American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+kulmbacher_brauerei_ag-kapuziner_weissbier,0,0,244749893633,"{""name"":""Kapuziner Weißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
+revolution_brewing_llc-bottom_up_wit,0,0,244984446978,"{""name"":""Bottom Up Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Light, refreshing belgian-style wheat beer spiced with coriander and orange peel"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,9,1
+middle_ages_brewing-middle_ages_apricot_ale,0,0,244870479873,"{""name"":""Middle Ages Apricot Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing and delightful ale with the subtle flavor and aroma of apricots. A wonderful change from the ordinary. This is not a sweet fruit beer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,33,1
+dixon_s_downtown_grill-solitaire_stout,0,0,244614561792,"{""name"":""Solitaire Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dixon_s_downtown_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
+egan_brewing-cheap_koln,0,0,244614103041,"{""name"":""Cheap Köln"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""egan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+new_holland_brewing_company-existential,0,0,244868972544,"{""name"":""Existential"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Consider it an extremely hoppy barleywine, or a really big IPA. Either way, ten hop additions contribute to its lush and intriguing body. Aggressive dry-hopping brings a strong citrus character to the aroma. The flavor and smell of orange-blossoms pervade throughout the experience."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,28,1
+the_livery-bluejackets_best,0,0,245099921410,"{""name"":""Bluejackets Best"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a single malt-English pale, and single hop-English Fuggles, India Pale Ale with a rich golden color and spicy finish. Named for brewery supporters John and Cindy Bundick, with reference to John's service on a submarine."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,5,1
+wharf_rat-oliver_pagan_porter,0,0,245744664576,"{""name"":""Oliver Pagan Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wharf_rat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,3,1
+legends_brewhouse_eatery_of_green_bay-wheat,0,0,244756643840,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legends_brewhouse_eatery_of_green_bay"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+oldenberg_brewery-premium_verum,0,0,244878409730,"{""name"":""Premium Verum"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oldenberg_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+mission_springs_brewing-india_pale_ale,0,0,244861435906,"{""name"":""India Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mission_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+dinkelacker_schwaben_bru-das_schwarze_dark,0,0,244627603456,"{""name"":""Das Schwarze / Dark"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""dinkelacker_schwaben_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+govnor_s_public_house-pale_ale,0,0,244738752512,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
+fox_river_brewing_1-winnebago_wheat,0,0,244630749185,"{""name"":""Winnebago Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fox_river_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,57,1
+weinkeller_brewery_berwyn-berliner_weisse,0,0,245744271361,"{""name"":""Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+hoffbrau_steaks_brewery_1-shawnee_amber_ale,0,0,244757430274,"{""name"":""Shawnee Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+midnight_sun_brewing_co-obliteration_iii,0,0,244861894657,"{""name"":""Obliteration III"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\r\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration III is yet another dynamic Double IPA. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. A sturdy malt platform provides the perfect stage for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. Obliteration III finishes with poignant bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,11,1
+fratellos_restaurant_and_brewery,0,0,244621115392,"{""name"":""Fratellos Restaurant and Brewery"",""city"":""Appleton"",""state"":""Wisconsin"",""code"":""54915"",""country"":""United States"",""phone"":""1-920-991-0000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4301 West Wisconsin""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2678,""lon"":-88.4731}}",1,34,1
+gilde_brauerei-ratskeller,0,0,244621639681,"{""name"":""Ratskeller"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gilde_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+lake_superior_brewing-old_man_winter_warmer_2001,0,0,244749107203,"{""name"":""Old Man Winter Warmer 2001"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+rivertowne_pour_house-old_wylie_s_ipa,0,0,244983988226,"{""name"":""Old Wylie's IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""In honor of our friend and mascot, Wylie the fish, we are hooking you up with an aggressively hopped India Pale, the staple for any fishing trip! This beer is a hop lover’s dream!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
+old_hat_brewery-caramel_rye,0,0,244860387330,"{""name"":""Caramel Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,7,1
+milwaukee_ale_house-duggie_meyer_wee_heavy,0,0,244863139841,"{""name"":""Duggie Meyer Wee Heavy"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,14,1
+kulmbacher_brauerei_ag-monchshof_kellerbrau,0,0,244757954563,"{""name"":""Mönchshof Kellerbräu"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kulmbacher_brauerei_ag"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+stone_brewing_co-imperial_stout_2001,0,0,245098151939,"{""name"":""Imperial Stout 2001"",""abv"":9.47,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,2,1
+sierra_nevada_brewing_co-southern_hemisphere_harvest_fresh_hop_ale,0,0,245000962049,"{""name"":""Southern Hemisphere Harvest Fresh Hop Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our newest addition to our Harvest family is Southern Hemisphere Harvest. This is the first time we know of that an American brewer has put out a beer with fresh-picked hops from the southern hemisphere. The inaugural ale will debut in late April and will feature fresh Pacific Hallertau, New Zealand Motueka and New Zealand Southern Cross hops, all from New Zealand. \r\n\r\nLike our Celebration Ale, the fresh hops in this beer are dried right after being picked then shipped immediately to Chico for brewing so that they retain their peak aromatics and flavors. To ensure the freshest hops possible, we went to the added expense of flying these hops from New Zealand to Chico so we could brew with them the week after they were picked."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+pivovar_nchod,0,0,245004173312,"{""name"":""Pivovar Nchod"",""city"":""Nchod"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-491-407-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dobroovsk 130""]}",1,56,1
+erie_brewing_company-drake_s_crude,0,0,244627931136,"{""name"":""Drake's Crude"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""erie_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""In 1859 Col. Edwin L. Drake successfully drilled the first oil well in Northwest Pennsylvania. Because of the project known as \""Drake's Folly,\"" Pennsylvania was actually responsible for almost half of the world's oil production until the 1901 oil boom in Texas. Erie Brewing Co. reflects on our regions oil history and oil rush by producing a crude oil Black, silky smooth, malt bonanza oatmeal stout."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,50,1
+labatt_ontario_breweries-labatt_50,0,0,244741308417,"{""name"":""Labatt 50"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""John and Hugh Labatt, grandsons of founder John K. Labatt, launched Labatt 50 in 1950 to commemorate 50 years of partnership. The first light-tasting ale introduced in Canada, Labatt 50 was Canada’s best-selling beer until 1979 when, with the increasing popularity of lagers, it was surpassed by Labatt Blue. Labatt 50 is fermented using a special ale yeast, in use at Labatt since 1933. Specially-selected North American hops and a good balance of dryness, complemented by a fruity taste, provide Labatt 50 with all the distinguishing features of a true ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+moon_river_brewing_company-savannah_fest,0,0,244872642561,"{""name"":""Savannah Fest"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This German-style Festival bier has a rich orange hue. Its medium body is complemented by a Munich malt toastiness and premium German hops which are a blend of Hallertau, Spalt, Hersbruck and Saaz, yielding a spicy, \""noble hop\"" aroma."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,39,1
+stone_brewing_co-vertical_epic_04_04_04,0,0,245099462657,"{""name"":""Vertical Epic 04.04.04"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,4,1
+the_bruery,0,0,245100511232,"{""name"":""The Bruery"",""city"":""Placentia"",""state"":""California"",""code"":""92870"",""country"":""United States"",""phone"":""714-996-6258"",""website"":""http://www.thebruery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We are A small craft brewery located in Orange County, California. Our simple but often confusing name is a fusion of 'brewery' with our family name, Rue. Our calling is to create beers with character and depth using the simplest and purest of means. We do not filter or pasteurize our beers. All of our bottled beers gain carbonation through 100% bottle conditioning, allowing carbonation to naturally occur through a secondary bottle fermentation. We strive to use unconventional ingredients, and we will proudly state what we put in our beers. We enjoy serving you, your friends and your family."",""address"":[""715 Dunn Way""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.8614,""lon"":-117.88}}",1,6,1
+milwaukee_ale_house-dark_belgian_wit,0,0,244878934017,"{""name"":""Dark Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""milwaukee_ale_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+midnight_sun_brewing_co,0,0,244863991808,"{""name"":""Midnight Sun Brewing Co."",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99507"",""country"":""United States"",""phone"":""1-907-344-1179"",""website"":""http://www.midnightsunbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Since firing up its brew kettle in 1995, Midnight Sun Brewing Company has become a serious yet creative force on the American brewing front. From concept to glass, Midnight Sun relies on an art marries science approach, mixing tradition with innovation, to design and craft bold, distinctive beers for Alaska...and beyond. We at Midnight Sun find inspiration in the untamed spirit and rugged beauty of the Last Frontier and develop unique beers with equally appealing names and labels. But the company's true focus remains in its dedication to producing consistently high-quality beers that provide satisfying refreshment in all seasons... for Alaskans and visitors alike. From our Pacific Northwest locale, we offer our wonderful beers on draft throughout Alaska and in 22-ounce bottles throughout Alaska and Oregon. We invite you to visit our hardworking, little brewery in South Anchorage every chance you get!"",""address"":[""8111 Dimond Hook Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":61.1473,""lon"":-149.844}}",1,16,1
+midnight_sun_brewing_co-anchor_witbier_with_brettanomyces,0,0,244863729664,"{""name"":""Anchor Witbier with Brettanomyces"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian witbier begins with equal parts malted wheat and pale barley to create its traditional cloudy white appearance. The addition of Brettanomyces gives ANCHOR its trademark \""green apple\"" or \""horse blanket\"" aroma and lends tartness to the flavor and finish. At over 6% ABV, this ANCHOR's got a bit of more kick than most wits."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,15,1
+panther_brewing_company-ziggy_socky_premium_lager_beer,0,0,244985757696,"{""name"":""Ziggy Socky Premium Lager Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""panther_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+the_livery-paris_roubaix_pale_ale,0,0,245115912192,"{""name"":""Paris-Roubaix Pale Ale"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after one of the longest running bicycle races in France and aptly nicknamed \""The Hell Of The North\"", the Paris-Roubaix has been held every April since 1915. This Pale Ale is brewed with Belgian and German malts and bittered with 3 different American hops for a pleasing balance."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+half_moon_bay_brewing-harbor_light_ale,0,0,244746747906,"{""name"":""Harbor Light Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_moon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+lakefront_brewery-broke_spoke_pilsner,0,0,244749959168,"{""name"":""Broke Spoke Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+rock_bottom_restaurant_brewery_minneapolis-heifer_weizen,0,0,244984512512,"{""name"":""Heifer-Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,9,1
+midnight_sun_brewing_co-obliteration_iv,0,0,244870545408,"{""name"":""Obliteration IV"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""With passion and purpose, we present this series of hop-centric beers. Using different hop varieties and brewing techniques, we aim to capture bold, distinct hop characteristics in aroma, flavor and finish. While we explore the\r\nworld of hops, we invite you to learn along with us: these beers offer an incredible opportunity to experience the diversity of hops while engaging the palate and obliterating the senses.\r\n\r\nObliteration IV is a tremendous Double Wheat beer. Its aroma is pungent with fragrant notes of citrus, spice, pine and alcohol. An even malt-to-wheat ratio provides a sturdy yet satisfying base for showcasing these high alpha-acid hops, creating flavors and textures that entice then intrigue. An American wheat beer yeast allows Obliteration IV to finish with unadulterated hop bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,33,1
+double_mountain_brewery_taproom-hop_lava,0,0,244614561793,"{""name"":""Hop Lava"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""double_mountain_brewery_taproom"",""updated"":""2010-07-22 20:00:20"",""description"":""This big, glowing, powerful IPA is packed with assertive Northwest hops that are floral, citrusy and resinous. A healthy dose of Munich malt helps to provide backbone and balance against the hoppy attack. The result? Explosive!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+f_x_matt_brewing-saranac_belgian_ale,0,0,244614103042,"{""name"":""Saranac Belgian Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saranac Belgian Ale is Deliciously Fruity. It is brewed with a generous amount of Belgian Aromatic Malt, Hand selected hops, and a traditional Belgian ale yeast. Brewed in the \""Trappist Style\""."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,18,1
+niagara_falls_brewing-saaz_pilsner,0,0,244868972545,"{""name"":""Saaz Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+the_livery-verchuosity,0,0,245099986944,"{""name"":""Verchuosity"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewmaster Steve took his Belgian Amber Ale and re-fermented it in a merlot cask with 100# of sweet Michigan cherries from Husteds Farm Market. He than moved the resulting beer into another cask with 30# of tart cherries. 5 fermentations due to wild yeast and 9 months later, we have our version of a Belgian Kriek. Named after our good friend and musician, April Verch."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,5,1
+yakima_brewing_and_malting_grant_s_ales-spiced_ale,0,0,245744664577,"{""name"":""Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,3,1
+magic_hat-roxy_rolles,0,0,244879196160,"{""name"":""Roxy Rolles"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A wintry amber ode to the open road. Our wintry amber ramble of sweet carmelized malt and spicy hops is for those who make their own roads. Dry hopped with simcoe hops."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
+pacific_rim_brewing-blacktop_porter,0,0,245002272768,"{""name"":""Blacktop Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,52,1
+molson_breweries_of_canada-ice,0,0,244861435907,"{""name"":""Ice"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+dragonmead_microbrewery,0,0,244627603457,"{""name"":""Dragonmead Microbrewery"",""city"":""Warren"",""state"":""Michigan"",""code"":""48089"",""country"":""United States"",""phone"":""1-586-776-9428"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14600 East Eleven Mile Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.493,""lon"":-82.9753}}",1,49,1
+great_dane_pub_and_brewing_1-drop_anchor_steam,0,0,244738818048,"{""name"":""Drop Anchor Steam"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+goose_island_beer_company_clybourn-oktoberfest,0,0,244630749186,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,57,1
+wernesgruner_brauerei,0,0,245744271362,"{""name"":""Wernesgrüner Brauerei"",""city"":""Steinberg/Sachsen"",""state"":""Sachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)37462-/-61-0"",""website"":""http://www.wernesgruener.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""founded 1436"",""address"":[""Bergstrae 4""]}",1,1,1
+hoffbrau_steaks_brewery_2-oktoberfest,0,0,244757495808,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoffbrau_steaks_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,58,1
+midnight_sun_brewing_co-the_viking_belgian_style_dark_strong_ale,0,0,244861894658,"{""name"":""The Viking Belgian-style Dark Strong Ale"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""SPECIAL COMMEMORATIVE BEER\r\n\r\nTo commemorate the life of a huge-hearted and long-time friend from the homebrewing community, Midnight Sun Brewing Company brewed a very special beer in honor of David Yanoshek, who was fondly known as “Yano”. \r\n\r\nThis big strong beer celebrates the abundant life of an incredible man with an enormous yet ever engaging laugh. Yano pursued life with a Viking spirit, endless love and boundless energy for family, friends, scouts…and beer. \r\n\r\nA big strong beer for a big strong guy, The Viking Belgian-style Dark Strong Ale boasts a beautiful balance of character and complexity. Dark roasted malts, Belgian yeast, star anise and sweet-ripened raisins come together in an amazing ale that can be enjoyed now and cellared for later celebrations. \r\n\r\nAs you lock horns with this commemorative ale, toast to Yano. With his incredibly stoic spirit and his irrepressible laugh, Yano was the gentle giant who will forever touch our lives. Pröst! \r\n\r\nAll proceeds from sales of this beer will be donated to the Yanoshek family.\r\n\r\nAvailability: \r\nAK - 22-oz bottles (limited release begins 09/12/2008)"",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,11,1
+free_state_brewing-ad_astra_ale,0,0,244621115393,"{""name"":""Ad Astra Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""free_state_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
+gray_brewing-black_and_tan,0,0,244748124160,"{""name"":""Black and Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gray_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
+lancaster_brewing_co-spring_bock,0,0,244749172736,"{""name"":""Spring Bock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional German style lager. Characterized by a deep copper color and rich malt flavor. Balanced with German hops.\r\n\r\nAvailable at the Brewery and in bottles & cases from March - May."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+route_66_brewery,0,0,244984053760,"{""name"":""Route 66 Brewery"",""city"":""Saint Louis"",""state"":""Missouri"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.647,""lon"":-90.225}}",1,8,1
+otto_s_pub_and_brewery-arthur_s_mild_ale,0,0,244860387331,"{""name"":""Arthur's Mild Ale"",""abv"":3.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A British-style mild ale. Milds are a common ale type in England where session ales are lower in alcohol but not low on flavor. Ours has a strong malt backbone and is very quaffable."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,7,1
+montana_brewing,0,0,244863139842,"{""name"":""Montana Brewing"",""city"":""Billings"",""state"":""Montana"",""code"":""59101"",""country"":""United States"",""phone"":""1-406-252-9200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Montana Brewing Company...small brewery...BIG BEER!"",""address"":[""113 North Broadway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.7822,""lon"":-108.506}}",1,14,1
+lake_louie_brewing,0,0,244757954564,"{""name"":""Lake Louie Brewing"",""city"":""Arena"",""state"":""Wisconsin"",""code"":""53503"",""country"":""United States"",""phone"":""1-608-753-2675"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7556 Pine Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.1706,""lon"":-89.9324}}",1,59,1
+stout_brothers_public_house-stronghold_pilsner,0,0,245098217472,"{""name"":""Stronghold Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+six_rivers_brewery,0,0,245001027584,"{""name"":""Six Rivers Brewery"",""city"":""McKinleyville"",""state"":""California"",""code"":""95519"",""country"":""United States"",""phone"":""1-707-839-7580"",""website"":""http://www.sixriversbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1300 Central Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.9491,""lon"":-124.102}}",1,48,1
+pleasanton_main_street_brewery-atta_boy_ipa,0,0,245004238848,"{""name"":""Atta Boy IPA"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
+fifty_fifty_brewing_co-foggy_goggle_belgian_white,0,0,244627931137,"{""name"":""Foggy Goggle Belgian White"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fifty_fifty_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""FiftyFifty's \""Wit\"" beer, Foggy Goggle is a Belgian Style Wheat Beer, cousin of the German Hefeweizen. An unfiltered beer, Foggy Goggle is brewed true to style, using a yeast strain that originated in Belgium, with just a hint of orange peel, lemon peel, and chamomile. The appearance is an opaque yellow with a wonderfully fluffy head. The predominant aroma is citrus with a hint of coriander, and a unique spicy note. With citrus playing a big part of the flavor, Foggy Goggle is a very refreshing choice."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,50,1
+lagunitas_brewing_company-imperial_stout,0,0,244741373952,"{""name"":""Imperial Stout"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
+moosejaw_pizza_dells_brewing_company-north_of_the_border_porter,0,0,244872642562,"{""name"":""North of the Border Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
+stoney_creek_brewing_company-double_chocolate_porter,0,0,245099528192,"{""name"":""Double Chocolate Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoney_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,4,1
+the_narragansett_brewing_company-narragansett_lager,0,0,245100511233,"{""name"":""Narragansett Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_narragansett_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Made on Honor, sold on Merit. Flavorful lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,6,1
+minocqua_brewing_company-firestarter_smoked_lager,0,0,244878999552,"{""name"":""Firestarter Smoked Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+north_coast_brewing_company-acme_california_pale_ale,0,0,244863991809,"{""name"":""Acme California Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This easy-drinking Pale Ale revives the name of one of the early icons of California brewing. Clean-tasting and pleasantly malty, Acme Pale is brewed with Yakima Valley hops, American two-row malt and British specialty malts for depth."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
+milagro_brewery_and_grill,0,0,244863729665,"{""name"":""Milagro Brewery and Grill"",""city"":""Bernalillo"",""state"":""New Mexico"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.3,""lon"":-106.551}}",1,15,1
+pelican_pub_brewery-doryman_s_dark_ale,0,0,244985823232,"{""name"":""Doryman's Dark Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pelican_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our American Brown Ale has a dark brown color, with a balanced aroma of roasted malts and Northwest-grown hops. The sweetness of the ale and crystal malts blend beautifully with the assertive flavors of Cascade and Mt. Hood hops. A brew to be savored.\r\n\r\nThis beer originated as a prize-winning homebrew many years ago. When Darron, the Head Brewer, began designing the beers for the Pelican Pub and Brewery, he adapted his old 5 gallon homebrew recipe to his new 15 bbl (465 gallon) brewery. It was well worth the effort, for not only has the Doryman's Dark Ale been a perennial favorite here at the Pelican Pub, but it has garnered prestigious professional awards."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,13,1
+the_round_barn_winery_brewery-round_barn_winter_wheat,0,0,245115912193,"{""name"":""Round Barn Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Winter Wheat is a rich, brown beer with hints of caramel and citrus creating a warming yet refreshing winter beer. Enjoy with Cajun or spicy cuisine. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.""}",1,41,1
+harpoon_brewery_boston-harpoon_ale,0,0,244746813440,"{""name"":""Harpoon Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""From Harpoon's site:\r\n\r\n\""When first seeing Harpoon Ale in a glass, you will notice its golden caramel color. You will also see that it is not excessively carbonated. High carbonation would mask this beer’s subtle flavor. The first aroma will be fruity. This is produced by the yeast and is a signature characteristic of Harpoon’s proprietary yeast strain. The second perceptible aroma is from the malt, with a delicate caramel note. Upon tasting Harpoon Ale, you will find that the malty, fruity character is nicely balanced by the mild hop bitterness. It has a smooth, medium body. The finish of this beer is crisp but not dry.\r\n\r\n\r\nThe overall character of this beer is fruity, balanced, and mild.\"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+left_hand_brewing_company-left_hand_milk_stout,0,0,244749959169,"{""name"":""Left Hand Milk Stout"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Sweet Stout"",""category"":""British Ale""}",1,38,1
+sa_brain_co_ltd,0,0,244984512513,"{""name"":""SA Brain & Co. Ltd."",""city"":""Cardiff"",""state"":""Wales"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(02920)-402060"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Crawshay Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.4736,""lon"":-3.179}}",1,9,1
+midnight_sun_brewing_co-specialty_beer_oak_aged_black_double_ipa,0,0,244870545409,"{""name"":""Specialty Beer: Oak-Aged Black Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This Specialty Beer Black Double IPA celebrates Specialty Imports' success in importing and distributing the world's best wines and beers to the appreciative folks in Alaska. This \""Specialty Beer\"" brings together smooth, dark malts with intense aromatic hops to create a wonderfully balanced yet committed-to-flavor ale. Then this ale was aged in oak barrels for several month""}",1,33,1
+dreher_srgyrak_zrt,0,0,244614627328,"{""name"":""Dreher Srgyrak Zrt."",""city"":""Budapest"",""state"":"""",""code"":"""",""country"":""Hungary"",""phone"":""36-1-432-9700"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Jszbernyi t 7-11""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.4921,""lon"":19.1422}}",1,19,1
+firehouse_brewing-firehouse_red,0,0,244614168576,"{""name"":""Firehouse Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""firehouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+north_coast_brewing_company-old_stock_ale_2001,0,0,244868972546,"{""name"":""Old Stock Ale 2001"",""abv"":11.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,28,1
+the_livery-yorkshire_brown,0,0,245099986945,"{""name"":""Yorkshire Brown"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the style of Northern England, this brown ale is dark and rich, with just a hint of chocolate malt and East Kent Golding hops in the finish.""}",1,5,1
+yards_brewing-yards_india_pale_ale,0,0,245744730112,"{""name"":""Yards India Pale Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""IPAs were originally brewed to survive the epic sea voyages from England to India. Ours is no different. Hailing from a firm malt background and loaded through and through with hops, this beer will surely survive the journey from your fridge to your couch."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,3,1
+mammoth_brewing,0,0,244879261696,"{""name"":""Mammoth Brewing"",""city"":""Mammoth Lakes"",""state"":""California"",""code"":""93546"",""country"":""United States"",""phone"":""1-760-934-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""24 Lake Mary Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.6484,""lon"":-118.983}}",1,55,1
+philadelphia_brewing_co-rowhouse_red,0,0,245002338304,"{""name"":""Rowhouse Red"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From our city of neighborhoods we offer you this \""Biére de Mars,\"" or ruby farmhouse ale. In true Philadelphia fashion, we meld American and European ingredients into a complex ale with flavors of toasted malt and rye. Rowhouse Red is the perfect accompaniment for some quality time in the backyard garden (or on the front stoop) of your urban farmhouse."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,52,1
+new_belgium_brewing-la_folie_falling_rock,0,0,244861501440,"{""name"":""La Folie Falling Rock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+emerson_brewing-old_95,0,0,244627603458,"{""name"":""Old 95"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""emerson_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,49,1
+great_dane_pub_and_brewing_1-pro_tel_memorial_malt_liquor,0,0,244738818049,"{""name"":""Pro-Tel Memorial Malt Liquor"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+gottberg_brew_pub-eighty_shilling_scottish_ale_80,0,0,244630814720,"{""name"":""Eighty-Shilling Scottish Ale (80/-)"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+wild_river_brewing_and_pizza_cave_junction,0,0,245744336896,"{""name"":""Wild River Brewing and Pizza - Cave Junction"",""city"":""Cave Junction"",""state"":""Oregon"",""code"":""97523"",""country"":""United States"",""phone"":""1-541-592-3556"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""249 North Redwood Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1707,""lon"":-123.645}}",1,1,1
+holsten_brauerei-duckstein_alt,0,0,244757495809,"{""name"":""Duckstein Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""holsten_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
+morland_and_co,0,0,244861960192,"{""name"":""Morland and Co."",""city"":""Abingdon"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.6701,""lon"":-1.285}}",1,11,1
+gasthaus_brauerei_max_moritz-spezial,0,0,244621115394,"{""name"":""Spezial"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gasthaus_brauerei_max_moritz"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+great_dane_pub_and_brewing_2-crop_circle_wheat,0,0,244748124161,"{""name"":""Crop Circle Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,35,1
+lighthouse_brewing-beacon_india_pale_ale,0,0,244749172737,"{""name"":""Beacon India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lighthouse_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+routh_street_brewery_and_grille-brown,0,0,244984053761,"{""name"":""Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,8,1
+pabst_brewing_company-colt_45,0,0,244860452864,"{""name"":""Colt 45"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""For over 4 decades, Colt 45 Premium Malt Liquor has been the \""class of all malt liquor brands\"". With its smooth and distinct flavor and historic affiliation with Billy Dee Williams, it has become an urban American icon. If you're looking for a thick 40, or an ice cold shorty, Colt 45 is the malt liquor that works EVERYTIME!""}",1,7,1
+moonlight_brewing-twist_of_fate_bitter,0,0,244863205376,"{""name"":""Twist of Fate Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+left_hand_brewing_company-goosinator_smoked_doppelbock_2007,0,0,244758020096,"{""name"":""Goosinator Smoked Doppelbock 2007"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+stuttgarter_hofbru-malteser_weissbier,0,0,245098217473,"{""name"":""Malteser Weissbier"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stuttgarter_hofbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
+south_county_brewing_co-south_county_american_ale,0,0,245118468096,"{""name"":""South County American Ale"",""abv"":6.33,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_county_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This American style amber ale will be our opening release and house beer for SCBC. AmericAle is smooth and diverse all in one shot. With a medium malt body and fresh hop aroma we hope you enjoy drinking it as much as we do making it."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,48,1
+porterhouse_restaurant_and_brewpub-special_ale,0,0,245004304384,"{""name"":""Special Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
+flossmoor_station_brewery-chessie_cherry,0,0,244627931138,"{""name"":""Chessie Cherry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flossmoor_station_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
+lancaster_brewing_co-lancaster_oktoberfest,0,0,244741373953,"{""name"":""Lancaster Oktoberfest"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""This smooth brew ushers in Autumn with an invitingly tawny color complemented by an assertive maltiness. A noble crispness from German and Czech hops completes this very traditional lager-style beer, Available from August to November.\r\n\r\nAvailable at the Brewery and in bottles & cases from September - December."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,17,1
+new_albanian_brewing,0,0,244872708096,"{""name"":""New Albanian Brewing"",""city"":""New Albany"",""state"":""Indiana"",""code"":""47150"",""country"":""United States"",""phone"":""1-812-949-2804"",""website"":""http://www.newalbanian.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Brewery was officially brewing in October 2002 and was incorporated in 1994 as the New Albanian Brewing Company in a room that branches off of Sportstime Pizza. The brewery established by Roger Baylor his wife Amy (O'Connell) Baylor and her sister Kate O'Connel. This is the first commercial brewery in New Albany since 1935. The first brewmaster was Michael Borchers which brought with him experience and used machines from the now defunct Silver Creek Brewing Corporation that was located in Sellersburg, Indiana. Jared Williamson and Jesse Williams are the current brewers working the brewery. In 2005, 14,000 gallons of beer was produced by the brewery, and with the new additions, the planned output for 2007 is double the 2005 amount."",""address"":[""3312 Plaza Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.3281,""lon"":-85.8171}}",1,39,1
+taylor_brewing-prime_i_p_a,0,0,245099528193,"{""name"":""Prime I.P.A."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
+trailhead_brewing_company-red_amber_ale,0,0,245100511234,"{""name"":""Red Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
+minocqua_brewing_company-wild_rice_lager,0,0,244878999553,"{""name"":""Wild Rice Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This unique, award-winning lager combines the smoothness of traditional barley with the warm, nutty flavor of wild rice. Truly an original brew!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+oaken_barrel_brewing-meridian_street_premium_lager,0,0,244863991810,"{""name"":""Meridian Street Premium Lager"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+nebraska_brewing_company-belgian_wit,0,0,244863729666,"{""name"":""Belgian Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+penn_brewery-penn_gold,0,0,244985823233,"{""name"":""Penn Gold"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nationally acclaimed as the best Munich-style beer made in America. Penn Gold is a light-colored, medium bodied lager beer with a delicate hop aroma."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+thirstybear_brewing,0,0,245115912194,"{""name"":""ThirstyBear Brewing"",""city"":""San Francisco"",""state"":""California"",""code"":""94105"",""country"":""United States"",""phone"":""1-415-974-0905"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""661 Howard Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.7855,""lon"":-122.4}}",1,41,1
+hawks_brewing-imperial_gold_malt_liquor,0,0,244746813441,"{""name"":""Imperial Gold Malt Liquor"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+legacy_brewing_co-brown_aged_girl,0,0,244749959170,"{""name"":""Brown Aged Girl"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Altbier is brewed in the classic German-style brown ale tradition. The “alt” translates to \""old\"" in German and is one of the original ale types brewed in Germany. Brown Aled Girl is dark brown in color, medium in carbonation with a great balance between malt and hops."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,38,1
+samuel_smith_old_brewery_tadcaster-oatmeal_stout,0,0,244984578048,"{""name"":""Oatmeal Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
+namaqua_brewing,0,0,244870545410,"{""name"":""Namaqua Brewing"",""city"":""Loveland"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.3978,""lon"":-105.075}}",1,33,1
+east_end_brewing_company-big_hop_ipa,0,0,244614627329,"{""name"":""Big Hop IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""east_end_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+fort_collins_brewery-z_lager,0,0,244614168577,"{""name"":""Z Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fort_collins_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A unique flavored lager that goes well with any food. A slight aromatic smoke flavor-but not over-powering. A very popular beer with its own following wondering where's YOUR Z?"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+north_coast_brewing_company-wintertime_ale_1992,0,0,244869038080,"{""name"":""Wintertime Ale 1992"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,28,1
+top_of_the_hill_restaurant_and_brewery,0,0,245100052480,"{""name"":""Top of the Hill Restaurant and Brewery"",""city"":""Chapel Hill"",""state"":""North Carolina"",""code"":""27514"",""country"":""United States"",""phone"":""1-919-929-8676"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""101 East Franklin Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":35.9132,""lon"":-79.0558}}",1,5,1
+marin_brewing-i_p_a,0,0,244879327232,"{""name"":""I.P.A."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+pivovar_klter_hradit,0,0,245002403840,"{""name"":""Pivovar Klter Hradit"",""city"":""Klter Hradit nad Jizerou"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-329-774-421"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""CZ-294 15 Klter Hradit nad Jizerou""]}",1,52,1
+new_glarus_brewing_company-snowshoe_ale,0,0,244861501441,"{""name"":""Snowshoe Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
+fauerbach_brewing_company-fauerbach_amber_lager,0,0,244627668992,"{""name"":""Fauerbach Amber Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fauerbach_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+greene_king-st_edmund_english_ale,0,0,244738883584,"{""name"":""St. Edmund English Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+govnor_s_public_house-celtic_cream_ale,0,0,244630814721,"{""name"":""Celtic Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
+youngs_company_brewery-ramrod_special_bitter_ale,0,0,245744336897,"{""name"":""Ramrod Special Bitter Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,1,1
+jaipur_restaurant_and_brewpub-porter,0,0,244757495810,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jaipur_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,58,1
+mountain_sun_pub_brewery,0,0,244861960193,"{""name"":""Mountain Sun Pub & Brewery"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80302"",""country"":""United States"",""phone"":""1-303-546-0886"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1535 Pearl Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.019,""lon"":-105.275}}",1,11,1
+gasthaus_gosebrauerei_bayerischer_bahnhof,0,0,244621180928,"{""name"":""Gasthaus & Gosebrauerei Bayerischer Bahnhof"",""city"":""Leipzig"",""state"":""Sachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)341-/-1245760"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bayerischer Platz 1""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.3397,""lon"":12.3714}}",1,34,1
+gulpener_bierbrouwerij,0,0,244748189696,"{""name"":""Gulpener Bierbrouwerij"",""city"":""Gulpen"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-043-4507575"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Rijksweg 16""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8109,""lon"":5.9213}}",1,35,1
+live_oak_brewing-big_bark_amber_lager,0,0,244871659520,"{""name"":""Big Bark Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Smooth\"" is the first word from your mouth after a taste of Big Bark Amber. This Vienna-style lager has a reddish-amber color with a smooth, malty flavor and low hop bitterness. It is made from Czech and German malts and German hops. \""All Bark, No Bite.\"" Everyone likes this beer."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+rowland_s_calumet_brewery-calumet_dark,0,0,244984053762,"{""name"":""Calumet Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
+pacific_rim_brewing-fauntleroy_stout,0,0,244983136256,"{""name"":""Fauntleroy Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+mythos_breweries_s_a-mythos_hellenic_lager,0,0,244863205377,"{""name"":""Mythos Hellenic Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mythos_breweries_s_a"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+logjam_microbrewery,0,0,244881096704,"{""name"":""Logjam Microbrewery"",""city"":""Unity"",""state"":""Wisconsin"",""code"":""54488"",""country"":""United States"",""phone"":""715-223-4336"",""website"":""http://www.logjambeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally started in Tomahawk, WI. LogJam Microbrewery is under new ownership and located in Unity, WI at Monster World campground."",""address"":[""B-4864 Cty Rd F""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.8516,""lon"":-90.3165}}",1,59,1
+sullivan_s_black_forest_brew_haus_grill-marzen,0,0,245098283008,"{""name"":""Marzen"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""The name says it all, you want German this is it."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+sports_city_cafe_brewery-pale_ale,0,0,245118533632,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+richbrau_brewing_company-richbrau_barleywine,0,0,245004304385,"{""name"":""Richbrau Barleywine"",""abv"":12.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Malty, rich, complex with a notable hops balance. Aged for 90 days. For optimal taste allow the beer to warm on your table or from the heat of your hand around the glass. ½ pints only. 12.3 abv! Offered downstairs at the Taphouse or Pub Bar/ Dining Room only."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,56,1
+flying_bison_brewing-blackbird_oatmeal_stout,0,0,244627996672,"{""name"":""Blackbird Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, dark and malty ale with plenty of roasted barley flavor. Blackbird has a silky smooth oatmeal finish. It is one of our NEW flagship's and is now available year round."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,50,1
+liberty_steakhouse_and_brewery-liberty_nut_brown_ale,0,0,244741373954,"{""name"":""Liberty Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Styled after an English classic, this beer is brewed with American flair. Hearty brown in color and full-bodied, this beer has a distinct chocolate-malt finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
+nor_wester_brewery_and_public_house-blacksmith_porter,0,0,244872708097,"{""name"":""Blacksmith Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,39,1
+the_alchemist-holy_cow_ipa,0,0,245099528194,"{""name"":""Holy Cow IPA"",""abv"":5.16,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""For hops lovers - this bitter ale is pale colored and made with a blend of 6 different malts and 5 different hops. This ale is dry-hopped for extra flavor and aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,4,1
+triple_rock_brewery-amber,0,0,245100576768,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triple_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,6,1
+new_glarus_brewing_company-coffee_stout,0,0,244878999554,"{""name"":""Coffee Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
+onion_pub_brewery,0,0,244864057344,"{""name"":""Onion Pub & Brewery"",""city"":""Lake Barrington"",""state"":""Illinois"",""code"":""60010"",""country"":""United States"",""phone"":""1-847-381-7308"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""22221 Pepper Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1865,""lon"":-88.1835}}",1,16,1
+north_country_brewery-stone_house_stout,0,0,244863795200,"{""name"":""Stone House Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This robust, hearty stout is as sturdy as its namesake. Roasted barley is the trademark of stout, a bittersweet separation from its cousin Porter. The deep character of roasted barley is further enhanced by the addition of oatmeal for an incredible silky finish."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,15,1
+pivovar_velk_popovice,0,0,244985823234,"{""name"":""Pivovar Velk Popovice"",""city"":""Velk Popovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-204/623-111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ringhofferova 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.9225,""lon"":14.6361}}",1,13,1
+thunderhead_brewery-porter,0,0,245115912195,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,41,1
+heartland_brewery_union_square-harvest_wheat_beer,0,0,244746878976,"{""name"":""Harvest Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heartland_brewery_union_square"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+legacy_brewing_co-hoptimus_prime,0,0,244750024704,"{""name"":""Hoptimus Prime"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""legacy_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,38,1
+sharktooth_brewing-hula_girl_pale_ale,0,0,244984578049,"{""name"":""Hula Girl Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+new_road_brewhouse,0,0,244870545411,"{""name"":""New Road Brewhouse"",""city"":""Collegeville"",""state"":""Pennsylvania"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.1857,""lon"":-75.4516}}",1,33,1
+emmett_s_tavern_and_brewery,0,0,244614692864,"{""name"":""Emmett's Tavern and Brewery"",""city"":""West Dundee"",""state"":""Illinois"",""code"":""60118"",""country"":""United States"",""phone"":""1-847-428-4500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""128 West Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.0981,""lon"":-88.2783}}",1,19,1
+founders_brewing-cerise,0,0,244614234112,"{""name"":""Cerise"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Fruit Beer"",""category"":""Other Style""}",1,18,1
+o_grady_s_brewery_and_pub_1-stockyard_stout,0,0,244869038081,"{""name"":""Stockyard Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,28,1
+triumph_brewing_of_princeton,0,0,245100052481,"{""name"":""Triumph Brewing of Princeton"",""city"":""Princeton"",""state"":""New Jersey"",""code"":""8542"",""country"":""United States"",""phone"":""1-609-924-7855"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""138 Nassau Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3507,""lon"":-74.6583}}",1,5,1
+mickey_finn_s_brewery-abana_amber_ale,0,0,244879327233,"{""name"":""Abana Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
+pyramid_alehouse_brewery_and_restaurant_seattle-dpa,0,0,245002403841,"{""name"":""DPA"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
+on_tap_bistro_brewery,0,0,244861501442,"{""name"":""On Tap Bistro & Brewery"",""city"":""San Diego"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7153,""lon"":-117.157}}",1,10,1
+fish_brewing_company_fish_tail_brewpub-detonator_doppelbock,0,0,244627668993,"{""name"":""Detonator Doppelbock"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,49,1
+grizzly_bay_brewing-stout,0,0,244738883585,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grizzly_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+grand_lake_brewing,0,0,244756905984,"{""name"":""Grand Lake Brewing"",""city"":""Grand Lake"",""state"":""Colorado"",""code"":""80447"",""country"":""United States"",""phone"":""1-970-627-1711"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""915 Grand Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2518,""lon"":-105.82}}",1,57,1
+youngs_company_brewery,0,0,245744336898,"{""name"":""Youngs & Company Brewery"",""city"":""London"",""state"":"""",""code"":""SW18 1NH"",""country"":""England"",""phone"":""020 8875 7000"",""website"":""http://www.youngs.co.uk"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""26 Osiers Road"",""Wandsworth""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.4611,""lon"":-0.1966}}",1,1,1
+john_harvard_s_brew_house_framingham,0,0,244757561344,"{""name"":""John Harvard's Brew House - Framingham"",""city"":""Framingham"",""state"":""Massachusetts"",""code"":""1701"",""country"":""United States"",""phone"":""1-508-875-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Worcester Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3037,""lon"":-71.3966}}",1,58,1
+new_glarus_brewing_company,0,0,244861960194,"{""name"":""New Glarus Brewing Company"",""city"":""New Glarus"",""state"":""Wisconsin"",""code"":""53574"",""country"":""United States"",""phone"":""608-527-5850"",""website"":""http://www.newglarusbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The brewery is run by an enthusiastic couple, Daniel & Deb Carey, who have successfully combined business management and brewing professionalism. Our philosophy is based on individuality, cooperation and the employment of 100% natural ingredients to produce world -class, handcrafted beers for our friends in Wisconsin. Cheers!* *From the New Glarus Brewing web site"",""address"":[""2400 State Highway 69""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.8171,""lon"":-89.6306}}",1,11,1
+glen_ellyn_sports_brew-nut_brown,0,0,244621180929,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""glen_ellyn_sports_brew"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
+half_pints_brewing_company-little_scrapper_ipa,0,0,244748189697,"{""name"":""Little Scrapper IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""half_pints_brewing_company"",""updated"":""2010-12-13 19:33:36"",""description"":""To admit that the brewer at Half Pints is a bit of a hophead is an understatement. This India Pale Ale is unabashedly hoppy, not only from the Amarillo hops we add to the brew kettle, but also from the northwest U.S. variety called Cascade that we add directly to the final tank. A firm toasted malt presence forms the background for all of these hops, and we're confident our Little Scrapper IPA could take other so-called IPA's to the mat if called upon to do so. Try it with a curry or a basket of beer battered fish & chips. Serve in a glass at 8 degrees celcius. Unpasturized."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
+manayunk_brewery_and_restaurant-krooks_mill,0,0,244871725056,"{""name"":""Krooks Mill"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""A well-balanced, hoppy American style pale ale with a generous usage of Caramel and Crystal malts. This beer is amber in color and is finished\r\nwith fresh Cascade, Columbus and Mt. Hood hops from the Pacific Northwest for a wonderful floral aroma. World Beer Cup Bronze Medal winner and a Perennial favorite here at the Brewery. Also available in bottles to go."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+russell_brewing-pale_ale,0,0,244984119296,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,8,1
+palmetto_brewing-pale_ale,0,0,244983201792,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""palmetto_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+mythos_breweries_s_a,0,0,244863205378,"{""name"":""Mythos Breweries S.A."",""city"":"""",""state"":""Sindos"",""code"":""570 22"",""country"":""Greece"",""phone"":"""",""website"":""http://www.mythosbrewery.gr/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Industrial Area, Thessaloniki""]}",1,14,1
+lowenbrau_brauerei-triumphator,0,0,244881096705,"{""name"":""Triumphator"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lowenbrau_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,59,1
+sullivan_s_black_forest_brew_haus_grill-strong_arm_ale,0,0,245098283009,"{""name"":""Strong Arm Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Just like our Porter but multiplied by 10.""}",1,2,1
+sprecher_brewing-sprecher_maibock,0,0,245118599168,"{""name"":""Sprecher Maibock"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pale malt flavors are balanced with a rich hop character and a light fruit bouquet in this seasonal spring lager. Traditional dry-hopping and extended aging give this blonde bock a distinctive flowery aroma and a potent kick."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,48,1
+rock_art_brewery,0,0,245004369920,"{""name"":""Rock Art Brewery"",""city"":""Morrisville"",""state"":""Vermont"",""code"":""5661"",""country"":""United States"",""phone"":""(802) 888-9400"",""website"":""http://www.rockartbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Rock Art Brewery was born in the mountains of Vermont, inspired by the spirit of Kokopelli and guided by the beers of the world."",""address"":[""254 Wilkins Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5693,""lon"":-72.6034}}",1,56,1
+flying_bison_brewing-blizzard_bock,0,0,244627996673,"{""name"":""Blizzard Bock"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_bison_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Although it’s named after our most famous weather event, this beer has nothing in common with the harsh bite of winter. In fact it’s smooth slightly chocolaty flavor helps you forget Jack Frost altogether. German pale and Munich malts form the base flavors with hints of chocolate and caramel. Very soft, floral German hops ease the finish into dryness. Available on draft and in bottles from November to March."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
+live_oak_brewing-live_oak_hefeweizen,0,0,244864057344,"{""name"":""Live Oak Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Modeled after the classic wheat beers of Bavaria, our HefeWeizen has a cloudy, straw-colored appearance with a thick, creamy head. It is fermented with an authentic Weizenbier yeast strain which imparts delicate notes of clove, vanilla and banana which harmonize perfectly with its mild refreshing tartness. Together these flavors create the perfect thirst quencher to beat the Texas heat. Available April - August"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,17,1
+north_country_brewery-paleo_ipa,0,0,244872708098,"{""name"":""Paleo IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The discovery of the true I.P.A. (India Pale Ale) made right here in Slippery Rock. The British added hops to oak barrels to help preserve the beer for its long voyage to British-controlled India. Brewed in this same English tradition, we dry-hopped our ale, giving the beer a very aromatic quality as it travels to your mug."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
+thunderhead_brewery-cream_ale,0,0,245099528195,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,4,1
+troegs_brewing-scratch_12_2008,0,0,245100576769,"{""name"":""Scratch #12 2008"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In our never-ending pursuit of answering the burning question of what’s new, we present Scratch #12-2008, an IPA.\r\n \r\nThe IPA is a fickle beast; too much malt and you veer into a high-octane hopbomb, while too little hops can question a beer’s virility. In these chaotic days of shrinking hop harvests, balance is key to a proper IPA. Scratch #12-2008 delivers an intense pine nose married with a subtle wildflower aroma. The Thames Valley yeast adds an earthy nod to traditional English IPAs, while the American hops provide a bold contrasting bitterness.\r\n \r\nBreath deep, relax, enjoy."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,6,1
+nodding_head_brewpub-robust_porter,0,0,244879065088,"{""name"":""Robust Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,54,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-sun_fest,0,0,244987002880,"{""name"":""Sun Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+oakham_ales,0,0,244863795201,"{""name"":""Oakham Ales"",""city"":""Peterborough"",""state"":""Cambridge"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01733)-358300"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""80 Westgate""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.5758,""lon"":-0.248}}",1,15,1
+prairie_rock_brewing_elgin,0,0,244985888768,"{""name"":""Prairie Rock Brewing - Elgin"",""city"":""Elgin"",""state"":""Illinois"",""code"":""60120"",""country"":""United States"",""phone"":""1-847-622-8888"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""127 South Grove Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.0347,""lon"":-88.2819}}",1,13,1
+titletown_brewing-bridge_out_stout,0,0,245115977728,"{""name"":""Bridge Out Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,41,1
+james_page_brewing-burly_brown_ale,0,0,244746878977,"{""name"":""Burly Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""james_page_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
+margaritaville_brewing_company-landshark_lager,0,0,244871921664,"{""name"":""Landshark Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""margaritaville_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,38,1
+south_shore_brewery-nut_brown_ale,0,0,245101690880,"{""name"":""Nut Brown Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,9,1
+north_coast_brewing_company-brother_thelonious,0,0,244870610944,"{""name"":""Brother Thelonious"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+endehouse_brewery_and_restaurant,0,0,244614692865,"{""name"":""EndeHouse Brewery and Restaurant"",""city"":""Reedsburg"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.5325,""lon"":-90.0026}}",1,19,1
+four_peaks_brewing-american_style_brown_ale,0,0,244614234113,"{""name"":""American-Style Brown Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""four_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Leroy's BIG Brother. Sweet floral hop aroma balances out the big malty roasted body with the slightest bitter spiced-chocolate finish. A very untraditional hopping technique gives this beer a unique character significantly more robust than our traditional Leroy Brown Ale. The beer weighs in at 5.0% alc./vol. Cheers!!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,18,1
+o_hara_s_brewpub_and_restaurant-pantown_pale_ale,0,0,244869038082,"{""name"":""Pantown Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_hara_s_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+troegs_brewing-scratch_6_2007,0,0,245100118016,"{""name"":""Scratch #6 2007"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Old world brewing techniques combine with Noble hops for Scratch #6-2007.\r\nThis Export Lager features a single stage decoction—a first for Tröegs Brewery. After combining barley and water we transfer a portion of the mash to the brew kettle for a quick boil. The heated mash is then returned to the mash kettle and the brewing process continues. This process deepens the malt character and adds a subtle toffee backbone to this delicious lager.\r\n\r\nWe’ve added Magnum hops for bittering and Czech Saaz hops for aroma to create a classic European Noble hop flavor. \r\n\r\nScratch #6-2007 is unfiltered, so there will be a slight haze to the beer."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+middle_ages_brewing-beast_bitter,0,0,244879392768,"{""name"":""Beast Bitter"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This special bitter displays the subtle coppery hue of \""Old Gold\"". It's depth of lingering hop flavor awakens the palate."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,55,1
+randy_s_fun_hunters_brewery_restaurant_and_banquet_center-oatmeal_stout,0,0,245002403842,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
+pacific_coast_brewing,0,0,244984643584,"{""name"":""Pacific Coast Brewing"",""city"":""Oakland"",""state"":""California"",""code"":""94607"",""country"":""United States"",""phone"":""1-510-836-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""906 Washington Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":37.8016,""lon"":-122.274}}",1,10,1
+flagstaff_brewing,0,0,244627668994,"{""name"":""Flagstaff Brewing"",""city"":""Flagstaff"",""state"":""Arizona"",""code"":""86001"",""country"":""United States"",""phone"":""1-520-773-1442"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""16 East Route 66""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.1973,""lon"":-111.648}}",1,49,1
+hale_s_ales_3,0,0,244738949120,"{""name"":""Hale's Ales #3"",""city"":""Seattle"",""state"":""Washington"",""code"":""98107"",""country"":""United States"",""phone"":""1-206-706-1544"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4301 Leary Way NW""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.6592,""lon"":-122.366}}",1,12,1
+great_dane_pub_and_brewing_1-wooden_ships_esb,0,0,244756971520,"{""name"":""Wooden Ships ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+john_harvard_s_brewhouse_wilmington-light_lager,0,0,244757561345,"{""name"":""Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+nogne_o_det_kompromisslose_bryggeri_a_s-havre_stout,0,0,244862025728,"{""name"":""Havre Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""We usually do not make compromises, but this is probably the exception. Norwegians are dead scared of dark beers. This is an attempt to show that there are gentle dark ales. As such Havre Stout is smooth and drinkable."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,11,1
+golden_gate_park_brewery,0,0,244621180930,"{""name"":""Golden Gate Park Brewery"",""city"":""San Francisco"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":37.7749,""lon"":-122.419}}",1,34,1
+harmon_brewing_company-pinnacle_peak_pale_ale,0,0,244748255232,"{""name"":""Pinnacle Peak Pale Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harmon_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a light bodied mildly hoppy ale brewed with a 2-row malted barley, Crystal, and a special Vienna malted barley. Golding and Cascade hops are used to provide the balanced palate for this fine session beer. 4.2% ABV"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+manayunk_brewery_and_restaurant,0,0,244871725057,"{""name"":""Manayunk Brewery and Restaurant"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19127"",""country"":""United States"",""phone"":""1-215-482-8220"",""website"":""http://www.manayunkbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4120 Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.0236,""lon"":-75.2202}}",1,37,1
+san_miguel_corporation,0,0,244984119297,"{""name"":""San Miguel Corporation"",""city"":""Manila"",""state"":"""",""code"":"""",""country"":""Philippines"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 271""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":14.5833,""lon"":120.967}}",1,8,1
+pike_pub_and_brewery-oatmeal_stout,0,0,244983201793,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+nebraska_brewing_company-irish_red,0,0,244863270912,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nebraska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+martini_brauerei-weissbier_hell,0,0,244881162240,"{""name"":""Weissbier Hell"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,59,1
+sullivan_s_black_forest_brew_haus_grill-woody_s_light,0,0,245098348544,"{""name"":""Woody's Light"",""abv"":3.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Our take on the classic light golden ale, with crisp refreshing flavors."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
+stieglbrauerei_zu_salzburg_gmbh-columbus_bock,0,0,245118664704,"{""name"":""Columbus Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,48,1
+rock_bottom_restaurant_brewery_san_jose,0,0,245004369921,"{""name"":""Rock Bottom Restaurant & Brewery - San Jose"",""city"":""Campbell"",""state"":""California"",""code"":""95008"",""country"":""United States"",""phone"":""1-408-377-0707"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1875 South Bascom Avenue #700""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2886,""lon"":-121.933}}",1,56,1
+foothills_brewing_company-sexual_chocolate,0,0,244627996674,"{""name"":""Sexual Chocolate"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""foothills_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,50,1
+magic_hat-odd_notion_winter_08,0,0,244864057345,"{""name"":""Odd Notion Winter 08"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+northwoods_brewpub_grill-half_moon_gold,0,0,244872773632,"{""name"":""Half Moon Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+traffic_jam_and_snug-gold_rush_ale,0,0,245099593728,"{""name"":""Gold Rush Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traffic_jam_and_snug"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,4,1
+tropical_beverage_international_co_ltd,0,0,245100642304,"{""name"":""Tropical Beverage (International) Co., Ltd"",""city"":""Bangkok"",""state"":"""",""code"":"""",""country"":""Thailand"",""phone"":"""",""website"":""http://www.tropbevco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""35 Soi Prommit, Sukumvit 39""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":13.7234,""lon"":100.476}}",1,6,1
+nor_wester_brewery_and_public_house-honey_weizen,0,0,244879065089,"{""name"":""Honey Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+pyramid_ales_brewery-curve_ball,0,0,244987002881,"{""name"":""Curve Ball"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Inspired by the traditional Kölsch style beers of Cologne, Germany, Curve Ball boasts a clean, crisp slightly herbal taste and a lighter body. With its sporty packaging and refreshing taste, Curve Ball is the perfect accompaniment to summer grilling and ballpark outings. Try swingin' at it on a hot summer day!""}",1,16,1
+old_hat_brewery-hefeweizen,0,0,244863795202,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
+rogue_ales-double_dead_guy_ale,0,0,244985888769,"{""name"":""Double Dead Guy Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,13,1
+tivoli_brewing-bitter_amber,0,0,245115977729,"{""name"":""Bitter Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tivoli_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
+jasper_ridge_brewery-jasper_lyte,0,0,244746944512,"{""name"":""Jasper Lyte"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jasper_ridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+marshall_brewing_company-atlas_ipa,0,0,244871987200,"{""name"":""Atlas IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marshall_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+sports_city_cafe_brewery,0,0,245101756416,"{""name"":""Sports City Cafe & Brewery"",""city"":""La Jolla"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.8575,""lon"":-117.876}}",1,9,1
+on_tap_bistro_brewery-steamroller_stout,0,0,244870610945,"{""name"":""Steamroller Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,33,1
+f_x_matt_brewing-saranac_hefeweizen,0,0,244614692866,"{""name"":""Saranac Hefeweizen"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""f_x_matt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional style German Wheat beer (pronounced) Hah-fuh-vite-zen) remains unfiltered to preserve it's natural smooth flavor and aroma. Don't be alarmed by its cloudy appearance or noticeable sediment. The slight banana and clove aroma comes from the authentic German Hefeweizen yeast. It has a light refreshing finish."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,19,1
+golden_prairie_brewing,0,0,244614234114,"{""name"":""Golden Prairie Brewing"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60647"",""country"":""United States"",""phone"":""1-773-862-0106"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2536 North Elston Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.9273,""lon"":-87.6807}}",1,18,1
+pabst_brewing_company-pabst_blue_ribbon_light,0,0,244869103616,"{""name"":""Pabst Blue Ribbon Light"",""abv"":4.19,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""PBR is not just any beer- so you would expect the history to be a bit unusual, and it is. Pabst was originally called \""Select,\"" but people started asking for that \""Blue Ribbon\"" beer in 1882 when we started tying silk ribbons to the bottles. We officially added the words \""Blue Ribbon\"" to the bottle in 1895.\r\n\r\nPabst was the first brewery to put beer in cans back in 1935. This was Blue Ribbon beer but it was called \""Export\"" when sold in the can. Our first cans had a picture of a can opener on the side with instructions on how to open the can of beer, with the can opener.\r\n\r\nToday, this classic American brew has been adopted by a whole new generation of PBR drinkers. Currently, PBR is one of the fastest growing domestic beer brands. When you're this good, quality always comes through-PBR ME ASAP!"",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,28,1
+tunner_s_guild_brewing_systems-piedmont_porter,0,0,245100183552,"{""name"":""Piedmont Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,5,1
+miller_brewing-mickey_s_ice,0,0,244879392769,"{""name"":""Mickey's Ice"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,55,1
+red_kettle_brewing-amber,0,0,245002469376,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_kettle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,52,1
+paper_city_brewing_company-holyoke_dam_ale,0,0,244984709120,"{""name"":""Holyoke Dam Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paper_city_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+flying_dog_brewery-double_dog_double_pale_ale,0,0,244627668995,"{""name"":""Double Dog Double Pale Ale"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""flying_dog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Back by popular demand, our original \""Wild Dog Release\"" is back, and this time it's for good. Double Dog Double Pale Ale is a generously hopped ale with a deep red color and pours with a nice frothy head. The abundance of hops will conjure some provocative aromas with hints of raisins and citrus."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,49,1
+hannen_brauerei,0,0,244738949121,"{""name"":""Hannen Brauerei"",""city"":""Mnchengladbach"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.1913,""lon"":6.4421}}",1,12,1
+grizzly_bay_brewing,0,0,244756971521,"{""name"":""Grizzly Bay Brewing"",""city"":""Suisun City"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":38.2382,""lon"":-122.04}}",1,57,1
+lagunitas_brewing_company-maximus,0,0,244757626880,"{""name"":""Maximus"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,58,1
+north_coast_brewing_company-acme_california_brown_ale,0,0,244862025729,"{""name"":""Acme California Brown Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
+gottberg_brew_pub-dsb_dusters_special_bitter,0,0,244621246464,"{""name"":""DSB / Dusters Special Bitter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+hoppers_seafood_grill,0,0,244748255233,"{""name"":""Hoppers Seafood & Grill"",""city"":""Midvale"",""state"":""Utah"",""code"":""84047"",""country"":""United States"",""phone"":""1-801-566-0424"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""890 East Fort Union Boulevard""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6215,""lon"":-111.866}}",1,35,1
+martini_brauerei-meister_pilsener,0,0,244871790592,"{""name"":""Meister Pilsener"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""martini_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+schlossbru-naturtrubes,0,0,244984119298,"{""name"":""Naturtrubes"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+pokka_beer_works-beer_works_ale_golden,0,0,244983267328,"{""name"":""Beer Works Ale Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pokka_beer_works"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+new_century_brewing_company,0,0,244863270913,"{""name"":""New Century Brewing Company"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2117"",""country"":""United States"",""phone"":""1-781-963-4007"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 1498""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.3587,""lon"":-71.0574}}",1,14,1
+maui_brewing_co-big_swell_ipa,0,0,244881227776,"{""name"":""Big Swell IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maui_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ale was developed in Burton, England, as a \""Super-Premium\"" hoppy pale ale around 1800. The extra strength in alcohol and hops helped preserve the beer on its long export journeys to India and beyond. The style developed a following worldwide. Its flavor begins with a smooth, malty creaminess followed with a big burst of dry-hop flavor from English Kent Golding Hops. It then finishes with a lingering yet pleasant bitterness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+taylor_brewing-very_pale_ale,0,0,245098348545,"{""name"":""Very Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,2,1
+summit_brewing-winter_ale,0,0,245118664705,"{""name"":""Winter Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,48,1
+roffey_brewery-lake_effect_stout,0,0,245004369922,"{""name"":""Lake Effect Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roffey_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,56,1
+gatz_brauhaus-pils,0,0,244628062208,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gatz_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+marble_brewery-marble_india_pale_ale,0,0,244864122880,"{""name"":""Marble India Pale Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marble_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Congratulations! By drinking Marble Brewery India Pale Ale, you show exceptionally good taste. Our obsession with quality and attention to detail ensures that every bottle will meet your high expectations. The Columbus, Amarillo and Centennial hops lend a fragrant citrus aroma and snappy hop character. We think you will agree that this is one rock solid beer."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
+odell_brewing-easy_street_wheat,0,0,244872773633,"{""name"":""Easy Street Wheat"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Light and refreshing, Easy Street Wheat is an unfiltered American-style wheat beer. Leaving in the yeast gives the beer a nice, smooth finish and a slightly citrusy flavor. Easy Street Wheat gets its name by brewers \""taking it easy\"" and not filtering the beer. However, for ultimate enjoyment, we encourage you to work just a little harder in pouring it: just pour 2/3 of the beer into a glass, swirl what's left to stir up the yeast, then pour the rest and enjoy."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,39,1
+unibroue-raftman,0,0,245099593729,"{""name"":""Raftman"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Launched in March 1995, Raftman is a beer with a coral sheen that is slightly robust. It contains 5.5 percent alcohol and combines the character of whisky malt with the smooth flavours of choice yeast. It has a subtle and exceptional bouquet that creates a persistent smooth feel. Raftman complements fish, smoked meat and spicy dishes. .\r\n\r\nIt is brewed to commemorate the legendary courage of the forest workers These hard working men knew when to settle their differences and share their joie de vivre with a beer and a whisky."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,4,1
+twisted_pine_brewing_company-pearl_street_porter,0,0,245100707840,"{""name"":""Pearl Street Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twisted_pine_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Baltic Porter made to celebrate Boulder's 150th anniversary. Available for the entirety of 2009."",""style"":""Porter"",""category"":""Irish Ale""}",1,6,1
+north_coast_brewing_company-old_stock_ale_2004,0,0,244879065090,"{""name"":""Old Stock Ale 2004"",""abv"":11.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,54,1
+red_lodge_ales-glacier_ale,0,0,244987002882,"{""name"":""Glacier Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_lodge_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
+orlio_organic-orlio_seasonal_black_lager,0,0,244863860736,"{""name"":""Orlio Seasonal Black Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlio_organic"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich medium-bodied black lager whose sweet deep malt flavor is balanced by a moderate hop bite and roasted malt tartness that creates notes of bitter chocolate and a slight lingering sweetness."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,15,1
+rogue_ales-imperial_red,0,0,244985888770,"{""name"":""Imperial Red"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial Red is the newest addition to Rogues award winning Imperial Family of XS products. The Imperial Red recipe originates from Rogues Eugene City Brewery and is being produced in Newport for distribution (note, initially during 2007 in kegs only to JLS accounts. A 750-ml ceramic swing-top bottle and 13.2 gallon kegs will be available in 2008.) Imperial Red has already garnered international acclaim and awards, including a Bronze Medal at the 2006 Great American Beer Festiva and recently it was named Grand Champion at the US Beer Tasting Championships! \r\n\r\nDeep copper chestnut color with toffee, brown sugar, nuts, and spice amomas. A rich supple entry leads to an off-dry medium body of tangy raisins and citrus marmalade, bittersweet chocolate, and mild spice flavors. It finishes with a long nutty, fruity fade. \r\n\r\nImperial Red is brewed with Crystal, Chocolate, Munich and two-row Pale Malts; Palisade and Aroma Crystal hops, Pacman Yeast, and Free Range Coastal Waters."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,13,1
+tongerlo-tongerlo_tripple,0,0,245115977730,"{""name"":""Tongerlo Tripple"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""Blond beer with a fruity and hoppy aroma and a balanced flavour with a slightly bitter aftertaste."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,41,1
+jolly_pumpkin_artisan_ales,0,0,244746944513,"{""name"":""Jolly Pumpkin Artisan Ales"",""city"":""Dexter"",""state"":""Michigan"",""code"":""48130"",""country"":""United States"",""phone"":""1-734-426-4962"",""website"":""http://www.jollypumpkin.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Welcome to a land of open fermentation, oak barrel aging, and bottle conditioning. At Jolly Pumpkin Artisan Ales we are dedicated to more than the traditions of old world craftsmanship. Everything we do is designed to create ales of outstanding art and flavor. Focusing on traditional rustic country style beers brought to life through labor and love, we strive to create beers to lighten the spirit, and soothe the soul. Sharing our joy to the betterment of mankind is the most that we could hope for."",""address"":[""3115 Broad Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3375,""lon"":-83.8895}}",1,31,1
+mcmenamins_mill_creek-golden,0,0,244872052736,"{""name"":""Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mcmenamins_mill_creek"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+steamworks_brewing_durango,0,0,245101821952,"{""name"":""Steamworks Brewing - Durango"",""city"":""Durango"",""state"":""Colorado"",""code"":""81301"",""country"":""United States"",""phone"":""1-970-259-9200"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""801 East Second Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2724,""lon"":-107.88}}",1,9,1
+otto_s_pub_and_brewery-mt_nittany_pale_ale,0,0,244870676480,"{""name"":""Mt. Nittany Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An American pale ale brewed with Centennial hops and hopbacked with Cascade, it's a real refresher that has a spicy, citrus aroma and a slightly nutty malt flavor. ABV 5.0%"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+faultline_brewing_2-kolsch,0,0,244614692867,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""faultline_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+goose_island_beer_company_clybourn-american_pale_ale,0,0,244614299648,"{""name"":""American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+pacific_rim_brewing-alki_ale,0,0,244992049152,"{""name"":""Alki Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+utah_brewers_cooperative-wasatch_1st_amendment_lager,0,0,245100183553,"{""name"":""Wasatch 1st Amendment Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""utah_brewers_cooperative"",""updated"":""2010-07-22 20:00:20"",""description"":""A turn of the century pure malt, crisp lager. 1st Amendment Lager is made with European style hops and Munich malts. This beer has a wonderful, clean, crisp flavor certain to please all."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,5,1
+molson_breweries_of_canada-rickard_s_pale_ale,0,0,244879458304,"{""name"":""Rickard's Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
+red_star_brewery_grille,0,0,245002469377,"{""name"":""Red Star Brewery & Grille"",""city"":""Greensburg"",""state"":""Pennsylvania"",""code"":""15601"",""country"":""United States"",""phone"":""724.850.7245"",""website"":""http://www.redstarbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Red Star Brewery & Grille opened for business October 19th, 1998. We had only five beers on tap, the Golden Light, American Pale, English Brown, Irish Dry Stout, and a Seasonal brew."",""address"":[""101 Ehalt St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3044,""lon"":-79.5471}}",1,52,1
+penn_brewery-penn_marzen,0,0,244984774656,"{""name"":""Penn Marzen"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A spring fest beer that is amber in color, Penn Märzen has full flavor and body. Highly rated by the National Beverage Tasting Institure.""}",1,10,1
+founders_brewing-founders_breakfast_stout,0,0,244627734528,"{""name"":""Founders Breakfast Stout"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""founders_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""You've got to love coffee to truly appreciate this phenomenal brew. Brewed with an abundance of flaked oats, bitter and sweetened imported chocolates, Sumatra and Kona coffee. Breakfast Stout has an intense fresh roasted coffee nose toped with a cinnamon colored frothy head that seems to never fade and makes you wish breakfast could last forever."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,49,1
+harvey_son_lewes-a_lecoq_imperial_extra_double_stout_2000,0,0,244738949122,"{""name"":""A. LeCoq Imperial Extra Double Stout 2000"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harvey_son_lewes"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+grupo_modelo-pacifico_clara,0,0,244757037056,"{""name"":""Pacífico Clara"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""grupo_modelo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
+left_hand_brewing_company-pole_star_pilsner,0,0,244757626881,"{""name"":""Pole Star Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+oyster_bar_bistro_and_brewery-stock_ale_2,0,0,244862025730,"{""name"":""Stock Ale #2"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oyster_bar_bistro_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,11,1
+great_dane_pub_and_brewing_2-verruckte_stadt_pilsner,0,0,244747796480,"{""name"":""Verrückte Stadt Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_2"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+joboy_s_brew_pub-joboy_s_cream_ale,0,0,244748320768,"{""name"":""JoBoy's Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""joboy_s_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A crisp, clean, easy drinking, refreshing American ale with a light body."",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,35,1
+minneapolis_town_hall_brewery-wpa_wheat_pale_ale,0,0,244871790593,"{""name"":""WPA (Wheat Pale Ale)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+seabright_brewery-leroy_barleywine,0,0,244984184832,"{""name"":""Leroy Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+port_brewing_company-red_square,0,0,244983267329,"{""name"":""Red Square"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+north_coast_brewing_company-pranqster_belgian_ale,0,0,244863270914,"{""name"":""PranQster Belgian Ale"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pranqster\r\nBelgian Style Golden Ale\r\n\r\nBelgian Ales represent the height of the brewers' art. Sophisticated brewing techniques, yeast blends and unique flavoring elements have elevated the beers of Belgium to the status enjoyed by wine in other countries.\r\n\r\nPranQster follows in this tradition using a mixed culture of antique yeast strains that produce a floral nose, a full fruity flavor and a clean finish.\r\n\r\nAvailable in 12oz 4 packs and 750 ml traditionally corked and wired bottles.\r\n\r\nVital Statistics\r\nStyle: Belgian Style\r\n Golden Ale\r\nColor: Soft Gold\r\nABV: 7.6%\r\nBitterness: 20 IBU's\r\n\r\n-http://www.northcoastbrewing.com/beer-Pranqster.htm""}",1,14,1
+mendocino_brewing_hopland-peregrine_pale_ale,0,0,244881227777,"{""name"":""Peregrine Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mendocino_brewing_hopland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+thirstybear_brewing-valencia_wheat,0,0,245098348546,"{""name"":""Valencia Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+tabernash_brewing-oktoberfest,0,0,245118730240,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,48,1
+rogue_ales-brutal_bitter,0,0,245004435456,"{""name"":""Brutal Bitter"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An imperial bitter style using exotic traditional floor malts, citrus hoppy flavor, stupendous hop aroma. Hedonistic!\""Mellow Beer Emboldened by Hops,\"" Elaine Louies article in the New York TimesDining Out Section, (March 24, 1999) announced the release of latest Rogue elixir to be bottled. The article states that \""The newest beer of Rogue Ales sounds more aggressive than it is. Brutal Bitter is actually full-bodied, deeply flavored, intensely hoppy brew. There is nothing brutal about the rich, deep, mellow taste. Its crackling but not sharp... This beer may raise eyebrows, but it wont pucker lips. The aftertaste is clean.\""\r\n\r\nRogue brewer John Maier describes his Brutal Bitter as a cross between a Very Extra Special Bitter and an Indian Pale Ale. Brutal Bitter was first brewed in 1996 for the 20th Anniversary of the Horse Brass Pub in Portland. Customer demand prompted Rogue to continue brewing Brutal for the Horse Brass as well as using it as Rogues premier pour at the 1998 Oregon Brewers Festival. At the 1999 SpringFest in Portland, Oregon, Brutal Bitter was unscientifically voted the Peoples Choice--it received twice as many votes as the runner-up.\r\n\r\nBrutal combines Oregon hops with English Malts. The Oregon grown Crystal hop is a triploid variety developed from the German Hallertau aroma hop variety with contributions from Cascade, Brewers Gold, and Early Green. Crystal is the only hop used in brewing Brutal and it provides a massive amount of aroma without dry-hopping. The English malts used are floor malted Pipkin (a mellow cross of Maris Otter and Warboys, from an English company called Beeston), Cara Vienna and Cara Wheat. Brutal Bitter is packaged in Rogues classic 22 ounce silk-screened bottle, 12-ounce 6-pack (new for 2005), and is available on draft."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,56,1
+golden_pacific_brewing-golden_bear_lager,0,0,244628062209,"{""name"":""Golden Bear Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""golden_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+midnight_sun_brewing_co-arctic_devil_barley_wine,0,0,244864122881,"{""name"":""Arctic Devil Barley Wine"",""abv"":13.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Arctic Devil Barley Wine, aptly named after the ferocious wolverine of the north, is an English-style (meaning malt-inclined) barley wine. Though the recipe and process for Arctic Devil have evolved over the years, it is typically brewed in January then aged in oak barrels for several months before the entire batch is blended, bottled and released on the Friday after Thanksgiving. \r\n\r\nIn its youth, Arctic Devil gnarls and snarls its way across the palate. Containing this beast of a beer for long periods in oak barrels--some having previously aged port, wine or whiskey--tames the unleashed malt and fierce hop flavors, melding and mellowing this powerful liquid into an incredible elixir worthy of a brewer's table. \r\n\r\nEach annual batch of Arctic Devil Barley Wine represents the brewers' resolve to create an intriguing and sought-after barley wine by precisely brewing to well-designed specifications, carefully selecting the type and combination of barrels to use for aging, and meticulously checking the beer as it ages. Distinct nuance and complexity are contributed by the wood's previous tenants, resulting in unique flavor profiles in each batch that continue to change over time. We invite you to savor Arctic Devil Barley Wine upon its release then cellar some for future enjoyment. \r\n\r\nMidnight Sun's elusive Arctic Devil Barley Wine is Alaska's most awarded barley wine.""}",1,17,1
+old_hat_brewery-depot_pils,0,0,244872839168,"{""name"":""Depot Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+united_breweries_limited-kingfisher_premium,0,0,245099659264,"{""name"":""Kingfisher Premium"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":2147483647,""type"":""beer"",""brewery_id"":""united_breweries_limited"",""updated"":""2011-01-09 14:50:37"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,4,1
+unionsbru_haidhausen-helles_naturtrub,0,0,245100707841,"{""name"":""Helles Naturtrub"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unionsbru_haidhausen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+oggi_s_pizza_and_brewing_vista-paradise_pale_ale,0,0,244879130624,"{""name"":""Paradise Pale Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
+redhook_ale_brewery,0,0,244987002883,"{""name"":""Redhook Ale Brewery"",""city"":""Seattle"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.redhook.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.6062,""lon"":-122.332}}",1,16,1
+pivovar_hradec_krlov,0,0,244986544128,"{""name"":""Pivovar Hradec Krlov"",""city"":""Hradec Krlov"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.2094,""lon"":15.8326}}",1,15,1
+rothaus_brauerei-leicht,0,0,244985954304,"{""name"":""Leicht"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rothaus_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+troegs_brewing-scratch_22_2009,0,0,245116043264,"{""name"":""Scratch #22 2009"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,41,1
+jt_whitney_s_brewpub_and_eatery-alt,0,0,244746944514,"{""name"":""Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
+microbrouwerij_achilles-serafijn_christmas_angel,0,0,244872052737,"{""name"":""Serafijn Christmas Angel"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""microbrouwerij_achilles"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+stevens_point_brewery-amber_lager,0,0,245101821953,"{""name"":""Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
+paulaner-hacker_pschorr_hubertus_bock,0,0,244994015232,"{""name"":""Hacker-Pschorr Hubertus Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
+felinfoel_brewery_co_ltd-thames_welsh_ale,0,0,244614758400,"{""name"":""Thames Welsh Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""felinfoel_brewery_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+goose_island_beer_company_clybourn-black_toad_dark_ale,0,0,244614365184,"{""name"":""Black Toad Dark Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""goose_island_beer_company_clybourn"",""updated"":""2010-07-22 20:00:20"",""description"":""We begin with a custom mixture of dark and roasted barley malts, then we add the choicest hops. The resulting ale has a dark chestnut color and a deep nutty flavor. Brewed specially for Trader Joe's."",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
+pivzavod_baltika-baltika_8,0,0,244992049153,"{""name"":""Baltika #8"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
+vancouver_island_brewing,0,0,245100183554,"{""name"":""Vancouver Island Brewing"",""city"":""Victoria"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-250-361-0007"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2330 Government Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":48.4344,""lon"":-123.367}}",1,5,1
+molson_breweries_of_canada,0,0,244879458305,"{""name"":""Molson Breweries of Canada"",""city"":""Toronto"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-416-975-1786"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""175 Bloor Street East""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.6706,""lon"":-79.3824}}",1,55,1
+rocky_river_brewing-bombardier_brown,0,0,245002534912,"{""name"":""Bombardier Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,52,1
+piece,0,0,244984774657,"{""name"":""Piece"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60622"",""country"":""United States"",""phone"":""1-773-772-4422"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1927 West North Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9104,""lon"":-87.6761}}",1,10,1
+freeminer_brewery-deep_shaft_stout,0,0,244627734529,"{""name"":""Deep Shaft Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""freeminer_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+hawks_brewing-super_natural_ipa,0,0,244739014656,"{""name"":""Super Natural IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
+hc_berger_brewing,0,0,244757037057,"{""name"":""HC Berger Brewing"",""city"":""Fort Collins"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.5853,""lon"":-105.084}}",1,57,1
+liberty_steakhouse_and_brewery-liberty_white_ale,0,0,244757626882,"{""name"":""Liberty White Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liberty_steakhouse_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Wheat-based beer brewed with coriander and orange peel to produce a mild citrus flavor."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,58,1
+pacific_coast_brewing-cask_esb,0,0,244985102336,"{""name"":""Cask ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+harpoon_brewery_boston-ufo_raspberry_hefeweizen,0,0,244747796481,"{""name"":""UFO Raspberry Hefeweizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_boston"",""updated"":""2010-07-22 20:00:20"",""description"":""We have added natural raspberry flavor to our UFO Hefeweizen to create this beer. Consistent with the hefeweizen style, this beer is unfiltered and cloudy with a solid foamy head. UFO Raspberry has a distinctive, hazy rose color. The scent of fresh raspberries hits the nose immediately, along with a subtle bready aroma from the wheat and yeast. The body is light and the unfiltered yeast provides a soft mouthfeel. The taste of the fruit compliments the beer nicely, neither overwhelms the other. There is a faint sweetness on the palate, which finishes cleanly in a semi-dry, tart finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
+john_harvard_s_brewhouse_wilmington-half_again_bock,0,0,244748320769,"{""name"":""Half Again Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brewhouse_wilmington"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,35,1
+mohrenbrauerei_august_huber-naturtrubes_kellerbier,0,0,244871790594,"{""name"":""Naturtrübes Kellerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mohrenbrauerei_august_huber"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,37,1
+sierra_nevada_brewing_co-chico_estate_harvest_ale,0,0,244984184833,"{""name"":""Chico Estate Harvest Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""We wanted to see if we could grow hops at our brewery in Chico, California so we planted our own hop field selecting our prized Cascade and Centennial varieties along with some specialty hop varieties to experiment with. To our surprise, we not only could grow hops, we were also able to harvest them in late summer due to Chico’s ideal climate. \r\n\r\nChico Estate Harvest Ale is one of the very few estate harvest ales produced anywhere in the world today. All the hops in the beer are grown naturally on the premises of our brewery in Chico. We pick the hops ourselves and then take them directly to the brew kettle, without being dried, just after picking so they retain nearly all of their natural oils and resins. It is made with Cascade, Centennial and Chinook hops. Until now, this beer has only been available in draft. Starting this year, we will be bottling it on a very limited basis, with plans to expand its availability as we expand our Chico hop field in the coming years."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
+prairie_rock_brewing_elgin-triple_nickel_irish_stout,0,0,244983332864,"{""name"":""Triple Nickel Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+ohio_brewing-buckeye_brown,0,0,244863336448,"{""name"":""Buckeye Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ohio_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,14,1
+mercury_brewing_company,0,0,244881227778,"{""name"":""Mercury Brewing Company"",""city"":""Ipswich"",""state"":""Massachusetts"",""code"":""1938"",""country"":""United States"",""phone"":""978-356-3329"",""website"":""http://www.mercurybrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Located in historic Ipswich, Massachusetts, Mercury Brewing Company emerged in 1999 when Rob Martin, then Director of Operations for Ipswich Brewing Company, purchased the brewery and renamed the company Mercury Brewing and Distribution Company. While continuing production of Ipswich Ale, Martin expanded the company with Stone Cat Ales and Lagers, Mercury Premium Sodas, and numerous contract brewing agreements. In 2007 our beer production topped 14,000 BBLs (434,000 GAL), a 44% increase from 2006. Soda production came to 1180 BBLs (36,580 GAL), an increase of 22% from the previous year. We could not have done this without our hardworking staff and loyal customers and look forward to an even better 2008."",""address"":[""23 Hayward St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6728,""lon"":-70.844}}",1,59,1
+titletown_brewing-colonel_kolsch,0,0,245098414080,"{""name"":""Colonel Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+terminal_gravity_brewing,0,0,245118730241,"{""name"":""Terminal Gravity Brewing"",""city"":""Enterprise"",""state"":""Oregon"",""code"":""97828"",""country"":""United States"",""phone"":""1-541-426-0158"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""803 SE School Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.4192,""lon"":-117.272}}",1,48,1
+routh_street_brewery_and_grille-pilsner,0,0,245004435457,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
+harmon_brewing_company,0,0,244754415616,"{""name"":""Harmon Brewing Company"",""city"":""Tacoma"",""state"":""Washington"",""code"":""98402"",""country"":""United States"",""phone"":""1-253-383-2739"",""website"":""http://harmon.harmonbrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1938 Pacific Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":47.2436,""lon"":-122.437}}",1,50,1
+midnight_sun_brewing_co-mammoth_extra_stout,0,0,244864188416,"{""name"":""Mammoth Extra Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and full-bodied, Mammoth Extra Stout boasts a well-rounded melange of rich flavors, including chocolate, caramel, coffee, nut and date. Huge portions of pale and specialty malts give this mammoth brew a complex yet exceptionally smooth palate. Hops provide balance without overpowering the chewy malt profile."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,17,1
+otter_creek_brewing_wolaver_s_organic_ales-vermont_lager,0,0,244872839169,"{""name"":""Vermont Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic European style lager. We take the time to brew this beer as a true lager should be brewed. And it's well worth the wait! You can enjoy the drinkability of this light-gold, refreshing beer with friends at the pub or at home after a long day."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+wagner_valley_brewing,0,0,245744730112,"{""name"":""Wagner Valley Brewing"",""city"":""Lodi"",""state"":""New York"",""code"":""14860"",""country"":""United States"",""phone"":""1-607-582-6450"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9322 State Route 414""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.5739,""lon"":-76.8582}}",1,4,1
+weeping_radish_restaurant_and_brewery_manteo-weizen,0,0,245744861184,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weeping_radish_restaurant_and_brewery_manteo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,6,1
+old_city_brewing,0,0,244879130625,"{""name"":""Old City Brewing"",""city"":""Austin"",""state"":""Texas"",""code"":""78701"",""country"":""United States"",""phone"":""1-512-448-4844"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""603 West 13th Street #1A-345""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2767,""lon"":-97.7463}}",1,54,1
+revolution_brewing_llc,0,0,244987068416,"{""name"":""Revolution Brewing LLC"",""city"":""Chicago"",""state"":""Illinois"",""code"":""60647"",""country"":""United States"",""phone"":""773-227-BREW"",""website"":""http://revbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Revolution Brewing LLC is opening a brewpub in Logan Square which will include a full-service restaurant. We will also be selling our beers in kegs to select Chicago drinking establishments as brewing capacity allows."",""address"":[""2323 N Milwaukee Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9234,""lon"":-87.6982}}",1,16,1
+plzesk_prazdroj,0,0,244986609664,"{""name"":""Plzesk Prazdroj"",""city"":""Plze"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-019/706-1111"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""U Prazdroje 7""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.7466,""lon"":13.3861}}",1,15,1
+rowland_s_calumet_brewery-calumet_pils,0,0,244985954305,"{""name"":""Calumet Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+union_barrel_works-union_barrel_works_kolsch,0,0,245116043265,"{""name"":""Union Barrel Works Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A pale golden German ale with subdued, clean-tasting malt flavor and aroma. This is a beer from the \""old\"" brewing tradition before lagers become popular. Fermented at a lower temperature than normal ales, and followed by several weeks of cold lagering.""}",1,41,1
+jw_lees_and_co_brewers_ltd-harvest_ale_1999,0,0,244746944515,"{""name"":""Harvest Ale 1999"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,31,1
+middle_ages_brewing-tripel_crown,0,0,244872052738,"{""name"":""Tripel Crown"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Cellar aged, subtly complex and deceptively strong. Using two of the old world's brewing traditions, we have combined British ingredients and methods with Belgian ale qualities."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,38,1
+sweet_water_tavern_and_brewery-black_stallion_oatmeal_stout,0,0,245101887488,"{""name"":""Black Stallion Oatmeal Stout"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweet_water_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, smooth...long dry-roast finish...ebony"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,9,1
+penn_brewery-st_nikolaus_bock_bier,0,0,244994080768,"{""name"":""St. Nikolaus Bock Bier"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A very rich, dark bock beer. dark ruby in color with subtle tones of chocolate and burnt malt. It will warm you on a cold winter night and brighten your days. The perfect holiday gift for the beer drinker."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,33,1
+firestone_walker_brewing_company,0,0,244614758401,"{""name"":""Firestone Walker Brewing Company"",""city"":""Paso Robles"",""state"":""California"",""code"":""93446"",""country"":""United States"",""phone"":""(805) 238-2556"",""website"":""http://www.firestonewalker.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1400 Ramada Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.5953,""lon"":-120.694}}",1,19,1
+gordon_biersch_brewing-premium_light_lager,0,0,244614365185,"{""name"":""Premium Light Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gordon_biersch_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+rail_house_restaurant_and_brewpub-honey_weiss_discontinued,0,0,244992114688,"{""name"":""Honey Weiss (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
+victory_brewing-hop_devil_india_pale_ale,0,0,245100249088,"{""name"":""Hop Devil India Pale Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Menacingly delicious, with the powerful, aromatic punch of whole flower American hops backed up by rich, German malts. HopDevil Ale offers a roller coaster ride of flavor, coasting to a smooth finish that satisfies fully."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,5,1
+montana_brewing-espresso_porter,0,0,244879458306,"{""name"":""Espresso Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+roost_brewery-pale_ale,0,0,245002534913,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
+pivovar_klter_hradit-tmave_10_dark_beer,0,0,244984774658,"{""name"":""Tmavé 10% / Dark Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_klter_hradit"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+govnor_s_public_house-black_forest,0,0,244627734530,"{""name"":""Black Forest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""govnor_s_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,49,1
+hc_berger_brewing-chocolate_stout,0,0,244739014657,"{""name"":""Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+hereford_hops_restaurant_and_brewpub_1-cleary_red,0,0,244757037058,"{""name"":""Cleary Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_restaurant_and_brewpub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
+licher_privatbrauerei-export_premium,0,0,244757692416,"{""name"":""Export Premium"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""licher_privatbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+pike_pub_and_brewery-pale_ale,0,0,244985102337,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
+harpoon_brewery_boston,0,0,244747796482,"{""name"":""Harpoon Brewery - Boston"",""city"":""Boston"",""state"":""Massachusetts"",""code"":""2210"",""country"":""United States"",""phone"":""1-888-HARPOON"",""website"":""http://www.harpoonbrewery.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""306 Northern Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3465,""lon"":-71.0338}}",1,34,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2005_whisky,0,0,244748320770,"{""name"":""Harvest Ale 2005 (Whisky)"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+moosehead_breweries_ltd,0,0,244871790595,"{""name"":""Moosehead Breweries Ltd."",""city"":""Saint John"",""state"":""New Brunswick"",""code"":"""",""country"":""Canada"",""phone"":""(506) 635-7000"",""website"":""http://www.moosehead.ca/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""89 Main Street, PO Box 3100, Station B""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.2578,""lon"":-66.0984}}",1,37,1
+slab_city_brewing,0,0,244984184834,"{""name"":""Slab City Brewing"",""city"":""Bonduel"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.7403,""lon"":-88.4448}}",1,8,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-thomas_kemper_hefeweizen,0,0,244983332865,"{""name"":""Thomas Kemper HefeWeizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,7,1
+old_hat_brewery-tripel,0,0,244863336449,"{""name"":""Tripel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+mickey_finn_s_brewery-wheat_ale,0,0,244881227779,"{""name"":""Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+titletown_brewing-march_marzen,0,0,245098414081,"{""name"":""March Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,2,1
+the_nook_brewhouse,0,0,245118730242,"{""name"":""The Nook Brewhouse"",""city"":"""",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2011-02-10 01:47:16"",""description"":"""",""address"":[]}",1,48,1
+russian_river_brewing-blind_pig_ipa,0,0,245004435458,"{""name"":""Blind Pig IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Blind Pig IPA was originally brewed by Vinnie at Blind Pig Brewing Co. in Temecula CA. Inspired by the original Blind Pig IPA, this beer is loaded with hop character but only has 6.0% ABV."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
+harpoon_brewery_windsor-harpoon_ipa,0,0,244754481152,"{""name"":""Harpoon IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""harpoon_brewery_windsor"",""updated"":""2010-07-22 20:00:20"",""description"":""From their site:\r\n\r\n\""Harpoon IPA is an interpretation of the classic English style using hops and malt grown in the United States.\""\r\n\r\n...\r\n\r\n\""The high hopping of Harpoon IPA is not only noticeable in the nose but especially in the finish. The lingering bitter finish of this beer is not harsh or astringent, but crisp and pronounced. This is created, in part, by dry hopping – a technique that involves adding fresh hops to the conditioning beer to provide a fresh hop aroma.\r\n\r\nThis beer is floral, medium body with an aggressive, clean hop finish.\""\r\n\r\n----\r\n\r\nThis has been my year-round favorite since moving to Boston in 2004. It is the nectar of the gods. Seriously, it's a nicely balanced, hoppy IPA that isn't overpowering. Also, it can be consumed in huge quantities with no hangover."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,50,1
+midnight_sun_brewing_co-midnight_sun_kolsch,0,0,244864188417,"{""name"":""Midnight Sun Kolsch"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the talented brewers of Midnight Sun comes an incredible, beautifully bright and sunny golden ale. Every sip entices the taste buds with a bold balance of pils malt and noble hops. Midnight Sun Kolsch is a traditional German-style beer that unites the liveliness of an ale with the crispness of a lager for real refreshment any time of year. \r\n\r\nCreating a beer that truly serves both newcomers to craft beer as well as avid beer aficionados is no easy task. Midnight Sun Kolsch brewers struck gold with this beer...and now you can too. \r\n\r\nAvailability:\r\nAK - draft (year-round)""}",1,17,1
+pennsylvania_brewing-weizen,0,0,244996898816,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennsylvania_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,39,1
+water_street_brewery-old_world_oktoberfest,0,0,245744730113,"{""name"":""Old World Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,4,1
+yards_brewing-poor_richard_s_tavern_spruce_ale,0,0,245744926720,"{""name"":""Poor Richard's Tavern Spruce Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed to celebrate Ben's 300th birthday.\r\n\r\nWhether Ben Franklin ever said, \""Beer is living proof that God loves us and wants us to be happy\"" is up for debate. Some say he said it, others say he didn't. No one knows for sure. \r\n\r\nHistorical facts or fictions aside, Yards Brewing Company has recreated Poor Richard's Tavern Spruce Ale™ to celebrate Franklin's affinity for fine ales. Poor Richard's Tavern Spruce Ale is based on Franklin's original recipe, which called for spruce essence and molasses, as barley and hops were not readily available at the time.\r\n\r\nEnjoy a taste of history courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,6,1
+orlio_organic-orlio_seasonal_india_pale_ale,0,0,244879196160,"{""name"":""Orlio Seasonal India Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlio_organic"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong but smooth medium-bodied copper ale with a furity nose, big dry hop flavor, and assertive hop bite that rest upon a subtle but supportive background of complex malt flavors."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,54,1
+ridgeway_brewing-bitter,0,0,244987068417,"{""name"":""Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+privater_brauereigasthof_greifenklau-weizen,0,0,244986609665,"{""name"":""Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privater_brauereigasthof_greifenklau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,15,1
+sabmiller_india-haywards_5000,0,0,244986019840,"{""name"":""Haywards 5000"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Country of origin: India \r\nBeer type: Lager \r\nAlcohol content by volume: < 7.5% by volume \r\nCarbohydrates: - \r\nTaste: full bodied malty flavour \r\nMalts: Indian malts, 6 row barley \r\nHops: German hop extract (CO2) & Indian hop palate \r\nColour: Golden yellow \r\nAvailability: India - all seasons, South East Asia, Middle East and Europ \r\nFermentation process: Bottom-fermented \r\nServing temperature: 7 - 9 °C \r\nPackaging: 650 ml and 330 ml Indian standard glass amber bottle ; 500 ml Non returnable bottles ; 500 ml cans and 330 ml cans ( in select markets) \r\n \r\nhttp://www.sabmiller.in/brands_haywards_5000.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+victory_brewing-old_horizontal,0,0,245116043266,"{""name"":""Old Horizontal"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A luxurious, warming barleywine rich with aromatic hops and dark, candied fruit character that hides its epic strength masterfully."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,41,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_celebration_ale_2006,0,0,244746944516,"{""name"":""Hitachino Nest Celebration Ale 2006"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+midnight_sun_brewing_co-earth_belgian_style_chocolate_milk_stout,0,0,244872118272,"{""name"":""Earth - Belgian Style Chocolate Milk Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Mother Earth is the rich fertile “living” planet. Our EARTH combines pale and dark malts for essential body. Cocoa nibs—decadent chocolate in its most elemental form—add distinction. Lush lactose creates incredible creaminess. But Earth gains amazing ground with extensive aging on Bergenfield extra dark cocoa."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,38,1
+t_r_theakston-old_peculier,0,0,245101887489,"{""name"":""Old Peculier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_r_theakston"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+pennichuck_brewing_company-shouboushi_ginger_pilsner,0,0,244994080769,"{""name"":""Shouboushi Ginger Pilsner"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,33,1
+fish_brewing_company_fish_tail_brewpub-organic_amber_ale,0,0,244614823936,"{""name"":""Organic Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""fish_brewing_company_fish_tail_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""Medium-bodied with an appealing amber hue, this is the First Ale of the Republic. Its organic pale, Munich, and crystal malts create a gentle sweet character that is difficult to resist. From organic Hallertauer hops come a zesty flavor and aroma that beautifully balance Organic Amber's malt profile. The result: Truly delicious ale that salutes organic farmers and all the goodness they bring to our tables."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
+green_bay_brewing-framboise,0,0,244741439488,"{""name"":""Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
+ridgeway_brewing,0,0,244992180224,"{""name"":""Ridgeway Brewing"",""city"":""South Stoke"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01491)-873474"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6 Chapel Close""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.5462,""lon"":-1.1355}}",1,28,1
+water_street_brewery-english_brown_ale,0,0,245744795648,"{""name"":""English Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,5,1
+moon_river_brewing_company-road_trip_hard_cider,0,0,244879458307,"{""name"":""Road Trip Hard Cider"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This hard cider is fresh-pressed with delicious, sweet-tart \""Pink Lady\"" apples from the Mercier Orchards in the North Georgia mountains."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,55,1
+roost_brewery,0,0,245002534914,"{""name"":""Roost Brewery"",""city"":""Campbell"",""state"":""California"",""code"":""95008"",""country"":""United States"",""phone"":""1-408-866-2699"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 East Campbell Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":37.2869,""lon"":-121.946}}",1,52,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-best_brown,0,0,244984840192,"{""name"":""Best Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
+great_basin_brewing_company,0,0,244753891328,"{""name"":""Great Basin Brewing Company"",""city"":""Sparks"",""state"":""Nevada"",""code"":""89431"",""country"":""United States"",""phone"":""(775) 355-7711"",""website"":""http://greatbasinbrewingco.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Great Basin Brewing Co. makes fresh hand-crafted beer right before your eyes using the finest American & European grains, hops & yeast. The rugged beauty and free spirit of this region have inspired the creation of the brewery and the beers that you enjoy. We invite you to celebrate our heritage with us."",""address"":[""846 Victorian Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.5349,""lon"":-119.754}}",1,49,1
+hook_norton_brewery,0,0,244739014658,"{""name"":""Hook Norton Brewery"",""city"":""Hook Norton"",""state"":""Oxford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01608)-730384"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brewery Lane""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.9966,""lon"":-1.4922}}",1,12,1
+hereford_hops_steakhouse_and_brewpub_3-whitetail_ale,0,0,244757037059,"{""name"":""Whitetail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hereford_hops_steakhouse_and_brewpub_3"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+lift_bridge_brewery-lift_bridge_pale_ale,0,0,244757692417,"{""name"":""Lift Bridge Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lift_bridge_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Well balanced amber pale ale accentuated by multiple additions of floral Cascade hops and our unique introduction of grapefruit zest to compliment the citrus notes of the hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+pivovar_hradec_krlov-lion_lev_export_lager,0,0,244985167872,"{""name"":""Lion Lev Export Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_hradec_krlov"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+high_falls_brewing-dundee_stout,0,0,244747796483,"{""name"":""Dundee Stout"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
+karl_strauss_brewery_gardens_sorrento_mesa-padre_porter,0,0,244748320771,"{""name"":""Padre Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""karl_strauss_brewery_gardens_sorrento_mesa"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+nelson_brewing,0,0,244871856128,"{""name"":""Nelson Brewing"",""city"":""Nelson"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-250-352-3582"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""512 Latimer Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.4884,""lon"":-117.29}}",1,37,1
+socorro_springs_brewing-pick_axe_ipa,0,0,245101101056,"{""name"":""Pick Axe IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""socorro_springs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,8,1
+rahr_sons_brewing_company-stormcould_ipa,0,0,244983398400,"{""name"":""Stormcould IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""During a fierce storm on his voyage across the ocean, William Rahr could be heard yelling from the tall masted ship: \""Roll on old sea! And when you are done, when the storm clouds have destroyed themselves, we will still be standing and drinking!\"" Today, we have created the ultimate ale for a voyage such as this: A German-Style IPA - a traditional India Pale Ale with German Influence."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
+on_tap_bistro_brewery-hop_maniac_ipa,0,0,244863336450,"{""name"":""Hop Maniac IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
+midnight_sun_brewing_co-imperial_chocolate_pumpkin_porter,0,0,244881293312,"{""name"":""Imperial Chocolate Pumpkin Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Intriguing doses of sweet spices, dark cocoa and pumpkin transform an exceptional porter into a\r\nmesmerizing potion. Pour this tantalizing brew into a snifter and seek solace in the depths of its fascinating flavors. Cinnamon, nutmeg and cloves seem familiar but this brew is cloaked in deep, dark secrets that will forever haunt you.\r\n\r\nThis beer is like nothing you have ever experienced. It is a majestic mélange of rich, impressive flavors that meld wonderfully with the\r\nwarmth of alcohol. Will it appease or awaken your spirit?"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,59,1
+tommyknocker_brewery_and_pub-red_eye_lager,0,0,245098414082,"{""name"":""Red Eye Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+the_st_louis_brewrey-pale_ale,0,0,245118795776,"{""name"":""Pale Ale"",""abv"":4.4,""ibu"":25.0,""srm"":13.5,""upc"":0,""type"":""beer"",""brewery_id"":""the_st_louis_brewrey"",""updated"":""2011-02-10 07:51:20"",""description"":""APPEARANCE: Amber red, bright\nPROCESS: Classic English\nHOPS: East Kent Goldings (UK), Northdown (UK), Pilgrim (UK)\nMALTS: 2-Row and Caramel Malted Barley\nYEAST: London Ale\nOG: 11.2\nSRM: 13.5"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+sam_choy_s_breakfast_lunch_crab_big_aloha_brewery-ehu_ale,0,0,245004500992,"{""name"":""Ehu Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sam_choy_s_breakfast_lunch_crab_big_aloha_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,56,1
+hawks_brewing-super_natural_esb,0,0,244754546688,"{""name"":""Super Natural ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+millrose_brewing-country_ale,0,0,244864188418,"{""name"":""Country Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+pete_s_brewing,0,0,244996964352,"{""name"":""Pete's Brewing"",""city"":""San Antonio"",""state"":""Texas"",""code"":""78232"",""country"":""United States"",""phone"":""1-210-490-9128"",""website"":""http://www.peteswicked.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14800 San Pedro Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":29.5761,""lon"":-98.4772}}",1,39,1
+zea_rotisserie_and_brewery-clearview_light,0,0,245744926721,"{""name"":""Clearview Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,6,1
+pabst_brewing_company-old_milwaukee,0,0,244879196161,"{""name"":""Old Milwaukee"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Old Milwaukee. A trusted, high quality beer that continually receives the highest awards and accolades from Beer experts across America. Old Milwaukee has a long history of celebrating \""Blue Collar\"" sensibility. Simply said, good beer at a fair price. Old Milwaukee has always represented America's core values: Honesty, integrity, hard work and love for your family.\r\n\r\nSpeaking of family, the Old Milwaukee Family has a beer that is right for you. Old Milwaukee when you want a full bodied, full flavor American Lager. OM Light when you are in the mood for a lighter tasting beer with fewer calories. And don't forget OMNA, our flavorful non-alcoholic beer for those moments when you want the taste of America' best tasting beer without the alcohol content."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+river_west_brewing-berliner_weisse,0,0,244987068418,"{""name"":""Berliner Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+raccoon_lodge_and_brewpub_cascade_brewing-ring_tail_pale_ale,0,0,244986609666,"{""name"":""Ring Tail Pale Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ring Tail Pale is light in body and straw-gold in color, with a crisp hop finish. This beer is a great choice for domestic lager drinkers."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
+saint_louis_brewery_schlafy_tap_room-schlafly_winter_esb,0,0,244986019841,"{""name"":""Schlafly Winter ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+water_street_brewery-irish_red_ale,0,0,245749579776,"{""name"":""Irish Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,41,1
+kostritzer_schwarzbierbrauerei,0,0,244747010048,"{""name"":""Köstritzer Schwarzbierbrauerei"",""city"":""Bad Köstritz"",""state"":""Thüringen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)36605-/-83-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Heinrich-Schtz-Strae 16""]}",1,31,1
+miller_brewing-miller_genuine_draft,0,0,244872183808,"{""name"":""Miller Genuine Draft"",""abv"":4.66,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Miller Genuine Draft debuted in 1985 with fresh, smooth flavor that's a result of being cold-filtered four times. As we capitalize on the growing trend towards \""mainstream sophistication,\"" MGD is positioned as the only beer refined to ideal smoothness for those who pursue their passion with integrity and conviction. For our target consumer, MGD is a brand that celebrates their experiences ... past, present, and future. Because, ultimately, in beer as in life, \""Experience is Golden.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,38,1
+taylor_s_crossing_brewing-two_lions_pale_ale,0,0,245101887490,"{""name"":""Two Lions Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+pennsylvania_brewing,0,0,244994146304,"{""name"":""Pennsylvania Brewing"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15212"",""country"":""United States"",""phone"":""1-412-237-9402"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""800 Vinial Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4569,""lon"":-79.9915}}",1,33,1
+furstlich_furstenbergische_brauerei,0,0,244614823937,"{""name"":""Fürstlich Fürstenbergische Brauerei"",""city"":""Donaueschingen"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)771-/-86-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Postplatz 1-4""]}",1,19,1
+hasserder_brauerei-premium_pils,0,0,244741439489,"{""name"":""Premium Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hasserder_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+rock_bottom_restaurant_brewery_south_denver-walnut_buffalo_gold_premium_ale,0,0,244992180225,"{""name"":""Walnut Buffalo Gold Premium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_south_denver"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+western_reserve_brewing-cloud_nine_witbier,0,0,245744795649,"{""name"":""Cloud Nine Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""western_reserve_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,5,1
+moon_river_brewing_company-the_captains_porter,0,0,244879523840,"{""name"":""The Captains Porter"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our porter is a full bodied, semi-sweet dark ale, with distinct notes of caramel and chocolate. A touch of English grown Fuggles gives balance to the complex malty sweetness. Brewed in the loving memory of our Brew master's grandfather, the Captain."",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
+sa_brain_co_ltd-traditional_welsh_ale,0,0,245002600448,"{""name"":""Traditional Welsh Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sa_brain_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-porter,0,0,244984840193,"{""name"":""Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,10,1
+great_divide_brewing-hibernation_ale,0,0,244753956864,"{""name"":""Hibernation Ale"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Great Divide’s award-winning Hibernation Ale is Colorado’s original strong ale – it has been our winter seasonal each year since 1995. Since that time, Hibernation has become the most sought-after winter beer in Colorado. Hibernation’s massive flavors are so intense that it requires over three months of aging each year. Each summer, while our brewers are still spending their weekends in flip-flops and shorts, they prepare for July’s Hibernation brewing schedule.\r\n\r\nWe cellar Hibernation until late October, when it reaches the peak of perfection. This lengthy aging process gives Hibernation its revered malty richness, complex hop profile and hearty warming character, which is perfect right out of the bottle or cellared for longer periods of time. Hibernation is a lively treat that really beats the winter chill. This scrumptious, collectible, and imminently cellarable ale is only available for six weeks each year, from November 1 to December 15. Hibernation Ale is the perfect gift or accompaniment to your winter festivities."",""style"":""Old Ale"",""category"":""British Ale""}",1,49,1
+hoppin_frog_brewery-bodacious_black_and_tan,0,0,244739080192,"{""name"":""Bodacious Black and Tan"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppin_frog_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""I.P.A. and Stout converge for a really great flavor combination! The assertive, hoppy character of our Hoppin’ To Heaven I.P.A. is perfectly complimented by the intense, deep roasted taste of our B.O.R.I.S. Oatmeal-Imperial Stout.""}",1,12,1
+highland_brewing_company-kashmir_ipa,0,0,244757037060,"{""name"":""Kashmir IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A brilliant, dry pale ale with an aggressive hop character balanced with a smooth finish. A bold beer best consumed with a stiff upper lip.\r\n\r\nIBU: 60\r\nAlcohol Content: 5.6% by volume\r\nHops: Stryian Goldings, Mt. Hood, Fuggles, Magnum, Willamette\r\n\r\n*Contains Wheat\r\n\r\nCalories per 12 oz 190.85\r\nCarbs per 12 oz 16.82"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
+limburg_beer_company,0,0,244880703488,"{""name"":""Limburg Beer Company"",""city"":""Hawkes Bay"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(06)-878-5542"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""500 Williams Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-39.6275,""lon"":176.854}}",1,58,1
+pivovar_podkov,0,0,244985233408,"{""name"":""Pivovar Podkov"",""city"":""Praha"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-326-356-222"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dkansk 201/10""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":50.0878,""lon"":14.4205}}",1,11,1
+highland_brewing_company-black_mocha_stout,0,0,244747862016,"{""name"":""Black Mocha Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""highland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Highland's most robust beer, having a very malty body with a large, roasted chocolate flavor. It is black in color with a very clean finish and a moderate hop flavor.\r\n\r\nIBU: 25\r\nAlcohol content: 5.3% by volume\r\nHops: Chinook and Mt. Hood\r\n\r\n*Contains Wheat\r\n\r\nCalories per 12 oz. 216.81\r\nCarbs per 12 oz. 24.99"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
+kirin_brewery_company_ltd-kirin_ichiban,0,0,244748386304,"{""name"":""Kirin Ichiban"",""abv"":4.95,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kirin_brewery_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""From Brewery's site:\r\n\r\nWith his gold label and Special Premium Reserve appellation, Ichiban outclasses and outperforms.\r\n\r\nIn 1990, Ichiban's debut made a splash in the world of super premium beers. The luxurious single wort (or first press) process yields a unique, complex flavor. With his gold label and \""Special Premium Reserve\"" appellation, Ichiban outclasses and outperforms. But don't be fooled by a snooty attitude -- this is a great beer that goes with anything.\r\n\r\nWhat makes Ichiban great\r\nProminent wort. Finest barley malt, premium hops, smooth finish, no bitter aftertaste.""}",1,35,1
+nicolet_brewing-classic_pilsener,0,0,244871856129,"{""name"":""Classic Pilsener"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+southern_tier_brewing_co-imperial_cherry_saison,0,0,245101166592,"{""name"":""Imperial Cherry Saison"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,8,1
+rogue_ales-dad_s_little_helper,0,0,244983463936,"{""name"":""Dad's Little Helper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""\""This aint your Dads malt liquor\"" - Brewmaster John Maier \r\nAfter the death of his wife, Henry Jackson Smart was left to raise 6 young children alone. His courage, love, selflessness and dedication inspired his daughter, Sonora Smart Dodd, to organize the First Fathers Day on June 19th, 1910. In 1924 President Calvin Coolidge proclaimed the third Sunday in June as Fathers Day. President Nixon, in 1972, established it as a permanent day of national observance. \r\nDads is brewed with Harrington and Klages malts, Flaked Corn, Crystal Hops, Free Range Coastal Water, and Czech Pils Yeast. Available in the spring of 2005 in the classic 22-ounce Rogue micropiece.""}",1,7,1
+original_basil_t_s,0,0,244863336451,"{""name"":""Original Basil T's"",""city"":""Red Bank"",""state"":""New Jersey"",""code"":""7701"",""country"":""United States"",""phone"":""1-732-842-5990"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""183 Riverside Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3532,""lon"":-74.0747}}",1,14,1
+moonlight_brewing-bombay_by_boat_ipa,0,0,244881293313,"{""name"":""Bombay by Boat IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moonlight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+troegs_brewing-bavarian_lager,0,0,245098479616,"{""name"":""Bavarian Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Bavarian Lager is an authentic German style lager, brewed with Munich malts, Hallertau Hops and fermented at cool temperatures followed by a full month of aging, or \""lagering\"", to impart a range of complex maltiness and subtle aromas only found in traditional German lagers."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+thirstybear_brewing-kozlov_stout,0,0,245118795777,"{""name"":""Kozlov Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+san_diego_brewing,0,0,245004500993,"{""name"":""San Diego Brewing"",""city"":""San Diego"",""state"":""California"",""code"":""92120"",""country"":""United States"",""phone"":""1-619-284-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10450-L Friars Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7922,""lon"":-117.099}}",1,56,1
+hc_berger_brewing-red_raspberry,0,0,244754546689,"{""name"":""Red Raspberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hc_berger_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
+minneapolis_town_hall_brewery,0,0,244864253952,"{""name"":""Minneapolis Town Hall Brewery"",""city"":""Minneapolis"",""state"":""Minnesota"",""code"":""55454"",""country"":""United States"",""phone"":""1-612-339-8696"",""website"":""http://www.townhallbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1430 Washington Avenue South""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9732,""lon"":-93.2479}}",1,17,1
+prairie_rock_brewing_elgin-old_glory_american_pale,0,0,244996964353,"{""name"":""Old Glory American Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prairie_rock_brewing_elgin"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
+paulaner-hefe_weissbier,0,0,245003059200,"{""name"":""Hefe-Weißbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,54,1
+rock_bottom_restaurant_brewery_milwaukee-stillwater_stout,0,0,244987068419,"{""name"":""Stillwater Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
+rail_house_restaurant_and_brewpub,0,0,244986675200,"{""name"":""Rail House Restaurant and Brewpub"",""city"":""Marinette"",""state"":""Wisconsin"",""code"":""54143"",""country"":""United States"",""phone"":""1-715-732-4646"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2029 Old Peshtigo Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.0851,""lon"":-87.6544}}",1,15,1
+sierra_nevada_brewing_co-bigfoot_1991,0,0,244986019842,"{""name"":""Bigfoot 1991"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+water_street_lake_country-pale_ale,0,0,245749579777,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,41,1
+magic_hat-howl,0,0,244869693440,"{""name"":""Howl"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""Born of dark and cold and snow in the marrow of the northeast's longest night, HOWL comes in on wailing winds with winter-weary eyes burning holes in sunless shadows. In its darkened depths out inner voids are warmed."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+miller_brewing,0,0,244872183809,"{""name"":""Miller Brewing"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53208"",""country"":""United States"",""phone"":""(414) 931-2000"",""website"":""http://www.millerbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Making the highest quality beer has been a passion of the Miller Brewing Company since its founder, Frederick J. Miller, began his brewing business in 1855. Since then, Miller Brewing has grown from a small local brewer to the second largest brewery in the U.S., with seven major breweries located across America."",""address"":[""3939 W. Highland Blvd""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0445,""lon"":-87.9626}}",1,38,1
+terrapin_beer_company,0,0,245101953024,"{""name"":""Terrapin Beer Company"",""city"":""Athens"",""state"":""Georgia"",""code"":""30606"",""country"":""United States"",""phone"":""1-888-557-2337"",""website"":""http://www.terrapinbeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""196 Alps Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.9459,""lon"":-83.4105}}",1,9,1
+pint_s_pub_brewery_and_freehouse-dark_star_esb,0,0,244994146305,"{""name"":""Dark Star ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pint_s_pub_brewery_and_freehouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+george_gale_company-prize_old_ale,0,0,244614823938,"{""name"":""Prize Old Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""george_gale_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,19,1
+hawks_brewing,0,0,244741439490,"{""name"":""Hawks Brewing"",""city"":""Roseburg"",""state"":""Oregon"",""code"":""97470"",""country"":""United States"",""phone"":""1-541-679-5778"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.2165,""lon"":-123.342}}",1,18,1
+rocky_river_brewing-oompa_loompa_chocolate_stout,0,0,244992180226,"{""name"":""Oompa Loompa Chocolate Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+yazoo_brewing-onward_stout,0,0,245744795650,"{""name"":""Onward Stout"",""abv"":3.8,""ibu"":35.0,""srm"":45.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2011-04-17 12:33:50"",""description"":""The tan lace clings to the glass as you raise the pint to your lips. Close your eyes and smile as the rich espresso notes fade to a dry, roasted finish. Exceptionally smooth and satisfying. Made with English Pale malt, roasted barley, black patent malt, and flaked barley. Hopped with East Kent Goldings and Target hops, and fermented with our English ale yeast."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,5,1
+moorhouse_s_brewery_burnley,0,0,244879523841,"{""name"":""Moorhouse's Brewery (Burnley)"",""city"":""Burnley"",""state"":""Lancashire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01282)-422864"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4 Moorhouse Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":53.7864,""lon"":-2.2694}}",1,55,1
+santa_fe_brewing_company-freestyle_pilsner,0,0,245002600449,"{""name"":""Freestyle Pilsner"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""As its name suggests, this Pilsner does not like to be categorized. Inquiring whether it is a German, Czech, Bavarian, American, or any other style pilsner will result in an impatient sigh and the explanation that the whole philosophy behind this pilsner is that it does not fall into any categories. True, it is brewed with traditional ingredients (soft water, pilsner malt, saaz hops, and German yeast), but it is the way that these ingredients interact, and the characteristics of the yeast, that cause this particular pilsner to defiantly stand alone. The assertively hopped Freestyle pils exudes the flavor and the aroma of the classic Saaz hop (a tribute to “the original” pilsner), while maintaining enough body to balance but not overpower this hop’s pleasant, spicy tone. An unhurried lagering process so frequently overlooked by American craft brewers is strictly adhered to in the production of Freestyle, which makes this beer by far the most light, clean, and quenching beer in the Santa Fe Brewing Company’s line up."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,52,1
+pyramid_ales_brewery-sun_fest,0,0,244984840194,"{""name"":""Sun Fest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+great_lakes_brewing-dortmunder_gold,0,0,244754022400,"{""name"":""Dortmunder Gold"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_lakes_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth lager that strikes a delicate balance between sweet malt and dry hop flavors.""}",1,49,1
+hopworks_urban_brewery-hopworks_ipa,0,0,244739080193,"{""name"":""Hopworks IPA"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our namesake IPA is a Northwest classic. Generous additions of Amarillo, Centennial, and Ahtanum hops find their way into the kettle, hop-back, and dry-hop. This judicious use of the \""brewers spice\"" creates rich and resinous flavors of citrus fruit and pine. The finest organic Canadian pilsner malt and organic German Munich and Caramunich malts then bring balance to your new favorite beer."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
+hudepohl_schoenling_brewing,0,0,244757102592,"{""name"":""Hudepohl-Schoenling Brewing"",""city"":""Cincinnati"",""state"":""Ohio"",""code"":""45242"",""country"":""United States"",""phone"":""1-513-984-6910"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10921 Reed Hartman Highway, Suite 329""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.2651,""lon"":-84.3799}}",1,57,1
+lwenbru_munich-premium_dark,0,0,244880703489,"{""name"":""Premium Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lwenbru_munich"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+pyramid_ales_brewery-pyramid_broken_rake,0,0,244985233409,"{""name"":""Pyramid Broken Rake"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Mahogany in color, this full-bodied ale features a floral aroma and malty finish for a taste that's the perfect accompaniment to a crisp autumn afternoon."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,11,1
+issaquah_brewhouse-two_frog_dubbel,0,0,244747862017,"{""name"":""Two Frog Dubbel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""issaquah_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+kiuchi_shuzou_goushi_kaisya-hitachino_nest_espresso_stout,0,0,244748386305,"{""name"":""Hitachino Nest Espresso Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kiuchi_shuzou_goushi_kaisya"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+oak_creek_brewery-forty_niner_gold_lager,0,0,244871856130,"{""name"":""Forty-Niner Gold Lager"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+southern_tier_brewing_co-krampus_imperial_helles_lager,0,0,245101232128,"{""name"":""Krampus Imperial Helles Lager"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""St. Nicholas, aka Santa Claus, is a magical figure, the bringer of gifts and an icon of holiday spirit. Forgotten by most is his evil side kick and enforcer of ‘the list’. European tradition says while St. Nick is busy delivering presents to good little boys and girls, Krampus hands out punishments to the bad. A fanged, goat-horned bully, the Christmas Devil uses sticks and chains to beat the naughty children. Dark malts and aromatic hops create the diabolical spirit of this brew. It is finished with lager yeast and aged cold for no less than 30 days. This Imperial Helles Lager will warm even the darkest hearts. \r\n\r\nThis season, replace the cookies with a bottle of Krampus. If he happens to pay a visit, toast to him with this devilish brew. Merry Kramp-mas to all, and to all a good pint!\r\n9.0% abv. • 20º plato • Imperial Helles Lager • 22 oz / 1/6 keg""}",1,8,1
+roots_organic_brewing-woody_organic_ipa,0,0,244983463937,"{""name"":""Woody Organic IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roots_organic_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
+orkney_brewery-dragonhead_stout,0,0,244863401984,"{""name"":""Dragonhead Stout"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Dragonhead is a legendary stout: dark, intense and fully-flavoured, it is our tribute to the Vikings and their cultural legacy in Orkney.\r\n\r\nOn the nose, this black stout has a smooth roasted malt aroma giving bitter chocolate, dark roasted coffee and Smokey notes balanced by hints of spicy Goldings hop.\r\n\r\nOn the palate, the dark roasted malts combine to give a rich, rounded palate with chocolate, toast and nut flavours, with a satisfying spicy hop finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,14,1
+moosehead_breweries,0,0,244881293314,"{""name"":""Moosehead Breweries"",""city"":""Saint John"",""state"":""New Brunswick"",""code"":""0"",""country"":""Canada"",""phone"":""1-506-635-7000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""89 Main Street West""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.2567,""lon"":-66.096}}",1,59,1
+two_brothers_brewing-brown_ale,0,0,245098479617,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,2,1
+thomas_hooker_brewing-american_pale_ale,0,0,245118795778,"{""name"":""American Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_hooker_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Thomas Hooker American Pale Ale is an extremely vivid, medium-bodied brew. Hooker Pale Ale stresses the crisp bitterness, lingering resin flavor, and aroma of American hops which are characteristic of the most distinctive West Coast Ales. The caramel sweetness of the malt balances the chock-full-of-hops flavor to yield a complex but quite refreshing brew."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,48,1
+san_marcos_brewery_grill-amber_ale,0,0,245004566528,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,56,1
+heavenly_daze_brewery_and_grill-porcupine_porter,0,0,244754612224,"{""name"":""Porcupine Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
+moon_river_brewing_company-georgi_belgique,0,0,244864253953,"{""name"":""Georgi-Belgique"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moon_river_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,17,1
+privater_brauereigasthof_greifenklau-lagerbier,0,0,244997029888,"{""name"":""Lagerbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privater_brauereigasthof_greifenklau"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+pivzavod_baltika,0,0,245003124736,"{""name"":""Pivzavod Baltika /"",""city"":""Sankt-Peterburg"",""state"":""Sankt-Peterburg"",""code"":"""",""country"":""Russia"",""phone"":""7-812-329-91-01"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Promzona Parnas-4, 6 Proyezd, 9 Kvartal""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":59.939,""lon"":30.3158}}",1,54,1
+route_66_brewery-mile_marker_amber_lager,0,0,244987133952,"{""name"":""Mile Marker Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+river_west_brewing-doubledecker_doppelbock,0,0,244986675201,"{""name"":""Doubledecker Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
+st_georgenbru_modschiedler_kg,0,0,245103984640,"{""name"":""St. GeorgenBru Modschiedler KG"",""city"":""Buttenheim"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9545-/-446-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Marktstrae 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.802,""lon"":11.0324}}",1,13,1
+youngs_company_brewery-special_london_ale,0,0,245749645312,"{""name"":""Special London Ale"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,41,1
+mambo_beer,0,0,244869758976,"{""name"":""Mambo Beer"",""city"":""Mequon"",""state"":""Wisconsin"",""code"":""53092"",""country"":""United States"",""phone"":""1-888-548-3754"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""10920 North Port Washington Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.2167,""lon"":-87.924}}",1,31,1
+millrose_brewing-dark_star,0,0,244872183810,"{""name"":""Dark Star"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
+the_livery,0,0,245101953025,"{""name"":""The Livery"",""city"":""Benton Harbor"",""state"":""Michigan"",""code"":""49022"",""country"":""United States"",""phone"":""(269) 925-8760"",""website"":""http://liverybrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""All of our Hand Forged Microbrews here at the Livery are painstakingly created by brewmaster Steve Berthel and his assistant, Wally Rouse, on a 10bbl. system of his own design. Closed fermenters allow for the use of many different yeast strains to assure that all our beer styles have their own unique flavor profile. Many of our high gravity beers are aged in a selection of oak barrels for up to a year. We feature 3 real ales every day, poured to perfection from our antique beer engines. Every 4th. Sunday of the month is Freakin' Firkin Sunday where we have live Irish Music, home made Ruebens, and 2 Firkins of real ale. We do not bottle our beer at this time, but we do offer our beer to retailers in 1/4 bbls. or 1/2 bbls. Please feel free to contact Steve at steve@liverybrew.com for more info. on distribution in your area. Cheers!"",""address"":[""190 5th Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.1185,""lon"":-86.4537}}",1,9,1
+pizzeria_uno_chicago_grill_brewery,0,0,244994146306,"{""name"":""Pizzeria Uno Chicago Grill & Brewery"",""city"":""Metuchen"",""state"":""New Jersey"",""code"":""8840"",""country"":""United States"",""phone"":""1-732-548-7979"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""61 US Highway 1 South""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":37.2283,""lon"":-77.3903}}",1,33,1
+gottberg_brew_pub-double_gueuze_discontinued,0,0,244614889472,"{""name"":""Double Gueuze (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""gottberg_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,19,1
+heavenly_daze_brewery_and_grill-rainbow_trout_stout,0,0,244741505024,"{""name"":""Rainbow Trout Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavenly_daze_brewery_and_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,18,1
+rocky_river_brewing,0,0,244992180227,"{""name"":""Rocky River Brewing"",""city"":""Rocky River"",""state"":""Ohio"",""code"":""44116"",""country"":""United States"",""phone"":""1-440-895-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""21290 Center Ridge Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.4623,""lon"":-81.856}}",1,28,1
+yuengling_son_brewing-yuengling_bock_beer,0,0,245744861184,"{""name"":""Yuengling Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In celebration of our 180th Anniversary year, the marketplace will see one of the first seasonal offerings from the Yuengling Brewery in many years. Yuengling has produced a Bock Beer in its long and storied past, and we have now reinvented that product for limited release in 2009. The new brew is dark brown in color and offers exceptional flavor that lives up to the quality Yuengling drinkers have grown to expect.\r\n\r\nYuengling Bock Beer will be offered in ½ barrels only, beginning in late February and lasting for approximately 8-10 weeks. Let’s all raise a pint of Yuengling Bock and celebrate the 180th Anniversary year!"",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,5,1
+north_coast_brewing_company-acme_california_ipa,0,0,244879523842,"{""name"":""Acme California IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Acme IPA is profoundly hoppy, finished with over a pound of fresh whole hops per barrel. The result of this generous hopping is a beer that is deliciously dry, and eminently drinkable in spite of its apparent strength."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
+schloss_eggenberg-samichlaus_bier_2003,0,0,245002665984,"{""name"":""Samichlaus Bier 2003"",""abv"":14.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schloss_eggenberg"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,52,1
+river_horse_brewing_company-river_horse_special_ale,0,0,244984905728,"{""name"":""River Horse Special Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""It's been with us from the start and hasn't changed since that first brew way back in 1996. Ample quantities of caramel malt give this English ale a soft copper hue and the colorful addition of carapils malt adds a slight sweetness you might mistake for honey."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,10,1
+greene_king-abbot_ale,0,0,244754022401,"{""name"":""Abbot Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""greene_king"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+idaho_brewing-dr_hops_amber_ale,0,0,244739080194,"{""name"":""Dr. Hops Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""idaho_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+independence_brew_pub-oatmeal_stout,0,0,244757102593,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""independence_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,57,1
+maclay_and_co-eighty_shilling_export_ale,0,0,244880834560,"{""name"":""Eighty Shilling Export Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+rock_bottom_restaurant_brewery_san_jose-brown_bear_brown_ale,0,0,244985298944,"{""name"":""Brown Bear Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
+jacob_leinenkugel_brewing_company-leinenkugel_s_summer_shandy,0,0,244747927552,"{""name"":""Leinenkugel's Summer Shandy"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Get a taste of the freshest flavor under the sun - Leinenkugel’s Summer Shandy. A shandy is a lemonade flavored beer, a European favorite during the warmer months. And the light, crisp flavor makes it a great summer refresher. Each batch is carefully brewed using the finest wheat, malted barley and just a hint of real Wisconsin honey. Then, our brewmasters mix in fresh lemonade and citrus flavors to create an adventurous taste that’s perfect for those lazy days of summer."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
+labatt_ontario_breweries-labatt_blue_light,0,0,244748451840,"{""name"":""Labatt Blue Light"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Blue Light was introduced in 1983 as a lower alcohol, lower calorie version of Canada’s most popular brand. Blue Light uses specially selected North American aromatic hops and the same strain of lager yeast as the one used to produce Labatt Blue. The result is a crisp, clean and delicately balanced beer, with a slight sweetness and citrus-like hop character."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
+oldenberg_brewery,0,0,244871921664,"{""name"":""Oldenberg Brewery"",""city"":""Fort Mitchell"",""state"":""Kentucky"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.0472,""lon"":-84.5599}}",1,37,1
+spilker_ales-cortland_autumn_discontinued,0,0,245101297664,"{""name"":""Cortland Autumn (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+routh_street_brewery_and_grille,0,0,244983529472,"{""name"":""Routh Street Brewery and Grille"",""city"":""Dallas"",""state"":""Texas"",""code"":""75201"",""country"":""United States"",""phone"":""1-214-922-8835"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.789,""lon"":-96.7989}}",1,7,1
+otto_s_pub_and_brewery-double_d_ipa,0,0,244863401985,"{""name"":""Double D IPA"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hopheads rejoice! This strong IPA takes the style to a new level. It's a big Imperial IPA packed with Nugget, Palisade, and Amarillo hops. ABV 8.2%"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,14,1
+moosejaw_pizza_dells_brewing_company,0,0,244881293315,"{""name"":""Moosejaw Pizza & Dells Brewing Company"",""city"":""Wisconsin Dells"",""state"":""Wisconsin"",""code"":""53965"",""country"":""United States"",""phone"":""1-608-254-1122"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""110 Wisconsin Dells Parkway South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.5907,""lon"":-89.7939}}",1,59,1
+two_brothers_brewing-ebelweiss,0,0,245098479618,"{""name"":""Ebelweiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,2,1
+triumph_brewing_of_princeton-helles_lager,0,0,245118795779,"{""name"":""Helles Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+san_marcos_brewery_grill-winter_wheat,0,0,245004566529,"{""name"":""Winter Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+high_falls_brewing-dundee_pale_ale,0,0,244754612225,"{""name"":""Dundee Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Behold the hop. A flower, but too unsightly to be used for decoration. The ugly duckling of the flower family. \r\n\r\nOh, but the secret it holds. Soak it in some water with the right companions and it surrenders its bouquet to use a corny flower metaphor. That unique hop flavor is the difference between a fine pale ale and more ordinary beers. \r\n\r\nDundee Pale Ale understands the secret of the hop flower—the power to turn an ordinary beer into something extraordinary. \r\n\r\nAnd the power to make you indescribably hoppy. \r\n\r\nA wonderfully balanced true pale ale. Cascade, Tomahawk, and Amarillo hops create a citrusy aroma with a smooth, crisp finish. A subdued malt character nicely complements the hop complexity and produces an orangey amber hue."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+new_glarus_brewing_company-spotted_cow,0,0,244864253954,"{""name"":""Spotted Cow"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Cask conditioned ale has been the popular choice among brews since long before prohibition. We continue this pioneer spirit with our Wisconsin farmhouse ale. Brewed with flaked barley and the finest Wisconsin malts. We even give a nod to our farmers with a little hint of corn. \r\n\r\nNaturally cloudy we allow the yeast to remain in the bottle to enhance fullness of flavors, which cannot be duplicated otherwise. \r\n\r\nExpect this ale to be fun, fruity and satisfying. You know you're in Wisconsin when you see the Spotted Cow."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,17,1
+rowland_s_calumet_brewery-calumet_amber,0,0,244997029889,"{""name"":""Calumet Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rowland_s_calumet_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
+pizzeria_uno_chicago_grill_brewery-oatmeal_stout,0,0,245003190272,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
+route_66_brewery-streamline_oatmeal_stout,0,0,244987133953,"{""name"":""Streamline Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
+rock_art_brewery-the_vermonster,0,0,244986740736,"{""name"":""The Vermonster"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""We brewed THE VERMONSTER with 110 pounds of malt per barrel and jacked up the pour into a wide mouth thin glass goblet. For an amazing pairing get some Smoked Gouda from Taylor Farm Cheese and a friend!"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,15,1
+steel_brewing,0,0,245104050176,"{""name"":""Steel Brewing"",""city"":""Longview"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.5007,""lon"":-94.7405}}",1,13,1
+margaritaville_brewing_company,0,0,244869758977,"{""name"":""Margaritaville Brewing Company"",""city"":""Jacksonville"",""state"":""Florida"",""code"":""32209"",""country"":""United States"",""phone"":""(877) 742-7501"",""website"":""http://www.landsharklager.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":30.3617,""lon"":-81.6966}}",1,31,1
+milwaukee_ale_house,0,0,244872249344,"{""name"":""Milwaukee Ale House"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53202"",""country"":""United States"",""phone"":""1-414-226-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""233 North Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0334,""lon"":-87.9093}}",1,38,1
+three_floyds_brewing-arctic_panzer_wolf,0,0,245102018560,"{""name"":""Arctic Panzer Wolf"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry and stupendously hopped medium bodied Imperial IPA brewed with Canadian two-row malt, dextrose sugar and lots of American hops. Arctic Panzer Wolf has superior aromas of marmalade, white wine, pine and apricot all mixed with an intense American hop bitterness."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,9,1
+platte_valley_brewing,0,0,244994146307,"{""name"":""Platte Valley Brewing"",""city"":""Kearney"",""state"":""Nebraska"",""code"":""68847"",""country"":""United States"",""phone"":""1-308-237-0751"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14 East Railroad""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.6954,""lon"":-99.0812}}",1,33,1
+granville_island_brewing_company,0,0,244741636096,"{""name"":""Granville Island Brewing Company"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-687-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1441 Cartwright Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":34.396,""lon"":-119.521}}",1,19,1
+heavyweight_brewing-old_salty,0,0,244741505025,"{""name"":""Old Salty"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heavyweight_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+rubicon_brewing-blond_barleywine,0,0,244992245760,"{""name"":""Blond Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rubicon_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+odell_brewing-5_barrel_pale_ale,0,0,244879589376,"{""name"":""5 Barrel Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The distinctive hop character of our 5 Barrel Pale Ale is due to the extraction of essential oils from select hops. We treat 5 Barrel Pale Ale to an infusion of fresh whole hop flowers in the Hop Back and the Fermentor, as well as four hop additions during the kettle boil. We like how this gives the beer a fresh, lively flavor and aroma."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,55,1
+seabright_brewery-oktoberfest,0,0,245002665985,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,52,1
+roffey_brewery,0,0,244984905729,"{""name"":""Roffey Brewery"",""city"":""Holland"",""state"":""Michigan"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.7875,""lon"":-86.1089}}",1,10,1
+haarlems_biergenootschap_jopen,0,0,244754022402,"{""name"":""Haarlems Biergenootschap Jopen"",""city"":""Haarlem"",""state"":"""",""code"":"""",""country"":""Netherlands"",""phone"":""31-23-533-41-14"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""R Pereboomweg 13 achter""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.3795,""lon"":4.6377}}",1,49,1
+iron_hill_brewery_wilmingon-russian_imperial_stout,0,0,244739145728,"{""name"":""Russian Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+irish_brewing_company,0,0,244757102594,"{""name"":""Irish Brewing Company"",""city"":""Newbridge"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Newbridge Industrial Estate""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.4863,""lon"":-6.168}}",1,57,1
+mad_crab_restaurant_and_brewery-winter_ale,0,0,244880834561,"{""name"":""Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+routh_street_brewery_and_grille-bavarian_wheat,0,0,244985298945,"{""name"":""Bavarian Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,11,1
+jacob_leinenkugel_brewing_company-northwoods_lager,0,0,244747927553,"{""name"":""Northwoods Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+labatt_ontario_breweries-labatt_wildcat,0,0,244748451841,"{""name"":""Labatt Wildcat"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Wildcat is a popular priced, quality lager introduced in 1993. Conventional brewing processes are used to produce a quality mainstream lager using corn adjunct to deliver a light, dry flavour."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
+pacific_beach_brewhouse-rudolf_red_barleywine,0,0,244871921665,"{""name"":""Rudolf Red Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+steamworks-frambozen,0,0,245101297665,"{""name"":""Frambozen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""A ruby-red raspberry beer with a luscious, pink head\r\n\r\nOur Frambozen is inspired by the centuries old Belgian tradition of brewing beer with raspberries. This high gravity brew undergoes a slow second fermentation with tons of fresh, whole Fraser Valley raspberries. The result is a ruby-red fruit beer with a intense raspberry flavour, a nice tart finish and a luscious pink head."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,8,1
+ruppaner_brauerei-hecker_dunkel,0,0,244983529473,"{""name"":""Hecker Dunkel"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+oy_sinebrychoff_ab,0,0,244863467520,"{""name"":""Oy Sinebrychoff AB"",""city"":""Kerava"",""state"":"""",""code"":"""",""country"":""Finland"",""phone"":""358-(09)-294-991"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Sinebrychoffinaukio 1""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":60.381,""lon"":25.1102}}",1,14,1
+mudshark_brewing,0,0,244881293316,"{""name"":""Mudshark Brewing"",""city"":""Lake Havasu City"",""state"":""Arizona"",""code"":""86403"",""country"":""United States"",""phone"":""1-928-453-2981"",""website"":""http://www.mudsharkbrewingco.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""210 Swanson Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.4686,""lon"":-114.341}}",1,59,1
+tyskie_browary_ksiazece-tyskie_gronie,0,0,245098545152,"{""name"":""Tyskie Gronie"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyskie_browary_ksiazece"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,2,1
+troegs_brewing-scratch_8_2008,0,0,245118861312,"{""name"":""Scratch #8 2008"",""abv"":10.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Revisiting Scratch #3, we take the same Tripel recipe, add beet and cane sugars to the kettle, and run the wort through our hopback brimming with juniper berries, coriander and yarrow flowers.\r\n\r\nInspired by the herbaceous nose of gin, the berries and flowers give a slight pine/citrus aroma with floral undertones. Scratch #8 has a dry, yeasty finish and noticeable alcohol warming when consumed."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,48,1
+schofferhofer,0,0,245004566530,"{""name"":""Schöfferhofer"",""city"":""Frankfurt/Main"",""state"":""Hessen"",""code"":""60598"",""country"":""Germany"",""phone"":"""",""website"":""http://www.schoefferhofer.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Darmstädter Landstrasse 185""]}",1,56,1
+hubcap_brewery_and_kitchen-pale_ale,0,0,244754612226,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hubcap_brewery_and_kitchen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+new_holland_brewing_company-mad_hatter_ipa,0,0,244864319488,"{""name"":""Mad Hatter IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dry-hopping provides a distinctive and floral hop aroma, while the lively and hoppy body is subtly balanced with delicious malt notes. Hatter’s hop character makes it a great fit for spicy dishes, bitter greens and beef."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
+roy_pitz_brewing_company-lovitz_lager_watermelon_lager,0,0,244997095424,"{""name"":""Lovitz Lager \""Watermelon Lager\"""",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This summertime lager is both smooth and refreshing as soon as it hits the lips. We take so much pride in it because there is truly nothing else like it on the market. We brew this American Style Lager beer with three types of malt: pilsner, pale and carafoam which enhance the head retention of this beer. We then gingerly scatter some very light floral hops at the beginning to give it some esters and sweetness that compliment the watermelon. The true magic of this beer does not occur in the brewing process but in the conditioning vessel. This is where we add the best farm fresh local watermelon and than push the beer into it, allowing it to sit and saturate for a few weeks. By the time it is complete, we are left with a unbelievably smooth tasting beer with a beautiful aroma and subtle taste of watermelon that imparts its way into this already crisp lager. Truly our customers' favorite, this one will have you reaching for another glass soon after you put the first one down."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,39,1
+port_brewing_company-sharkbite_red,0,0,245003190273,"{""name"":""Sharkbite Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark Amber Ale"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,54,1
+sabmiller_india-royal_challenge,0,0,244987199488,"{""name"":""Royal Challenge"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Royal Challenge Premium Lager is the second largest selling mild beer in India. Royal Challenge is brewed with the choicest 6 malt barley. Its long brew duration provides it with a distinct, smooth taste and rich flavour. It has all the hall marks of a great beer - Color that is golden honey, taste that is smooth and crisp, lace that sticks to the wall of the glass. Royal Challenge Premium Lager is the beer for the discerning who have the confidence to make their choices based on their superior taste and knowledge rather than follow the crowd.\r\n\r\n\r\nhttp://www.sabmiller.in/brands_royal-challenge.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+rock_bottom_restaurant_brewery_denver-lucky_u_esb,0,0,244986740737,"{""name"":""Lucky U ESB"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+stone_city_brewing,0,0,245104050177,"{""name"":""Stone City Brewing"",""city"":""Solon"",""state"":""Iowa"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.8072,""lon"":-91.4941}}",1,13,1
+marine_pub_brewhouse-pale_ale,0,0,244869824512,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marine_pub_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+montana_brewing-sharptail_pale_ale,0,0,244872249345,"{""name"":""Sharptail Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
+trade_winds_brewing-sunset_ale,0,0,245102018561,"{""name"":""Sunset Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+port_washington_brewing-amber_ale,0,0,244994211840,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
+great_dane_pub_and_brewing_1-old_scratch_barleywine_2002,0,0,244741701632,"{""name"":""Old Scratch Barleywine 2002"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_dane_pub_and_brewing_1"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+hubcap_brewery_and_kitchen,0,0,244741505026,"{""name"":""Hubcap Brewery and Kitchen"",""city"":""Vail"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.6403,""lon"":-106.374}}",1,18,1
+saint_arnold_brewing-saint_arnold_spring_bock,0,0,244992245761,"{""name"":""Saint Arnold Spring Bock"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An authentic, German-style Bock, celebrating the coming of spring. This strong, deeply flavored lager has been aged to create a smooth, malty taste with a hint of sweetness. A light addition of German hops balances the malt flavor. \r\n\r\nSaint Arnold Spring Bock is best consumed at 40° Fahrenheit."",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,28,1
+oggi_s_pizza_and_brewing_vista-sunset_amber_ale,0,0,244879589377,"{""name"":""Sunset Amber Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
+sierra_nevada_brewing_co-esb_early_spring_beer,0,0,245002665986,"{""name"":""ESB - Early Spring Beer"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nOur ESB combines the best of English tradition with West Coast style. A blend of malts featuring British-grown Maris Otter is balanced with the earthy spiciness of hand-selected English and US hops. The ale is left unfiltered, which enhances mouthfeel and hop aroma creating a slightly reddish-copper hue"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,52,1
+route_66_brewery-rambling_raspberry_ale,0,0,244984905730,"{""name"":""Rambling Raspberry Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,10,1
+hausbrauerei_zum_schlssel,0,0,244754087936,"{""name"":""Hausbrauerei Zum Schlssel"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-8289550"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bolkerstrae 41-47""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2261,""lon"":6.7745}}",1,49,1
+island_brewing_company-jubilee_ale,0,0,244739145729,"{""name"":""Jubilee Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""island_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,12,1
+iron_springs_pub_brewery-ipa,0,0,244757168128,"{""name"":""IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_springs_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
+montana_brewing-fat_belly_amber,0,0,244880834562,"{""name"":""Fat Belly Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""montana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+russian_river_brewing-ovl_stout,0,0,244985298946,"{""name"":""OVL Stout"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This nitrogenated dry stout is low in alcohol but big in flavor. Its smooth roasted coffee like aromas and flavor are clean and drinkable.""}",1,11,1
+jacob_leinenkugel_brewing_company-oktoberfest,0,0,244747993088,"{""name"":""Oktoberfest"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jacob_leinenkugel_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+lagunitas_brewing_company-brown_shugga,0,0,244748451842,"{""name"":""Brown Shugga"",""abv"":9.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lagunitas_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+pivovar_nchod-primator_blonde_bock_beer,0,0,244995915776,"{""name"":""Primátor Blonde Bock Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_nchod"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,37,1
+stevens_point_brewery-augsburger_golden,0,0,245101363200,"{""name"":""Augsburger Golden"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+saint_louis_brewery_schlafy_tap_room-baracktoberfest,0,0,244983595008,"{""name"":""Baracktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,7,1
+pabst_brewing_company-lone_star_light,0,0,244863467521,"{""name"":""Lone Star Light"",""abv"":3.85,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Lone Star Light mimics its full-bodied counterpart with an award winning premium light taste. This beer retains the complimentary ratio of barley, cereal grains, and hops of its parent brand.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,14,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_imperial_stout,0,0,244881293317,"{""name"":""Nøgne Ø Imperial Stout"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""We think the russian tsar would have liked his stout this way. A dark, rich ale in which a generous sweetness with roasted malt bitterness. Serving temp.10°C/50°F. Great with vanilla ice cream or dark chocolate."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,59,1
+upstream_brewing_old_market-o_gold_light_beer,0,0,245098610688,"{""name"":""O! Gold Light Beer"",""abv"":3.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer has all of the great attributes of a light American lager with the unmatched freshness and taste only a local brew pub like Upstream can offer. If you like great tasting beer, O! Gold is the beer for you."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,2,1
+tsingtao-red_dragon_xtreme,0,0,245118861313,"{""name"":""Red Dragon Xtreme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tsingtao"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,48,1
+sherlock_s_home-star_of_india_india_pale_ale,0,0,245004566531,"{""name"":""Star of India India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,56,1
+iron_hill_brewery_wilmingon-pig_iron_porter,0,0,244754677760,"{""name"":""Pig Iron Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""Historically, porter had its heyday in 18th century London, where it was the beer of the working class. It doesn't take much to work up a thirst for this flavorful beer. The distinct roasted and chocolate notes are well balanced by a slight bitterness."",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
+new_holland_brewing_company-the_poet,0,0,244864319489,"{""name"":""The Poet"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_holland_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Poet has a rich, smooth malt character enveloped in tones of roast and chocolate. A soft mouth-feel brings luxurious flavors and soothing aroma. It pairs wonderfully with earthy flavors such as mushrooms and beef, while remaining the perfect accent to any chocolate."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,17,1
+santa_fe_brewing_company-fiesta_ipa,0,0,244997095425,"{""name"":""Fiesta IPA"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic beer for those beer lovers who love their hops, Fiesta IPA will take the Pepsi Challenge (or IPA challenge, as we say in New Mexico) against any other pretenders to the throne. Was it divine providence that made this beer the king of the IPA world? Was it a tireless pursuit of glory? No, this IPA has a top-secret recipe to thank for its success, and this meticulously formulated combination of several different hops combined with a very specific brewing process give Fiesta IPA a spicy, citric, and floral infusion of hop character, which is masterfully counterbalanced with the full-bodied maltiness characteristic of the Santa Fe Brewing Company’s distinctive beers."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,39,1
+port_washington_brewing-post_washington_octoberfest,0,0,245003190274,"{""name"":""Post Washington Octoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,54,1
+saint_louis_brewery_schlafy_tap_room-schlafly_altbier,0,0,244987199489,"{""name"":""Schlafly Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,16,1
+sabmiller_india-haywords_5000,0,0,244986740738,"{""name"":""Haywords 5000"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""Launched in the year 1983, Haywards 5000 is synonymous with strong beer in India. Haywards 5000 is brewed with the choicest of malts and hops lending itself to a unique flavour profile to suit the Indian taste and preference. Haywards 5000 is the hallmark of original and authentic strong beer which other beer brands aspire for. With such credentials, it is not surprising to see men get together over Haywards 5000. It is the language of friendship amongst men who are proud of their masculinity and look forward to a great time with their friends and peers .\r\n\r\nhttp://www.sabmiller.in/brands_haywards_5000.html"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
+the_cambridge_house-three_steve_stout,0,0,245104115712,"{""name"":""Three Steve Stout"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Stout is brewed with English malt, hops and oats to produce a smooth coffee-like richness with a pleasant bittersweet finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,13,1
+michigan_brewing-peninsula_porter,0,0,244869824513,"{""name"":""Peninsula Porter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Full-flavored and robust ale with heavy notes of roasted malt. There are hints of coffee and chocolate flavors, complimented by medium hop bitterness and a hint of smokiness."",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
+nikenjayamochi_kadoya_honten_co-ise_kadoya_stout,0,0,244872249346,"{""name"":""Ise Kadoya Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nikenjayamochi_kadoya_honten_co"",""updated"":""2010-07-22 20:00:20"",""description"":""A very yeasty beer with an earthy aroma. Rich flavors deepen the stout character."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+traffic_jam_and_snug-coal_porter,0,0,245102018562,"{""name"":""Coal Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""traffic_jam_and_snug"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,9,1
+privatbrauerei_frankenheim,0,0,244994211841,"{""name"":""Privatbrauerei Frankenheim"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-16902-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wielandstrae 14-16""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.2292,""lon"":6.7925}}",1,33,1
+great_divide_brewing-great_divide_belgica,0,0,244741701633,"{""name"":""Great Divide Belgica"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Roman name for the Low Countries–is a marriage of the best in American and Belgian brewing traditions. Belgian pilsner malt, a generous amount of American and European hops and a unique Belgian yeast strain combine to give Belgica big notes of citrus and spice, creating a lively concoction perfect for spring in the Rockies–or the Ardennes."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,19,1
+humboldt_brewing-honey_and_ginger_ale,0,0,244741505027,"{""name"":""Honey and Ginger Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""humboldt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+saint_louis_brewery_schlafy_tap_room-schlafly_wheat_ale,0,0,244992245762,"{""name"":""Schlafly Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,28,1
+orlio_organic,0,0,244879589378,"{""name"":""Orlio Organic"",""city"":""South Burlington"",""state"":""Vermont"",""code"":""5403"",""country"":""United States"",""phone"":""(802) 864-9820"",""website"":""http://www.orlio.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5 Bartlett Bay Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4284,""lon"":-73.2131}}",1,55,1
+siletz_roadhouse_brewery-oatmeal_cream_stout,0,0,245002665987,"{""name"":""Oatmeal Cream Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
+russian_river_brewing-russian_river_ipa,0,0,244984971264,"{""name"":""Russian River IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""An abundance of hops and malt are added to our IPA to create and preserve its distinctive flavors. Not only do we use generous portions of hops in the kettle, but we also dry hop this ale for one week after fermentation. The dry hopping process adds to this beer's floral and citrus aroma. This is truly a tasty adult beverage!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
+hawks_brewing-super_natural_oatmeal_stout,0,0,244754087937,"{""name"":""Super Natural Oatmeal Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hawks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+krogh_s_restaurant_and_brewpub-three_sisters_golden_wheat,0,0,244739145730,"{""name"":""Three Sisters Golden Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+ithaca_beer_company-lebleu,0,0,244757168129,"{""name"":""LeBleu"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ithaca_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with New York State Blueberries and Brettanomyces, Le Bleu is a blend of barrels filled in 2007, 2008, and 2009. It's finished in the bottle with Champagne yeast. \r\n\r\nEnjoy the dusty rose appearance, mouthwatering aroma of ripe berries, piquant flavor and quick finish.""}",1,57,1
+moosehead_breweries-canadian_lager_beer,0,0,244880900096,"{""name"":""Canadian Lager Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosehead_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+sabmiller_india-indus_pride,0,0,244985364480,"{""name"":""Indus Pride"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sabmiller_india"",""updated"":""2010-07-22 20:00:20"",""description"":""BEER TYPE Indus Pride is a 100% malt beer \r\nPRODUCT PROPOSITION Made of 100% malt lending it a unique rich flavor \r\nALCOHOL CONTENT BY VOLUME 4.8% by volume \r\nTASTE Rich in flavors with a clean head and foam \r\nCOLOUR Sunrise Yellow \r\nSERVING TEMPERATURE 7 degree Celsius \r\nPACKAGING 650 ml glass bottles : 12 bottles per case\r\n330 ml pack : 24 bottles per case \r\n\r\nhttp://www.sabmiller.in/induspride.html""}",1,11,1
+jw_lees_and_co_brewers_ltd-harvest_ale_2001,0,0,244747993089,"{""name"":""Harvest Ale 2001"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jw_lees_and_co_brewers_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,34,1
+lightning_boy_brewery-thunder_pup_pale,0,0,244870938624,"{""name"":""Thunder Pup Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lightning_boy_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+plzesk_prazdroj_pivovar_radegast,0,0,244995981312,"{""name"":""Plzesk Prazdroj Pivovar Radegast"",""city"":""Noovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""420-558-602-175"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""CZ-739 51 Noovice""]}",1,37,1
+stone_brewing_co-smoked_porter,0,0,245101363201,"{""name"":""Smoked Porter"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Stone Smoked Porter is dark, rich and complicated. A porter is substantially darker than a pale ale, but not as black or opaque as a stout. Our Smoked porter has a captivatingly deep mahogany color, complimented by silky dark tan head. Rich, full bodied and robust. Smooth, with chocolate and coffee-like flavors balanced by the subtle \""smoky\"" character of just the right amount of peat-smoked specialty malt."",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
+saku_lletehas-porter,0,0,244983595009,"{""name"":""Porter"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saku_lletehas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+pabst_brewing_company-primo,0,0,244863467522,"{""name"":""Primo"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich golden liquid with a unique flavor and aroma that comes from a touch of raw Hawaiian cane sugar. Primo is a premium lager that represents the best of both worlds; the rich taste of a craft-brewed beer with the drinkability of a lighter lager. -http://www.thatsprimo.com/Recipe.aspx"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
+north_coast_brewing_company-wintertime_ale,0,0,244881358848,"{""name"":""Wintertime Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
+warsteiner_brauerei,0,0,245744402432,"{""name"":""Warsteiner Brauerei"",""city"":""Warstein"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)2902-/-880"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Domring 4-10""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.4416,""lon"":8.3519}}",1,2,1
+united_breweries_limited,0,0,245118861314,"{""name"":""United Breweries Limited"",""city"":""Bangalore"",""state"":"""",""code"":"""",""country"":""India"",""phone"":""91-80-22441"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1/1 Vittal Mallya Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":12.9689,""lon"":77.5946}}",1,48,1
+shipwrecked_brew_pub-raspberry,0,0,245004632064,"{""name"":""Raspberry"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,56,1
+joshua_huddy_s_brew_pub_and_grill,0,0,244754677761,"{""name"":""Joshua Huddy's Brew Pub and Grill"",""city"":""Toms River"",""state"":""New Jersey"",""code"":""8753"",""country"":""United States"",""phone"":""1-732-240-3640"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.9529,""lon"":-74.201}}",1,50,1
+old_city_brewing-pecan_street_lager,0,0,244864319490,"{""name"":""Pecan Street Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
+sierra_nevada_brewing_co-bigfoot_1994,0,0,244997095426,"{""name"":""Bigfoot 1994"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-honey_weizen,0,0,245003255808,"{""name"":""Honey Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+sam_choy_s_breakfast_lunch_crab_big_aloha_brewery,0,0,244987199490,"{""name"":""Sam Choy's Breakfast, Lunch, Crab & Big Aloha Brewery"",""city"":""Honolulu"",""state"":""Hawaii"",""code"":""96817"",""country"":""United States"",""phone"":""1-808-545-7979"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""580 North Nimitz Highway""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":21.3069,""lon"":-157.858}}",1,16,1
+sapporo_breweries_chuo-imported_black_stout_draft,0,0,244986806272,"{""name"":""Imported Black Stout Draft"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sapporo_breweries_chuo"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,15,1
+thunderhead_brewery_2-imperial_porter,0,0,245104115713,"{""name"":""Imperial Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,13,1
+millrose_brewing-panther_ale,0,0,244869824514,"{""name"":""Panther Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_100,0,0,244872314880,"{""name"":""Nøgne Ø #100"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""Our 100th batch, brewed for the enjoyment of the brewers, but popular demand forced us to release it commercially. This malty, yet light bodied ale has a massive hop bitterness. Most enjoyable in a comfortable chair in front of a roaring fire."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,38,1
+tunner_s_guild_brewing_systems-barbary_coast_brand_gold_rush_style_beer,0,0,245102084096,"{""name"":""Barbary Coast Brand Gold Rush Style Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+qingdao_brewery,0,0,244994211842,"{""name"":""Qingdao Brewery"",""city"":""Qingdao"",""state"":""Shandong"",""code"":"""",""country"":""China"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hongkong Road, Central""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.0663,""lon"":120.383}}",1,33,1
+great_divide_brewing-yeti_imperial_stout,0,0,244741767168,"{""name"":""Yeti Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""great_divide_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally, Imperial Stouts, the biggest and boldest of all stouts, were brewed with massive amounts of roasted malts and hops, resulting in a velvety smooth but robust beer characterized by high alcohol content and extremely high hop bitterness. Meeting the challenge of this aggressive, challenging beer style, Great Divide’s Yeti Imperial Stout is an onslaught of the senses. An almost viscous, inky-black brew, Yeti opens with a massive, roasty, chocolate, coffee malt flavor that eventually gives way to rich toffee and burnt caramel notes. Packed with an enormous quantity of American hops, Yeti’s hop profile reveals a slightly citrusy, piney, and wonderfully dry hoppy finish."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,19,1
+karlovacka_pivovara,0,0,244741570560,"{""name"":""Karlovacka Pivovara"",""city"":""Karlovac"",""state"":"""",""code"":""0"",""country"":""Croatia"",""phone"":""385-47-451-300"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dubovac 22""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":45.4956,""lon"":15.5331}}",1,18,1
+schofferhofer-schofferhofer_hefeweizen_alkoholfrei,0,0,244992245763,"{""name"":""Schöfferhofer Hefeweizen alkoholfrei"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schofferhofer"",""updated"":""2010-07-22 20:00:20"",""description"":""alcohol-free Hefeweizen with the tipical taste, isotonic,"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,28,1
+otto_s_pub_and_brewery-black_mo_stout,0,0,244879654912,"{""name"":""Black Mo Stout"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A dry Irish-style stout served via nitrogen. Black Mo is a very smooth and creamy beer with a pleasant roasted malt character."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
+snipes_mountain_microbrewery_restaurant-extra_special_bitter,0,0,245120172032,"{""name"":""Extra Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snipes_mountain_microbrewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+s_a_damm,0,0,244984971265,"{""name"":""S.A. Damm"",""city"":""Barcelona"",""state"":"""",""code"":"""",""country"":""Spain"",""phone"":"""",""website"":""http://www.estrelladamm.es/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":41.3879,""lon"":2.1699}}",1,10,1
+heineken_ireland,0,0,244754087938,"{""name"":""Heineken Ireland"",""city"":""Cork"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":""353-21-450-3371"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Lady's Well Brewery""]}",1,49,1
+kuhnhenn_brewing-creme_brulee_java_stout,0,0,244739211264,"{""name"":""Creme Brulee Java Stout"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kuhnhenn_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Black ale beer, made with real coffee. This java stout goes through a unique process, involving caramelizing brown sugar to give it an intense caramel & vanilla aroma."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+jj_bitting_brewing,0,0,244757168130,"{""name"":""JJ Bitting Brewing"",""city"":""Woodbridge"",""state"":""New Jersey"",""code"":""7095"",""country"":""United States"",""phone"":""1-732-634-2929"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""33 Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5549,""lon"":-74.2771}}",1,57,1
+murphy_s_wagon_wheel-wheat,0,0,244880900097,"{""name"":""Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+saint_louis_brewery_schlafy_tap_room-schlafly_ipa,0,0,244985430016,"{""name"":""Schlafly IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,11,1
+keihan_uji_kotsu,0,0,244747993090,"{""name"":""Keihan Uji Kotsu"",""city"":""Uji"",""state"":""Kinki"",""code"":"""",""country"":""Japan"",""phone"":""81-0774-22-2359"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""(No longer brewing)"",""address"":[]}",1,34,1
+mad_anthony_brewing-lager,0,0,244871004160,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
+privatbrauerei_erdinger_weissbru-weissbier_mit_feiner_hefe,0,0,244996046848,"{""name"":""Weißbier Mit Feiner Hefe"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_erdinger_weissbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,37,1
+stone_brewing_co-vertical_epic_05_05_05,0,0,245101428736,"{""name"":""Vertical Epic 05.05.05"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+samuel_smith_old_brewery_tadcaster-winter_welcome_2007_2008,0,0,244983595010,"{""name"":""Winter Welcome 2007-2008"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+pacific_rim_brewing-admiral_esb,0,0,244986085376,"{""name"":""Admiral ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_rim_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+o_grady_s_brewery_and_pub_1-magnificent_mild,0,0,244881358849,"{""name"":""Magnificent Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_grady_s_brewery_and_pub_1"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,59,1
+water_street_lake_country-honey_lager_light,0,0,245744467968,"{""name"":""Honey Lager Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,2,1
+valley_brewing_company-black_cat_stout,0,0,245118926848,"{""name"":""Black Cat Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Black Cat Stout is brewed using a blend of Chocolate, Carafa, Crystal and Munich malts. A small amount of wheat and oatmeal are added to give the beer body and mouth feel. Small amounts of roasted malts are added to give the beer a dry \r\ncoffee finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,48,1
+shmaltz_brewing_company-bittersweet_lenny_r_i_p_a,0,0,245004632065,"{""name"":""Bittersweet Lenny R.I.P.A."",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shmaltz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ladies and Gentlemen, Shmaltz Brewing Co. is proud to introduce Bittersweet Lenny's R.I.P.A. Brewed with an obscene amount of malts and hops. Shocking flavors - far beyond contemporary community standards. We cooked up the straight dope for the growing minions of our nation's Radical Beer junkies. Judges may not be able to define \""Radical Beer,\"" but you'll damn well know it when you taste it. Bruce died, officially declared a pauper by the State of California, personally broken and financially bankrupt simply for challenging America's moral hypocrisies with words. The memorial playbill read: \""Yes, we killed him. Because he picked on the wrong god.\"" -Directed by, the Courts, the Cops, the Church... and his own self-destructive super ego. Like Noah lying naked and loaded in his tent after the apocalyptic deluge: a witness, a patron saint, a father of what was to come. Sick, Dirty, Prophetic Lenny: a scapegoat, a martyr, a supreme inspiration."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,56,1
+jt_whitney_s_brewpub_and_eatery-pinckney_street_pale_ale,0,0,244754743296,"{""name"":""Pinckney Street Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""jt_whitney_s_brewpub_and_eatery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+old_hat_brewery-kolsch,0,0,244864385024,"{""name"":""Kölsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+simmerberg_brusttt_und_taferne-braustatt_gold,0,0,244997160960,"{""name"":""Bräustatt Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-stout,0,0,245003255809,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
+san_marcos_brewery_grill-old_english_ale,0,0,244987265024,"{""name"":""Old English Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
+schlobrauerei_reckendorf,0,0,244986806273,"{""name"":""Schlobrauerei Reckendorf"",""city"":""Reckendorf"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)9544-/-9421-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mhlweg 18""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.0224,""lon"":10.83}}",1,15,1
+titletown_brewing-old_fort_howard_pale_ale,0,0,245104181248,"{""name"":""Old Fort Howard Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+mudshark_brewing-scorpion_amber_ale,0,0,244869890048,"{""name"":""Scorpion Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mudshark_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Full Body Ale Balanced With Assertive Oregon Hops, Deep Amber In Color"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
+north_country_brewery-mccafferty_s_ale,0,0,244872314881,"{""name"":""McCafferty's Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a true Celtic Red ale that’s as faithful as its namesake. With a smooth balance between malt and hops, it’s sure to become a pubhouse favorite"",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,38,1
+twin_rivers_brewing-bock,0,0,245102084097,"{""name"":""Bock"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,9,1
+raccoon_lodge_and_brewpub_cascade_brewing-cascade_kreik_ale,0,0,244994277376,"{""name"":""Cascade Kreik Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian Flanders Style Red Ale refermented with a sweet blend of fresh whole Northwest cherries. This beer spent more than six months of lactic fermentation and aging in small French oak wine barrels before being hand-bottled.""}",1,33,1
+green_mountain_beverage-woodchuck_granny_smith_varietal_draft_cider,0,0,244741767169,"{""name"":""Woodchuck Granny Smith Varietal Draft Cider"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""green_mountain_beverage"",""updated"":""2010-07-22 20:00:20"",""description"":""It is made using 100% Granny Smith apples. This cider has a mouth-watering flavor that is tangy and tart, with just a touch of sweetness."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,19,1
+kross_brewing,0,0,244741570561,"{""name"":""Kross Brewing"",""city"":""Morrisville"",""state"":""Vermont"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.5617,""lon"":-72.5984}}",1,18,1
+schooner_s_grille_brewery-ipa,0,0,244992311296,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_s_grille_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,28,1
+otto_s_pub_and_brewery-pilsener_lager,0,0,244879720448,"{""name"":""Pilsener Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A well hopped medium bodied lager brewed in the Czech style of pilseners. \r\nThis beer displays the distinct flavor and aroma of saaz hops."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,55,1
+tabernash_brewing-kristall_weiss,0,0,245120172033,"{""name"":""Kristall Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,52,1
+salado_creek_brewing_company,0,0,244984971266,"{""name"":""Salado Creek Brewing Company"",""city"":""San Antonio"",""state"":""Texas"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":29.4241,""lon"":-98.4936}}",1,10,1
+hops_haven_brew_haus-port_washington_amber_ale,0,0,244754087939,"{""name"":""Port Washington Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hops_haven_brew_haus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,49,1
+lakefront_brewery-snake_chaser,0,0,244739211265,"{""name"":""Snake Chaser"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+kenya_breweries,0,0,244757168131,"{""name"":""Kenya Breweries"",""city"":""Nairobi"",""state"":"""",""code"":"""",""country"":""Kenya"",""phone"":""254-864000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 30161""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":-1.2833,""lon"":36.8167}}",1,57,1
+new_glarus_brewing_company-edel_pils,0,0,244880965632,"{""name"":""Edel-Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our little village brewery in New Glarus, Wisconsin is proud to offer to you Edel-Pils. This \""Noble-Pilsner\"" is the creation of our brewmaster. He brought special yeast from Bavaria, combined it with Wisconsin barley and the finest Bavarian and American hops. Then employing traditional brewing methods, this Pilsner is finished with a long cold rest in our cellars. \r\n\r\nExpect this bier to be creamy and full-bodied with a smooth finish. It will complement any fine meal or friendly gathering. We took our time in brewing so that you might take your time enjoying."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+skol_breweries-royal_challenge_indian_premium_lager,0,0,244985430017,"{""name"":""Royal Challenge Indian Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skol_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
+kona_brewing-longboard_lager,0,0,244747993091,"{""name"":""Longboard Lager"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+main_street_station_casino_brewery_and_hotel-black_chip_porter,0,0,244871004161,"{""name"":""Black Chip Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""main_street_station_casino_brewery_and_hotel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
+pumphouse_pizza_and_brewing,0,0,244996046849,"{""name"":""Pumphouse Pizza and Brewing"",""city"":""Lake Delton"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.6011,""lon"":-89.7937}}",1,37,1
+stoudt_s_brewery-old_abominable_barley_wine,0,0,245101428737,"{""name"":""Old Abominable Barley Wine"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+sand_creek_brewing_company-pioneer_black_river_red,0,0,244983660544,"{""name"":""Pioneer Black River Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+piece-4_reverends_imperial_stout,0,0,244986150912,"{""name"":""4 Reverends Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""piece"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,14,1
+old_hat_brewery-schwarzbier,0,0,244881358850,"{""name"":""Schwarzbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,59,1
+valley_brewing_company-cobra_hood_ipa,0,0,245118926849,"{""name"":""Cobra-Hood IPA"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our India Pale Ale is brewed in a California IPA style. The beer is generously hopped for bitterness with Magnum hops and finished with fresh Amarillo, Ahtanum and Cascade hops."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,48,1
+sixpoint_craft_ales-sweet_action,0,0,245004632066,"{""name"":""Sweet Action"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-12-20 15:50:16"",""description"":""Our most basic interpretation of what makes beer great -- sweetness from the barley malt and active spice from the hops. It is hazy golden in color, with a sweet honey aroma, and a dry, crisp flavor"",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,56,1
+kalamazoo_brewing,0,0,244754743297,"{""name"":""Kalamazoo Brewing"",""city"":""Kalamazoo"",""state"":""Michigan"",""code"":""49007"",""country"":""United States"",""phone"":""1-269-382-2338"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""355 East Kalamazoo Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2949,""lon"":-85.5788}}",1,50,1
+onopa_brewing-american_pale_ale,0,0,244864385025,"{""name"":""American Pale Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""onopa_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+snowshoe_brewing_sonora-esb_extra_special_blizzard,0,0,245114798080,"{""name"":""ESB (Extra Special Blizzard)"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snowshoe_brewing_sonora"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,39,1
+rahr_sons_brewing_company-pecker_wrecker,0,0,245003255810,"{""name"":""Pecker Wrecker"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+san_miguel_corporation-san_miguel_1516,0,0,244987265025,"{""name"":""San Miguel 1516"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_miguel_corporation"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+scuttlebutt_brewing-gale_force_ipa,0,0,244986806274,"{""name"":""Gale Force IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+trade_winds_brewing-kuaipa,0,0,245104181249,"{""name"":""Kuaipa"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,13,1
+mussel_inn,0,0,244869890049,"{""name"":""Mussel Inn"",""city"":""Takaka"",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":""64-(03)-525-9241"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Onekaka""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-40.7658,""lon"":172.705}}",1,31,1
+northwoods_brewpub_grill-poplar_porter,0,0,244872314882,"{""name"":""Poplar Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,38,1
+twin_rivers_brewing-india_pale_ale,0,0,245102084098,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+ramapo_valley_brewery-honey_blonde_lager,0,0,244994277377,"{""name"":""Honey Blonde Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+heineken_hungaria-soproni,0,0,244741767170,"{""name"":""Soproni"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heineken_hungaria"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,19,1
+labatt_ontario_breweries-labatt_extra_dry,0,0,244741570562,"{""name"":""Labatt Extra Dry"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""Labatt Extra Dry was the first national launch of a dry beer in Canada. Labatt Extra Dry is mashed longer than regular beers to leave less carbohydrate in the finished product, giving a lighter flavour with little aftertaste."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+sea_dog_brewing_company-sea_dog_raspberry_wheat_ale,0,0,244992311297,"{""name"":""Sea Dog Raspberry Wheat Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sea_dog_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sea Dog Raspberry Wheat Ale is a dry, crisp refreshing ale with the added essence of raspberries."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
+pabst_brewing_company-lone_star,0,0,244879720449,"{""name"":""Lone Star"",""abv"":4.65,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The National Beer of Texas\r\n\""Lone Star beer uses the finest hops from the Pacific Northwest with hearty grains from the Central and Northern Plains. The GABF recognized Lone Star as a high quality American Cream Lager by awarding it with a silver medal. Malted barley and corn extract combine to provide Lone Star with nature's finest ingredients for brewing. Lone Star's ingredients give this beer its full natural flavor. The choicest hops lend complexity and aroma to this beer, and its proprietary mashing regimen creates the perfect balance of alcohol, body, and character.\""\r\nRegional to Texas. It is brewed under license by Miller Brewing Co., Fort Worth, TX."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+the_round_barn_winery_brewery,0,0,245120237568,"{""name"":""The Round Barn Winery & Brewery"",""city"":""Baroda"",""state"":""Michigan"",""code"":""49101"",""country"":""United States"",""phone"":""(800)-716-9463"",""website"":""http://www.roundbarnwinery.com/brewery.php"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""With more than 30 years of fermentation experience and an award-winning reputation in the industry, our line of hand-crafted brews embody the satisfying bold taste you've come to expect from The Round Barn."",""address"":[""10983 Hills Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9211,""lon"":-86.4583}}",1,52,1
+santa_fe_brewing_company-santa_fe_nut_brown,0,0,244984971267,"{""name"":""Santa Fe Nut Brown"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Brown Ale style originated in the pubs of England, where beer drinkers desired a beer that was both flavorful and complex, but at the same time mild enough to be a session beer. The Santa Fe Brewing Company's interpretation of this style uses a combination of high mash temperature, hard water, and low-alpha acid hops to produce a product that is both true to the style and distinctly Santa Fe. Brewing jargon aside, Santa Fe Nut Brown Ale is an easy-drinking beer, mild, smooth, and always a favorite. Try a keg at your next party!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
+hopworks_urban_brewery-deluxe_organic_ale,0,0,244754153472,"{""name"":""Deluxe Organic Ale"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hopworks_urban_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Strong like bull but sweet like your momma. This unique beer is a trifecta of bold flavors. Hops, malt and alcohol bully the taste buds on the organic playground while the monitor blows the whistle!\"""",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,49,1
+lion_brewery_inc-lionshead_light,0,0,244862091264,"{""name"":""Lionshead Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_inc"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,12,1
+klosterbrauerei_neuzelle,0,0,244757168132,"{""name"":""Klosterbrauerei Neuzelle"",""city"":""Neuzelle"",""state"":""Brandenburg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)33652-/-810-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Brauhausplatz 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":52.091,""lon"":14.6509}}",1,57,1
+new_glarus_brewing_company-uff_da_bock,0,0,244880965633,"{""name"":""Uff-Da Bock"",""abv"":6.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
+sly_fox_brewhouse_and_eatery_royersford-anniversary_ipa_glacier,0,0,245103001600,"{""name"":""Anniversary IPA Glacier"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,11,1
+lake_superior_brewing-old_man_winter_warmer_2000,0,0,244748058624,"{""name"":""Old Man Winter Warmer 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lake_superior_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+marzoni_s_brick_oven_brewing_co-avalanche_ipa,0,0,244871004162,"{""name"":""Avalanche IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Aggressively Bitter, Full-Bodied Ale with a Wonderful Floral Hop Aroma"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
+redhook_ale_brewery-black_hook_porter,0,0,244996112384,"{""name"":""Black Hook Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,37,1
+stout_brothers_public_house-the_yank_cream_ale,0,0,245101494272,"{""name"":""The Yank Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,8,1
+short_s_brewing_company,0,0,244983660545,"{""name"":""Short's Brewing Company"",""city"":""Bellaire"",""state"":""Michigan"",""code"":""49615"",""country"":""United States"",""phone"":""231-533-6622"",""website"":""http://www.shortsbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At SBC we want to share our passion for beer, good beer, and help you to enjoy the fruits of our labor. "",""address"":[""121 N. Bridge Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.9763,""lon"":-85.2104}}",1,7,1
+pizzeria_uno_chicago_grill_brewery-station_house_red_ale,0,0,244986150913,"{""name"":""Station House Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
+olde_main_brewing-long_face_amber,0,0,244881424384,"{""name"":""Long Face Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,59,1
+weyerbacher_brewing_company-black_hole,0,0,245750628352,"{""name"":""Black Hole"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Coming in at an ABV of 7.0%, Our Black Hole satisfies the transition from dark ale to stout. We think of this as slightly \""Porter-ish\"" with a strong malt body and a very light hop finish. This is brewed year round and is available in Pennsylvania in the regular Variety Pack. This will help the ale drinker among us maintain their own balance!"",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+southern_star_brewing_company,0,0,245121286144,"{""name"":""Southern Star Brewing Company"",""city"":""Conroe"",""state"":""Texas"",""code"":""77303"",""country"":""United States"",""phone"":""(936).441-2739"",""website"":""http://www.southernstarbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1207 N. FM 3083 E.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":30.3489,""lon"":-95.4427}}",1,56,1
+kralovsky_pivovar_krusovice,0,0,244754808832,"{""name"":""Královský pivovar Krušovice"",""city"":""Krušovice"",""state"":"""",""code"":"""",""country"":""Czech Republic"",""phone"":""313 569 229"",""website"":""http://www.krusovice.cz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""270 53""]}",1,50,1
+park_city_brewing,0,0,244987461632,"{""name"":""Park City Brewing"",""city"":""Heber City"",""state"":""Utah"",""code"":""84032"",""country"":""United States"",""phone"":""1-435-654-5467"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""375 West 910 South""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.496,""lon"":-111.42}}",1,17,1
+southern_tier_brewing_co-uber_sun_imperial_summer_wheat_ale,0,0,245114863616,"{""name"":""Über Sun Imperial Summer Wheat Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""It is through the movement of the universe that life presents itself in transformation. It is in this spirit that we make ÜberSun, a tribute to the dynamic energy of summer. The alignment of wheat and barley through this hop-infused brew embodies the solar system itself... This may be a difficult task, but one our brewers revel in! They brew a galaxy of taste into every batch. ÜberSun is the ultimate experience that will challenge you with each sip. ÜberSun Imperial Summer Wheat Beer takes off where our Hop Sun finishes. Like it’s little brother, ÜberSun is clean and full of flavor, but don’t pull an Icarus– this is one big beer! Pour a glass or drink straight from the bottle, it’s meant to be consumed wisely with friends between summer solstice and autumnal equniox."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,39,1
+rahr_sons_brewing_company,0,0,245003255811,"{""name"":""Rahr & Sons Brewing Company"",""city"":""Fortworth"",""state"":""Texas"",""code"":""76104"",""country"":""United States"",""phone"":""(817) 810-9266"",""website"":""http://www.rahrbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""701 Galveston Ave""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7366,""lon"":-97.3274}}",1,54,1
+sanford_s_grub_and_pub,0,0,244987330560,"{""name"":""Sanford's Grub and Pub"",""city"":""Sheridan"",""state"":""Wyoming"",""code"":""82801"",""country"":""United States"",""phone"":""1-307-674-1722"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5 East Alger Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.8007,""lon"":-106.956}}",1,16,1
+sea_dog_brewing_company-sea_dog_apricot_wheat,0,0,244986871808,"{""name"":""Sea Dog Apricot Wheat"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sea_dog_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Sea Dog Apricot Wheat Beer is a crisp and quenching wheat ale with a subtle essence of fresh apricots."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,15,1
+trinity_brewing_company-sunna_wit,0,0,245104181250,"{""name"":""Sunna Wit"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trinity_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,13,1
+nicolet_brewing-prostrator_doppelbock,0,0,244869890050,"{""name"":""Prostrator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,31,1
+o_fallon_brewery-griesendiech_pilsner,0,0,244872380416,"{""name"":""Griesendiech Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_fallon_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+twin_rivers_brewing-pilsner,0,0,245102149632,"{""name"":""Pilsner"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,9,1
+rogue_ales-mocha_porter_new_porter,0,0,244994342912,"{""name"":""Mocha Porter / New Porter"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Dedicated to the chocolate lover in each of us. Mocha Porter was once known as New Porter, in honor of the town of Newport, Oregon and home of Rogue Ales. The January/February 1995 issue of Mens Health magazine features a bottle of Rogue New Porter (todays Mocha Porter) in the Fifth Annual Collection of Good Advise, Health News, Dire Warnings, Notable Folks and Unsolicited Opinion. New Porter is described as the Best New Beer for 1994! The caption reads: \""Oh, Hoppy Day: For a beer- drinking experience order up a bottle of this microbrew from Oregon.\""\r\n\r\nRuddy brown in color, a bittersweet balance of malt and hops with a light cream finish. Mocha Porter is made from Northwest Harrington and Klages; 135-165, 95-115, and 70-80 Crystal; Beeston Chocolate, Black, Munich and Carastan malts. Perle and Centennial hops. Mocha Porter is available in a 12-ounce 6-pack, the classic 22-ounce bottle, and on draft."",""style"":""Porter"",""category"":""Irish Ale""}",1,33,1
+heller_bru_trum-aecht_schlenkerla_rauchbier_weizen,0,0,244741767171,"{""name"":""Aecht Schlenkerla Rauchbier Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""heller_bru_trum"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+lakefront_brewery-oktoberfest,0,0,244741636096,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lakefront_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,18,1
+skagit_river_brewing-free_bike_amber,0,0,244992311298,"{""name"":""Free Bike Amber"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
+philadelphia_brewing_co-walt_wit,0,0,245003583488,"{""name"":""Walt Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""philadelphia_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The American poet WaltWhitman once portrayed a sunset over Philadelphia as, \""...a broad tumble of clouds, with much golden haze and profusion of beaming shaft and dazzle.\"" Pour yourself a bottle of Walt Wit Belgian White-Style Ale and see what he was talking about. A pinch of spice and a whisper of citrus lend complexity to this fragrant, satisfying ale."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,55,1
+thunderhead_brewery-saison,0,0,245120237569,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+ska_brewing_company-steel_toe_stout,0,0,244985036800,"{""name"":""Steel Toe Stout"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ska_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This traditional English Cream Stout is brewed with actual milk sugar to create a creamy and sweet brew. Jet black in color, the latte frothy head will make you mooo for more."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,10,1
+independence_brewing_co,0,0,244754153473,"{""name"":""Independence Brewing Co"",""city"":""Austin"",""state"":""Texas"",""code"":""78744"",""country"":""United States"",""phone"":"""",""website"":""http://www.independencebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3913 Todd Lane #607""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":30.2131,""lon"":-97.7358}}",1,49,1
+live_oak_brewing-live_oak_pale_ale,0,0,244862156800,"{""name"":""Live Oak Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""live_oak_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A delicious example of the \""neo-classical\"" American beer style. It has a beautiful copper color and is topped with a thick rich head. With a hint of ale fruitiness in the nose, Pale Ale starts out malty, finishes dry and has plenty of Cascade hops in between. It is sure to satisfy the most discerning ale aficionados."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
+kona_brewing-fire_rock_pale_ale,0,0,244757233664,"{""name"":""Fire Rock Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
+new_river_brewing,0,0,244880965634,"{""name"":""New River Brewing"",""city"":""Atlanta"",""state"":""Georgia"",""code"":""30341"",""country"":""United States"",""phone"":""1-770-841-2953"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2015 Afond Court""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":33.9089,""lon"":-84.3056}}",1,58,1
+southend_brewery_and_smokehouse_charleston,0,0,245103067136,"{""name"":""Southend Brewery and Smokehouse - Charleston"",""city"":""Charleston"",""state"":""South Carolina"",""code"":""29401"",""country"":""United States"",""phone"":""1-843-853-4677"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""161 East Bay Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.7785,""lon"":-79.9273}}",1,11,1
+lancaster_brewing_co-lancaster_strawberry_wheat,0,0,244748058625,"{""name"":""Lancaster Strawberry Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Just in time for summer, this American wheat lager style beer with the subtle suggestion of real, fresh strawberries, is the perfect pint of true refreshment. Light and crisp, our Strawberry Wheat is a \""must try\"" for fruit and beer lovers alike."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,34,1
+marzoni_s_brick_oven_brewing_co-marzoni_s_amber_lager,0,0,244871069696,"{""name"":""Marzoni's Amber Lager"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marzoni_s_brick_oven_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Slightly Malty Amber Lager"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
+revolution_brewing_llc-cross_of_gold,0,0,244996112385,"{""name"":""Cross of Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""An american blonde ale with bursts of fruity aroma and a dry finish."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,37,1
+the_livery-the_livery_dunkel_weizen,0,0,245101494273,"{""name"":""The Livery Dunkel Weizen"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark version of our Hefe Weizen retains the banana and clove flavors from the yeast and also has a richer malt flavor. Available November through April"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,8,1
+sioux_falls_brewing-buffalo_stout,0,0,244983660546,"{""name"":""Buffalo Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,7,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-wheaten_ale,0,0,244986216448,"{""name"":""Wheaten Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
+olde_main_brewing-stout_to_be_named_later,0,0,244881424385,"{""name"":""Stout \""To Be Named Later\"""",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
+widmer_brothers_brewing-broken_halo_ipa,0,0,245750693888,"{""name"":""Broken Halo IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""Broken Halo IPA is a beer produced in the spirit of traditional IPA products shipped from the UK to India in the late 1800s. The almost excessive amounts of Cascade and Columbus hops used in Broken Halo give it notable citrus and grapefruit aromas and flavors. The beer bitterness measures high but tastes smooth due to the full-bodied, Caramel malt sweetness. The finish is juicy, clean, and short lived. A devilishly bold, heavenly smooth India Pale Ale.\""\r\n-Widmer Brothers Brewing Company"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,48,1
+spoetzl_brewery-shiner_summer_stock_kolsch_beer,0,0,245121286145,"{""name"":""Shiner Summer Stock Kölsch Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+la_jolla_brewing-red_roost_ale,0,0,244754808833,"{""name"":""Red Roost Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
+pizza_port_brewing_solana_beach,0,0,244987527168,"{""name"":""Pizza Port Brewing - Solana Beach"",""city"":""Solana Beach"",""state"":""California"",""code"":""92075"",""country"":""United States"",""phone"":""1-858-481-7332"",""website"":""http://www.pizzaport.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Pizza Port was established in March of 1987 when we started making pizzas in our present location in Solana Beach! We started brewing beer as a hobby and as we began brewing more than we could leisurely drink, we really wanted to share some of the incredible brews that we created for fun with our customers too. We installed a 7 barrel brewery and served our first handcrafted beer brewed on the premises in October of 1992. In July of 1997, we celebrated our 10th anniversary by opening another location in Carlsbad. We expanded our brewing capacity into the building next door creating the opportunity to brew, bottle, distribute, and drink even more. Our distribution center is called PORT BREWING! We found the perfect location in San Clemente and opened in July of 2003 enabling us to brew several additional styles! Let's party! When people started asking where they could get our beer besides Pizza Port enough, we acquired the old Stone Brewing facility in San Marcos at 155 Mata Way #104 to expand our distribution as PORT BREWING! We officially opened on Cinco de Mayo 2006. Now we will be able to make up to 10,000 barrels to get out to your other favorite places to enjoy coldies! More impressive is the 100 plus barrel room for all of our barrel aged specialties. Come check out our tasting bar where you can get bottles, jugs & merchandise to go while you sample what's brewing!"",""address"":[""135 North Highway 101""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.9908,""lon"":-117.272}}",1,17,1
+sports_city_cafe_brewery-brown_ale,0,0,245114863617,"{""name"":""Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+river_west_brewing-india_pale_ale,0,0,245003321344,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
+sherlock_s_home-palace_porter,0,0,244987330561,"{""name"":""Palace Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,16,1
+shmaltz_enterprises-coney_island_lager,0,0,244986871809,"{""name"":""Coney Island Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shmaltz_enterprises"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+troegs_brewing-esb,0,0,245104181251,"{""name"":""ESB"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs E.S.B. \""extra special bitter\"" is dry hopped in the old world traditions. It has a full bodied caramel malt flavor an spicy hop aroma. A generous amount of Golding hops are added before fermentation to impart a pleasant \""bouquet nose\"" and balanced with pronounced caramel malts to create a complex, malty, aromatic amber ale."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,13,1
+orlando_brewing-orange_blossom_pilsner,0,0,244869955584,"{""name"":""Orange Blossom Pilsner ²"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orlando_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""When you make a pot of coffee, but only use half the water, you get some pretty rich coffee. That's the approach we took with our latest offering. OBP Squared, with half the water, has 11% alcohol by volume-twice that of original OBP.\r\n\r\nThe result is a bold, distinct taste of its own. Made with twice as much real orange blossom honey, all-natural ingredients and no refined sugar, it really is the new king bee of beers."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,31,1
+o_hara_s_brewpub_and_restaurant-golden_honey_wheat,0,0,244872380417,"{""name"":""Golden Honey Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_hara_s_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
+twin_rivers_brewing-weissbier,0,0,245102149633,"{""name"":""Weissbier"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,9,1
+sam_choy_s_breakfast_lunch_crab_big_aloha_brewery-s_team,0,0,244994342913,"{""name"":""S-Team"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sam_choy_s_breakfast_lunch_crab_big_aloha_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+high_falls_brewing-dundee_kolsch_style_ale,0,0,244741832704,"{""name"":""Dundee Kölsch-Style Ale"",""abv"":5.68,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""high_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+maclay_and_co-scotch_ale,0,0,244864450560,"{""name"":""Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maclay_and_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+smuttynose_brewing_co,0,0,245110145024,"{""name"":""Smuttynose Brewing Co."",""city"":""Portsmouth"",""state"":""New Hampshire"",""code"":""3801"",""country"":""United States"",""phone"":""603-436-4026"",""website"":""http://www.smuttynose.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Smuttynose was founded in 1994 by the folks who started the Northampton and Portsmouth Breweries. Our beers - Shoals Pale Ale, Old Brown Dog, Portsmouth Lager, IPA, Robust Porter, The Big Beer Series & our seasonal specialties - are distributed throughout New England and the mid-Atlantic states."",""address"":[""225 Heritage Ave""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0325,""lon"":-70.7948}}",1,28,1
+platte_valley_brewing-stout,0,0,245003583489,"{""name"":""Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""platte_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
+titletown_brewing-millennium_ale,0,0,245120303104,"{""name"":""Millennium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+slab_city_brewing-old_47_ale,0,0,244985036801,"{""name"":""Old 47 Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+iron_hill_brewery_wilmingon-lodestone_lager,0,0,244754153474,"{""name"":""Lodestone Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""iron_hill_brewery_wilmingon"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+manayunk_brewery_and_restaurant-nokdechiloff,0,0,244862222336,"{""name"":""Nokdechiloff"",""abv"":12.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""This winter warmer will knock the chill away until summer. It used as much malt as our brew house can handle and armloads of fresh hops and lovingly laid in our fermentor for four months. Massively malty and balanced with burly bitterness it is truly the king of beers, approaching wine in strength. A definitive one to have when you’re only having one. Adoringly served in brandy snifters to preserve precious properties."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,12,1
+la_jolla_brew_house,0,0,244757233665,"{""name"":""La Jolla Brew House"",""city"":""La Jolla"",""state"":""California"",""code"":""92037"",""country"":""United States"",""phone"":""1-858-456-6279"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7536 Fay Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.8409,""lon"":-117.274}}",1,57,1
+niagara_falls_brewing-eisbock,0,0,244880965635,"{""name"":""Eisbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
+southern_tier_brewing_co-hop_sun,0,0,245103067137,"{""name"":""Hop Sun"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Pour Hop Sun Summer Wheat Beer into a pint glass, give it a long whiff and you’ll realize that this isn’t your average wheatbeer. Filtered to a golden clarity and dry-hopped to perfection, Hop Sun is a fantastic session ale in which flavors of wheat, barley and hops commingle to a refreshing and zesty conclusion. Hints of lemon and sweet malts waft to the fore as a touch of bitterness contributes to Hop Sun’s bright finish. Enjoy Hop Sun all summer long as a perfect balance to your outdoor recreation. Summer never tasted so good."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,11,1
+lazy_magnolia_brewing_company-southern_pecan,0,0,244748058626,"{""name"":""Southern Pecan"",""abv"":4.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lazy_magnolia_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Southern Pecan Nut Brown Ale is the first beer in the world, to our knowledge, made with whole roasted pecans. The pecans are used just like grain and provide a nutty characteristic and a delightful depth to the flavor profile. This beer is very lightly hopped to allow the malty, caramel, and nutty flavors shine through. The color is dark mahogany. Southern Pecan won a Bronze Medal in the 2006 World Beer Cup in the Specialty Beer category.""}",1,34,1
+mehana_brewing,0,0,244871069697,"{""name"":""Mehana Brewing"",""city"":""Hilo"",""state"":""Hawaii"",""code"":""96720"",""country"":""United States"",""phone"":""1-808-934-8211"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""275 East Kawili Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":19.706,""lon"":-155.069}}",1,35,1
+river_horse_brewing_company-summer_blonde,0,0,244996112386,"{""name"":""Summer Blonde"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Great summer memories are born out of uncomplicated times. We've made that the basis for our summer blonde recipe and kept this ale pure and simple. Relax and enjoy this all natural, light, golden beauty; a seasonal offering from the River Horse Brewing Company."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,37,1
+thirsty_dog_brewing-old_leghumper_porter,0,0,245101494274,"{""name"":""Old Leghumper Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A robust porter, dark brown in color and full bodied with a malty sweet taste."",""style"":""Porter"",""category"":""Irish Ale""}",1,8,1
+skagit_river_brewing-steelie_brown_ale,0,0,244983660547,"{""name"":""Steelie Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,7,1
+pyramid_alehouse_brewery_and_restaurant_seattle-thunder_head_ipa,0,0,244986216449,"{""name"":""Thunder Head IPA"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
+oregon_trail_brewery,0,0,244881489920,"{""name"":""Oregon Trail Brewery"",""city"":""Corvallis"",""state"":""Oregon"",""code"":""97333"",""country"":""United States"",""phone"":""1-503-758-3257"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""341 SW Second Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5613,""lon"":-123.261}}",1,59,1
+william_kuether_brewing-princess_of_darkness_porter,0,0,245750693889,"{""name"":""Princess of Darkness Porter"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""william_kuether_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+strangford_lough_brewing_company_ltd-st_patrick_s_best,0,0,245121286146,"{""name"":""St. Patrick's Best"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Light and refreshing on the palate, our session best bitter has a classic Irish malt & traditional hop aroma. Light amber in colour, this smooth beer has hints of caramel with a woody bitterness."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,56,1
+long_trail_brewing_co-blackbeary_wheat,0,0,244877230080,"{""name"":""Blackbeary Wheat"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""long_trail_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Light & refreshing with a hint of blackberry at the finish makes this beer a real thirst quencher. For the health conscious, Blackbeary Wheat has less than 6 grams of carbs and contains 0 fat."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
+porterhouse_restaurant_and_brewpub-hop_hazard,0,0,244987592704,"{""name"":""Hop Hazard"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+steinfels_back_brau-altbier,0,0,245114863618,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steinfels_back_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,39,1
+rock_art_brewery-whitetail_golden_ale,0,0,245003321345,"{""name"":""Whitetail Golden Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our golden American ale has a crisp body and slightly dry, hoppy finish. This is a real treat for the beer lover. Pale, wheat and torrified wheat malts are used with Northern Brewer and Mt. Hood hops."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,54,1
+shipwrecked_brew_pub,0,0,244987396096,"{""name"":""Shipwrecked Brew Pub"",""city"":""Egg Harbor"",""state"":""Wisconsin"",""code"":""54209"",""country"":""United States"",""phone"":""1-888-868-2767"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7791 Egg Harbor Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":45.0495,""lon"":-87.2802}}",1,16,1
+sierra_nevada_brewing_co-bigfoot_2006,0,0,244986937344,"{""name"":""Bigfoot 2006"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+troegs_brewing-sunshine_pils,0,0,245104181252,"{""name"":""Sunshine Pils"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Hop fans rejoice! Sunshine Pils combines the crisp taste of European style pilsners with a kicked-up hop character to create a balanced, refreshing seasonal beer. Golden in color with a fluffy white head, Sunshine Pils is the perfect beer for Summer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,13,1
+penn_brewery-penn_weizen,0,0,244993097728,"{""name"":""Penn Weizen"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""penn_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Authentic wheat beer, brewed in the Southern German tradition, won the Silver Medal in 1997 and the Gold Medal at the 2000 in Denver, Colorado. Penn Weizen is top-fermented, cask-conditioned, and very effervescent with a slight hint of tangy clove flavor."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,31,1
+old_hat_brewery,0,0,244872380418,"{""name"":""Old Hat Brewery"",""city"":""Lawton"",""state"":""Michigan"",""code"":""49065"",""country"":""United States"",""phone"":""1-269-624-6445"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""114 North Main Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.1682,""lon"":-85.8497}}",1,38,1
+two_dogs_beverage_company,0,0,245102215168,"{""name"":""Two Dogs Beverage Company"",""city"":""Manhasset"",""state"":""New York"",""code"":""11030"",""country"":""United States"",""phone"":""1-516-869-6568"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""272 Plandome Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.7964,""lon"":-73.699}}",1,9,1
+ship_inn_brewpub-best_bitter,0,0,244994342914,"{""name"":""Best Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+hoppy_brewing_company-total_eclipse_black_ale,0,0,244741832705,"{""name"":""Total Eclipse Black Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""hoppy_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Total Eclipse Black Ale has been described as similar to a light, dry stout. Characterized by its distinctive hop aroma and rich, black color, Total Eclipse redefines the way you think about a dark ale. Brewed at a low temperature to create a refreshingly dry finish, Total Eclipse uses only the finest two row malted barley and hops grown in the great Pacific Northwest. This combination results in a clean, crisp, hand-crafted experience. Hoppy Brewing Company has never used any artificial preservatives, flavors, or colors in any of its ales. The Hoppy label is your guarantee of purity. \r\nIt’s “totally” out of this world delicious!!!"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
+magic_hat-lucky_kat,0,0,244864450561,"{""name"":""Lucky Kat"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""A deep golden IPA with a firm malt body, finishing with a big hop aroma."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
+southern_tier_brewing_co-big_red_imperial_red_ale,0,0,245110210560,"{""name"":""Big Red Imperial Red Ale"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
+port_brewing_company-3rd_anniversary_ale,0,0,245003583490,"{""name"":""3rd Anniversary Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,55,1
+tooheys,0,0,245120303105,"{""name"":""Tooheys"",""city"":""Sydney"",""state"":""New South Wales"",""code"":"""",""country"":""Australia"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""29 Nyrang Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-33.8501,""lon"":151.045}}",1,52,1
+sleeman_brewing_malting-sapporo_premium_beer,0,0,244985036802,"{""name"":""Sapporo Premium Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sleeman_brewing_malting"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+john_harvard_s_brew_house_framingham-wilmington_roggen_beer,0,0,244754219008,"{""name"":""Wilmington Roggen Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""john_harvard_s_brew_house_framingham"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
+matilda_bay_brewing,0,0,244862222337,"{""name"":""Matilda Bay Brewing"",""city"":""North Fremantle"",""state"":""Western Australia"",""code"":"""",""country"":""Australia"",""phone"":""61-(08)-9430-0777"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""130 Stirling Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":-32.0232,""lon"":115.754}}",1,12,1
+lancaster_brewing_co-boss_hog_double_ipa,0,0,244757233666,"{""name"":""Boss Hog Double IPA"",""abv"":10.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lancaster_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
+niagara_falls_brewing-old_jack,0,0,244881031168,"{""name"":""Old Jack"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""niagara_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,58,1
+sprecher_brewing-sprecher_russian_imperial_stout,0,0,245103132672,"{""name"":""Sprecher Russian Imperial Stout"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Once brewed in Britain for the Russian Czars, this tremendously rich and thick ale uses a profusion of burnt and caramel malts. A massive mouthful of dark roasted malt and coffee flavors finishes with hints of chocolate, caramel & licorice."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
+lion_brewery_ceylon_ltd-lion_stout,0,0,244870676480,"{""name"":""Lion Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""lion_brewery_ceylon_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""\""...the stout was soft, fresh and quite delicious. This was the top-fermenting Lion Stout...It was bottle-conditioned and had an extraordinary chocolaty, mocha...character.\"" - Michael Jackson, The Beer Hunter"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
+michigan_brewing-bavarian_dark,0,0,244871069698,"{""name"":""Bavarian Dark"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""michigan_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Russett colored brown ale with a thinner but well defined white head, grainy aromas with a touch of caramel flavors."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,35,1
+river_west_brewing-nut_brown,0,0,244996177920,"{""name"":""Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
+triumph_brewing_of_new_hope,0,0,245101559808,"{""name"":""Triumph Brewing of New Hope"",""city"":""New Hope"",""state"":""Pennsylvania"",""code"":""18938"",""country"":""United States"",""phone"":""1-215-862-8300"",""website"":""http://www.triumphbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""400 Union Square""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":40.3659,""lon"":-74.9544}}",1,8,1
+snake_river_brewing,0,0,245100773376,"{""name"":""Snake River Brewing"",""city"":""Jackson"",""state"":""Wyoming"",""code"":""83001"",""country"":""United States"",""phone"":""307.739.BEER"",""website"":""http://www.snakeriverbrewing.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""from their site: At the Snake River Brewing Company, we think it's far easier to produce a million barrels of so-so beer than one barrel of great beer. So, here in Jackson Hole, we only produce about 5,000 barrels of award-winning beer per year. We operate a 15 barrel, steam fired brew house and hand craft our lagers and ales using several yeast strains along with hops and grains from the United States, British Isles and Europe. The SRB Brewery was also granted Organic certification in 2007 allowing us to create our first Organic Certified beer OB-1, an english style brown ale, which is fast becoming a favorite among our patrons."",""address"":[""265 S. Millward""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.4768,""lon"":-110.765}}",1,7,1
+radeberger_exportbierbrauerei,0,0,244986216450,"{""name"":""Radeberger Exportbierbrauerei"",""city"":""Radeberg"",""state"":""Sachsen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)3528-/-454-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Dresdener Strae 2""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.1148,""lon"":13.915}}",1,14,1
+oy_sinebrychoff_ab-koff_special_iii,0,0,244881489921,"{""name"":""Koff Special III"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oy_sinebrychoff_ab"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+williams_brothers_brewing_company-alba_scots_pine_ale,0,0,245750693890,"{""name"":""Alba Scots Pine Ale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,48,1
+sweetwater_brewing_atlanta-exodus_porter,0,0,245121351680,"{""name"":""Exodus Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":""This is a classic American Porter, poured on tap it has a good head that stays and leaves a nice lace. It is defined by its chocolate malt, medium body, and smooth mouthfeel. Balanced by the Golding and Columbus hops on the finish is a hint of bitterness. \r\nDon’t be afraid of the dark."",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
+mad_anthony_brewing-old_woody_pale_ale,0,0,244877230081,"{""name"":""Old Woody Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_anthony_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+portsmouth_brewery-kate_the_great_russian_imperial_stout,0,0,244987658240,"{""name"":""Kate The Great Russian Imperial Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""portsmouth_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The granddaddy of stouts. Intended for export to the Imerial Court of Russia's Catherine the Great. Jet black. Full-bodied. Very strong."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,17,1
+storm_brewing-black_plague_stout,0,0,245114929152,"{""name"":""Black Plague Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Derives its name from the historical fact that at one time in Europe beer was about the only safe liquid to drink. Black Plague is Irish style dry stout brewed only in fall and winter and only in small batches to ensure the freshness so paramount to such an intensely roasted beer."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
+rock_bottom_restaurant_brewery_denver-rocktoberfest,0,0,245003321346,"{""name"":""Rocktoberfest"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,54,1
+sierra_nevada_brewing_co-anniversary_ale_2007,0,0,244987396097,"{""name"":""Anniversary Ale 2007"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nEach fall we celebrate our anniversary as one of America’s craft brewing pioneers with a special beer. This year, in celebration of our 27th year, we have made this beer available to the public for the first time, and aptly named it Anniversary Ale. \r\n\r\nAnniversary Ale is an American-style IPA featuring Cascade hops, the signature hop used in our Pale Ale. The beer has a pronounced pine and citrus hop aroma balanced by the sweetness of two-row pale and caramel malts. The result is an unusually well-balanced IPA that proves an IPA can be both assertive and elegant. Anniversary Ale is a medium-bodied, well-hopped ale that finishes with a slight malt sweetness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,16,1
+sierra_nevada_brewing_co-glissade_golden_bock,0,0,244986937345,"{""name"":""Glissade Golden Bock"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""As winter begins its slide toward the sunny days of spring, we bring you Glissade Golden Bock to help you enjoy the ride. Glissade is a remarkably mellow take on the traditional spring bock. With restrained sweetness, we emphasize subtle malt flavor, balanced against delicate aromas of spicy and floral European hops. This complex balance helps Glissade slide across the palate—bracing us against the last cold nights of winter, while its bright golden color turns our thoughts toward spring."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,15,1
+troegs_brewing-troegs_pale_ale,0,0,245104246784,"{""name"":""Troegs Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Tröegs Brewery classic, our Pale Ale is copper colored with generous amounts of Cascade hops to create a floral, aromatic pale ale that smells as delicious as it tastes."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,13,1
+rahr_sons_brewing_company-blind_salamander_pale_ale,0,0,244993163264,"{""name"":""Blind Salamander Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rahr_sons_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Blind Salamander Pale Ale is the first of a series of Rahr beers\r\ncalled Rare Breed. These beers are dedicated to improving the lot of\r\nendangered Texas species. Rahr is making donations from these proceeds\r\nto the Texas Parks & Wildlife Foundation to help with the recovery\r\nof these species. \r\n\r\nThe Texas Blind Salamander is a rare cave dwelling troglobite amphibian native to San\r\nMarcos, specifically the San Marcos Pool in the Edwards Aquifer. It has\r\nbright red external gills for absorbing oxygen from the water. Its\r\nmature length is 5 cm and its diet varies by what flows into its cave,\r\nincluding shrimp, snails and amphipods. \r\n\r\nBlind Salamander Pale Ale is a blend of the finest pale malts and East Kent\r\nGoldings hops. The fine balance of these toasted caramel malts and\r\nearthy hops makes Blind Salamander an easy drinking and satisfying ale."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+otto_s_pub_and_brewery-dubbel_ale,0,0,244872445952,"{""name"":""Dubbel Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""An Abbey-style Dubbel ale. This dark amber brown ale is full of apple, raisin, and banana esters with a smooth malty finish."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,38,1
+valley_brewing_company-ports_pale_ale,0,0,245102215169,"{""name"":""Ports Pale Ale"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Ports Pale Ale is an extremely light and easy to drink Pale Ale. It is brewed with the finest German and English Malt and Hops. Brewed for the local Stockton ports baseball team."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,9,1
+shipyard_brewing_portland,0,0,244994408448,"{""name"":""Shipyard Brewing - Portland"",""city"":""Portland"",""state"":""Maine"",""code"":""4101"",""country"":""United States"",""phone"":""1-800-789-0684"",""website"":""http://www.shipyard.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Since 1994, Shipyard Brewing Company has been brewing fine quality products with a wide range of style profiles. We use only top quality ingredients and pride ourselves on the consistency and freshness of our products. All our beer is hand crafted from recipes developed by master brewer Alan Pugsley, one of the most influential people in the craft brewing movement in North America. Shipyard is available in 35+ states around the country and markets for our freshly brewed, hand-crafted beers continue to expand."",""address"":[""86 Newbury Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.6619,""lon"":-70.2489}}",1,33,1
+indian_wells_brewing-mojave_gold,0,0,244741832706,"{""name"":""Mojave Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""indian_wells_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+mcmenamins_mill_creek,0,0,244864516096,"{""name"":""McMenamins Mill Creek"",""city"":""Mill Creek"",""state"":""Washington"",""code"":""98012"",""country"":""United States"",""phone"":""1-425-316-0520"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13300 Bothell-Everett Highway #304""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.8774,""lon"":-122.211}}",1,18,1
+steamworks,0,0,245110210561,"{""name"":""Steamworks"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""V6B 5C6"",""country"":""Canada"",""phone"":""1-604-689-2739"",""website"":""http://www.steamworks.com/gastown_index.htm"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Steamworks gets its name from the famous Gastown steam line that runs through our premises. The Gastown Brewing Company, which is located onsite and brews Steamworks beers, uses steam to fire its kettles. The instant heat of steam allows for greater brewing finesse, and most importantly great tasting beer. Whether you're in the mood for a thirst quenching Lions Gate lager, or a full bodied HeriocaTM Oatmeal Stout, we've got a beer to please your palate."",""address"":[""375 Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.2849,""lon"":-123.11}}",1,28,1
+port_brewing_company-port_panzer_imperial_pilsner,0,0,245003649024,"{""name"":""Port Panzer Imperial Pilsner"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+twin_ports_brewing,0,0,245120303106,"{""name"":""Twin Ports Brewing"",""city"":""Superior"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.7208,""lon"":-92.1041}}",1,52,1
+southampton_publick_house-south_hampton_ipa,0,0,245102346240,"{""name"":""South Hampton IPA"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
+kona_brewing-wailua,0,0,244754219009,"{""name"":""Wailua"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kona_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Wailua is Hawaiian for two fresh water streams mingling. This was just the inspiration we needed for our Limited Release wheat ale brewed with tropical passion Fruit. A refreshing citrusy, sun-colored ale with the cool taste of Hawaii."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
+mickey_finn_s_brewery-scapegoat_bock,0,0,244862222338,"{""name"":""Scapegoat Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
+little_apple_brewing-xx_black_angus_stout,0,0,244880375808,"{""name"":""XX Black Angus Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,57,1
+oak_creek_brewery-oak_creek_amber_ale,0,0,244881031169,"{""name"":""Oak Creek Amber Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+steamworks-skinny_tire_hefeweizen,0,0,245103132673,"{""name"":""Skinny Tire Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Hefeweizen is a faithful version of the traditional Bavarian wheat beer. Hefe is the German word for 'yeast' and weizen means 'wheat'. This beer is made with 40% wheat malt and is brewed with a special yeast that tends to stay in suspension, giving the beer its cloudy appearance. Bavarians are so convinced of the healthful qualities of this yeasty brew that doctors there are known to prescribe two Hefeweizens a day to feeble patients. The yeast used for this brew also imparts its unique spicy, clovey flavour. Some people even detect a light banana flavour. All of these wacky flavours are the natural 'signature' left by this specific yeast strain during its fermentation of the beer and no additional spices are added."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,11,1
+little_apple_brewing,0,0,244870742016,"{""name"":""Little Apple Brewing"",""city"":""Manhattan"",""state"":""Kansas"",""code"":""66502"",""country"":""United States"",""phone"":""1-785-539-5500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1110 Westloop Center""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.1836,""lon"":-96.5717}}",1,34,1
+midnight_sun_brewing_co-fur_rondy,0,0,244871135232,"{""name"":""Fur Rondy"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Winter Warmer"",""category"":""Other Style""}",1,35,1
+rocky_river_brewing-golden_eagle_helles,0,0,244996177921,"{""name"":""Golden Eagle Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rocky_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+troegs_brewing-troegenator_double_bock,0,0,245101559809,"{""name"":""Troegenator Double Bock"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Troegenator Double Bock, is a dark, strong lager (8.2% abv). It pours into a glass with a bronze to brown color, fluffy white head and bready malt aroma. The Troegenator leaves a rich, warming feeling and subtle spicy flavors. The style, Double Bock, dates back a century or so ago. During periods of fasting without solid foods, the Monastic brewers relied on the double bock; a stronger, richer beer to fulfill their basic nutritional needs. Known to them as \""liquid bread,\"" a double bock has a strong malt aroma and chewy rich body. Traditionally these brewers ended the name of their double bock with the suffix \""ator\"", ex. Celabrator, Illuminator, Subliminator... In the spirit of the tradition we give you the Troegenator to provide warmth and richness through the early spring months. A double bock of epic proportions, beware,\r\nthe Troegenator is deceiving smooth and delicious."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,8,1
+southern_tier_brewing_co-pumking_imperial_pumpkin_ale,0,0,245100838912,"{""name"":""Pumking Imperial Pumpkin Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Pumking is an ode to Púca, a creature of Celtic folklore, who is both feared and respected by those who believe in it. Púca is said to waylay travelers throughout the night, tossing them on its back, and providing them the ride of their lives, from which they return forever changed. Brewed in the spirit of All Hallows Eve, a time of the year when spirits can make contact with the physical world and when magic is most potent. Pour Pumking into a goblet and allow it’s alluring spirit to overflow. As spicy aromas present themselves, let it’s deep copper color entrance you as your journey into this mystical brew has just begun. As the first drops touch your tongue a magical spell will bewitch your taste buds making it difficult to escape the Pumking."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,7,1
+red_star_brewery_grille-canvas_back_american_pale_ale,0,0,244986281984,"{""name"":""Canvas Back American Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_star_brewery_grille"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
+port_washington_brewing-transcendental_wheat_beer,0,0,245005221888,"{""name"":""Transcendental Wheat Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_washington_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+wynkoop_brewing-st_charles_esb,0,0,245750759424,"{""name"":""St. Charles ESB"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our British-style session beer is cask conditioned and dry hopped. Tea colored with a toasted malt flavor, it's an easy drinker with a light mouthfeel and elgeant hop nose."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,48,1
+tallgrass_brewing_co-oasis,0,0,245121351681,"{""name"":""Oasis"",""abv"":7.2,""ibu"":93.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tallgrass_brewing_co"",""updated"":""2010-11-11 19:32:59"",""description"":""Oasis is a Double ESB/IPAish beer that came about from playing around with one of Jeff"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
+marin_brewing-mt_tam_pale_ale,0,0,244877295616,"{""name"":""Mt.Tam Pale Ale"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh-schneider_weisse,0,0,244987658241,"{""name"":""Schneider Weisse"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,17,1
+stoudt_s_brewery-honey_double_maibock,0,0,245114929153,"{""name"":""Honey Double Maibock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,39,1
+rogue_ales-juniper_pale_ale,0,0,245003386880,"{""name"":""Juniper Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Juniper Pale Ale: the new package for Yellow Snow Ale (winter 2004/2005). While the recipe (a pale ale infused with whole juniper berries) on the label remain the same, the name and label are new for 2005. Juniper Pale Ale is available in the classic 22-ounce bottle and on draft."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,54,1
+sly_fox_brewhouse_and_eatery_royersford-helles_golden_lager,0,0,245105164288,"{""name"":""Helles Golden Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+southern_tier_brewing_co-southern_tier_ipa,0,0,245104771072,"{""name"":""Southern Tier IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""IPA stands for India Pale Ale and ours is an American version of the classic style. IPA's namesake lies in its colonial roots. British soldiers on their way to India drank a lot of beer, but found it would go stale on the long voyages. Meanwhile, brewers knew that by adding more hops the beer would stay fresh. Voila! A new style was born and it is one we are proud to brew. Southern Tier IPA is triple-hopped on its journey to your glass for a fully aromatic experience."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,15,1
+tworows_restaurant_brewery_dallas-osage_golden_wheat_ale,0,0,245104246785,"{""name"":""Osage Golden Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+remington_watson_smith_brewing-amber_ale,0,0,244993228800,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""remington_watson_smith_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
+otto_s_pub_and_brewery-slab_cabin_ipa,0,0,244872445953,"{""name"":""Slab Cabin IPA"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic American IPA with lots of floral punch and assertive hop presence. Hopped with Nugget, Palisade and Amarillo colored to a reddish hue thanks to Munich and Aromatic malts"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+victory_brewing-baltic_thunder,0,0,245102215170,"{""name"":""Baltic Thunder"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Truly a worldly beer. Baltic Thunder represents the Baltic Porter style admirably. Exhibiting the enticing, toffee roast of the British porter that originated the style in the 18th century, and the soothing, subtle fruit nuance of contemporary brews that flourish from Helsinki to Vilnius today, this dark lager honors the Baltic god of thunder. Created by an inspired collaboration of brewers and tempered with a touch of turmoil, Baltic Thunder rolls on to bring you enchanting light as the darkness fades."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,9,1
+sixpoint_craft_ales-hop_obama,0,0,244994408449,"{""name"":""Hop Obama"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
+kaiserdom_privatbrauerei_bamberg-rauchbier,0,0,244741898240,"{""name"":""Rauchbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""kaiserdom_privatbrauerei_bamberg"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+minhas_craft_brewery-berghoff_genuine_dark,0,0,244864516097,"{""name"":""Berghoff Genuine Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minhas_craft_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+stillwater_artisanal_ales,0,0,245110276096,"{""name"":""Stillwater Artisanal Ales"",""city"":""Baltimore"",""state"":""Maryland"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.stillwaterales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.2904,""lon"":-76.6122}}",1,28,1
+port_brewing_company-skye_strong_ale,0,0,245003649025,"{""name"":""Skye Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+tyranena_brewing-three_beaches_honey_blonde_ale,0,0,245120303107,"{""name"":""Three Beaches Honey Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Nothing beats a day at the beach... the sun, the sand and, of course, the scenery. Here in Lake Mills, the three beaches of Rock Lake have drawn young and old for generations... to laugh, to play, to frolic, to just escape stresses of life for a time. Three Beaches Honey Blonde is like a day at the beach... light, bleached blonde, gleefully effervescent, free from bitterness and sure to improve your attitude. When you need a little attitude adjustment, spend a day at the beach with Three Beaches Honey Blonde... and you won't even have to wash the sand out of your suit!\r\n\r\nThree Beaches Honey Blonde is our Wisconsin version of the American Blonde Ale. This beer is light-bodied with a sweet touch of honey and a mild citrus accent."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,52,1
+southern_tier_brewing_co-chautauqua_brew,0,0,245102346241,"{""name"":""Chautauqua Brew"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,10,1
+krogh_s_restaurant_and_brewpub,0,0,244754219010,"{""name"":""Krogh's Restaurant and Brewpub"",""city"":""Sparta"",""state"":""New Jersey"",""code"":""7871"",""country"":""United States"",""phone"":""1-973-729-8428"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23 White Deer Plaza""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":41.0323,""lon"":-74.6407}}",1,49,1
+middle_ages_brewing-swallow_wit,0,0,244862287872,"{""name"":""Swallow Wit"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A wheat beer brewed in the style of a Belgian wit bier while using British ingredients. Lite and refreshing spiced with coriander and orange peel."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,12,1
+long_valley_pub_brewery,0,0,244880375809,"{""name"":""Long Valley Pub & Brewery"",""city"":""Long Valley"",""state"":""New Jersey"",""code"":""7853"",""country"":""United States"",""phone"":""1-908-876-1122"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1 Fairmount Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.7843,""lon"":-74.78}}",1,57,1
+otto_s_pub_and_brewery-arthur_s_english_old_ale,0,0,244881031170,"{""name"":""Arthur's English Old Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big malty ale brewed in the style of English Old Ales. Deep ruby in color and lightly bittered with a big malty backbone."",""style"":""Old Ale"",""category"":""British Ale""}",1,58,1
+steel_brewing-high_gravity_lager,0,0,245103132674,"{""name"":""High Gravity Lager"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
+magic_hat-hipa,0,0,244870742017,"{""name"":""HIPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
+midnight_sun_brewing_co-lust,0,0,244871135233,"{""name"":""Lust"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""LUST Belgian-style Dark Strong Ale stirs shameless desire in men (and women) with its captivating appearance, enticing aroma and satisfying flavors. Aged in bourbon oak barrels for twelve months, Lust is worldly, smooth and decadent. Sour cherries contribute tartness while brettanomyces brings muskiness to this naughty brew. \r\n\r\nThe pleasure you derive from this dark beer is beyond words. \r\n\r\nLUST. Regret. Repent. Repeat."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,35,1
+roffey_brewery-overcast_ale,0,0,244996177922,"{""name"":""Overcast Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roffey_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+tworows_restaurant_brewery_dallas-route_66_amber_ale,0,0,245101625344,"{""name"":""Route 66 Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+tablerock,0,0,245100838913,"{""name"":""Tablerock"",""city"":""Boise"",""state"":""Idaho"",""code"":""83702"",""country"":""United States"",""phone"":""(208) 342-0944"",""website"":""http://www.tablerockbrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""705 Fulton St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.6113,""lon"":-116.206}}",1,7,1
+rockyard_brewing-hopyard_ipa,0,0,244986281985,"{""name"":""Hopyard IPA"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rockyard_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
+ramapo_valley_brewery-copper,0,0,245005287424,"{""name"":""Copper"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ramapo_valley_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,59,1
+zea_rotisserie_and_brewery-ponchartrain_porter,0,0,245750759425,"{""name"":""Ponchartrain Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,48,1
+tampa_bay_brewing-old_elephant_foot_ipa,0,0,245121417216,"{""name"":""Old Elephant Foot IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tampa_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,56,1
+maritime_pacific_brewing-flagship_red_alt_ale,0,0,244877295617,"{""name"":""Flagship Red Alt Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
+privater_brauereigasthof_greifenklau,0,0,244987658242,"{""name"":""Privater Brauereigasthof Greifenklau"",""city"":""Bamberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)951-/-53219"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Laurenziplatz 20""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.8851,""lon"":10.8823}}",1,17,1
+stout_brothers_public_house-yodeler_weisse,0,0,245114929154,"{""name"":""Yodeler Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,39,1
+salado_creek_brewing_company-amber,0,0,245003386881,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""salado_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+spaten_franziskaner_brau-oktoberfestbier_oktoberfest_ur_marzen,0,0,245105164289,"{""name"":""Oktoberfestbier / Oktoberfest Ur-Märzen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,16,1
+springfield_brewing-mueller_doppelbock,0,0,245104836608,"{""name"":""Mueller Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""springfield_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
+victory_brewing-yakima_glory,0,0,245745778688,"{""name"":""Yakima Glory"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-11-27 12:29:23"",""description"":""The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Bask in the "",""style"":""American-Style India Black Ale"",""category"":""North American Ale""}",1,13,1
+ridgeway_brewing-lump_of_coal_dark_holiday_stout,0,0,244993228801,"{""name"":""Lump of Coal Dark Holiday Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ridgeway_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
+pennichuck_brewing_company-pompier,0,0,244996505600,"{""name"":""Pompier"",""abv"":12.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our fourth in the Firehouse Ales Series, Pompier means \""fireman\"" in French and represents our continued commitment to celebrate and honor the men and women who respond to the call day after day. Pompier is rich and smooth with complexities that come from a huge grain bill comprised of premium imported specialty malts, French Strisselspalt aroma hops and a 3 month aging process in oak hogsheads where it is combined with toasted French oak wood chips and champagne yeast. Pompier is intended to be a vintage quality English-Style Barleywine with a French twist. Appreciate its fine character and 12.1%ABV when we release this single 10 barrel batch sometime in December or you may choose to cellar it for many years to come. \r\n\r\nYou will find Pompier on retail shelves packaged in the same 1 Liter Swing-Top bottle that has become a signature for our specialty beers.""}",1,38,1
+weyerbacher_brewing_company-eleven,0,0,245745057792,"{""name"":""Eleven"",""abv"":11.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Eleventh anniversy ale, released in July 2006 only is a Triple IPA made exclusively with Phoenix hops. 11.7% abv make this Triple IPA powerful, but the Phoenix hops keep it smooth. Phoenix is another one of those hops with low cohumulone levels, which means when used in very large quantities (as we do in Eleven) the hops flavor is very smooth, not a hint of harshness for the enormous amounts of hops in the brew. As with all of our Anniversay ales, this one will age fantastically and will never be made again, as each anniversary is an entirely different brew."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,9,1
+smoky_mountain_brewing,0,0,245112242176,"{""name"":""Smoky Mountain Brewing"",""city"":""Knoxville"",""state"":""Tennessee"",""code"":""37902"",""country"":""United States"",""phone"":""1-423-673-8400"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""424 South Gay Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":35.9657,""lon"":-83.9181}}",1,33,1
+knigsbacher_brauerei-pils,0,0,244741898241,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""knigsbacher_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+new_belgium_brewing-abbey_belgian_style_ale,0,0,244864581632,"{""name"":""Abbey Belgian Style Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_belgium_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Winner of four World Beer Cup medals and eight medals at the Great American Beer Fest, Abbey Belgian Ale is the Mark Spitz of New Belgium’s lineup - but it didn’t start out that way. When Jeff and Kim first sampled the beer at the Lyons Folks Fest, reviews were mixed at best. One of founder Jeff’s first two Belgian style homebrews (along with Fat Tire), Abbey is a Belgian dubbel (or double) brewed with six different malts and an authentic Belgian yeast strain. Abbey is bottle-conditioned, weighs in at 7.0% alcohol by volume, and pairs well with chocolate (or boldly served by itself) for dessert."",""style"":""Belgian-Style Dubbel"",""category"":""Belgian and French Ale""}",1,18,1
+stone_brewing_co-vertical_epic_06_06_06,0,0,245110276097,"{""name"":""Vertical Epic 06.06.06"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+privatbrauerei_gaffel,0,0,245003649026,"{""name"":""Privatbrauerei Gaffel"",""city"":""Kln"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)221-/-160060"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Eigelstein 41""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":50.9465,""lon"":6.9563}}",1,55,1
+wagner_valley_brewing-oatmeal_stout,0,0,245751283712,"{""name"":""Oatmeal Stout"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wagner_valley_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pours a very deep black with a pleasant aroma and a thick brown head. It has the usual coffee taste you would expect with a hint of chocolate. There is quite a lot of carbonation but is very drinkable."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,52,1
+spanish_peaks_brewing-black_dog_yellowstone_ale,0,0,245102411776,"{""name"":""Black Dog Yellowstone Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+labatt_ontario_breweries-labatt_sterling,0,0,244754284544,"{""name"":""Labatt Sterling"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""labatt_ontario_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""With only 88 calories per 341 ml bottle, Labatt Sterling is a light, refreshing beer with 1/3 less calories than regular beers. In other words, it's a great tasting beer...that won't slow you down."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,49,1
+moosejaw_pizza_dells_brewing_company-dells_chief_amber_ale,0,0,244862287873,"{""name"":""Dells Chief Amber Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moosejaw_pizza_dells_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+mad_river_brewing-john_barleycorn_barleywine_style_ale,0,0,244880441344,"{""name"":""John Barleycorn Barleywine Style Ale"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Seasonal Offering. We honor the Harvest & Holidays each year by brewing a traditional Barleywine style ale, using a variety of ingredients. The Label, created by local artist Janis Taylor, is a folksy woodcut based on the tale of John Barleycorn in verse.\r\n\r\nBrewed in small 10-barrel batches with Certified Organic barley malt, this crimson hued ale has a sweet caramel nose with a zesty spicy, citrus taste. It has a slight hop finish and leaves a warm, tingling sensation on the tongue. A great winter warmer!\r\nStarting Gravity \t1.098\r\nFinish Gravity \t1.020\r\nABV \t9.5\r\nIBU \t96\r\n\r\n-http://www.madriverbrewing.com/pages/brews/john_barleycorn.html"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,57,1
+otto_s_pub_and_brewery-old_fugget,0,0,244881031171,"{""name"":""Old Fugget"",""abv"":11.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A big, bold ale brewed in the style of classic barleywines. Served lightly carbonated through the handpump at cellar temperature."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,58,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-melon_head_red,0,0,245103132675,"{""name"":""Melon Head Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,11,1
+manhattan_beach_brewing-rat_beach_red_ale,0,0,244870807552,"{""name"":""Rat Beach Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manhattan_beach_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
+miller_brewing-miller_high_life,0,0,244871135234,"{""name"":""Miller High Life"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""miller_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Miller High Life, the \""champagne of beers,\"" dates back to 1903. Miller High Life is a classic American-style lager recognized for its consistently crisp, smooth taste and classic clear-glass bottle. Miller High Life embraces its rich heritage and is positioned as common sense in a bottle. Its drinkers know Miller High Life is an authentic, unpretentious beer. As the best beer value in America, we encourage our target consumers to \""Celebrate the High Life.\"""",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,35,1
+rogue_ales-frosty_frog,0,0,244996243456,"{""name"":""Frosty Frog"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong, but well balanced winter warmer, this ale has extreme complexity made for a holiday feast. The addition of Raisins and Molasses in the brewing process produces unusual spiced rum like flavors to go along with the well balanced malt and hops. \r\nNo Chemicals, Additives or Preservatives."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,37,1
+unibroue-edition_2005,0,0,245101625345,"{""name"":""Édition 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,8,1
+tailgate_beer-tailgate_sweet_stout,0,0,245100838914,"{""name"":""Tailgate Sweet Stout"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""Bronze medal award winner - Sweet Stout Category – California State Fair 2008 Commercial Craft Brew Competition\r\n\r\nDon’t be afraid of the dark. This Sweet Stout is a surprisingly charming, and yet extremely robust ale that spills a soothing bouquet of caramel, chocolate and lightly roasted oats. As a truly unique foray into the world of stout ales, this sweet stout drinks so light you might be surprised at how apt you are to enjoy the darkest of TailGate Beer’s. The flavors are so rich and smooth that this TGB Sweet Stout can cool you on the hottest of days and warm you in the worst that winter can bring. Here is heaven in a bottle. If it weren't so wrong, this is what you wish mom could have given you in your baby bottle. Treat yourself right and enjoy an experience that is the best dessert to pass through your lips since mom last made her best fruit pie for you."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,7,1
+sacramento_brewing_company-barristers_bitter,0,0,244986281986,"{""name"":""Barristers Bitter"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Low in alcohol but big in flavor. This beer is dry hopped like an IPA but the alcohol and bitterness have been reduced for a great session beer."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,14,1
+real_ale_brewing_company-rio_blanco_pale_ale,0,0,245005287425,"{""name"":""Rio Blanco Pale Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep golden and malty, with a spicy hop flavor and well balanced hop bitterness, Rio Blanco is a uniquely Texan interpretation of an English-style pale ale. Czech Saaz hops provide a crisp finish and delicate aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,59,1
+taylor_s_restaurant_and_brewery-hefeweizen,0,0,245121417217,"{""name"":""Hefeweizen"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,56,1
+maritime_pacific_brewing-old_seattle_lager,0,0,244877295618,"{""name"":""Old Seattle Lager"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maritime_pacific_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+randy_s_fun_hunters_brewery_restaurant_and_banquet_center-pale_ale,0,0,244987723776,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""randy_s_fun_hunters_brewery_restaurant_and_banquet_center"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+surly_brewing,0,0,245114929155,"{""name"":""Surly Brewing"",""city"":""Brooklyn Center"",""state"":""Minnesota"",""code"":""55429"",""country"":""United States"",""phone"":""1-763-535-3330"",""website"":""http://www.surlybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""4811 Dusharme Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.0429,""lon"":-93.3246}}",1,39,1
+san_diego_brewing-dubble_fantasy,0,0,245003386882,"{""name"":""Dubble Fantasy"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Abbey ale with hints of bubble gum flavor."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,54,1
+sprecher_brewing-sprecher_oktoberfest,0,0,245105164290,"{""name"":""Sprecher Oktoberfest"",""abv"":5.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Traditionally brewed to celebrate the harvest season, this reddish-brown lager has a rich caramel character and a long flavorful finish. Its delicious malty sweetness is nicely accented by a slighty fruity bouquet and a mild hop flavor."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,16,1
+stevens_point_brewery-bock,0,0,245104836609,"{""name"":""Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,15,1
+vintage_50_restaurant_and_brew_lounge,0,0,245745778689,"{""name"":""Vintage 50 Restaurant and Brew Lounge"",""city"":""Leesburg"",""state"":""Virginia"",""code"":""20176"",""country"":""United States"",""phone"":""(703) 777-2169"",""website"":""http://www.vintage50.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Vintage 50, at this Leesburg, Virginia classically modern brewery. Whether you enjoy a fine California cabernet paired with innovative New American fare, or a cold beer brewed on-site paired with classic comfort food, you will feel at home at Vintage 50. Guests will relax in style while enjoying libations from near and far as well as a menu that features fresh, seasonal ingredients."",""address"":[""50 Catoctin Ct. NE #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.1126,""lon"":-77.5537}}",1,13,1
+rock_bottom_restaurant_brewery_san_jose-stillwater_stout,0,0,244993228802,"{""name"":""Stillwater Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,31,1
+pete_s_brewing-pete_s_rally_cap_ale,0,0,244996571136,"{""name"":""Pete's Rally Cap Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The key ingredient to a good summer is a GREAT brew! Born to play, Pete's Wicked Rally Cap Ale is crafted with a special blend of pale and wheat malts, Mt. Hood hops and a smack of natural lemon. Get in the game... Get Wicked!"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,38,1
+weyerbacher_brewing_company-quad,0,0,245745123328,"{""name"":""Quad"",""abv"":11.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Grand Champion in the 2000, and again in 2004 at United States Beer Tasting Championship, Weyerbacher QUAD is the first quadrupel style beer to be commercially brewed and bottled in the United States.\r\n\r\nIn December 2002 QUAD won Mid-Atlantic Champion at the USBTC for the third year in a row.\r\n\r\nMassively big and delicious, QUAD is an elegant and dark ale. Rich with complexity and flavor, try savoring it after a long day or during a fine dinner. You also might enjoy it as an aperitif or as an accompaniment to a dessert, but QUAD stands alone quite well. We recommend enjoying QUAD in a brandy snifter or wineglass so you can drink in the aroma of this fine elixir. QUAD, with an alcohol content of 11.8% (by volume) is the strongest beer we make, so please pay proper accord as you enjoy it.\r\n\r\nAs with any higher alcohol beers, QUAD will be at its best after a period of 6 or 12 months in the bottle, perhaps longer. We expect a shelf life of 3-5 years, but go ahead, we know you can't wait (we couldn't either). Enjoy one now, and another every month or two, and you'll be truly amazed as QUAD gains smoothness and complexity over time as it ages."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,9,1
+southend_brewery_and_smokehouse_charleston-blonde,0,0,245112307712,"{""name"":""Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
+krogh_s_restaurant_and_brewpub-alpine_glow_red_ale,0,0,244741898242,"{""name"":""Alpine Glow Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""krogh_s_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
+nodding_head_brewpub-tart,0,0,244864581633,"{""name"":""Tart"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+stone_city_brewing-iowa_pale_ale,0,0,245110276098,"{""name"":""Iowa Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+privatbrauerei_hofmhl-dunkel,0,0,245003714560,"{""name"":""Dunkel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""privatbrauerei_hofmhl"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+wells_and_youngs_brewing_company_ltd-wells_bombardier_english_bitter,0,0,245751283713,"{""name"":""Wells Bombardier English Bitter"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wells_and_youngs_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,52,1
+st_peter_s_brewery-india_pale_ale,0,0,245102477312,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+left_hand_brewing_company-sawtooth_ale,0,0,244754350080,"{""name"":""Sawtooth Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""left_hand_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+murphy_s_wagon_wheel-red_ale,0,0,244862287874,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+manayunk_brewery_and_restaurant-california_dreaming,0,0,244880441345,"{""name"":""California Dreaming"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""manayunk_brewery_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""Imperial, or super IPA’s were spawned out of the fascination of hops by the American consumer and are beyond Pale Ales and IPA’S in terms of both hop and alcohol content. Our interpretation is orange-gold in color, lightly bitter but highly hoppy with a firm malt backbone. \r\nWe’ll gladly put this head-to-head with the best that those California Hophead/Brewers have to offer."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
+paper_city_brewing_company,0,0,245004894208,"{""name"":""Paper City Brewing Company"",""city"":""Holyoke"",""state"":""Massachusetts"",""code"":""1040"",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""108 Cabot St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.2012,""lon"":-72.6104}}",1,58,1
+stone_brewing_co-imperial_stout_2002,0,0,245103198208,"{""name"":""Imperial Stout 2002"",""abv"":9.47,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
+millrose_brewing-south_barrington_stout,0,0,244870807553,"{""name"":""South Barrington Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
+minneapolis_town_hall_brewery-black_h2o_oatmeal_stout,0,0,244871200768,"{""name"":""Black H2O Oatmeal Stout"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our darkest and most heavy regular offering. It is virtually black in color and features rich roasted malt flavor with a delicate caramel and vanilla finish. It is carbonated and served with the use of nitrogen gas, giving the Black Water a beautiful cascading pour and thick, creamy foam atop your glass. Made with only the freshest American malts and English hops."",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,35,1
+rothaus_brauerei,0,0,244996243457,"{""name"":""Rothaus Brauerei"",""city"":""Hartford"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.3178,""lon"":-88.379}}",1,37,1
+unibroue-trois_pistoles,0,0,245101690880,"{""name"":""Trois Pistoles"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Trois Pistoles has a dark brown color topped with a rich foam mousse.\r\nIts slightly sweet taste is enhanced by accents of roasted malt, cocoa, ripe fruit and dark spices with a smooth finish like an old port.\r\n\r\nBrewed with four selected malts and four\r\nexotic spices, Trois Pistoles beckons with a\r\nsubtle sweetness that makes it surprisingly\r\nsmooth and satisfying for a beer of such strength and complexity."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,8,1
+the_alchemist-hellbrook,0,0,245100904448,"{""name"":""Hellbrook"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This American double red ale is packed with enough hops to balance the full malty body."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+saint_louis_brewery_schlafy_tap_room-schlafly_pilsner,0,0,244986347520,"{""name"":""Schlafly Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+rock_bottom_restaurant_brewery_milwaukee,0,0,245005287426,"{""name"":""Rock Bottom Restaurant & Brewery - Milwaukee"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53203"",""country"":""United States"",""phone"":""1-414-276-3030"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""740 North Plankinton Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0399,""lon"":-87.9117}}",1,59,1
+thirsty_dog_brewing-twisted_kilt_scotch_ale,0,0,245121482752,"{""name"":""Twisted Kilt Scotch Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Caramelized sugars lend a unique flavor and aroma to this lightly hopped, malty smooth, Scottish Export Ale."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,56,1
+mickey_finn_s_brewery-scapegoat_doppelbock,0,0,244877361152,"{""name"":""Scapegoat Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
+rch_brewery,0,0,244987723777,"{""name"":""RCH Brewery"",""city"":""Weston-super-Mare"",""state"":""Somerset"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01934)-834447"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""West Hewish""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.3723,""lon"":-2.8773}}",1,17,1
+taylor_s_crossing_brewing,0,0,245114994688,"{""name"":""Taylor's Crossing Brewing"",""city"":""North Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-984-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1025 Marine Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.3238,""lon"":-123.102}}",1,39,1
+schooner_brewery-downtown_brown,0,0,245003452416,"{""name"":""Downtown Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
+standing_stone_brewing_company-standing_stone_nitro_stout,0,0,245105229824,"{""name"":""Standing Stone Nitro Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""With its dark-roasted coffee aroma, espresso and chocolate flavor, this stout has flaked oats which create a velvety body and a dry finish."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
+stewart_s_brewing-highlander_stout,0,0,245104836610,"{""name"":""Highlander Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stewart_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
+vyturio_alaus_darykla-1784_anniversary_beer,0,0,245745778690,"{""name"":""1784 Anniversary Beer"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vyturio_alaus_darykla"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,13,1
+salopian_brewery,0,0,244993294336,"{""name"":""Salopian Brewery"",""city"":""Shrewsbury"",""state"":""Shropshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01743)-248414"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""67 Mytton Oak Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":52.7069,""lon"":-2.787}}",1,31,1
+pike_pub_and_brewery-xxxxx_stout,0,0,244996571137,"{""name"":""XXXXX Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pike_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+wharf_rat,0,0,245745123329,"{""name"":""Wharf Rat"",""city"":""Baltimore"",""state"":""Maryland"",""code"":""21201"",""country"":""United States"",""phone"":""410-244-8900"",""website"":""http://www.thewharfrat.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""206 W. Pratt St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.2866,""lon"":-76.6182}}",1,9,1
+southern_tier_brewing_co-mokah_imperial_blended_stout,0,0,245112373248,"{""name"":""Mokah Imperial Blended Stout"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""When empirical and creative impulses collide, the result is often timeless. The classic utility-art aesthetic of the coffee maker is an example of design and engineering working in concert. \r\n\r\nIt is through similar cooperation that the simple bitter cocoa bean is transformed into a sweet treat. As scientists, our brewers utilize their materials to exacting standards. As artists, they couldn’t resist the temptation to combine two of our highly acclaimed Blackwater Series Imperial Stouts: Jahva and Choklat. Alone each is perfect, but together as Mokah they are an inimitable expression of two of the world’s most sought after flavors. Enjoy Mokah stout with – or as – your favorite dessert!\r\n11.0% abv • 27º plato • Imperial Stout Brewed with Coffee & Chocolate • 22 oz / 1/6 keg\r\n2-row pale malt • 2-row barley • caramel, chocolate & black malts • roasted barley barley flakes • Jamaican roasted coffee • bittersweet Belgian chocolate • chinook, willamette, cascade & columbus hops"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,33,1
+la_jolla_brewing-little_point_pale,0,0,244741963776,"{""name"":""Little Point Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""la_jolla_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_doppelt_ipa,0,0,244864581634,"{""name"":""Nøgne Ø Doppelt IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in collaboration with brewmaster Toshi Ishii from Yo-Ho Brewing, Japan. \r\n\r\nMalt: lager, münchener, crystal \r\nHops: Millennium, Centennial, Chinnok, Amarillo and Brewers Gold. \r\n\r\n19° P, 100 IBU, 8% ABV."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,18,1
+storm_brewing-hurricane_i_p_a,0,0,245110341632,"{""name"":""HURRICANE I.P.A."",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""“A complex, flavourful and fascinating ale lies just on the edge of being totally out of control.” —Stephan Beaumont, Celebrator Beer News\r\n\r\nIndia Pale Ale dates back to the 1700’s when Britain needed a hearty beer to ship to her troops in India. Because the ships had to cross the equator twice to get there, spoilage was a major problem until some clever brewer realized that both alcohol and hops are natural preservatives. James brews Hurricane I.P.A. in this tradition, and packs it with enough hops and alcohol to survive crossing the orbit of Mercury twice. The grist is 100% Gambrinus premium 2-row barley malt, copiously hopped with fresh Centennial and Willamette. The result is a rich, golden, intense beer with bitterness in perfect balance with residual sweetness."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,28,1
+pug_ryan_s_steakhouse_and_brewery,0,0,245003714561,"{""name"":""Pug Ryan's Steakhouse and Brewery"",""city"":""Dillon"",""state"":""Colorado"",""code"":""80435"",""country"":""United States"",""phone"":""1-970-468-2145"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""104 Village Place""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.6282,""lon"":-106.047}}",1,55,1
+weyerbacher_brewing_company-merry_monks,0,0,245751349248,"{""name"":""Merry Monks"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Merry Monks' Ale is a Belgian style Abby Trippel without limitation. This style was created by Trappist Monks in Belgium over 500 years ago. To be true to the style, Merry Monks' Ale is bottle conditioned. This means we add a bit of sugar and yeast just prior to bottling. This imparts a special effervescence to the beer, a creamier carbonation, and also extends the shelf life. The on-going fermentation inside the bottle will change the character of the beer as it ages, and you'll find it becomes dryer with age. You may want to lay down a few bottles for future evaluation. We suggest storing at cellar temperatures -around 55 degrees F- and away from light.\r\n\r\nWhen you try this beer you're in for a unique treat. The special effervescence and creaminess are immediately apparent when pouring. The Pilsner malts combined with the Belgian yeast strains yield a remarkable and complex flavor- perhaps you'll note subtle hints of fruit or spice. The flavor is nicely balanced and the finish moderate to dry , begging for the next sip.\r\n\r\nYou might ask why we go through all this trouble and expense for just a beer, but one taste and you'll know the Merry Monks' Ale (9.3% ABV) will more than complement any meal it accompanies. Enjoyed best around 48 degrees F, it also makes a fine after-dinner drink."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,52,1
+stone_brewing_co-stone_cali_belgique,0,0,245102477313,"{""name"":""Stone Cali-Belgique"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,10,1
+liefmans_breweries-lucifer,0,0,244754415616,"{""name"":""Lucifer"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""liefmans_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+myanmar_brewery_and_distillery,0,0,244862353408,"{""name"":""Myanmar Brewery and Distillery"",""city"":""Yangon"",""state"":"""",""code"":"""",""country"":""Myanmar"",""phone"":""95-1-636258"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""No. 45, No. 3 Trunk Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":16.7779,""lon"":96.1679}}",1,12,1
+marshall_brewing_company-mcnellie_s_pub_ale,0,0,244880506880,"{""name"":""McNellie's Pub Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""marshall_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,57,1
+paulaner-hacker_pschorr_weisse,0,0,245004959744,"{""name"":""Hacker-Pschorr Weisse"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""paulaner"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
+stone_coast_brewing_portland,0,0,245103198209,"{""name"":""Stone Coast Brewing - Portland"",""city"":""Portland"",""state"":""Maine"",""code"":""4103"",""country"":""United States"",""phone"":""1-207-774-7437"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""23 Rice Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.71,""lon"":-70.305}}",1,11,1
+moose_s_tooth_pub_and_pizzeria,0,0,244870807554,"{""name"":""Moose's Tooth Pub and Pizzeria"",""city"":""Anchorage"",""state"":""Alaska"",""code"":""99503"",""country"":""United States"",""phone"":""(907) 258-2537"",""website"":""http://www.moosestooth.net/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3300 Old Seward Highway""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":61.1902,""lon"":-149.869}}",1,34,1
+minocqua_brewing_company-bohemian_pilsner,0,0,244871200769,"{""name"":""Bohemian Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minocqua_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+russian_river_brewing-beer_esteem,0,0,244996308992,"{""name"":""Beer Esteem"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""If you can't feel good about your beer... what else is worth feeling good about.\""\r\nWe call Beer Esteem a California Common because it is brewed with a lager yeast and it is fermented at warmer ale temperatures. However, Beer Esteem is distinctly different from other California Commons. With a unique hop profile, a lager yeast not typically used for the style, and a \""Russian River\"" twist, Beer Esteem is anything but \""Common.\"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+water_street_lake_country-irish_red,0,0,245744992256,"{""name"":""Irish Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,8,1
+the_church_brew_works-pipe_organ_pale_ale,0,0,245100904449,"{""name"":""Pipe Organ Pale Ale"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""When the British introduced draught pale ale to America, the Pipe Organ Pale Ale is what they had intended. It is truly British in character. Brewed with pale ale malt and a touch of caramel malt, it has a light copper color and subtle body. The maltiness is carefully balanced with only the best English hops - East Kent Goldings. Although this beer has a fair amount of hops, the caramel maltiness perfectly balances its profile."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+samuel_smith_old_brewery_tadcaster-india_ale,0,0,244986413056,"{""name"":""India Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""samuel_smith_old_brewery_tadcaster"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
+rogue_ales-monk_madness_ale,0,0,245005352960,"{""name"":""Monk Madness Ale"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Let us give praise to our maker and glory to his bounty by learning about beer.\"" ~ Friar Tuck \r\nThe debut of Monk Madness began with the Johns Locker Stock draft program before being released to the Rogue Nation in the autumn of 2006 in 22-ounce bottles and kegs. Five layers of malt create a complex, slightly sweet flavor balanced by five different hop varieties. A versatile and robust ale, we recommend pairing this with spicy foods, stong cheeses, and/or with dessert. \r\n\r\nMonk Madness Ale is brewed with 12 ingredients: 2-row Pale, Belgian Munich, Belgian Special B, Weyermann Melonodon, and Amber Malts; Belgian Nobles, Chinook, Amarillo, Centennial, and Summit Hops; along with free-range coastal water and Rogues proproetary PacMan Yeast. Available in 22 ounce bottles and kegs. Note, Monk Madness was not brewed in the winter of 2007-2008 due to shortages of the speciality malts."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,59,1
+thirstybear_brewing-meyer_esb,0,0,245121482753,"{""name"":""Meyer ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+molson_breweries_of_canada-carling,0,0,244877361153,"{""name"":""Carling"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""molson_breweries_of_canada"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+rivertowne_pour_house-melting_pot_pale_ale,0,0,244987723778,"{""name"":""Melting Pot Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""If you liked the Nobleman this one should blow you away! We took malt and hops from around the world to create this International Pale ale! This beer has an incredible amount of hop flavor and the perfect hop bite!"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+taylor_s_restaurant_and_brewery-amber_ale,0,0,245114994689,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,39,1
+schooner_brewery-rainbow_trout_stout,0,0,245003452417,"{""name"":""Rainbow Trout Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,54,1
+steinfels_back_brau-herbstbier,0,0,245105295360,"{""name"":""Herbstbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steinfels_back_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,16,1
+stone_brewing_co-stone_12_anniversery_bitter_chocolate_oatmeal_stout,0,0,245104902144,"{""name"":""Stone 12 Anniversery Bitter Chocolate Oatmeal Stout"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Anniversary Ale this year stems from 2 pilot beers that were brewed by members of Team Stone. The first was Jeremy Moynier’s incredibly delicious Oatmeal Stout, and the second was Jake Ratzke’s amazing homebrewed Imperial Stout that had authentic Oaxacan chocolate added to the boil. We loved both beers so much that we decided to combine the recipes to make this year’s Anniversary offering: Stone 12th Anniversary Bitter Chocolate Oatmeal Stout. This beer pours deep black with a rich brown head of foam. The aroma is dominated by roast malt and cocoa. Upon tasting, the cocoa (we used unsweetened, unprocessed cacao sourced through our friends at Chuao Chocolatier) really comes through with a deep chocolate flavor and a long lasting bitter finish. The roasted grains used add coffee and licorice accents. It is a thick beer, but not sweet, with the addition of oatmeal in the mash providing a rich, silky mouthfeel that adds to the creamy texture.""}",1,15,1
+water_street_lake_country-old_world_oktoberfest,0,0,245745844224,"{""name"":""Old World Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,13,1
+san_diego_brewing-mission_gorge_porter,0,0,244993359872,"{""name"":""Mission Gorge Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh-aventinus_weizen_eisbock,0,0,244996636672,"{""name"":""Aventinus Weizen-Eisbock"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,38,1
+wynkoop_brewing-b3k_schwarzbier,0,0,245745123330,"{""name"":""B3K Schwarzbier"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This German-style black lager has a deep color and gently roasted flavors balanced by an understated hoppiness. A thirst-quenching version of dark beer. A 2008 Great American Beer Festival Gold Medal Winner in the German Schwarzbier category."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,9,1
+speakeasy_ales_and_lagers-big_daddy_ipa,0,0,245112373249,"{""name"":""Big Daddy IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":""No lightweight, Big Daddy I.P.A tips the scales with a huge hop flavor and a clean, dry finish that leaves the scene without a trace."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
+laconner_brewing-laconner_pilsener,0,0,244741963777,"{""name"":""LaConner Pilsener"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""laconner_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,19,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_india_pale_ale,0,0,244864647168,"{""name"":""Nøgne Ø India Pale Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, malty, and very bitter ale. Cascade hops provide a long, fruity, and spicy after-taste. Recommended serving temperature 10°C/50°F. Ideal with barbequed or smoked meat dishes."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
+strangford_lough_brewing_company_ltd-st_patrick_s_gold,0,0,245110341633,"{""name"":""St. Patrick's Gold"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Our smooth yet powerful wheat beer is unusually refreshing on the pallet. Golden in colour, St. Patrick's Gold is brewed with barley and wheat malt. Citrus peel and coriander are added to the Goldings and Saaz hops for a symphony of authentic flavour."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,28,1
+pyramid_ales_brewery-pyramid_apricot_weizen,0,0,245003714562,"{""name"":""Pyramid Apricot Weizen"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_ales_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed by the original Wheat Beer Pioneers, Pyramid Apricot Weizen Ale is left unfiltered for extra flavor and aroma. \r\n\r\nThe gold medalist of fruit beers, Pyramid Apricot Weizen is an adventurous wheat ale that offers the pleasing aroma and flavor of fresh apricots, and smooth and refreshing character for which our wheat beers are known."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,55,1
+wh_brakspear_sons-coniston_bluebird_bitter,0,0,245751414784,"{""name"":""Coniston Bluebird Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wh_brakspear_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,52,1
+stoudt_s_brewery,0,0,245102542848,"{""name"":""Stoudt's Brewery"",""city"":""Adamstown"",""state"":""Pennsylvania"",""code"":""19501"",""country"":""United States"",""phone"":""717-484-4386"",""website"":""http://www.stoudtsbeer.com/brewery.html"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Over 20 years, Stoudt's Brewing Company has grown and evolved from a small brewery with limited draught distribution, to a packaging regional microbrewery with distribution in 10 different states, producing over 10,000 barrels a year. Even with the growth over the years, one thing has always remained constant, and that is the attention to detail that goes into every batch of handcrafted beer that is traditionally brewed, packaged and sold with passion by our small team of hardworking dedicated employees. A tradition that was started by Ed and Carol and will be carried on by their children for many years to come"",""address"":[""2800 North Reading Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.2369,""lon"":-76.072}}",1,10,1
+mad_crab_restaurant_and_brewery-buzz_beer,0,0,244876836864,"{""name"":""Buzz Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mad_crab_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+new_glarus_brewing_company-symposium_eisbock,0,0,244862353409,"{""name"":""Symposium Eisbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,12,1
+mehana_brewing-red_ale,0,0,244880506881,"{""name"":""Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mehana_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
+pennichuck_brewing_company-engine_5,0,0,245004959745,"{""name"":""Engine 5"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+strangford_lough_brewing_company_ltd-legbiter_ale,0,0,245103198210,"{""name"":""Legbiter Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Brilliant golden ale with an inviting citrus fragrance of late added Cascade and Glacier hops. The fine hop and light malt aromas carry through to the palate to give an ale that is full but refreshing, with a clean caramel malt bitter finish."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,11,1
+nicolet_brewing-dark_pilsener,0,0,244870873088,"{""name"":""Dark Pilsener"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nicolet_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+moose_s_tooth_pub_and_pizzeria-fairweather_ipa,0,0,244871200770,"{""name"":""Fairweather IPA"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moose_s_tooth_pub_and_pizzeria"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover and beer connoisseur's favorite, this ale is surprisingly drinkable and fully delights with its hoppy aromatics. Stick your nose in this one."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
+sacramento_brewing_company-sacramento_nut_brown_ale,0,0,244996308993,"{""name"":""Sacramento Nut Brown Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sacramento_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A malty dark ale wtih ale with a chocolate and biscuit like flavor and balanced finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
+yazoo_brewing,0,0,245745057792,"{""name"":""Yazoo Brewing"",""city"":""Nashville"",""state"":""Tennessee"",""code"":""37203"",""country"":""United States"",""phone"":""615-891-4649"",""website"":""http://www.yazoobrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""910 Division St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.151,""lon"":-86.7821}}",1,8,1
+the_livery-laughing_dragon,0,0,245100904450,"{""name"":""Laughing Dragon"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for our friend and patron Tad Eastman, whose Laughing Dragon Tie-Dye studio puts out our fabulous shirts-each one an individual work of art signed by Tad! Reddish Amber in color, this beer has a very bold Chinook hop character."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+san_marcos_brewery_grill-honey_ale,0,0,244986413057,"{""name"":""Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
+rogue_ales-old_crustacean_barleywine_1993,0,0,245005352961,"{""name"":""Old Crustacean Barleywine 1993"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,59,1
+thunderhead_brewery-summer_gueuze,0,0,245121482754,"{""name"":""Summer Gueuze"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,56,1
+nogne_o_det_kompromisslose_bryggeri_a_s,0,0,244877426688,"{""name"":""Nøgne Ø - Det Kompromissløse Bryggeri A/S"",""city"":""Grimstad"",""state"":""Lunde"",""code"":"""",""country"":""Norway"",""phone"":""47-37-25-74-00"",""website"":""http://nogne-o.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Nøgne Ø was created by two home brewers. Unable to stay at home we started Norway's first microbrewery for creative brewing. Some times, when we get a momentary glimpse of sanity, we ask ourselves what we have achieved. We think we can say that we have achieved some level of fame, at least locally and among dedicated beer geeks around the world. But more important - before we started Nøgne Ø most Norwegians did not know much about beer styles like IPA, Porter or Amber. This has for sure started to change, and we do feel that we have contributed to what you can call a renaissance of Norwegian beer-culture. Diversity was one of our main goals - and it does seem like diversity in the world of beers is starting to come back."",""address"":[""Gamle Rygene Kraftstasjon""]}",1,50,1
+rock_art_brewery-ridge_runner_barley_wine,0,0,244987789312,"{""name"":""Ridge Runner Barley Wine"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""“Robust, Dark and Smooth, hold on to your hat cause you’ll lose your feet on this one!” Brewed with pale, dark crystal, Munich, flaked barley, black and chocolate malts. Hops include Cascade, Crystal, Challenger and Perle.""}",1,17,1
+the_alchemist-piston_bitter,0,0,245114994690,"{""name"":""Piston Bitter"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""A full bodied special bitter brewed with British malt and American hops"",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,39,1
+seabright_brewery-pelican_pale,0,0,245003517952,"{""name"":""Pelican Pale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
+stone_brewing_co-vertical_epic_07_07_07,0,0,245105295361,"{""name"":""Vertical Epic 07.07.07"",""abv"":8.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+sweetwater_tavern_centreville-high_desert_imperial_stout,0,0,245104902145,"{""name"":""High Desert Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_tavern_centreville"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,15,1
+weyerbacher_brewing_company-blithering_idiot,0,0,245745844225,"{""name"":""Blithering Idiot"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""At Weyerbacher, we prefer to brew things true to European style guidelines. Consequently our barley wine is on the malty side, yet not overly sweet. Notes of date or perhaps fig on the palate follow a pleasurably malty aroma to your taste buds. The finish is warm and fruity, and begs for the next sip.\r\n\r\nEnjoy Blithering Idiot in a brandy snifter or wine glass, preferably in front of the fire, or accompanying a literary classic. This is the finest life has to offer and should be treated as such. Moments of reflection make all the toil worthwhile, and Blithering Idiot is for moments like these. Share it with your family over the holiday dinner. Lay a few down, aging only helps a barley wine develop more class. At 11.1 % ABV (alcohol by volume) this fine ale will keep for years. Our expected maximum shelf-life is 2 to 3 years. Although it might see a decade, beyond the 3rd year most barley-wines have a tendency to decrease in complexity, so don't wait too long"",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,13,1
+sand_creek_brewing_company-oderbolz_bock,0,0,244993359873,"{""name"":""Oderbolz Bock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,31,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh-aventinus_weizenstarkbier_doppel_weizen_bock,0,0,244996702208,"{""name"":""Aventinus Weizenstarkbier / Doppel Weizen Bock"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark-ruby, almost black-colored and streaked with fine top-fermenting yeast, this beer has a compact and persistent head. This is a very intense wheat doppelbock with a complex spicy chocolate-like arome with a hint of banana and raisins. On the palate, you experience a soft touch and on the tongue it is very rich and complex, though fresh with a hint of caramel. It finishes in a rich soft and lightly bitter impression."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,38,1
+wynkoop_brewing-obamanator_maibock,0,0,245745188864,"{""name"":""Obamanator Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,9,1
+steinfels_back_brau-huusbier,0,0,245112373250,"{""name"":""Huusbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steinfels_back_brau"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+little_apple_brewing-wildcat_wheat,0,0,244864778240,"{""name"":""Wildcat Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""little_apple_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+northwoods_brewpub_grill-whitetail_wheat,0,0,244864647169,"{""name"":""Whitetail Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+thirsty_dog_brewing-barktoberfest,0,0,245110407168,"{""name"":""Barktoberfest"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A traditional old world German Oktoberfest made with German grains, yeast and hops."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,28,1
+rch_brewery-ale_mary,0,0,245003780096,"{""name"":""Ale Mary"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rch_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+wild_onion_brewing-jack_stout,0,0,245751414785,"{""name"":""Jack Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_onion_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,52,1
+strangford_lough_brewing_company_ltd-barelegs_brew,0,0,245102542849,"{""name"":""Barelegs Brew"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""strangford_lough_brewing_company_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden with a hint of red (towards sunset). Barelegs tastes of fresh fruit, especially red current and malt fragrance. Full drinking with a subtle hoppy finish. Refreshing for a beer of this strength."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,10,1
+magic_hat-wacko,0,0,244876902400,"{""name"":""Wacko"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""magic_hat"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer truly defies style. A portion of the fermentable sugars that make up this beer come from beet sugar. Real beet extract is used which gives the beer a beautiful light red color. It’s body is inviting and the taste is smooth. Hops are barely perceivable and are there to balance out the sweetness from the malt."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,49,1
+new_glarus_brewing_company-totally_naked,0,0,244862353410,"{""name"":""Totally Naked"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Pure and crisp this is a beer with nothing to hide. Wisconsin two-row barley malt ensures a mellow and smooth body. We imported Noble Hop varieties from Germany and the Czech Republic to ensure a fine mature aroma with no coarse bitterness. Expect this beer to pour a delicate golden hue that sparkles in the summer sun. This lager is brewed using all natural ingredients with no artificial additives of any kind. Kick back, relax and enjoy the simple unadorned flavor. This is beer at its most basic."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+millrose_brewing-wheat_honey_ale,0,0,244880572416,"{""name"":""Wheat Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""millrose_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
+portsmouth_brewery,0,0,245004959746,"{""name"":""Portsmouth Brewery"",""city"":""Portsmouth"",""state"":""New Hampshire"",""code"":""3801"",""country"":""United States"",""phone"":""1-603-431-1115"",""website"":""http://www.portsmouthbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Portsmouth Brewery, New Hampshire's first brewpub, was founded in 1991, four years after its sister company, the Northampton Brewery, opened in Western Massachusetts. Peter Egelston, Head Brewer in Northampton from 1987 until 1991, moved to Portsmouth to set up the new brewery here. (Egelston is now the sole proprietor of the Brewery.) The brewing system consists of a custom made seven-barrel (210 gallons) JV Northwest brewhouse, two fourteen-barrel and three seven-barrel JV Northwest unitank (cylindroconical) fermenters, two fourteen-barrel horizontal fermenters (added later, in 1994), and twelve seven-barrel grundy cellar tanks. Originally, the Portsmouth Brewery opened with beer recipes from Northampton - Pale Ale, Old Brown Dog, Weizenheimer, Black Cat Stout, Blonde Ale, Golden and Amber Lagers - and these still comprise the core of the Brewery's full-time beers today. However, over the years, successive brewers have contributed many outstanding seasonal and specialty beers to the list. Head Brewer Tod Mott arrived in late 2003, bringing with him is award-winning ways and oursized personality. All of the beers served at the Portsmouth Brewery are brewed right here on premise, with the exception of those beers, such as Shoals Pale Ale and Portsmouth Lager, brewed at Smuttynose Brewing Company, our sister company. --http://www.portsmouthbrewery.com/htmlpages.portsmouth/beerlist.html"",""address"":[""56 Market Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.0781,""lon"":-70.7575}}",1,58,1
+sudwerk_privatbrauerei_hbsch-doppelbock,0,0,245103263744,"{""name"":""Doppelbock"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sudwerk_privatbrauerei_hbsch"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,11,1
+north_country_brewery-station_33_firehouse_red,0,0,244870873089,"{""name"":""Station 33 Firehouse Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This red is a rich, malty, ruby-colored ale with a smooth finish."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,34,1
+murphy_s_wagon_wheel-american_pilsner,0,0,244871266304,"{""name"":""American Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""murphy_s_wagon_wheel"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+saint_louis_brewery_schlafy_tap_room-schlafly_smoked_porter,0,0,244996308994,"{""name"":""Schlafly Smoked Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+thunderhead_brewery-chinook_amber,0,0,245100969984,"{""name"":""Chinook Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,7,1
+shipyard_brewing_portland-pumpkinhead_ale,0,0,244986478592,"{""name"":""Pumpkinhead Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipyard_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,14,1
+roy_pitz_brewing_company-ichabod_s_midnight_ride,0,0,245005352962,"{""name"":""Ichabod's Midnight Ride"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian style pumpkin ale was inspired by the legendary midnight ride of Ichabod Crane. It is a Belgian style ale complimented by a light touch of pumpkin and spice. Fresh toasted pumpkins are added in the mash with the grains adding a touch of the season to the brew. The complex fruitiness and dryness of the yeast is enhanced by the addition of sugars during fermantation. The beer is lightly spiced with pumpkin spice, all spice, and brown sugar. The pale and toasted malts used, provide a pie crust taste and smell in the beer as the higher alcohol's produced round out the finish."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,59,1
+titletown_brewing-red_lager,0,0,245121548288,"{""name"":""Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,56,1
+olde_main_brewing-mild_brown,0,0,244877426689,"{""name"":""Mild Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
+rogue_ales-old_crustacean_barleywine_1996,0,0,244987789313,"{""name"":""Old Crustacean Barleywine 1996"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+three_needs_brewery_and_taproom,0,0,245114994691,"{""name"":""Three Needs Brewery and Taproom"",""city"":""Burlington"",""state"":""Vermont"",""code"":""5401"",""country"":""United States"",""phone"":""1-802-658-0889"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Freshly-brewed self and local beers, as well as a small but decent selection of beers on tap. Red felt pool table in the back, and friendly barstaff."",""address"":[""207 College Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.4771,""lon"":-73.2115}}",1,39,1
+second_street_brewery-second_street_ipa,0,0,245003517953,"{""name"":""Second Street IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""second_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,54,1
+stoudt_s_brewery-stoudt_s_gold_lager,0,0,245105360896,"{""name"":""Stoudt's Gold Lager"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stoudt_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Stoudt's Gold Lager is widely recognized as one of the finest German-style beers brewed in America. Brewed with the finest specialty malts and noble hops, this light bodied, easy drinking lager features a subtle balance of sweet malt and clean crisp hops."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+tailgate_beer-tailgate_brown_ale,0,0,245104902146,"{""name"":""Tailgate Brown Ale"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""This is your solution to the same ol' ho hum brown ale you drink all the time. This ale might be dark and intimidating in a glass, yet the first sip proves to be a surprisingly refreshing assault on your taste buds. Complex blends of chocolate and roasted oats complement the essence of bittering hops, and sweet malts. The balanced combination makes this full flavored ale one to be enjoyed in any occasion."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
+yuksom_breweries-yeti_special_export,0,0,245745909760,"{""name"":""Yeti Special Export"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuksom_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,13,1
+sanford_s_grub_and_pub-red_line_amber,0,0,244993425408,"{""name"":""Red Line Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sanford_s_grub_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,31,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh-hopfen_weisse,0,0,244996702209,"{""name"":""Hopfen Weisse"",""abv"":8.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""private_weissbierbrauerei_g_schneider_sohn_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Schneider & Brooklyner Hopfen-Weisse is a collaboration between brewmasters Hans-Peter Drexler of the Schneider Weissbier Brewery and Garrett Oliver of the Brooklyn Brewery. Garrett and Hans-Peter have long admired each others beers. Now together they bring you a new sensation, a pale weissbock robustly dry-hopped with the Hallertauer Saphir variety grown in the fields near the Schneider brewery. Hoppy, zesty and supremely refreshing, Scheider & Brooklyner Hopfen-Weisse is a delicious blend of Bavarian craftsmanship and American ingenuity."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
+yegua_creek_brewing_dallas-blueberry_blonde,0,0,245745188865,"{""name"":""Blueberry Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,9,1
+stevens_point_brewery-special_beer,0,0,245112438784,"{""name"":""Special Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,33,1
+mercury_brewing_company-ipswich_original_ale,0,0,244864843776,"{""name"":""Ipswich Original Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named one of the World's Ten Best Beers by Wine Spectator Magazine, Ipswich Ale has satisfied discerning craft beer drinkers since 1991. A North Shore classic, Ipswich Ale is a medium-bodied, unfiltered English style pale ale with subtle hoppiness and a smooth malty flavor."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
+oaken_barrel_brewing-snake_pit_porter,0,0,244864712704,"{""name"":""Snake Pit Porter"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
+thirsty_dog_brewing-maibark,0,0,245110407169,"{""name"":""Maibark"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Golden, easy drinking, traditional example of Maibock. All German grains, yeast and hops."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,28,1
+richbrau_brewing_company-big_nasty_porter,0,0,245003780097,"{""name"":""Big Nasty Porter"",""abv"":6.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark brown porter has more bark than bite. It is actually fairly sweet and fruity with a nutty/chocolate flavor as well. Highly recommended."",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
+yakima_brewing_and_malting_grant_s_ales,0,0,245751414786,"{""name"":""Yakima Brewing and Malting / Grant's Ales"",""city"":""Yakima"",""state"":""Washington"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":46.6021,""lon"":-120.506}}",1,52,1
+tabernash_brewing-golden_pale,0,0,245102542850,"{""name"":""Golden Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+maui_brewing_co-maui_coconut_porter,0,0,244876902401,"{""name"":""Maui Coconut Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""maui_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Coconut Porter is a classic robust porter spiced with all natural toasted coconut. It is black in color and crowned with a creamy, dark tan head. It begins with a malty-toasted coconut aroma followed by a rich, silky feel with tastes of dark malt, chocolate, and hints of coffee. It then finishes with flavors of toasted coconut and hoppy spice to balance the finish."",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
+new_zealand_breweries_limited,0,0,244862418944,"{""name"":""New Zealand Breweries Limited"",""city"":"""",""state"":"""",""code"":"""",""country"":""New Zealand"",""phone"":"""",""website"":""http://www.steinlager.co.nz/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,12,1
+nethergate_brewery_co_ltd,0,0,244880572417,"{""name"":""Nethergate Brewery Co Ltd"",""city"":""Pentlow"",""state"":""Essex"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01787)-283220"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Street""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":52.081,""lon"":0.6559}}",1,57,1
+raccoon_lodge_and_brewpub_cascade_brewing-bad_billy_blond_bock,0,0,245005025280,"{""name"":""Bad Billy Blond Bock"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Blond Bock is gold in color and features a malty profile and a spicy finish courtesy of Saaz hops. This beer boasts the flavor of a traditional Bock without the cloying aftertaste."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,58,1
+the_alchemist-pappy_s_porter,0,0,245103263745,"{""name"":""Pappy's Porter"",""abv"":5.42,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark mahogany ale has agreat and delicious malt depth, yet is balanced with supple, energizing bitterness."",""style"":""Porter"",""category"":""Irish Ale""}",1,11,1
+oak_creek_brewery-doc_s_pale_ale,0,0,244870873090,"{""name"":""Doc's Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oak_creek_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
+nodding_head_brewpub-wee_heavier,0,0,244871266305,"{""name"":""Wee Heavier"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nodding_head_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,35,1
+san_marcos_brewery_grill-caber_tossed,0,0,244996374528,"{""name"":""Caber Tossed"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+titletown_brewing-czech_mate_pilsner,0,0,245100969985,"{""name"":""Czech Mate Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+shmaltz_brewing_company-genesis,0,0,244986478593,"{""name"":""Genesis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shmaltz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
+rubicon_brewing,0,0,245005418496,"{""name"":""Rubicon Brewing"",""city"":""Sacramento"",""state"":""California"",""code"":""95814"",""country"":""United States"",""phone"":""1-916-448-7032"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2004 Capitol Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.5731,""lon"":-121.481}}",1,59,1
+titletown_brewing-saison,0,0,245121548289,"{""name"":""Saison"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,56,1
+olde_peninsula_brewpub_and_restaurant-sunset_red,0,0,244877426690,"{""name"":""Sunset Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
+rowland_s_calumet_brewery,0,0,244987789314,"{""name"":""Rowland's Calumet Brewery"",""city"":""Chilton"",""state"":""Wisconsin"",""code"":""53014"",""country"":""United States"",""phone"":""1-920-849-2534"",""website"":""http://rowlandsbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""25 North Madison St""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.0291,""lon"":-88.1629}}",1,17,1
+tied_house_cafe_brewery_san_jose-oatmeal_stout,0,0,245115060224,"{""name"":""Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,39,1
+simmerberg_brusttt_und_taferne-festbier,0,0,245003517954,"{""name"":""Festbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,54,1
+sturgeon_bay_brewing-highway_to_helles,0,0,245105360897,"{""name"":""Highway to Helles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+thirsty_dog_brewing-dierdorfer_gold,0,0,245104967680,"{""name"":""Dierdorfer Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+seabright_brewery,0,0,244993490944,"{""name"":""Seabright Brewery"",""city"":""Santa Cruz"",""state"":""California"",""code"":""95062"",""country"":""United States"",""phone"":""1-408-426-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""519 Seabright Avenue #107""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":36.9676,""lon"":-122.008}}",1,31,1
+raccoon_lodge_and_brewpub_cascade_brewing-old_salt_ipa,0,0,244996702210,"{""name"":""Old Salt IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Our India Pale Ale is hoppy and bitter with a nice sweet malt finish. Slow dry-hop conditioning brings out the herbal hop aromas."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+surly_brewing-furious_beer,0,0,245112438785,"{""name"":""Furious Beer"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""surly_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Like Hops? You'll like this fire-hued beer. This is the beer I have always dreamed of making. This is the beer that would come to mind while spending the last two years tearing down walls, hanging sheetrock, moving kegs, power washing the ceilings, arguing with various agencies, and cutting the water main. \r\n\r\nWithout Golden Promise malt, made by family-owned Simpsons Malt, Furious would just be pissed off-ed. From Scotland, this malt is still produced in the tradition of turning over the barley by hand, resulting in a malt that is unsurpassed in its quality. Golden Promise is also used extensively by premium whisky distilleries such as The Macallan. This malt provides the backbone for the intense hop character. Four American hop varieties are used at a rate of over three pounds per barrel. The result is a rich malt sweetness infused with bright hop flavor and aroma from beginning to end. Oh yeah, it's about 6% alcohol and around 100 IBUs."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,33,1
+mercury_brewing_company-ipswich_summer,0,0,244864843777,"{""name"":""Ipswich Summer"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mercury_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A light-bodied, unfiltered Blonde ale that retains the bold flavors typical of an Ipswich Ale, our Summer Ale is light enough for a hot summer day and can satisfy even the most scorching thirst."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,19,1
+old_hat_brewery-red_lager,0,0,244864712705,"{""name"":""Red Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_hat_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+thirsty_dog_brewing-rasberry_ale,0,0,245110407170,"{""name"":""Rasberry Ale"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The inviting flavor and aroma of freshly picked raspberries is naturally infused in this unique, refreshing fruit beer. Raspberry Ale is brewed in the typical Thirsty Dog fashion, full of flavor and uninhibited"",""style"":""Fruit Beer"",""category"":""Other Style""}",1,28,1
+rivertowne_pour_house-shepard_s_crook_scotish_ale,0,0,245003780098,"{""name"":""Shepard's Crook Scotish Ale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rivertowne_pour_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Medium in body, brown in color, this ale is delightfully malty with complex caramel overtones lending to the smoothest finish you will ever experience! Don’t be afraid of the dark and try this deceptive delight!!!"",""style"":""Scotch Ale"",""category"":""British Ale""}",1,55,1
+tenaya_creek_restaurant_and_brewery-india_pale_ale,0,0,245102608384,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tenaya_creek_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,10,1
+mendocino_brewing_hopland,0,0,244876967936,"{""name"":""Mendocino Brewing - Hopland"",""city"":""Hopland"",""state"":""California"",""code"":""95449"",""country"":""United States"",""phone"":""1-707-744-1361"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13351 Highway 101""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.9734,""lon"":-123.116}}",1,49,1
+nor_wester_brewery_and_public_house-raspberry_weizen,0,0,244862418945,"{""name"":""Raspberry Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nor_wester_brewery_and_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,12,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_wit,0,0,244880637952,"{""name"":""Nøgne Ø Wit"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""This Belgian Ale is what you could call a wit with an attitude. We are generous with all our ingredients - including both orange peel and coriander. This does not stop this ale from being a good companion with seafood dishes."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,57,1
+red_oak_brewery-hummin_bird,0,0,245005025281,"{""name"":""Hummin Bird"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_oak_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Hummin' Bird is a Light Lager or Hell (Helles) similar to those found throughout Bavaria. We use carefully selected Pilsner Malt…then it is delicately hopped with imported Tettnang Noble Hops. Then we add a proprietary lager yeast strain which is not filtered out providing ones daily supply of vitamin B. Hummin' Bird is slow-cold aged for over one month resulting in a lush mouth feel."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,58,1
+the_church_brew_works-celestial_gold,0,0,245103263746,"{""name"":""Celestial Gold"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""This beer is golden in color with a light bubbly effervescence. The light body makes this lager beer appropriate for a business lunch or your evening sipping beer. The light malt flavor also accentuates the hop flavor. From the start, you will notice a fine hop aroma. As you sip the Celestial Gold, the subdued maltiness blends with a slight hop flavor. When this beer finishes, you will notice a pleasant hop bitterness. The bitterness will be mild and quite appropriate. Celestial Gold has been known to induce Celestial bliss."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,11,1
+oaken_barrel_brewing-indiana_amber,0,0,244870938624,"{""name"":""Indiana Amber"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oaken_barrel_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
+nogne_o_det_kompromisslose_bryggeri_a_s-nogne_o_porter,0,0,244871266306,"{""name"":""Nøgne Ø Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nogne_o_det_kompromisslose_bryggeri_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":""In this quite dark ale, dark malts provide flavors of coffee and dried fruit. Recommended serving temperature 10°C/50°F. Try with dark chocolate, cheese, or red meat dishes."",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
+schlossbru-spezial,0,0,244996374529,"{""name"":""Spezial"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+tomos_watkin_and_sons_ltd-osb_premium_ale,0,0,245100969986,"{""name"":""OSB Premium Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tomos_watkin_and_sons_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,7,1
+sierra_nevada_brewing_co-sierra_nevada_kellerweis,0,0,244986544128,"{""name"":""Sierra Nevada Kellerweis"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,14,1
+russell_brewing-special_lager,0,0,245005418497,"{""name"":""Special Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+titletown_brewing,0,0,245121613824,"{""name"":""Titletown Brewing"",""city"":""Green Bay"",""state"":""Wisconsin"",""code"":""54303"",""country"":""United States"",""phone"":""1-920-437-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""200 Dousman Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.52,""lon"":-88.0173}}",1,56,1
+on_tap_bistro_brewery-hazy_daze_hefeweizen,0,0,244877492224,"{""name"":""Hazy Daze Hefeweizen"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""on_tap_bistro_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
+saint_somewhere_brewing_company,0,0,244987854848,"{""name"":""Saint Somewhere Brewing Company"",""city"":""Tarpon Springs"",""state"":""Florida"",""code"":""34689"",""country"":""United States"",""phone"":""813-503-6181"",""website"":""http://www.saintsomewherebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Saint Somewhere is a small batch brewery, located in Tarpon Springs, Florida. We specialize in traditionally brewed, hand crafted Belgian Style Ales. Our first offerings are... Saison Athene , a bottle conditioned Saison with a spicy and moderately hoppy profile true to the traditions of the farmhouse ales of Wallonia. Lectio Divina, brewed in the spirit of the abbey ales of Belgium. Brewed with the same care and attention to the Art of Brewing that is practiced in the monastic breweries of Belgium. Pays du Soleil, brewed with palmetto berries and hibiscus should be out this fall!"",""address"":[""1441 Savannah Ave Unit E""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":28.1646,""lon"":-82.7717}}",1,17,1
+timmermans,0,0,245115060225,"{""name"":""Timmermans"",""city"":""Itterbeek"",""state"":"""",""code"":""1701"",""country"":""Belgium"",""phone"":""3225690357"",""website"":""http://www.anthonymartin.be/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Timmermans brews only traditional Lambic; the basic beer that, from spontaneous fermentation, is used throughout the entire range. Brewing Lambic, without adding yeast, is a complex and subtle art requiring recipes and patience passed on by the family. Lambics survive thanks to a handful of Brussels breweries and the presence of two micro-organisms that exist only in the Senne Valley: Brettanomyces Bruxellensis and Brettanomyces Lambicus. By adding fruit and spices, the magic of traditionallymade beers unravels: Strawberry, Kriek, Pêche, Framboise, Forest Fruit, but also Oude Gueuze, Kriek Retro, Gueuze, Faro or Lambicus Blanche. A unique site: open daily (including weekends), booking required. Possibilities for your meetings and banquets."",""address"":[""Kerkstraat 11""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":50.8399,""lon"":4.2475}}",1,39,1
+skagit_river_brewing-red_card_lager,0,0,245003517955,"{""name"":""Red Card Lager"",""abv"":6.65,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+sturgeon_bay_brewing-lighthouse_amber_lager,0,0,245105360898,"{""name"":""Lighthouse Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,16,1
+three_floyds_brewing-alpha_king_pale_ale,0,0,245104967681,"{""name"":""Alpha King Pale Ale"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Big American Pale Ale with citrusy aroma- a hop lover’s cult beer and Three Floyds’ flagship beer Brewed with Cenntennial, Cascade & Warrior Hops"",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
+slab_city_brewing-esker_alt,0,0,244993490945,"{""name"":""Esker Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slab_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,31,1
+richbrau_brewing_company-santa_s_little_helper_witbier,0,0,244996702211,"{""name"":""Santa's Little Helper Witbier"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""We brewed this pleasantly aromatic wheat beer with the addition of bitter orange peel, coriander and a Belgian Abbey ale yeast strain. This beer is unfiltered and its flavor is tart but sweet and perfumey."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,38,1
+the_livery-maillot_jaune,0,0,245112504320,"{""name"":""Maillot Jaune"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Maillot Jaune, or \""Yellow Shirt\"", is named for the jersey of honor given to the leader of the Tour De France bicycle race held every July. American Lance Armstrong is the only person in history to wear the Maillot Jaune 7 times in a row! Golden in color and blessed with a kiss of hop bitterness, this ale is also available barrel aged. Steve swears that he does not use any performance enhancing drugs in the production of this beer!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,33,1
+mickey_finn_s_brewery-five_springs_oatmeal_stout,0,0,244864843778,"{""name"":""Five Springs Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mickey_finn_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
+otter_creek_brewing_wolaver_s_organic_ales-white_sail,0,0,244864712706,"{""name"":""White Sail"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""White Sail is a Belgian-style white beer, craft brewed with wheat, malted barley, hops, and a little bit of coriander and orange peel. It is mild yet flavorful, with fruity undertones and a haze from the yeast and wheat. This ale is delicious on its own, or with a slice of orange."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,18,1
+thunderhead_brewery_2-amber_ale,0,0,245110472704,"{""name"":""Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
+rock_bottom_restaurant_brewery_milwaukee-barleywine,0,0,245003780099,"{""name"":""Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_milwaukee"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+terrapin_beer_company-the_iron_tankard,0,0,245102608385,"{""name"":""The Iron Tankard"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Brew 1 – March – “The Iron Tankard” Old Stock Ale – The building started as a YMCA in 1889 and had a huge iron swimming pool in the basement.\r\n\r\nFrom Spike: Iron Tankard “Old Stock Ale” is the first of four beers in Terrapin’s Georgia Theatre Sessions. It is brewed with a generous portion of crystal malts for a full body and is lightly hopped. This malt forward beer has flavors of dark dried fruit, mellow alcoholic warmth and is unfiltered for your listening pleasure.\r\n\r\nA portion of the proceeds will be donated to the Georgia Historic Trust for Historic Preservation Fund to rebuild the Georgia Theater. To make things even more interesting, there is one Golden Ticket hidden among each of the Georgia Theater Sessions brews. This means that four lucky winners will receive a lifetime pass to the new Theater."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,10,1
+michigan_brewing,0,0,244876967937,"{""name"":""Michigan Brewing"",""city"":""Webberville"",""state"":""Michigan"",""code"":""48892"",""country"":""United States"",""phone"":""1-517-521-3600"",""website"":""http://www.michiganbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1093 Highview Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.6616,""lon"":-84.1946}}",1,49,1
+north_country_brewery-creamation_ale,0,0,244862418946,"{""name"":""Creamation Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_country_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""This style of beer is light to medium in body (mouth-feel) with very little hop character. The brewer says “a good beer to try if you’re a Northern Lite drinker”"",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,12,1
+northwest_brewwrks-kirkland_ale,0,0,244880637953,"{""name"":""Kirkland Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwest_brewwrks"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
+river_west_brewing-red_fox_amber,0,0,245005090816,"{""name"":""Red Fox Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,58,1
+the_lost_abbey-avant_garde,0,0,245103329280,"{""name"":""Avant Garde"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""From the French word “Garde” meaning something worth keeping, this Biere de Garde styled Farmhouse Ale is a most delicious companion to a loaf of freshly baked bread from the oven. Grab a seat on the porch, some soft cheese and a tree ripened apple from your grandmother’s old orchard. Relax and watch the evening arrive as the afternoon sun is consumed by the illuminating moon over the gardens. We brewed Avant Garde for you, our friends and families. Here’s to things worth guarding over."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,11,1
+pabst_brewing_company-piels_light,0,0,244870938625,"{""name"":""Piels Light"",""abv"":3.79,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pabst_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Over a century of brewing skill, along with the finest ingredients obtainable, has resulted in a beer unique for its balance of lightness and delicious flavor."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,34,1
+old_dominion_brewing_co-hop_mountain,0,0,244871266307,"{""name"":""Hop Mountain"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""old_dominion_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+schlossbru-stout,0,0,244996374530,"{""name"":""Stout"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlossbru"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,37,1
+tuppers_hop_pocket_ale,0,0,245101035520,"{""name"":""Tuppers Hop Pocket Ale"",""city"":""Bethesda"",""state"":""Maryland"",""code"":""20817"",""country"":""United States"",""phone"":""1-301-229-2027"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""6404 Redwing Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.9735,""lon"":-77.1272}}",1,7,1
+skagit_river_brewing-navidad,0,0,244986544129,"{""name"":""Navidad"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,14,1
+schlobrauerei_reckendorf-weissbier,0,0,245005418498,"{""name"":""Weissbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,59,1
+tyranena_brewing-bitter_woman_in_the_rye,0,0,245121613825,"{""name"":""Bitter Woman in the Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,56,1
+otto_s_pub_and_brewery-otto_s_hefeweizen,0,0,244877492225,"{""name"":""Otto's Hefeweizen"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otto_s_pub_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A south German style wheat ale. This beer is served traditionally cloudy due to the suspended yeast (hefe=yeast). Strong spicy clove flavors and light banana esters are characteristics of a different yeast strain we are trying."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,50,1
+sea_dog_brewing_company,0,0,244987854849,"{""name"":""Sea Dog Brewing Company"",""city"":""Bangor"",""state"":""Maine"",""code"":""4401"",""country"":""United States"",""phone"":""207.947.8009"",""website"":""http://www.seadogbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Today, Sea Dog Brewing Company operates brew pubs in two locations. The Sea Dog in Topsham occupies a scenic spot on the Androscoggin River. The Bangor location overlooks the historic Penobscot River. Both locations serve a full menu of handcrafted ales and creative pub fare with a flair. Being authentic is important to us. Our beers are brewed in a traditional style using only the highest quality ingredients like imported English two-row malted barley and British top-fermenting yeast. Our English brewing style results in brews with a distinctive, refreshing taste and crisp finish unique to top-fermented beers."",""address"":[""26 Front Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.7974,""lon"":-68.77}}",1,17,1
+tyskie_browary_ksiazece,0,0,245115125760,"{""name"":""Tyskie Browary Książęce"",""city"":""Tychy"",""state"":"""",""code"":"""",""country"":""Poland"",""phone"":""48-32-327-81-00"",""website"":""http://www.tyskie.pl/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Mikolowska 5""]}",1,39,1
+sly_fox_brewhouse_and_eatery_royersford-phoenix_pale_ale,0,0,245120630784,"{""name"":""Phoenix Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,54,1
+sullivan_s_black_forest_brew_haus_grill-grateful_red,0,0,245105426432,"{""name"":""Grateful Red"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Making Jerry proud with an amber ale that's slightly malty and very tasty."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
+titletown_brewing-belgian_trippel,0,0,245104967682,"{""name"":""Belgian Trippel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+sleeman_brewing_malting,0,0,244993490946,"{""name"":""Sleeman Brewing & Malting"",""city"":""Guelph"",""state"":""Ontario"",""code"":""0"",""country"":""Canada"",""phone"":""1-519-822-1834"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""551 Clair Road West""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.487,""lon"":-80.2068}}",1,31,1
+rio_salado_brewing-thunderhead_schwarz_bier,0,0,244996767744,"{""name"":""Thunderhead Schwarz Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rio_salado_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,38,1
+thirsty_dog_brewing-irish_setter_red_ale,0,0,245112504321,"{""name"":""Irish Setter Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirsty_dog_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
+middle_ages_brewing-black_heart_stout,0,0,244864909312,"{""name"":""Black Heart Stout"",""abv"":6.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""middle_ages_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Generous portions of roasted barley, black and chocolate malts which leave \""coffee\"" overtones lingering on the palate."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
+park_city_brewing-steamer,0,0,244987985920,"{""name"":""Steamer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""park_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+trap_rock_restaurant_and_brewery,0,0,245110472705,"{""name"":""Trap Rock Restaurant and Brewery"",""city"":""Berkeley Heights"",""state"":""New Jersey"",""code"":""7922"",""country"":""United States"",""phone"":""1-908-665-1755"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""279 Springfield Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6892,""lon"":-74.4349}}",1,28,1
+rock_bottom_restaurant_brewery_minneapolis-stillwater_stout,0,0,245003845632,"{""name"":""Stillwater Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
+third_street_ale_works,0,0,245102673920,"{""name"":""Third Street Ale Works"",""city"":""Santa Rosa"",""state"":""California"",""code"":""95404"",""country"":""United States"",""phone"":""1-707-523-3060"",""website"":""http://www.thirdstreetaleworks.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""610 Third Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.4398,""lon"":-122.713}}",1,10,1
+midnight_sun_brewing_co-la_maitresse_du_moine,0,0,244876967938,"{""name"":""La Maitresse du Moine"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Dark and strong as the style implies, La Maitresse du Moine dances across the palate with complexity and mystery--just as the Northern Lights move across the night sky, delighting the senses and enlightening the mind.\r\n\r\nIn the tradition of monks who have devoutly brewed beers of character and strength for centuries, La Maitresse du Moine Dark Strong Ale reflects the passion and dedication required to create a beer this heavenly. This Mistress of the Monk is seductive, pensive and intriguing. We say it in French: La Maitresse du Moine."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,49,1
+oggi_s_pizza_and_brewing_vista-ding_ding_double_ipa,0,0,244862484480,"{""name"":""Ding Ding Double IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""oggi_s_pizza_and_brewing_vista"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
+o_gara_s_bar_grill-light_amber_ale,0,0,244880637954,"{""name"":""Light Amber Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""o_gara_s_bar_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
+rogue_ales-half_e_weizen,0,0,245005090817,"{""name"":""Half-E-Weizen"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Half-e-Weizen (formerly Mo Ale), was inspired by, and dedicated to, Mo and Dutch Niemi, real people inspiring a real product. Mo was a restaurateur and raconteur whose clam chowder is world-famous; Dutch a leader by example for coastal fisherman. Together their spirit indelibly shapes the daily lives of the Newport, OR waterfront.\r\n\r\nHalf-e-Weizen is a refreshing, unfiltered fusion of wheat and Northwest Harrington malts, coriander, ginger, and Saaz hops in the Belgium style. Half-e-Weizen is available in the classic 22-ounce bottle and on draft."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,58,1
+titletown_brewing-the_400_honey_ale,0,0,245103329281,"{""name"":""The \""400\"" Honey Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+pete_s_brewing-pete_s_wicked_strawberry_blonde,0,0,244994473984,"{""name"":""Pete's Wicked Strawberry Blonde"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pete_s_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Pete's Wicked Strawberry Blonde is truly a unique beer experience. Reward yourself with our golden lager made of the finest pale and wheat malts and Cluster Hops, with a kiss of natural strawberry flavor."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,34,1
+pacific_coast_brewing-imperial_stout,0,0,244994867200,"{""name"":""Imperial Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_coast_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+schooner_brewery-dunkelweizen,0,0,244996374531,"{""name"":""Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schooner_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+tustin_brewing-old_town_ipa,0,0,245101035521,"{""name"":""Old Town IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tustin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
+south_shore_brewery-honey_pilsner,0,0,245104246784,"{""name"":""Honey Pilsner"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
+sierra_nevada_brewing_co-stout,0,0,245005484032,"{""name"":""Stout"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nCreamy, malty, and full-bodied, the Sierra Nevada Stout is satisfyingly rich. Caramel and Black malts give the Stout its deep, dark color and pronounced roasted flavor. \r\n\r\n“Sierra Nevada Stout is admirable from nose to finish, with notes of malty sweetness to the palate but plenty of bitterness available to set up a stimulating counterpoint.”\r\n\r\n– Christopher Finch, A Connoisseur’s Guide \r\nto the World’s Best Beer\r\n\r\nGOLD MEDAL WINNER\r\nCalifornia State Fair (Stout, Sweet & Foreign: 2000)"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
+unionsbru_haidhausen-unimator,0,0,245121679360,"{""name"":""Unimator"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unionsbru_haidhausen"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,56,1
+pacific_beach_brewhouse-sunset_red,0,0,244877492226,"{""name"":""Sunset Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pacific_beach_brewhouse"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
+seabright_brewery-brew_ribbon,0,0,244987920384,"{""name"":""Brew Ribbon"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
+uerige_obergrige_hausbrauerei,0,0,245115125761,"{""name"":""Uerige Obergrige Hausbrauerei"",""city"":""Dsseldorf"",""state"":""Nordrhein-Westfalen"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)211-/-86699-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Bergerstrae 1""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":51.225,""lon"":6.7722}}",1,39,1
+smuttynose_brewing_co-portsmouth_lager,0,0,245120696320,"{""name"":""Portsmouth Lager"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Named in honor of our hometown’s 375th anniversary, Smuttynose Portsmouth Lager is a full-flavored, medium bodied continental-style beer - deep golden in color, featuring a mouth-pleasing maltiness subtly balanced with spicy imported Saaz hops. One taste of this fine lager tells you this is no ordinary beer: From its mellow, velvety body to its lingering, fresh hop finish, Portsmouth Lager is smooth, complex and satisfying.""}",1,54,1
+sweetwater_tavern_centreville,0,0,245105426433,"{""name"":""Sweetwater Tavern - Centreville"",""city"":""Centreville"",""state"":""Virginia"",""code"":""20121"",""country"":""United States"",""phone"":""1-703-449-1100"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""14250 Sweetwater Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.8289,""lon"":-77.4393}}",1,16,1
+tivoli_brewing,0,0,245104967683,"{""name"":""Tivoli Brewing"",""city"":""Denver"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.7392,""lon"":-104.985}}",1,15,1
+slottskllans_bryggeri-vrak,0,0,245111324672,"{""name"":""Vrak"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""slottskllans_bryggeri"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+river_horse_brewing_company-hop_hazard,0,0,244996767745,"{""name"":""Hop Hazard"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_horse_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewing the perfect ale is truly a balancing act...hazardous work you might say. With Hop Hazard our challenge was to hand craft a malt rich base that could counterbalance a combustible five-hop blend and still leave your taste buds with enough room to enjoy a unique, crisp hop finish."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
+three_floyds_brewing-x_tra_pale_ale,0,0,245112504322,"{""name"":""X-Tra Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+minneapolis_town_hall_brewery-masala_mama_ipa,0,0,244864909313,"{""name"":""Masala Mama IPA"",""abv"":5.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""minneapolis_town_hall_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our brewers believe an American IPA should be full of American hops. Masala Mama uses three different West Coast varieties, over five hop additions. This copper-colored ale is not strictly about hops; American pale barley and several caramel malts balance the flavor for a green, toasted caramel finish. The British realized an abundance of hops will help preserve beer … we realized hops can preserve our customers."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+pennichuck_brewing_company-pozharnik,0,0,244988051456,"{""name"":""Pozharnik"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,18,1
+twisted_pine_brewing_company-big_shot_espresso_stout,0,0,245110472706,"{""name"":""Big Shot Espresso Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twisted_pine_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A favorite of many coffee-loving beer drinkers, Big Shot Espresso Stout boasts about a shot of espresso in every pint. Twisted Pine teamed up with popular Amante Coffee in Boulder to produce what Amante co-owner and founder Greg Buchheister calls \""the most perfectly balanced buzz.\"" The earthy, dark chocolate flavors of the Amante Espresso blend to the flawless balance of the beer.""}",1,28,1
+rock_bottom_restaurant_brewery_san_jose-faller_wheat,0,0,245003845633,"{""name"":""Faller Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+three_floyds_brewing-broodoo,0,0,245102673921,"{""name"":""Broodoo"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,10,1
+midnight_sun_brewing_co-trickster_belgian_style_pumpkin_ale,0,0,244877033472,"{""name"":""Trickster Belgian-style Pumpkin Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""midnight_sun_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""OK, what do you get when we toss pale malted barley, pumpkin and spices into a stainless steel cauldron then stir in some magic? Uh, Trickster! The “magic” is actually mischievous Belgian yeast at play with cardamom, nutmeg and coriander. This spooky cool brew will make your glass glow bright despite the gloominess of the season. \r\n\r\nDesigned to conjure up a little fun during the darkening days of autumn, Trickster is a frivolous concoction of earthy pumpkin, comforting malt, and lively spices. This makes Trickster the brew to accompany your post-winterizing duties, family fall dinners, ghost stories, U-boast-iT stories, and “supposedly haunted” garage parties. \r\n\r\nBut the flavor range of Trickster also pairs well with citrusy and spicy cuisine. Try a glowing glass with your favorite dishes that incorporate nutmeg, cardamom or coriander—like Thai curries, Swedish meatballs, gingerbread, roasted pumpkin soup. Add Trickster to soups and sauces, batters and doughs, glasses and mugs."",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,49,1
+olde_peninsula_brewpub_and_restaurant-india_pale_ale,0,0,244862484481,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
+oregon_trader_brewing,0,0,244880637955,"{""name"":""Oregon Trader Brewing"",""city"":""Albany"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.6365,""lon"":-123.106}}",1,57,1
+rogue_ales-youngers_special_bitter,0,0,245005090818,"{""name"":""Youngers Special Bitter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Our original Rogue Ale, Youngers Special Bitter (affectionately nicknamed YSB) is a classic English Special Bitter named after Bill Younger of the infamous Horse Brass Pub in Portland, Oregon. The Malt Advocate described Youngers Special Bitter as \""rich and flavorful. A triad of caramel maltiness, fruitiness (apricots?), and hop bitterness in aroma and flavor. A fuller malt foundation than some other pale ales, with some background spiciness. Dry, hoppy finish.\"" In the SouthWest Brewing News, Feb/March 1994 issue, George Fix wrote \""A strong case could be made for Rogue Ale being included among the top 5 ales brewed in the US.\""\r\n\r\nYSB is amber in color with a mild hoppy finish. Brewed with a blend of 2-row Harrington and Crystal malts, Willamette and East Kent Golding hops. YSB is available in the classic 22-ounce seriograph bottle (the 12-ounce 6-pack was phased out in early 2005), and on draft."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,58,1
+top_of_the_hill_restaurant_and_brewery-blackwood_mountain_stout,0,0,245103329282,"{""name"":""Blackwood Mountain Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,11,1
+pizza_port_brewing_solana_beach-mother_of_all_beers,0,0,244994473985,"{""name"":""Mother of All Beers"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizza_port_brewing_solana_beach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+phoenix_beverages_ltd,0,0,244994932736,"{""name"":""Phoenix Beverages Ltd"",""city"":""Pont Fer"",""state"":""Phoenix"",""code"":"""",""country"":""Mauritius"",""phone"":"""",""website"":""http://www.phoenixbeveragesgroup.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":-20.2738,""lon"":57.4971}}",1,35,1
+selin_s_grove_brewing_co,0,0,244996440064,"{""name"":""Selin's Grove Brewing Co."",""city"":""Selinsgrove"",""state"":""Pennsylvania"",""code"":""17870"",""country"":""United States"",""phone"":""570-374-7308"",""website"":""http://www.selinsgrovebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""121 North Market St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.801,""lon"":-76.8614}}",1,37,1
+union_colony_brewery,0,0,245101101056,"{""name"":""Union Colony Brewery"",""city"":""Greeley"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.4233,""lon"":-104.709}}",1,7,1
+spaten_franziskaner_brau,0,0,245104312320,"{""name"":""Spaten-Franziskaner-Bräu"",""city"":""München"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)89-/-5122-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Marsstrae 46-48""]}",1,14,1
+simmerberg_brusttt_und_taferne,0,0,245005484033,"{""name"":""Simmerberg Brusttt und Taferne"",""city"":""Simmerberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)8387-/-3806"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Ellhofer Strae 2""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":47.5814,""lon"":9.9191}}",1,59,1
+utah_brewers_cooperative,0,0,245121679361,"{""name"":""Utah Brewers Cooperative"",""city"":""Salt Lake City"",""state"":""Utah"",""code"":""84115"",""country"":""United States"",""phone"":""1-801-466-8855"",""website"":""http://www.utahbeers.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1763 South 300 West""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.7322,""lon"":-111.9}}",1,56,1
+pelican_pub_brewery-bridal_ale_2005,0,0,245001486336,"{""name"":""Bridal Ale 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pelican_pub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+sierra_nevada_brewing_co-bigfoot_1998,0,0,244987920385,"{""name"":""Bigfoot 1998"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+umpqua_brewing,0,0,245115125762,"{""name"":""Umpqua Brewing"",""city"":""Roseburg"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.2165,""lon"":-123.342}}",1,39,1
+south_shore_brewery,0,0,245120696321,"{""name"":""South Shore Brewery"",""city"":""Ashland"",""state"":""Wisconsin"",""code"":""54806"",""country"":""United States"",""phone"":""1-715-682-9199"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""808 West Main Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":46.5872,""lon"":-90.8921}}",1,54,1
+switchback_brewing_co,0,0,245105491968,"{""name"":""Switchback Brewing Co"",""city"":""Burlington"",""state"":""Vermont"",""code"":""5406"",""country"":""United States"",""phone"":""(802) 651-4114"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""PO Box 4210""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":43.3906,""lon"":-79.8049}}",1,16,1
+top_of_the_hill_restaurant_and_brewery-big_bertha_brown,0,0,245104967684,"{""name"":""Big Bertha Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,15,1
+southern_tier_brewing_co-back_burner_imperial_barley_wine_style_ale,0,0,245111390208,"{""name"":""Back Burner Imperial Barley Wine Style Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Long ago, British farmhouse brewers made special ales using the first runnings of the mash. These beers, now called barley wine, are brewed in the tradition of days past. At Southern Tier this long awaited brew is placed on the back burner until the start of the new year. Back Burner Barley Wine is a celebration of things to come and things remembered. It’s conceived in three small batches, using voluminous amounts of barley and hops. The process starts early in the morning and ends late into the night. We hope this rare brew reignites your spirit for another trip around the sun."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,31,1
+river_west_brewing-railroad_stout,0,0,244996833280,"{""name"":""Railroad Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""river_west_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+titletown_brewing-pale_ale_a_la_bushner,0,0,245112569856,"{""name"":""Pale Ale \""á la Bushner\"""",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,33,1
+mishawaka_brewing-kolsch,0,0,244864909314,"{""name"":""Kolsch"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mishawaka_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+pennichuck_brewing_company-the_big_o_oktobefest,0,0,244988051457,"{""name"":""The Big O Oktobefest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pennichuck_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,18,1
+union_barrel_works-union_barrel_works_pale_ale,0,0,245110472707,"{""name"":""Union Barrel Works Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_barrel_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A translucent amber-red ale with a moderately high IBU of 36. Bittering hops include Kent Golding and Cascade. A generous amount of Kent Golding is used in the dry hopping to further enhance the aroma."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,28,1
+rogue_ales-old_crustacean_barleywine_2006,0,0,245003911168,"{""name"":""Old Crustacean Barleywine 2006"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+three_floyds_brewing-pride_joy_mild_ale,0,0,245102739456,"{""name"":""Pride & Joy Mild Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,10,1
+moorhouse_s_brewery_burnley-pendle_witches_brew,0,0,244877033473,"{""name"":""Pendle Witches Brew"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moorhouse_s_brewery_burnley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+olde_peninsula_brewpub_and_restaurant-tornado_ale,0,0,244862484482,"{""name"":""Tornado Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_peninsula_brewpub_and_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,12,1
+pivovar_pardubice_a_s-porter_boom,0,0,245004632064,"{""name"":""Porter Boom"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_pardubice_a_s"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,57,1
+ruppaner_brauerei-edel_pils,0,0,245005156352,"{""name"":""Edel-Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,58,1
+troegs_brewing-rugged_trail_ale,0,0,245103394816,"{""name"":""Rugged Trail Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Designed as our session beer, Rugged Trail Nut Brown Ale is bronze in color with a velvety smooth taste and subtle chocolate note. Rugged Trail’s lower alcohol content and subtle hoppiness make it the perfect beer to enjoy during the day and into the night."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
+pleasanton_main_street_brewery-train_wreck_ipa,0,0,244994539520,"{""name"":""Train Wreck IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pleasanton_main_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
+pizzeria_uno_chicago_grill_brewery-32_inning_ale,0,0,244994932737,"{""name"":""32 Inning Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+sharktooth_brewing-poi_dog_wheat,0,0,244996505600,"{""name"":""Poi Dog Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+vintage_50_restaurant_and_brew_lounge-point_of_rocks_pale_ale,0,0,245744926720,"{""name"":""Point Of Rocks Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vintage_50_restaurant_and_brew_lounge"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,7,1
+st_peter_s_brewery-english_ale,0,0,245104312321,"{""name"":""English Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
+sixpoint_craft_ales-bengali_tiger,0,0,245005549568,"{""name"":""Bengali Tiger"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sixpoint_craft_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Sixpoint Bengali Tiger is reminiscent of the century-old English IPA. In my perspective, many current IPAs suffer from lacking substance; unbalanced by a hoppy assertiveness that is not substantiated by a strong foundation of rich malt flavors. Our interpretation uses the highest-quality, floor-malted base malt, which lends a full-bodied and rich caramel flavor. We mash at high temperatures and add generous amounts of specialty malts to further emphasize a strong foundation of malt as leverage for our generous additions of hops… Which are indeed generous. We use a total of three different hop strains, and add a total of six different additions throughout the process. The Bengali Tiger has a hoppy snap upfront, but strides at a steady pace, and finishes balanced. The signature characteristic of the Tiger is the aroma… we use massive quantities of whole East Kent Goldings hops to dry hop in our conditioning tanks. The result? The essential oils from the hops are an enticing treat before every sip. Notice the lacing of stripes around the pint glass as you finish your glass; it’s the mark of the Tiger."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,59,1
+voodoo_brewing_co_llc-pilzilla,0,0,245751873536,"{""name"":""PILZILLA"",""abv"":6.75,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Pilzilla is a beer that I've been brewing for years. Each year it gets bigger and bigger. Nicknamed \""The beer that took over Tokyo\"". It is an unfiltered Keller Bier. Nicley hopped at this point with 9 different kinds of hops at 10 additions and about 6.75 % alc. Each year we will add another variety of hop and bump the alc a bit. This is listed on Beer Advocate as the highest rated Kellerbier in the world. \r\n\r\nBottle Conditioned and Refermented. \r\n\r\nThis is not your average pilsner, get it before we drink it all! Prost!!""}",1,56,1
+pennichuck_brewing_company,0,0,245001486337,"{""name"":""Pennichuck Brewing Company"",""city"":""Milford"",""state"":""New Hampshire"",""code"":""3055"",""country"":""United States"",""phone"":""(603) 672-2750"",""website"":""http://www.pennichuckbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""127 Elm St., Unit C""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.8368,""lon"":-71.6626}}",1,50,1
+sioux_falls_brewing-midnight_star_ale,0,0,244987920386,"{""name"":""Midnight Star Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+warsteiner_brauerei-konig_ludwig_weissbier,0,0,245749448704,"{""name"":""Konig Ludwig Weissbier"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,39,1
+steamworks-cascadia_cream_ale,0,0,245120761856,"{""name"":""Cascadia Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Every year in Vancouver there are a few days when the air is cool & crisp, the sun shines brightly, and the leaves show their vibrant colours -- then it starts to rain incessantly. Anyway, our Cascadia Cream Ale is dedicated to the spirit of mountains, oceans, golden days and gentle mist. Caramel and honey malts lend this ale a mellow, grainy maltiness which is balanced by the subtle presence of English finishing hops. Cheers, our Cascadia Cream Ale will be sure to brighten up even the wettest West Coast day."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+the_blind_bat_brewery_llc-long_island_potato_stout,0,0,245105491969,"{""name"":""Long Island Potato Stout"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed with real mashed Long Island Potatoes (or is it \""Potatos\""?) in the mash - hence, \""twice mashed.\"" \r\n\r\nI'll admit, my Polish, Irish, and German heritage finds the siren song of potatoes irresistible. (My French blood, not so much.) The local, Long Island agriculture booster in me needs to go for the Long Island potato above all others. \r\n\r\nWith a brewery this small (basically a home brewery with a license to sell), I can brew what \""gets\"" me, with hopes that some folks will enjoy it."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,16,1
+trailhead_brewing_company-trailblazer_blond_ale,0,0,245105033216,"{""name"":""Trailblazer Blond Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+sprecher_brewing-special_amber,0,0,245111390209,"{""name"":""Special Amber"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A delicate balance of toasted malt and fresh hops give this medium-bodied German-style lager an intriguing, complex malt flavor. A creamy head, deep golden color and an impressive hop bouquet make this a very special beer."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+rogue_ales-imperial_india_pale_ale_i2pa,0,0,244996833281,"{""name"":""Imperial India Pale Ale / I2PA"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Above and beyond an India Pale Ale--I2PA is radically hopped with an intense aroma and hop bitterness. Unfiltered and aged for 9 months before it leaves the brewery--not for the faint of heart. I2PA is brewed with two-row Pipkin Pale malts, Saaz, Cascade and Northwest Golding hops. I2PA is available in a new 750ml Silkscreened black ceramic bottle and on draft."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,38,1
+tyranena_brewing,0,0,245112569857,"{""name"":""Tyranena Brewing"",""city"":""Lake Mills"",""state"":""Wisconsin"",""code"":""53551"",""country"":""United States"",""phone"":""1-920-648-8699"",""website"":""http://www.tyranena.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1025 Owen Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0862,""lon"":-88.8967}}",1,33,1
+moorhouse_s_brewery_burnley-black_cat,0,0,244864974848,"{""name"":""Black Cat"",""abv"":3.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moorhouse_s_brewery_burnley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,19,1
+pizza_beer,0,0,244988116992,"{""name"":""Pizza Beer"",""city"":""St Charles"",""state"":""Illinois"",""code"":""60175"",""country"":""United States"",""phone"":""(630) 377-6888"",""website"":""http://www.mammamiapizzabeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Chef Tom and Mamma Mia aren't the only folks that have discovered how great recipes using Mamma Mia Pizza Beer truly can be. Just ask the owners of Michel Angelo's Pizza & Pasta, Ream's Elburn Market, Josefs Elegante Meat and Deli, and the constantly growing list of fine establishments that now or will soon be featuring food products made with Mamma Mia Pizza Beer. Whether it's used in bread, crusts, meats and even fried fish batter, Mamma Mia Pizza Beer truly is expanding the meaning of The World's First Culinary Beer!"",""address"":[""5N404 Harvest Lane""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":41.9455,""lon"":-88.4507}}",1,18,1
+upstream_brewing_old_market-honey_raspberry_ale,0,0,245110538240,"{""name"":""Honey-Raspberry Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""This easy drinking beer is made with pale and \r\nMunich malts, wheat, honey and fresh raspberry puree. Honey Raspberry Ale is refreshing and mildly sweet."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,28,1
+rogue_ales-xs_imperial_stout,0,0,245003911169,"{""name"":""XS Imperial Stout"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Deserving the title \""Emperor of Ales\"" (unlike the bourgeois \""King of Beers\""), Imperial is the strongest and fullest of all stouts. Imperials originally were brewed with large quantities of hops and a high alcohol content to withstand long, unrefrigerated journeys. Rogue Imperial Stout, considered the high end of stouts, is made of 2-row Great Western Harrington & Klages, Hugh Baird XLT-80, Black, Munich and Chocolate Malts; Willamette, Cascade and Chinook hops; rolled oats; and two secret ingredients. Unfiltered and unfined, Imperial Stout is best when aged for one year. Imperial Stout is available in a new 750-ml ceramic swing-top bottle (replacing the much older 7-ounce and more recent 12-ounce XS-line packaging) and on draft."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,55,1
+thunderhead_brewery_2-nitro_porter,0,0,245102739457,"{""name"":""Nitro Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,10,1
+moylan_s_brewery_restaurant-moylannium_ale,0,0,244877033474,"{""name"":""Moylannium Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""moylan_s_brewery_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+ostankinskij_pivovarennij_zavod-beer,0,0,244862550016,"{""name"":""Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ostankinskij_pivovarennij_zavod"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+port_brewing_company-hop_15_ale,0,0,245004697600,"{""name"":""Hop 15 Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First brewed in 2002 to celebrate the 15th Anniversary of the Pizza Port in Solana Beach, Hop 15 was imagined and designed by Tomme Arthur and Jeff Bagby. It was to be a celebration of 15 years of \""Good Beer Brings Good Cheer.\"" So there are 15 different hop varieties that are added to the beer every 15 minutes. Over the years, Hop 15 has racked up numerous accolades. It has won two silver medals at the Great American Beer Festival. It also was named Alpha King in 2004 and received a first place award at the Bistro Double IPA beer festival in Hayward, CA. Hop 15 remains won of the stickiest most resinous beers we have ever tasted and for that, we are thankful it is on tap at our brewery each and every day.\r\n\r\nMalts- Two Row and English Light Crystal\r\nHops- We use 15 Different Varieties on a strictly don't ask don't tell policy\r\nYeast- White Labs California Ale and Proprietary Yeast Strains\r\n\r\nOriginal Gravity- 1.086\r\nTerminal Gravity- 1.014\r\n9.7 % ABV\r\n\r\nDraft- Available in Southern California 22 Oz Bottles and Cases- At Port Brewing San Marcos and Pizza Port Carlsbad, San Clemente and Solana Beach and wherever better beers are sold."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
+san_marcos_brewery_grill-x_tra_pale,0,0,245005156353,"{""name"":""X-Tra Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_marcos_brewery_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+troegs_brewing-scratch_20_2009_apollo_imperial_ale,0,0,245103460352,"{""name"":""Scratch #20 2009 Apollo Imperial Ale"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #20 has been dubbed Apollo Imperial Ale because of our experimentation with a new hop variety.\r\n \r\nApollo hops are high alpha acid with an intense aroma. Married with other high alpha hops, with almost two pounds of hops added per barrel produced, AIA has an intense staying power in the back of the throat. After a long discussion between Chris, John and the brewers, they dubbed this hop flavor stinky grapefruit with a hint of perfume. The dark color might lead you to believe the some malt may shine through; but no, the hops are the true player in this ale.\r\n \r\nScratch #20 has a dual role, also serving at The Drafting Room’s Anniversary Ale for 2009. We brewed a bit more to serve the brewery and The Drafting Room, but get it while when you see it. Before this intense hop flavor subsides, this beer will be sold out."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,11,1
+plzesk_prazdroj-pilsner_urquell,0,0,244994605056,"{""name"":""Pilsner Urquell"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""plzesk_prazdroj"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,34,1
+pizzeria_uno_chicago_grill_brewery-gust_n_gale_porter,0,0,244994998272,"{""name"":""Gust-N-Gale Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,35,1
+sierra_nevada_brewing_co-bigfoot_2003,0,0,244996505601,"{""name"":""Bigfoot 2003"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+weyerbacher_brewing_company-hops_infusion,0,0,245744992256,"{""name"":""Hops Infusion"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Hops Infusion is loaded with piney, citrusy notes, much hops complexity, and a strong foundation of malt underneath it all.. Glowing a deep amber color, Hops Infusion is brewed with seven types of hops. Simcoe, Magnum, Cascade, Liberty, Saaz, Fuggles and E. Kent Goldings give this beer the complexity that's so interesting. Our brewers intention on Hops Infusion was to create a complexity of hops flavor and aromas, not found in any other beer.\r\n\r\nOriginally developed for our BrewPub (no longer open), Hops Infusion was ahead of its time in 1998, but eventually became over shadowed by plethora of entries from other brewers in the India Pale Ale category, with everyone pushing the envelope on hops content more and more. So, in late 2005 we redesigned this beer with an entirely new recipe and new packaging as well. The results are unmistakable, Hops Infusion is clearly a leading IPA once again.\r\n\r\nWe brew Hops Infusion (6.2% ABV, 1.068 OG) all year 'round. So if your local beer store doesn't have it, tell 'em to get moving!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,7,1
+stadsbrouwerij_de_hemel,0,0,245104377856,"{""name"":""Stadsbrouwerij De Hemel"",""city"":""Nijmegen"",""state"":"""",""code"":""0"",""country"":""Netherlands"",""phone"":""31-024-3606167"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Franseplaats 1""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.8486,""lon"":5.8639}}",1,14,1
+sixpoint_craft_ales,0,0,245005615104,"{""name"":""Sixpoint Craft Ales"",""city"":""Brooklyn"",""state"":""New York"",""code"":""11231"",""country"":""United States"",""phone"":"""",""website"":""http://www.sixpointcraftales.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""40 Van Dyke St""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.674,""lon"":-74.0118}}",1,59,1
+weyerbacher_brewing_company-alpha,0,0,245751939072,"{""name"":""Alpha"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Alpha, the first entry in our one-off, brewer's choice series is a Belgian-style Pale Ale at 6.2% ABV. Brewed with Pale, Carahell and Wheat malts, Amarillo and Cascade hops. This medium bodied beer is crisp on the palate with a smooth, not overly bitter hops flavor coupled with the fruity esters from the Belgian Abby yeast strain we used. Its bottle and keg conditioned, so expect a tall, fluffy head, and perhaps small amount of sediment. Just one batch was brewed in April 2008, kegs released in late May, and only 20 cases of bottles for sale only at the brewery at the special debut night event of June 13, 2008, from 5 to 8 pm. Recipe by Jeff Musselman, assistant brewer."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,56,1
+pivovar_hradec_krlov-lion_lev_export_lager_beer_double_bock,0,0,245001551872,"{""name"":""Lion Lev Export Lager Beer Double Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivovar_hradec_krlov"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
+skagit_river_brewing-skagit_brown_ale,0,0,244987985920,"{""name"":""Skagit Brown Ale"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
+water_tower_brewing-flying_horse_pale_ale,0,0,245749448705,"{""name"":""Flying Horse Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_tower_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,39,1
+the_livery-old_cedar,0,0,245120761857,"{""name"":""Old Cedar"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Named after a drawing of an old cedar tree growing out of a cliff on the Lake Superior shoreline done by friend and artist Ladislav Hanka, this beer is copper colored and hopped with American Centennial and English East Kent Golding hops.""}",1,54,1
+titletown_brewing-birra_canadeo_gridiron_gold,0,0,245105491970,"{""name"":""Birra Canadeo / Gridiron Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+troegs_brewing-flying_mouflan,0,0,245105033217,"{""name"":""Flying Mouflan"",""abv"":9.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This strong alluring ale is two beers in one. Cracking open a fresh bottle unleashes hops and heat with more than 100 IBUs emanating from three hop varieties and sweet burn of 9.3% ABV. Cellaring the Flying Mouflan in a cool dark place at 50 degrees for a minimum of four months will mellow out the hops and wash away the heat. If you can resist temptation you will be rewarded with two memorable beers in a single bottle."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,15,1
+standing_stone_brewing_company-standing_stone_double_india_pale_ale,0,0,245111390210,"{""name"":""Standing Stone Double India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""standing_stone_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An unfiltered ale with intense hop bitterness, flavor and aroma. This ale is well balanced with higher alcohol, maltiness and hop character. (95 IBU.)"",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,31,1
+rogue_ales-morimoto_soba_ale,0,0,244996833282,"{""name"":""Morimoto Soba Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""The Morimoto Soba Ale is part of the new Signature Series of Rogue Ales, launched in the Spring of 2003 with internationally acclaimed Chef Masaharu Morimoto--a James Beard awarded chef and one of the stars of the Food Network series, Iron Chef. \r\n\r\nSoba (also known as buckwheat) is not a type of wheat but a member of the rhubard family (a fruit, not a grain!) Soba has been a longtime staple of Japanese cuisine because of its nutritional value. Buckwheat is high in potassium, phosphorous, vitamin B (50 percent more than wheat) and protein, and its virtually fat-free. The fruits of buckwheat plant are like small beechnuts, which are milled to separate the edible groats from the dark brown hulls. The groats are then roasted and used more or less like a grain (a good example is Kasha).\r\n\r\nMorimoto Soba Ale is brewed with Roasted Buckwheat, Pale malt, Munich Malt, 13-17 Carastan Malt, and Crystal Hops. (Note, this beer contains Gluten.) The flavor is unique, toasty-nutty sensation with medium body and good hop bitterness. Morimoto Soba Ale is available in a 22 ounce silkscreened bottle and 13.2 gallon sankey kegs.\r\nTo learn more about the Chef, visit Morimotos web page."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,38,1
+uerige_obergrige_hausbrauerei-sticke,0,0,245112569858,"{""name"":""Sticke"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uerige_obergrige_hausbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,33,1
+mordue_brewery-radgie_gadgie,0,0,244864974849,"{""name"":""Radgie Gadgie"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""mordue_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-apricot_wheat,0,0,244988116993,"{""name"":""Apricot Wheat"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
+vetter_s_alt_heidelberger_brauhaus-vetter_33,0,0,245110538241,"{""name"":""Vetter 33"",""abv"":37.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""vetter_s_alt_heidelberger_brauhaus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,28,1
+roots_organic_brewing,0,0,245003911170,"{""name"":""Roots Organic Brewing"",""city"":""Portland"",""state"":""Oregon"",""code"":""97214"",""country"":""United States"",""phone"":""1-503-235-7668"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1520 SE Seventh Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":45.5118,""lon"":-122.659}}",1,55,1
+titletown_brewing-art_schmidt_pilsner,0,0,245102739458,"{""name"":""Art Schmidt Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+nethergate_brewery_co_ltd-old_growler,0,0,244877099008,"{""name"":""Old Growler"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""nethergate_brewery_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
+otter_creek_brewing_wolaver_s_organic_ales-oktoberfest,0,0,244862550017,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Oktoberfest is our version of the perennial favorite Bavarian Autumn beer. Oktoberfest's deep golden hue helps bring to mind the old country and its time honored traditions. Brewed with Hallertau and Tettnang hops to balance its clean, malty sweetness, it's the perfect brew for a crisp Autumn day. Available from August to November."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,12,1
+redhook_ale_brewery-winterhook_robust_winter_ale_2000,0,0,245004763136,"{""name"":""Winterhook Robust Winter Ale 2000"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+schussenrieder_erlebnisbrauerei,0,0,245005156354,"{""name"":""Schussenrieder Erlebnisbrauerei"",""city"":""Bad Schussenried"",""state"":""Baden-Wrttemberg"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)7583-/-404-11"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Wilhelm-Schussen-Strae 12""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.004,""lon"":9.6584}}",1,58,1
+tyranena_brewing-rocky_s_revenge,0,0,245103460353,"{""name"":""Rocky's Revenge"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Deep in the darkest depths of Rock Lake prowls a great saurian known today as Rocky. The legend of Rocky is old. The ancient inhabitants of Aztalan warned of the beast by building a giant serpent mound at the lake’s edge. The early residents of Lake Mills were forewarned of a guardian placed in the lake to protect its sacred stone tepees. And history tells of numerous encounters with Rocky, who became a source of great worry and fear. Although not seen for over a century, divers still experience a feeling of dread and being watched. Enjoy Rocky’s Revenge, our offering to this legendary protector of Tyranena.\r\n\r\nRocky’s Revenge is an American brown ale with a portion aged in bourbon barrels. Each bourbon barrel will contribute its own unique character to this rich, satisfying ale."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,11,1
+raccoon_river_brewing-tallgrass_prairie_gold,0,0,244994605057,"{""name"":""Tallgrass Prairie Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+port_brewing_company-frank_double_ipa,0,0,244994998273,"{""name"":""Frank Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,35,1
+south_shore_brewery-red_lager,0,0,245114011648,"{""name"":""Red Lager"",""abv"":4.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_shore_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+stevens_point_brewery-white_biere,0,0,245104377857,"{""name"":""White Bière"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+sleeping_lady_brewing_company-urban_wilderness_english_pale,0,0,245005680640,"{""name"":""Urban Wilderness English Pale"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sleeping_lady_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This tasty English pale ale gets its charm from Imported Maris Otter Pale Malt, East Kent goldings and a few secret ingredients to keep our competitiors guessing. Styled after a classic English Bitter, Urban Wilderness is supremely balanced, smooth and easy to drink."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,59,1
+wisconsin_brewing-badger_porter,0,0,245751939073,"{""name"":""Badger Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wisconsin_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,56,1
+porterhouse_restaurant_and_brewpub-lager,0,0,245001551873,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+sleeman_brewing_malting-original_dark,0,0,244987985921,"{""name"":""Original Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sleeman_brewing_malting"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
+yakima_brewing_and_malting_grant_s_ales-deep_powder_winter_ale,0,0,245749448706,"{""name"":""Deep Powder Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,39,1
+the_lost_abbey-devotion,0,0,245120827392,"{""name"":""Devotion"",""abv"":6.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""It’s an unassuming road leading to the priory. Here, off the corner of two intersecting roads, dedicated monks have been making beer for over 150 years. It’s always been a simple life – the kind that requires they brew only enough to sustain the activities of their monastery. In the silence of passing seasons, they pray, they brew and retire in solitary existence behind the sheltering walls. They live a most interesting life. Most likely one we couldn’t sustain.\r\n\r\nNearby, each summer, the trellised fields spring to life as rows of resinous green cones are trained toward the heavens. Rumor is some monks love these hops and being surrounded by budding yellow aromas and the leafy pungent fields inspired them. Since we aren’t sensible enough to locate our brewery near hop fields, we can only offer this blond ale in celebration of our Abbey brethren and their steadfast Devotion."",""style"":""Belgian-Style Pale Ale"",""category"":""Belgian and French Ale""}",1,54,1
+top_of_the_hill_restaurant_and_brewery-iron_mine_pale_ale,0,0,245105491971,"{""name"":""Iron Mine Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
+twin_rivers_brewing-imperial_i_p_a,0,0,245105098752,"{""name"":""Imperial I.P.A."",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,15,1
+stone_brewing_co-5th_anniversary_ipa,0,0,245111455744,"{""name"":""5th Anniversary IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
+routh_street_brewery_and_grille-light_ale,0,0,244996898816,"{""name"":""Light Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""routh_street_brewery_and_grille"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+unibroue-don_de_dieu,0,0,245112635392,"{""name"":""Don De Dieu"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Don de Dieu displays an appealing orange-golden hue with a stable, creamy head of foam. Its fruity, malty and yeasty flavor is quickly succeeded by a palate-warming finish of roasted nuts and spices.\r\n\r\nThis smooth, exceptionally strong triple wheat\r\nale offers a complex flavor that is slightly\r\nfruity, malty, nutty and yeasty, with a hint of \r\nunfiltered sake."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,33,1
+namibia_breweries-urbock,0,0,244865040384,"{""name"":""Urbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""namibia_breweries"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,19,1
+r_b_brewing,0,0,244988182528,"{""name"":""R&B; Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-874-2537"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""54 East Fourth Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2673,""lon"":-123.103}}",1,18,1
+victory_brewing-whirlwind_wit,0,0,245747679232,"{""name"":""Whirlwind Wit"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A swirling dynamo of flavor, with a steady calm of satisfaction at its heart, that's Whirlwind Witbier. Offering a tamed tempest of flavors both spicy and sublime, this softly fermented ale greets the nose and tingles the tongue. Imported Belgian yeast charges Whirlwind with an energy all its own. It is a refreshing interpretation of the classic, Belgian 'white beer' style."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,28,1
+roy_pitz_brewing_company-white_horse_hefeweizen,0,0,245003976704,"{""name"":""White Horse Hefeweizen"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roy_pitz_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This German inspired wheat ale is packed full of citrus flavor. We use torrified wheat, pale, and carafoam for balance, giving it a nice hazy, straw color and refreshing wheat taste. We ferment the White Horse at higher ale temps with a German style yeast that is known for producing world class wheat beers. We let the yeast take over the majority of the flavoring in our fermenters, providing the beer with banana and clove like esters. We pull some of the yeast with it to give this brew the proper style and to keep its body and character. We than age this brew with zests of citrus and a brewers spice that blends harmoniously with the esters of the yeast and balance out the sweetness of this brew. Truly a favorite in the summer time for breakfast, lunch, or dinner."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,55,1
+tommyknocker_brewery_and_pub-alpine_glacier_lager,0,0,245102804992,"{""name"":""Alpine Glacier Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,10,1
+new_glarus_brewing_company-norski_honey_bock,0,0,244877099009,"{""name"":""Norski Honey Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""new_glarus_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
+palmetto_brewing,0,0,244985495552,"{""name"":""Palmetto Brewing"",""city"":""Charleston"",""state"":""South Carolina"",""code"":""29403"",""country"":""United States"",""phone"":""1-843-937-0903"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""289 Huger Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":32.8017,""lon"":-79.9455}}",1,12,1
+revolution_brewing_llc-workingman_mild,0,0,245004828672,"{""name"":""Workingman Mild"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""revolution_brewing_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""Drinkable brown session beer with a nutty, toffee flavor. Served lightly carbonated from a traditional Brittish handpump."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,57,1
+scuttlebutt_brewing-maibock,0,0,245005156355,"{""name"":""Maibock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,58,1
+water_street_brewery-pils,0,0,245745385472,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,11,1
+rail_house_restaurant_and_brewpub-oktoberfest_discontinued,0,0,244994605058,"{""name"":""Oktoberfest (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,34,1
+private_weissbierbrauerei_g_schneider_sohn_gmbh,0,0,244995063808,"{""name"":""Private Weissbierbrauerei G. Schneider & Sohn GmbH"",""city"":""Kelheim"",""state"":"""",""code"":""93309"",""country"":""Germany"",""phone"":""0 94 41 / 7 05 - 0"",""website"":""http://www.schneider-weisse.de"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Emil-Ott-Strasse 1-5""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":48.9175,""lon"":11.8735}}",1,35,1
+southampton_publick_house-altbier,0,0,245114077184,"{""name"":""Altbier"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southampton_publick_house"",""updated"":""2010-07-22 20:00:20"",""description"":""Reddish brown coloring. Aroma is slightly sweet, much like flavoring. Very drinkable. Recommended."",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,37,1
+stone_brewing_co-old_guardian_barley_wine_2005,0,0,245104377858,"{""name"":""Old Guardian Barley Wine 2005"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,14,1
+south_county_brewing_co-brigantine_smoked_porter,0,0,245122465792,"{""name"":""Brigantine Smoked Porter"",""abv"":8.54,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""south_county_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Brigantine Smoked Porter, much like the high seas, can be a wild ride. This beer is dark brown and full bodied with roasted tones and a hint of chocolate. As if that weren't enough it finishes with a smoked flavor that seems right at home during cooler months here in Southern York County."",""style"":""Porter"",""category"":""Irish Ale""}",1,59,1
+wychwood_brewery_company_ltd,0,0,245751939074,"{""name"":""Wychwood Brewery Company Ltd"",""city"":"""",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,56,1
+prescott_brewing_company-lodgepole_light,0,0,245001551874,"{""name"":""Lodgepole Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Cream Ale or Lager"",""category"":""Other Style""}",1,50,1
+southern_tier_brewing_co-southern_tier_porter,0,0,245105754112,"{""name"":""Southern Tier Porter"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Porter is our darkest beer, but not necessarily our strongest. It is widely held that the darker the beer, the stronger the beer, but this is a summarily false. The contribution of color comes directly from the color of malt that we use. Some malt is oasted to achieve dark color and coffee-like flavor which in turn get transferred to the beer.\r\n\r\nOur Porter is ruchly complex with overtones of chocolate and expresso beans followed by a subtle flavor of hops. It's a nourishing beer without being too sweet or filling."",""style"":""Porter"",""category"":""Irish Ale""}",1,17,1
+the_lost_abbey-judgement_day,0,0,245120827393,"{""name"":""Judgement Day"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""A massive beer in every sense of the word. A stronger and more contemplative version of our Lost and Found Ale. Judgment Day is the base beer for our Cuvee de Tomme. Many of the Trappist Breweries produce a version of beer which ages incredibly well for many years to come. And, since none of us knows when the end of the world is coming, we suggest you stock up with lots of Lost Abbey beers so that when the end of the world magically appears from no where, you’ll have a beer or two on hand for even the stingiest of angels. Available in 750ml bottles and on draft at select inspired locations."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,54,1
+troegs_brewing-hopback_amber_ale,0,0,245105557504,"{""name"":""HopBack Amber Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Brewery’s Flagship beer, HopBack Amber Ale derives its name from a vessel in the brewhouse called a hopback. As the ‘wort’ is being transferred from the brewhouse to fermentation it passes through the hopback vessel. Packed full of fresh whole flower hops, the wort slowly circulates through this vessel extracting the essence of the aromatic hops. This vessel adds more time and more hop character that creates a fresh, spicy taste and rich caramel note that defines this signature ale.\r\n\r\nTASTING NOTES\r\nDeep amber in color under a huge creamy head. The aroma very apparent, bold and spicy with a slight floral character. Balanced with caramel malt, this well-rounded amber ale has an up-front floral spice that builds with a flush of sweetness"",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,16,1
+unibroue-quelque_chose,0,0,245105098753,"{""name"":""Quelque Chose"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Quelque Chose was launched in January 1996. This versatile beer was specifically developed as a winter beer because, when warmed to 70ºC (160ºF), it can be taken as a hot drink. On the other hand, on the rocks, it is a wonderful aperitif. The cherries are soaked for months in slightly bitter ale before being blended into the beer. Quelque Chose is made with dark roasted malts, and the end result is something commonly known as an authentic nectar. The most original of the Unibroue line, it is highly appreciated by winter-sports enthusiasts."",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,15,1
+straub_brewery-straub,0,0,245111521280,"{""name"":""Straub"",""abv"":4.33,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""straub_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+scuttlebutt_brewing-nut_brown,0,0,244996898817,"{""name"":""Nut Brown"",""abv"":4.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""scuttlebutt_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,38,1
+upstream_brewing_old_market-1000_barley_wine,0,0,245112635393,"{""name"":""1000 Barley Wine"",""abv"":9.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,33,1
+north_coast_brewing_company-old_no_38_stout,0,0,244865040385,"{""name"":""Old No.38 Stout"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""north_coast_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Named for a retired California Western Railroad steam engine on the Fort Bragg to Willits run through the Redwoods, Old No. 38 Stout is a smooth, firm-bodied stout with the toasted character and coffee notes of dark malts and roasted barley."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
+real_ale_brewing_company,0,0,244988182529,"{""name"":""Real Ale Brewing Company"",""city"":""Blanco"",""state"":""Texas"",""code"":""78606"",""country"":""United States"",""phone"":""1-830-833-2534"",""website"":""http://www.realalebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""231 San Saba Court""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":30.113,""lon"":-98.4156}}",1,18,1
+victory_brewing-yakima_twilight,0,0,245747679233,"{""name"":""Yakima Twilight"",""abv"":8.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The tenacious grip of big, juicy hop aroma and character slides smoothly into rich, dark malts. This heavyweight battle between fresh, Yakima Valley hops and dark, roasted malts is resolved harmoniously as the flavors merge to deliver complex satisfaction with a warming edge. Enjoy the ‘twilight’ for the bright and brassy hops!""}",1,28,1
+russian_river_brewing-dead_leaf_green,0,0,245004042240,"{""name"":""Dead Leaf Green"",""abv"":5.68,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Special Bitter or Best Bitter"",""category"":""British Ale""}",1,55,1
+tommyknocker_brewery_and_pub-black_powder_stout,0,0,245102804993,"{""name"":""Black Powder Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
+northwoods_brewpub_grill-red_cedar_red,0,0,244877099010,"{""name"":""Red Cedar Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""northwoods_brewpub_grill"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,49,1
+paulaner,0,0,244985495553,"{""name"":""Paulaner"",""city"":""Munich"",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.paulaner.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The name of the Paulaner brewery refers to the order of friars that resided in Neuhauser Straße in Munich who were part of the order of Saint Francis of Paola. The monks had brewed beer for their own use since 1634. The beer that was permitted to be sold on holidays was a Bock style which gained local fame. After the abolition of the Neudeck Cloister in 1799, the building was converted into a penitentiary. Franz Xaver Zacherl, the brewer, purchased the former cloister brewery and continued the Starkbier tradition with the product Salvator, which is latin for Saviour. In 1861 the Salvatorkeller (Salvator cellar) was opened upon Nockherberg. In 1928 the brewery merged with the Gebrüder Thomas brewery creating Paulaner Salvator Thomas Bräu. 1994 saw the acquisition into the Kulmbacher brewery group with the affiliated producers Plauen and Chemnitz. A daughter company is the Auer Bräu AG Rosenheim. Paulaner belongs to the BHI (Brau Holding International AG), a joint venture between Schörghuber Ventures (50.1%) and with Holland's Heineken N.V. (49.9%)."",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":48.1391,""lon"":11.5802}}",1,12,1
+rock_bottom_restaurant_brewery_denver-purple_nightie,0,0,245004828673,"{""name"":""Purple Nightie"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_denver"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+siletz_roadhouse_brewery-wooly_bully,0,0,245005221888,"{""name"":""Wooly Bully"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,58,1
+weinkeller_brewery_berwyn-wee_heavy,0,0,245745385473,"{""name"":""Wee Heavy"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Scotch Ale"",""category"":""British Ale""}",1,11,1
+richbrau_brewing_company-griffin_golden_ale,0,0,244994670592,"{""name"":""Griffin Golden Ale"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""richbrau_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest and palest signature brew, the Griffin is our house session beer. Notice the spicy character imparted by the German hops we use in the Griffin."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,34,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-oktoberfest,0,0,244995063809,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,35,1
+st_james_s_gate_brewery,0,0,245114077185,"{""name"":""St. James's Gate Brewery"",""city"":""Dublin"",""state"":"""",""code"":"""",""country"":""Ireland"",""phone"":"""",""website"":""http://www.guinness.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.3441,""lon"":-6.2675}}",1,37,1
+taylor_s_crossing_brewing-traditional_india_pale_ale,0,0,245104443392,"{""name"":""Traditional India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,14,1
+southern_tier_brewing_co-gemini_imperial_blended_ale,0,0,245122531328,"{""name"":""Gemini Imperial Blended Ale"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""High in the winter sky, two parallel stick figures are visible & known as “the twins,” or the constellation Gemini. The astronauts of the 1960s flew as teams of two in a program named after the celestial pairing. At Southern Tier, we have our own fraternal twins, Hoppe & Unearthly. Blended together & placed in this vessel, the mission of our Gemini is to travel high & take passengers on a journey far into the heavens."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,59,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-pale,0,0,245001617408,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+sprecher_brewing-pale_lager,0,0,245105754113,"{""name"":""Pale Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,17,1
+the_lost_abbey-red_barn_ale,0,0,245120827394,"{""name"":""Red Barn Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""This Farmhouse Ale traces its roots to the small rustic breweries of Southern Belgium. The word Saison comes to us from the French language and it means Season. Lightly spiced with Organic Ginger, Orange Peels, Black Pepper and Grains of Paradise, this brew promises to quench your thirst on the hottest Southern California days or wherever your travels may take you. Available in 750 ml bottles and on draft at select inspired locations."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,54,1
+troegs_brewing-scratch_25_2009_magical_moustache_rye,0,0,245105557505,"{""name"":""Scratch #25 2009 Magical Moustache Rye"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This mahogany ale packs a lingering, earthy hoppiness. The addition of more than 20% rye to the grain bill gives a creamy mouthfeel and hints of spice that compliment the bitterness of hops. Subtle fruitiness come through from the Bravo hops added during the boil, but the Cluster and Liberty varieties used in dry-hopping this beer are the true flavor drivers in this spicy ale. Dark in color and intense is flavor, Scratch 25-2009 finds true balance in a beer that could have easily gone way over the top. Enjoy."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,16,1
+upstream_brewing_company_at_legacy-oak_aged_belgian_tripel,0,0,245105098754,"{""name"":""Oak-Aged Belgian Tripel"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,15,1
+sweetwater_brewing_atlanta-420_extra_pale_ale,0,0,245111521281,"{""name"":""420 Extra Pale Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_atlanta"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+sequoia_brewing_conoabt-thunderhead_amber_ale,0,0,244996898818,"{""name"":""Thunderhead Amber Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sequoia_brewing_conoabt"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
+valley_brewing_company-valley_brew_pale_wheat,0,0,245112635394,"{""name"":""Valley Brew Pale Wheat"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""An American style Wheat Ale made with 50% malted 2 Row barley and 50% malted wheat. Valley Brew Pale Wheat is lightly hopped to produce a smooth and satisfying finish."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,33,1
+o_fallon_brewery,0,0,244865040386,"{""name"":""O'Fallon Brewery"",""city"":""O'Fallon"",""state"":""Missouri"",""code"":""63366"",""country"":""United States"",""phone"":""1-636-474-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""26 West Industrial Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":38.8058,""lon"":-90.7532}}",1,19,1
+redhook_ale_brewery-rye,0,0,244988182530,"{""name"":""Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+walldorff_brew_pub-bee_sting_honey_rye_ale,0,0,245747679234,"{""name"":""Bee Sting Honey Rye Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""A smooth golden ale flavored with Pilsner malt and fresh local honey from Schaefer Shack Farms."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,28,1
+san_diego_brewing-old_town_nut_brown,0,0,245004042241,"{""name"":""Old Town Nut Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,55,1
+tucher_bru-kristall_weizen,0,0,245102804994,"{""name"":""Kristall Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+o_grady_s_brewery_and_pub_1,0,0,244877164544,"{""name"":""O'Grady's Brewery and Pub #1"",""city"":""Arlington Heights"",""state"":""Illinois"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.0884,""lon"":-87.9806}}",1,49,1
+pyramid_alehouse_brewery_and_restaurant_seattle-curve_ball,0,0,244985561088,"{""name"":""Curve Ball"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+rogue_ales-old_crustacean_barleywine_2004,0,0,245004828674,"{""name"":""Old Crustacean Barleywine 2004"",""abv"":11.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""In Britain, seasonal brews for winter are high in alcohol, robust, malty, and dark. The two main styles of these brews are Old Ales and Barleywines. As the name suggests, barleywines are similar to wines in alcohol and need aging but are derived from grain, not the grape. Rogues barleywine is described by beer expert Stuart Ramsey as: \""A masterful, intense creation from brewer John Maier....it has achieved a depth and complexity usually associated with well-ages strong ales. I hope the brewery bottles some before it disappears.\"" We call it the cognac of beers. An unfiltered and unfined Barleywine. Intense, robust, malty and dark. The cognac of beers. A hugh beer in a little bottle, this is a beer designed for sipping.\r\n\r\nOld Crustacean is brewed with eight ingredients, Great Western Harrington, Klages, Hugh Baird Carastan and Munich Malts, Chinook and Centennial Hops, free-range coastal water and PacMan yeast. Old Crustacean is best when aged for one year. Old Crustacean is available in a new 750-ml ceramic swingtop bottle (replacing the much older 7-ounce and more recent 12 ounce XS-line package) and on draft."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,57,1
+southend_brewery_and_smokehouse_charleston-east_bay_brown,0,0,245122072576,"{""name"":""East Bay Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
+weyerbacher_brewing_company-autumnfest,0,0,245745385474,"{""name"":""AutumnFest"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""AutumnFest is Weyerbacher's own unique twist on the German Oktoberfest style. Copper-amber in color, AutumnFest is made with Vienna and Munich malts for that authentic, Bavarian easy drinking taste. Each sip imparts a wonderful roastiness of malt on the tongue followed by a smooth, consistent finish. Wonderfully balanced with a clean, velvety, slightly fruity taste, AutumnFest is the perfect beer for the Fall- a nice transition between the lighter beers of summer and the darker, heavier winter brews. It's a favorite of many Weyerbacher aficionados, who anticipate the end of summer with this wonderful beer. \r\n\r\n Weyerbacher AutumnFest ( ABV 5.4%) is generally available in stores August through December. Pick up a case to celebrate the change of seasons. Prost!"",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,11,1
+roost_brewery-kristall_weizen,0,0,244994670593,"{""name"":""Kristall Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""roost_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+rock_bottom_restaurant_brewery_minneapolis-north_star_premium_lager,0,0,244995063810,"{""name"":""North Star Premium Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_minneapolis"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
+st_peter_s_brewery-st_peter_s_organic_ale,0,0,245114077186,"{""name"":""St Peter's Organic Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Water is extracted from our own 300’ deep borehole and combined with Soil Association accredited light malted barley from Norfolk. Organic hops provide the distinctive palate. The yeast used is St. Peter’s own single strand variety. The result is a delicate, clean, crisp, lightly carbonated, traditional English Ale with a full ‘citrus hop’ aftertaste. This lovely beer won the Soil Association’s top prize in 2002 and a silver medal in 2006."",""style"":""Classic English-Style Pale Ale"",""category"":""British Ale""}",1,37,1
+taylor_s_restaurant_and_brewery,0,0,245104443393,"{""name"":""Taylor's Restaurant and Brewery"",""city"":""San Diego"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":32.7153,""lon"":-117.157}}",1,14,1
+southern_tier_brewing_co-jahva_imperial_coffee_stout,0,0,245122531329,"{""name"":""Jahva Imperial Coffee Stout"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,59,1
+pyramid_alehouse_brewery_and_restaurant_seattle-snow_cap,0,0,245001617409,"{""name"":""Snow Cap"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_seattle"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,50,1
+sprecher_brewing-sprecher_pub_ale,0,0,245105819648,"{""name"":""Sprecher Pub Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Seven varieties of malted barley are combined to give this English-style ale its complex flavor and deep, brown color. A select British yeast culture adds a subtle fruitiness and a blend of choice hops gives this non-bitter ale a soft finish."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
+the_round_barn_winery_brewery-round_barn_kolsch_style,0,0,245120892928,"{""name"":""Round Barn Kölsch Style"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_round_barn_winery_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Kölsch style beer is a golden-blonde ale that is our version of Cologne's native style. Soft, subtle maltiness and a clean finish make it a great thirst-quencher. Kölsch pairs well with spicy foods, or by itself. Enjoy with friends and in good health. Round Barn beer is bottle conditioned, decant into a pint glass before drinking for the best taste experience.""}",1,54,1
+tuppers_hop_pocket_ale-hop_pocket_ale,0,0,245105623040,"{""name"":""Hop Pocket Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tuppers_hop_pocket_ale"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,16,1
+ushers_of_trowbridge,0,0,245105164288,"{""name"":""Ushers of Trowbridge"",""city"":""Trowbridge"",""state"":""Wiltshire"",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.3201,""lon"":-2.208}}",1,15,1
+t_r_theakston,0,0,245111521282,"{""name"":""T&R; Theakston"",""city"":""Ripon"",""state"":""North Yorkshire"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01765)-689544"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""The Brewery""]}",1,31,1
+siletz_roadhouse_brewery-paddle_me_ipa,0,0,244996898819,"{""name"":""Paddle Me IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+water_street_brewery-amber,0,0,245748269056,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,33,1
+odell_brewing-isolation_ale,0,0,244865105920,"{""name"":""Isolation Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Ever been in a warm, cozy cabin and had a secret desire to get snowed in? To celebrate the winter season, we offer our Isolation Ale - a traditional winter brew made with premium malts imported from England. It's just one of the reasons Isolation Ale stands alone."",""style"":""Winter Warmer"",""category"":""Other Style""}",1,19,1
+river_horse_brewing_company,0,0,244988248064,"{""name"":""River Horse Brewing Company"",""city"":""Lambertville"",""state"":""New Jersey"",""code"":""8530"",""country"":""United States"",""phone"":"""",""website"":""http://www.riverhorse.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""While we might be new to your area, we have been brewing fine craft ales and lagers along the banks of the Delaware River since April of 1996. You can find our all natural, fresh bottled and draft beer products throughout the Mid-Atlantic region and parts of New England. Distribution includes Pennsylvania, New Jersey, Delaware, Maryland, New York, New York City, Long Island, Ohio, Connecticut and Massachusetts. We have also been featured by several well-known beer-of-the-month clubs. We use choice, all-natural ingredients and local spring water to produce the best product made in our area. You will notice that all of our products are pure representations of their respective styles, very clean and very well balanced."",""address"":[""80 LAMBERT LANE""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.3688,""lon"":-74.9477}}",1,18,1
+water_street_lake_country-amber,0,0,245747744768,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,28,1
+san_miguel_corporation-dark_lager,0,0,245004042242,"{""name"":""Dark Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_miguel_corporation"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,55,1
+two_brothers_brewing,0,0,245102870528,"{""name"":""Two Brothers Brewing"",""city"":""Warrenville"",""state"":""Illinois"",""code"":""60555"",""country"":""United States"",""phone"":""1-800-451-6348"",""website"":""http://www.twobrosbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""30 Butterfield Road""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.8206,""lon"":-88.2068}}",1,10,1
+odell_brewing-90_shilling,0,0,244877164545,"{""name"":""90 Shilling"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We introduced 90 Shilling, our flagship beer, at our opening party in 1989. For a while, we'd been wondering - what would happen if we lightened up the traditional Scottish ale? The result is an irresistibly smooth and delicious medium-bodied amber ale. The name 90 Shilling comes from the Scottish method of taxing beer. Only the highest quality beers were taxed 90 Shillings. A shilling was a British coin used from 1549 to 1982. We think you'll find this original ale brilliantly refreshing, and worth every shilling."",""style"":""Scottish-Style Light Ale"",""category"":""British Ale""}",1,49,1
+real_ale_brewing_company-sisyphus_barleywine,0,0,244985561089,"{""name"":""Sisyphus Barleywine"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""real_ale_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+rogue_ales,0,0,245004894208,"{""name"":""Rogue Ales"",""city"":""Newport"",""state"":""Oregon"",""code"":""97365"",""country"":""United States"",""phone"":""1-541-867-3664"",""website"":""http://www.rogue.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Rogue Ales was founded in 1988 by Jack Joyce, Rob Strasser and Bob Woodell, three corporate types who wanted to go into the food/beverage industry. Rogue's first brewpub was located in Ashland, Oregon and was a 10bbl brewsystem. Rogue opened a second brewpub, 15bbl brewsystem, in May 1989 located in Newport, Oregon. Rogue closed its Ashland operation in 1997, after the great flood destroyed the place. In 1991, the 15bbl system, named Howard after John Maier's former boss, from the Newport brewpub was transferred across the bay to the current brewery and upgraded to a 30bbl system. In 1998 Rogue bought a 50bbl brewsystem, named Kobe. Kobe is the only brewsystem in use. Tours: We offer brewery tours every day at 3 pm (followed by a distillery tour at 4pm). Go up to the bar inside the brewery (Brewers on the Bay) and check in with the bartender and the tour will commence. Please call ahead if you have a large group and or to verify the tour time...Brewer's on the Bay phone is 541-867-3664. The view from Brewers on the Bay includes the marina (outside), and the bottling line and brew kettles (inside)."",""address"":[""2320 SE OSU Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.6202,""lon"":-124.052}}",1,57,1
+southend_brewery_and_smokehouse_charleston-frostbite,0,0,245122072577,"{""name"":""Frostbite"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+weyerbacher_brewing_company-raspberry_imperial_stout,0,0,245745451008,"{""name"":""Raspberry Imperial Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Enjoyed alone as a winter-warmer or as the perfect finish to any fine meal, our Raspberry Imperial Stout is a wonderfully full-flavored beer with just a \""kiss\"" of raspberry flavor. \r\nWhen we brew this beer we add just a touch of real raspberries during the fermentation process. The result is a modest fruit flavor which enhances--- without dominating the rich, malty, stout taste.\r\n\r\nOur Raspberry Imperial Stout (8.0% ABV) is great alone or as an after-dinner accompaniment. It's especially good with chocolate desserts. We brew it only during the winter months, so check out the Brewing Schedule on the \""What's New\"" page for the next time it will be coming to a beer store near you."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,11,1
+san_diego_brewing-friars_ipa,0,0,244994670594,"{""name"":""Friars IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""san_diego_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
+rogue_ales-charlie_1981,0,0,244995129344,"{""name"":""Charlie 1981"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An unfiltered strong ale that is amber in color and has an intense piney hop aroma. The beer is named in honor of Charlie Papazian, president of the Association of Brewers, founder of the American Homebrewers Association and homebrewing guru. John Maier, Brewmaster for Rogue Ales, made his first batch of beer in 1981 using Papazians influential book \""The New Complete Joy of Homebrewing.\"" \r\nBrewed with Munich and Crystal 40 two-row pale malt, and dry-hopped with Horizon, Sterling and Amarillo hops, free range coastal waters, and top fermenting Pacman yeast.""}",1,35,1
+steamworks-nirvana_nut_brown_ale,0,0,245114142720,"{""name"":""Nirvana Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""Our regulars have many reasons for frequenting our premises. Some come for the comfy chairs, a game of pool, or to exude some seriously suaveness at the oyster bar on a Friday evening. For the truly devoted, however, who come in search of truth, it's the Nut Brown they're after. Often they arrive with a glazed look in their eyes, having endured days of office drudgery or the unknowable hardships of securing a parking spot. Set your cares aside, for all can find solace in this ale's yin-yang of nutty maltiness and delicate, dryish hoppiness. For our Nut Brown, an ale deep auburn in colour, we use a blend of Munich, caramel and chocolate malts to create a rich malty palate with a lingering dry chocolatiness.""}",1,37,1
+the_alchemist-heathen,0,0,245104508928,"{""name"":""Heathen"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""An american IPA brewed with a blend of 3 base malts and a multitude of hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
+spanish_peaks_brewing-peaches_and_cream,0,0,245122596864,"{""name"":""Peaches and Cream"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spanish_peaks_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,59,1
+raccoon_river_brewing-railyard_ale,0,0,245001617410,"{""name"":""Railyard Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
+spring_house_brewing_company,0,0,245105819649,"{""name"":""Spring House Brewing Company"",""city"":""Conestoga"",""state"":""Pennsylvania"",""code"":""17516"",""country"":""United States"",""phone"":"""",""website"":""http://www.springhousebeer.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2519 Main St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.9525,""lon"":-76.3295}}",1,17,1
+tomos_watkin_and_sons_ltd,0,0,245120892929,"{""name"":""Tomos Watkin and Sons Ltd."",""city"":""Swansea"",""state"":""Wales"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01792)-775333"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Unit 3, Century Park, Valley Way""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.6666,""lon"":-3.9443}}",1,54,1
+tworows_restaurant_brewery_dallas-esb,0,0,245105623041,"{""name"":""ESB"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+wainwright_brewing-black_jack_black_and_tan,0,0,245745975296,"{""name"":""Black Jack Black and Tan"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wainwright_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,15,1
+taylor_s_crossing_brewing-dominion_lager,0,0,245111521283,"{""name"":""Dominion Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,31,1
+southern_tier_brewing_co-phin_matt_s_extroidinary_ale,0,0,245114470400,"{""name"":""Phin & Matt's Extroidinary Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""After sampling a wide array of great beers, the duo hit upon an idea. \""I've got it!\"" exclaimed Matt, \""we'll use vast amounts of whole hops, the finest malt, and put a little love in each batch.\"" \""Eureka!\"" shouted Phin. And thus became a beer so fresh and tasty they had to put their names on it."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,38,1
+olde_main_brewing-caramel_apple_ale,0,0,244865105921,"{""name"":""Caramel Apple Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""olde_main_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,19,1
+rock_bottom_restaurant_brewery_san_jose-pilsner,0,0,244988248065,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+wychwood_brewery-bah_humbug,0,0,245747744769,"{""name"":""Bah Humbug"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,28,1
+shipwrecked_brew_pub-peninsula_porter,0,0,245004107776,"{""name"":""Peninsula Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
+uerige_obergrige_hausbrauerei-alt,0,0,245102870529,"{""name"":""Alt"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uerige_obergrige_hausbrauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,10,1
+odell_brewing-imperial_stout,0,0,244877164546,"{""name"":""Imperial Stout"",""abv"":7.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""odell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+rogue_ales-ten_thousand_brew_ale,0,0,244985626624,"{""name"":""Ten Thousand Brew Ale"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Brew 10,000: One Brewer, Eighteen Years, Ten-Thousand Batches of Beer. \r\n\r\nBrew 10,000 is not so much a style of beer, rather it is a new recipe using some of the best ingredients John Maier has ever brewed with... Vienna, French Special Aroma, and Maris Otter Pale Malts; Yakima Summit and German Saphir Hops, Free-range Coastal Waters, and PacMan Yeast. \r\n\r\nBrew 10,000 was brewed only once, so its allocated and very, very limited. Its packaged in the swing-top 750-ml ceramic bottle and available only at select retailers. Note, Brew 10,000 was sold out at the brewery in early 2007, however, very limited amounts may still available in the retail trade, email Schuyler@rogue.com for a retailer near you."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,12,1
+sharktooth_brewing,0,0,245004894209,"{""name"":""Sharktooth Brewing"",""city"":""Kahului"",""state"":""Hawaii"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":20.8947,""lon"":-156.47}}",1,57,1
+southern_tier_brewing_co-southern_tier_harvest_ale,0,0,245122072578,"{""name"":""Southern Tier Harvest Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,58,1
+white_marsh_brewing_company-avenue_ale,0,0,245745451009,"{""name"":""Avenue Ale"",""abv"":4.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_marsh_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""2007 Maryland Governor's Cup Bronze Medal:\r\nA golden colored ale with crisp malt character and a slightly spicy hop aroma. We use a good amount of wheat and some German malt in this one to give it a very refreshing taste. Avenue Ale is a true session beer, so sit down and prepare for a long one."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,11,1
+sandlot_brewery_at_coors_field,0,0,244994670595,"{""name"":""SandLot Brewery at Coors Field"",""city"":""Denver"",""state"":""Colorado"",""code"":""80205"",""country"":""United States"",""phone"":""1-303-298-1587"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2145 Blake Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7557,""lon"":-104.993}}",1,34,1
+route_66_brewery-river_city_red_ale,0,0,244995129345,"{""name"":""River City Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""route_66_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,35,1
+stevens_point_brewery,0,0,245114142721,"{""name"":""Stevens Point Brewery"",""city"":""Stevens Point"",""state"":""Wisconsin"",""code"":""54481"",""country"":""United States"",""phone"":""1-715-344-9310"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2617 Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.5104,""lon"":-89.5734}}",1,37,1
+the_alchemist-light_weight,0,0,245104508929,"{""name"":""Light Weight"",""abv"":4.33,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Our lightest beer, and our Bronze Medal Winner 2006 World Beer Cup German pilsner malt and American hops give this brew a light, crisp finish. Made with the light beer drinker in mind."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,14,1
+spilker_ales-espresso_stout_discontinued,0,0,245122596865,"{""name"":""Espresso Stout (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
+red_kettle_brewing-dark,0,0,245001682944,"{""name"":""Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""red_kettle_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,50,1
+stieglbrauerei_zu_salzburg_gmbh-weizengold_hefefein,0,0,245105885184,"{""name"":""Weizengold Hefefein"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stieglbrauerei_zu_salzburg_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""Stiegl Weizengold. It has 12o original gravity; the choicest ingredients and a top fermentation process are responsible for the highest possible quality and an unmistakable flavor. It is brewed according to the classic wheat beer recipe: 60 % wheat malt and 40 % barley malt, top fermentation and in compliance with the Purity Law of 1516. This fine yeast wheat beer specialty is a refreshing, natural and stimulating beer brand."",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,17,1
+tunner_s_guild_brewing_systems-berkshire_springs_stock_ale,0,0,245120892930,"{""name"":""Berkshire Springs Stock Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tunner_s_guild_brewing_systems"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,54,1
+tyranena_brewing-hopwhore_imperial_india_pale_ale,0,0,245105623042,"{""name"":""HopWhore Imperial India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,16,1
+wernesgruner_brauerei_gmbh-wernesgruner_pils_legende,0,0,245746040832,"{""name"":""Wernesgrüner Pils Legende"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wernesgruner_brauerei_gmbh"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic German-style Pils"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,15,1
+thomas_kemper_brewing-oktoberfest,0,0,245111586816,"{""name"":""Oktoberfest"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_kemper_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,31,1
+spilker_ales-wind_chill_spiced_ale_discontinued,0,0,245114535936,"{""name"":""Wind Chill Spiced Ale (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+orkney_brewery-skullsplitter_ale,0,0,244865171456,"{""name"":""Skullsplitter Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""orkney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Skull Splitter is our strongest ale: which is named after Thorfinn Einarsson who was the 7th Viking Earl of Orkney. Sophisticated, satiny smooth with a deceptively light character, it is a tribute to our colourful forbear.\r\n\r\nOn the nose, this strong beer has a fruity malt character, with hints of dark fruit, spicy hop, dates and figs.\r\n\r\nOn the palate, rich and complex with sweet toasted malt, molasses, fresh and dried fruit and hints of warming spices."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,19,1
+rogue_ales-issaquah_bullfrog_ale,0,0,244988248066,"{""name"":""Issaquah Bullfrog Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""An American style wheat beer and an Issaquah Brewhouse origina. Light in color and body and served with a lemon, Bullfrog is crisp, refreshing and goes down easy. Take a flying leap!\r\n\r\nBullfrog Ale took the Silver Medal at the 2004 Great American Beer Festival in the American Wheat category."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
+sierra_nevada_brewing_co-torpedo_extra_ipa,0,0,245004107777,"{""name"":""Torpedo Extra IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Sierra Nevada Torpedo Ale is a big American IPA; bold, assertive and full of flavor and aromas highlighting the complex citrus, pine and herbal character of whole-cone American hops.\r\n\r\nNamed after the torpedo-shaped hopback employed in its making, is an IPA made with Chinook, Cascade and Centennial hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,55,1
+upper_mississippi_brewing-mudcat_stout,0,0,245102870530,"{""name"":""Mudcat Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,10,1
+otter_creek_brewing_wolaver_s_organic_ales-alta_gracia_coffee_porter,0,0,244877230080,"{""name"":""Alta Gracia Coffee Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-12-20 16:10:29"",""description"":""Brewed with organic roasted barley and chocolate malts for a rich, dark and robust flavor with an infusion of organic vanilla beans and coffee from the Dominican Republic farm community Alta Gracia. "",""style"":""Porter"",""category"":""North American Ale""}",1,49,1
+russell_brewing-cream_ale,0,0,244985626625,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russell_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,12,1
+south_county_brewing_co,0,0,245121679360,"{""name"":""South County Brewing Co."",""city"":""Fawn Grove"",""state"":""Pennsylvania"",""code"":""17321"",""country"":""United States"",""phone"":"""",""website"":""http://www.southcountybrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""104 Mill St.""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.7323,""lon"":-76.4496}}",1,57,1
+spilker_ales-cortland_wheat,0,0,245122138112,"{""name"":""Cortland Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spilker_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+youngs_company_brewery-old_nick,0,0,245745451010,"{""name"":""Old Nick"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,11,1
+sharktooth_brewing-amber,0,0,244994736128,"{""name"":""Amber"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sharktooth_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
+saint_louis_brewery_schlafy_tap_room-schlafly_oatmeal_stout,0,0,244995129346,"{""name"":""Schlafly Oatmeal Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+stroh_brewery_company-hatuey_beer,0,0,245114142722,"{""name"":""Hatuey Beer"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stroh_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+the_blind_bat_brewery_llc-hellsmoke_porter,0,0,245104508930,"{""name"":""Hellsmoke Porter"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_blind_bat_brewery_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""A roasty robust porter. \r\nBrewed with malt that I smoke over alder and apple wood. \r\n\r\nGoes great with steak, burgers, \r\nas well as barbecued, grilled, or smoked food. \r\nKielbasi! \r\n\r\nCheeses? \r\nTry it with Gouda, Brie, Swiss, or Havarti."",""style"":""Porter"",""category"":""Irish Ale""}",1,14,1
+spring_house_brewing_company-kerplunk_imperial_chocolate_stout,0,0,245122596866,"{""name"":""Kerplunk Imperial Chocolate Stout"",""abv"":8.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Kerplunk! Imperial Chocolate Stout is named for the delicious sound made as large amounts of Wilbur chocolate and west coast hops are added directly into the simmering brew kettle. This hefty black imperial-style stout boasts a rich caramel sweetness lavished by a robust, deep-roasted heartiness you can sink your two front teeth into. The bold flavors found in Kerplunk! are produced using a generous blend of roasted barley, crystal malts and locally produced chocolate. The resulting brew exhibits a deliciously complex and unique profile of subtle mocha coffee and intense chocolate, balanced nicely by the underlying roasted hop bitterness. This is a balanced strong brew boasting an A.B.V. of 8.1% that can creep up on you.""}",1,59,1
+rogue_ales-golden_frog,0,0,245001682945,"{""name"":""Golden Frog"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""A Belgian - Style Pale Ale. The Belgian yeast produces flavors of cloves, banana, and other spices that meld perfectly with the malt and hops. Ingredients: Pilsner Malt, Saaz Hops, Blegian Yeast, Free Range Cascade Water.\r\nNo Chemicals, Additives or Preservatives."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,50,1
+stone_cellar_brewpub_restaurant-riverboat_rye,0,0,245105885185,"{""name"":""Riverboat Rye"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_cellar_brewpub_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+unibroue-15,0,0,245120958464,"{""name"":""15"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+upper_mississippi_brewing-mullin_brown,0,0,245105623043,"{""name"":""Mullin Brown"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,16,1
+yamhill_brewing-best_mild_discontinued,0,0,245746040833,"{""name"":""Best Mild (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yamhill_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,15,1
+tommyknocker_brewery_and_pub-jack_whacker_wheat_ale,0,0,245111586817,"{""name"":""Jack Whacker Wheat Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Jack Whacker Wheat Ale is a light, unfiltered brew with a citrus aroma and flavor imparted by a late addition of lemon grass. It's the perfect refreshment for a thirsty, trail-weary ale lover."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,31,1
+st_peter_s_brewery-winter_ale,0,0,245114535937,"{""name"":""Winter Ale"",""abv"":6.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,38,1
+otter_creek_brewing_wolaver_s_organic_ales-copper_ale,0,0,244865171457,"{""name"":""Copper Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""otter_creek_brewing_wolaver_s_organic_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Copper Ale, a medium bodied, amber ale inspired by the Altbiers of Northern Germany. Brewed with six different malts, three hop varieties and our special house yeast, Copper Ale is characterized by a well-balanced blend of malty notes and mild bitterness."",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,19,1
+rogue_ales-santas_private_reserve,0,0,244988248067,"{""name"":""Santas Private Reserve"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Rogues annual holiday offering, Santas Private Reserve, is a variation of the classic Saint Rogue Red, but with double the hops--including Chinook, and Centennial, and a mystery hop called Rudolph by head brewer John \""more hops\"" Maier!This holiday elixir is brewed with two-row Harrington, Klages and Munich malts, along with Hugh Baird 30-37, Carastan 13-17, and Crystal 70-80 malts, plus free range coastal water and Johns proprietary top-fermenting Pacman yeast. Available in both 22-ounce bottles, 12oz Loose packs for Winter 2005, and 12oz six packs for 2006."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,18,1
+silver_gulch_brewing_company-anchorage_ale,0,0,245004107778,"{""name"":""Anchorage Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""silver_gulch_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+upstream_brewing_old_market-heartland_hefeweizen,0,0,245103001600,"{""name"":""Heartland Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,10,1
+pearl_street_brewery,0,0,245001027584,"{""name"":""Pearl Street Brewery"",""city"":""La Crosse"",""state"":""Wisconsin"",""code"":""54603"",""country"":""United States"",""phone"":""1-608-784-4832"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1401 Saint Andrew Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.8344,""lon"":-91.2362}}",1,49,1
+sabmiller_india,0,0,244985626626,"{""name"":""Sabmiller India,"",""city"":""Bangalore"",""state"":""Karnataka"",""code"":""560022"",""country"":""India"",""phone"":""91 (0) 80 - 22198800"",""website"":""http://www.sabmiller.in/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""If you are contacting SABMiller India with a question, then please feel free to find the answer to your question by contacting us."",""address"":[""SKOL Breweries Limited""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":12.9683,""lon"":77.657}}",1,12,1
+southend_brewery_and_smokehouse_charleston-ironman_wheat,0,0,245121744896,"{""name"":""Ironman Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
+spoetzl_brewery-shiner_blonde,0,0,245122203648,"{""name"":""Shiner Blonde"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spoetzl_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+shepherd_neame,0,0,244994736129,"{""name"":""Shepherd Neame"",""city"":""Faversham"",""state"":""Kent"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01795)-532206"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""17 Court Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":51.3169,""lon"":0.8921}}",1,34,1
+saint_louis_brewery_schlafy_tap_room-schlafly_oktoberfest,0,0,244995194880,"{""name"":""Schlafly Oktoberfest"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""A malty, full-bodied, deep reddish-amber lager. Traditionally brewed in March for the Oktoberfest in the fall, this style is also known as Märzen. Also available in bottles."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,35,1
+t_bonz_gill_grill_and_brewery-market_street_wheat,0,0,245114142723,"{""name"":""Market Street Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,37,1
+the_hop_yard,0,0,245104574464,"{""name"":""The Hop Yard"",""city"":""San Ramon"",""state"":""California"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":""http://www.hopyard.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Good rotating selection of beers from distinct breweries. Good food as well."",""address"":[""Bollinger Canyon Rd.""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":37.7839,""lon"":-122.001}}",1,14,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-satin_stout,0,0,245122662400,"{""name"":""Satin Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,59,1
+santa_fe_brewing_company-santa_fe_wheat,0,0,245001682946,"{""name"":""Santa Fe Wheat"",""abv"":5.25,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A true Bavarian wheat yeast, sixty percent wheat malt, and German hops make Santa Fe Wheat Beer as true to the style as any American rendition can be. German Wheat Beer, with its hints of banana and clove, its delectable, spicy, hops, and its pale golden color, is becoming increasingly popular in America’s craft brewing world, and with good reason: wheat beers are both light enough to please light beer drinkers, and complex enough to please true micro-brew connoisseurs. To mimic a classic German Hefeweisen, after pouring your Santa Fe Wheat Beer into a glass, swirl the last few drops in the bottle to loosen the yeast from the bottom, then pour the yeast over the top of your beer."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,50,1
+stone_coast_brewing_portland-sunday_river_alt,0,0,245105950720,"{""name"":""Sunday River Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_coast_brewing_portland"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,17,1
+valley_brewing_company-valley_brewing_apricot_ale,0,0,245120958465,"{""name"":""Valley Brewing Apricot Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Apricot Ale is a fruit beer produced using 100% Apricot fruit extract. The beer has a hint of Apricot in the nose and a sweet clean and refreshing finish."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,54,1
+upstream_brewing_company_at_legacy-oak_aged_ipa,0,0,245105688576,"{""name"":""Oak Aged IPA"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+yards_brewing-thomas_jefferson_s_tavern_ale,0,0,245746040834,"{""name"":""Thomas Jefferson's Tavern Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""All beers are not created equal.\r\n\r\nWhile Thomas Jefferson spent much of his time in Philadelphia drafting, editing, revising, and re-editing the Declaration of Independence, he longed to be home in Monticello, where twice a year his wife Martha would brew up one of his favorite beverages — beer.\r\n\r\nThomas Jefferson Tavern Ale™ is a strong golden ale, based on Jefferson's original recipe, which included ingredients specified and grown on his Virginia estate.\r\n\r\nEnjoy a taste of history, courtesy of Yards Brewing Company, Philadelphia's premier brewer and bottler.""}",1,15,1
+tongerlo-tongerlo_dubbel_blond,0,0,245111586818,"{""name"":""Tongerlo Dubbel Blond"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tongerlo"",""updated"":""2010-07-22 20:00:20"",""description"":""DOUBLE BLONDE 6°\r\nCopper-coloured beer with a honey aroma, a full and smooth flavour and a gently evolving aftertaste"",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,31,1
+the_alchemist-el_jefe,0,0,245114535938,"{""name"":""El Jefe"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""Our holiday ale. This I.D.A., India Dark Ale, is crisp, bitter and overflowing with the aroma of spruce. Perfect for the holidays."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+phoenix_beverages_ltd-phoenix,0,0,244988444672,"{""name"":""Phoenix"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""phoenix_beverages_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""A polished, golden yellow beer with 5% alcohol. Phoenix beer is pasteurised after bottling, according to natural conservation methods. The quality of the underground water also allows us to produce a beer with no chemicals additives. Time of maturation before distribution is meticulously controlled.""}",1,19,1
+ruppaner_brauerei-hefe_weizen_hell,0,0,244988313600,"{""name"":""Hefe Weizen Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ruppaner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,18,1
+simmerberg_brusttt_und_taferne-braustatt_pils,0,0,245004173312,"{""name"":""Bräustatt Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""simmerberg_brusttt_und_taferne"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+victory_brewing-helios,0,0,245103001601,"{""name"":""Helios"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,10,1
+pivzavod_baltika-baltika_6_porter,0,0,245001093120,"{""name"":""Baltika 6 Porter"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pivzavod_baltika"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,49,1
+sacramento_brewing_company,0,0,244985692160,"{""name"":""Sacramento Brewing Company"",""city"":""Sacramento"",""state"":""California"",""code"":""95821"",""country"":""United States"",""phone"":""(916) 485-4677"",""website"":""http://sacbrew.blogspot.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2713 El Paseo Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.6191,""lon"":-121.4}}",1,12,1
+speakeasy_ales_and_lagers-double_daddy,0,0,245121744897,"{""name"":""Double Daddy"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,57,1
+steamworks-blitzen_christmas_ale,0,0,245122203649,"{""name"":""Blitzen Christmas Ale"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""A strong, fruity, belgian-style trippel 8.5% alc./vol.\r\n\r\nOur aptly named Christmas Ale is based on the strong beers traditionally brewed by Belgium's trappist monasteries. Trippel is typically at least 8% alc./vol. and has a light golden colour. Because of its high strength this beer has an intensely fruity palate. Up front it has a honeyish sweetness but the finish is dry and champagne-like. Most weary Christmas shoppers would be well advised to benefit from the warmth and 'ho-ho-ho factor' that only a beer of the Biltzen's calibre can provide."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,58,1
+sherlock_s_home-cologne_golden_ale,0,0,244994736130,"{""name"":""Cologne Golden Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sherlock_s_home"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+saint_somewhere_brewing_company-lectio_divina,0,0,244995194881,"{""name"":""Lectio Divina"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_somewhere_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the spirit of the abbey ales of Belgium. Brewed with the same care and attention to the Art of Brewing that is practiced in the monastic breweries of Belgium.\r\n\r\nA Belgian inspired amber. This beer gets it’s color from the candi sugar, as it is made without dark or crystal malts."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,35,1
+tap_room_brewing_company-tap_room_no_21_amber_ale,0,0,245114208256,"{""name"":""Tap Room No. 21 Amber Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tap_room_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,37,1
+the_lost_abbey-the_angel_s_share_bourbon_barrel_aged,0,0,245104574465,"{""name"":""The Angel's Share - Bourbon Barrel Aged"",""abv"":12.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_lost_abbey"",""updated"":""2010-07-22 20:00:20"",""description"":""own in Kentucky and across the pond in Scotland, distillers who age their whiskeys for many years refer to the evaporation of the spirits from their barrels as \""The Angel's Share.\"" We couldn’t agree more. Each time a barrel is filled, a measure of liquid seeps into the oak and is lost for good.\r\n\r\nThis striking Strong Ale is brewed with copious amounts of Caramel malt to emphasize the vanilla and oak flavors found in freshly emptied bourbon or brandy barrels. The beer spends a year in oak before it is packaged for release. The beer is 12.5% ABV and is available in 375ml and 750ml bottles and on draft at inspired locations."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,14,1
+strangford_lough_brewing_company_ltd,0,0,245122662401,"{""name"":""Strangford Lough Brewing Company Ltd"",""city"":""Killyleagh"",""state"":""County Down"",""code"":""BT30 9UE"",""country"":""Ireland"",""phone"":""+44 (0)28 4482 1461"",""website"":""http://slbc.ie/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Braidleigh Lodge 22 Shore Road""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":54.3906,""lon"":-5.6548}}",1,59,1
+shipwrecked_brew_pub-lighthouse_light,0,0,245001748480,"{""name"":""Lighthouse Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shipwrecked_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+storm_brewing-fruit_lambics,0,0,245105950721,"{""name"":""Fruit Lambics"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""storm_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""These authentic Belgian-style ales are intensely sour, dry and complex. All three of the lambics - Raspberry, Blackberry and Black Cherry - are aged in oak casks for more than one year. 15 kg, give or take, of whole unpasteurized fruit is added to each 200 litre oak barrel of fermented beer. The naturally occurring wild yeasts cause a second, slow fermentation, breaking down the fruit sugars to total dryness."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,17,1
+victory_brewing-st_victorious,0,0,245120958466,"{""name"":""St. Victorious"",""abv"":7.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""From the tradition started by the monks of St. Francis of Paula in 1634 comes this warming beer of rich heritage. A dark, rich lager of sublime complexity and character, St. Victorious is created from multiple German malts. Laborious decoction mashing yields the choicest elements of the malt. Long, cold aging mellows the strong temperament of this subtle beer. Celebrate the end of winter with a warming draft of St. Victorious Doppelbock!"",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+water_street_lake_country-pils,0,0,245746106368,"{""name"":""Pils"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_lake_country"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,16,1
+troegs_brewing-scratch_14_2008,0,0,245111652352,"{""name"":""Scratch #14 2008"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #14-2008 is our interpretation of a farmhouse ale—a once near-extinct winter-brewed (and summer–imbibed) Belgian ale.\r\n\r\nOur celebratory brew starts with a black pepper and ginger nose. The nicely carbonated brew releases a honey-malt flavor that gives way to a tart crisp finish that masks the elevated ABV.\r\n\r\nWe use a blended yeast strain (Saison Dupont & Le Chouffe) to create the traditional peppery, spicy earthy flavors of the saison. Slight hints of ginger also come through in the finish.\r\n\r\nDrink it ‘til the wedding bells chime!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,31,1
+thunderhead_brewery-dry_stout,0,0,245114601472,"{""name"":""Dry Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,38,1
+pizza_port_brewing_solana_beach-cuvee_de_tomme,0,0,244988510208,"{""name"":""Cuvee de Tomme"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizza_port_brewing_solana_beach"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+saint_louis_brewery_schlafy_tap_room-schlafly_pale_ale,0,0,244988313601,"{""name"":""Schlafly Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+sioux_falls_brewing-ringneck_red_ale,0,0,245004173313,"{""name"":""Ringneck Red Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sioux_falls_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,55,1
+victory_brewing,0,0,245745188864,"{""name"":""Victory Brewing"",""city"":""Downingtown"",""state"":""Pennsylvania"",""code"":""19335"",""country"":""United States"",""phone"":""1-610-873-0881"",""website"":""http://www.victorybeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""420 Acorn Lane""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.0061,""lon"":-75.6942}}",1,10,1
+pizzeria_uno_chicago_grill_brewery-bootlegger_blonde_ale,0,0,245001093121,"{""name"":""Bootlegger Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pizzeria_uno_chicago_grill_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,49,1
+sports_city_cafe_brewery-creamy_stout,0,0,245103525888,"{""name"":""Creamy Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+st_peter_s_brewery-golden_ale,0,0,245121810432,"{""name"":""Golden Ale"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_peter_s_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+steve_and_clark_s_brew_pub_and_sausage_co_2,0,0,245122269184,"{""name"":""Steve and Clark's Brew Pub and Sausage Co. #2"",""city"":""Durham"",""state"":""North Carolina"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":35.994,""lon"":-78.8986}}",1,58,1
+sierra_nevada_brewing_co-bigfoot_2002,0,0,244994736131,"{""name"":""Bigfoot 2002"",""abv"":9.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+santa_fe_brewing_company-sante_fe_pale_ale,0,0,244995194882,"{""name"":""Sante Fe Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_fe_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Anything but a typical American Pale, Santa Fe Pale Ale is as full bodied as its most robust English counterparts, while asserting its American origin with a healthy nose resplendent with Cascade and Willamette hops. It finishes with a well-balanced combination of the subtle, almost Pilsner-like maltiness accentuated by the German yeast used to brew this Santa Fe classic, and a hop bite sufficient to leave a lingering smile on the face of any fan of American Pale Ales."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+terrapin_beer_company-terrapin_midnight_project_depth_charge_espresso_milk_stout,0,0,245114208257,"{""name"":""Terrapin Midnight Project Depth Charge Espresso Milk Stout"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Terrapin Midnight Project Brew Two 2009. Sometime around midnight in a city nobody can agree on, the idea for Terrapin and Left Hand to brew a collaboration beer was born. Depth Charge is the second in the series of one-time releases between the two breweries. Be wary of the calm before the storm. This creamy, deeply delicious milk stout will seduce you into submission while the explosion of hand roasted gourmet espresso will blow you into next week. We Shall Drink in the breweries. We Shall Drink in the pubs, We Shall Drink the the comfort of our homes. We Shall Never Surrender."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,37,1
+thirstybear_brewing-brown_bear_ale,0,0,245104640000,"{""name"":""Brown Bear Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,14,1
+terrapin_beer_company-capt_n_krunkles,0,0,245122727936,"{""name"":""Capt'n Krunkles"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A black IPA.""}",1,59,1
+skagit_river_brewing-yellowjacket_pale_ale,0,0,245001748481,"{""name"":""Yellowjacket Pale Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""skagit_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,50,1
+terrapin_beer_company-terrapin_rye_pale_ale,0,0,245105950722,"{""name"":""Terrapin Rye Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""By using an exact amount of rye, a grain seldom found in other micro brewed beers, the Rye Pale Ale acquires its signature taste. Made with five varieties of hops and a generous amount of specialty malts, it offers a complex flavor and aroma that is both aggressive and well balanced – a rare find among beers.\r\n\r\nThe Terrapin Rye Pale Ale was released in Athens, GA in April of 2002 at the Classic City Brew Fest. Six months later this beer which was sold only in Athens was awarded the American Pale Ale Gold Medal at the 2002 Great American Beer Festival, the most prestigious competition in North America. We hope you will agree with our peers in the brewing industry that this is truly one of the best pale ales in the country."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+whitbread_beer_company,0,0,245751611392,"{""name"":""Whitbread Beer Company"",""city"":""Luton"",""state"":""Bedford"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01582)-391166"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Porter Tun House""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.1357,""lon"":-0.468}}",1,54,1
+weissbierbrauerei_hopf-weisse_export_helle_wesse,0,0,245746106369,"{""name"":""Weiße Export / Helle Weße"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weissbierbrauerei_hopf"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,16,1
+troegs_brewing-the_mad_elf,0,0,245111652353,"{""name"":""The Mad Elf"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The Mad Elf, a cheerful creation to warm your heart and enlighten your tongue. The combination of Cherries, Honey, and Chocolate Malts delivers gentle fruits and subtle spices. Fermented and aged with a unique yeast, this ruby red beer has significant warming strength that underlies the pleasant character of this intriguing yet delicious Ale. The Mad Elf, a jolly and delicious beer for the Holidays.""}",1,31,1
+thunderhead_brewery_2,0,0,245114601473,"{""name"":""Thunderhead Brewery #2"",""city"":""Grand Island"",""state"":""Nebraska"",""code"":""68801"",""country"":""United States"",""phone"":""1-308-398-2500"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""120 East Third Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.9259,""lon"":-98.3397}}",1,38,1
+port_brewing_company-mongo_double_ipa,0,0,244988510209,"{""name"":""Mongo Double IPA"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""port_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A Double IPA brewed in memory of the brew cat. In honor of Mongo, Mike Rodriguez made his first Double IPA, as he loved the cat and wanted to honor him with this beer. This 8.5% abv beer was made with Columbus hops (Mongo’s Birthname), Cascade for the Mama cat, and Simocoe because that is Mike’s favorite hop."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,19,1
+seabright_brewery-blur_ipa,0,0,244988313602,"{""name"":""Blur IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
+sprecher_brewing-black_bavarian_lager,0,0,245120958464,"{""name"":""Black Bavarian Lager"",""abv"":5.86,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sprecher_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This intensely dark Kulmbacher style lager has a superb malt complexity with the distinctive flavors and aromas of coffee, caramel and chocolate.\r\n\r\nA renowned smoothness and a creamy, tan head make it a world champion."",""style"":""German-Style Schwarzbier"",""category"":""German Lager""}",1,55,1
+wdi_bru_huus-hanf,0,0,245745254400,"{""name"":""Hanf"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+porterhouse_restaurant_and_brewpub-irish_stout,0,0,245001093122,"{""name"":""Irish Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""porterhouse_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+spring_house_brewing_company-planet_bean_coffee_stout,0,0,245103525889,"{""name"":""Planet Bean Coffee Stout"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spring_house_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed to give the stout a smoother, almost slick, mouthfeel with a nice finish of coffee provided by Cumberland Coffee and Tea Company. Dark malts are used to give this beer a very complex roast flavor. Lower bittering rates ~30 IBU’s helps put the flavor highlighting the maltiness, and roasted malt. ABV is coming in around 7% on this one!""}",1,12,1
+steam_whistle_brewery-steamwhistle_lager,0,0,245121810433,"{""name"":""Steamwhistle Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steam_whistle_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Good clean lager."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,57,1
+t_bonz_gill_grill_and_brewery,0,0,245122269185,"{""name"":""T-Bonz Gill, Grill and Brewery"",""city"":""Mount Pleasant"",""state"":""South Carolina"",""code"":""29464"",""country"":""United States"",""phone"":""1-843-971-7777"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1028 Johnny Dodds Boulevard""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":32.8091,""lon"":-79.875}}",1,58,1
+sierra_nevada_brewing_co-summerfest,0,0,244994801664,"{""name"":""Summerfest"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nOur Summerfest® is a refreshing, pilsner-style lager. Its incredible smoothness comes from an extra-long lagering period. Lighter in body than our ales but just as complex in character, Summerfest® quenches your thirst with big aroma and a tangy hop bite. \r\n\r\nGOLD MEDAL WINNER\r\nCalifornia State Fair (European Light Lagers: 1999)"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,34,1
+sarah_hughes_brewery-dark_ruby_ale,0,0,244995194883,"{""name"":""Dark Ruby Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sarah_hughes_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+three_floyds_brewing,0,0,245114208258,"{""name"":""Three Floyds Brewing"",""city"":""Munster"",""state"":""Indiana"",""code"":""46321"",""country"":""United States"",""phone"":""1-219-922-3565"",""website"":""http://www.threefloydspub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""9750 Indiana Parkway""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":41.5354,""lon"":-87.5158}}",1,37,1
+three_floyds_brewing-gumballhead,0,0,245104640001,"{""name"":""Gumballhead"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Three Floyds official summer beer highly dry hopped American wheat beer. Quite hoppy. Gumballhead is brewed from red wheat and amarillo hops. It has a medium haze, due to bottle conditioning; once the beer is bottled, extra yeast is added for a secondary fermentation. The hops give off a pronounced citrus note on the nose. Notes of bread - from the yeast - and a good malt undertone. Medium carbonation."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,14,1
+the_alchemist-revitalization_rye,0,0,245122727937,"{""name"":""Revitalization Rye"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""This IPA is brewed with 35% rye malt. The crisp malt character is layered with Warrior hops. Dry-hopped with Warrior and Simcoe."",""style"":""American Rye Ale or Lager"",""category"":""Other Style""}",1,59,1
+sly_fox_brewhouse_and_eatery_royersford-instigator_doppelbock,0,0,245119320064,"{""name"":""Instigator Doppelbock"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
+the_church_brew_works-pious_monk_dunkel,0,0,245106016256,"{""name"":""Pious Monk Dunkel"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""Gold Medal Winner of the Great American Beer Festival. Our beer is fairly dark in color, but don’t be afraid. It is a perfect example that dark beers are not always strong beers. The body is surprisingly mellow, and the alcohol content is a bit lower than most people might think. It has a wonderfully clean and roasty aroma. Hop bitterness levels are kept in line, but is has a noticeable hop flavor.""}",1,17,1
+williams_brothers_brewing_company-kelpie_seaweed_ale,0,0,245751742464,"{""name"":""Kelpie Seaweed Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+white_winter_winery,0,0,245746106370,"{""name"":""White Winter Winery"",""city"":""Iron River"",""state"":""Wisconsin"",""code"":""54847"",""country"":""United States"",""phone"":""1-800-697-2006"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""7665 US Highway 2""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":47.3812,""lon"":-94.6669}}",1,16,1
+twin_rivers_brewing-n_w_pale_ale,0,0,245111652354,"{""name"":""N.W. Pale Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_rivers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+titletown_brewing-steam_engine_common,0,0,245114667008,"{""name"":""Steam Engine Common"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,38,1
+pyramid_alehouse_brewery_and_restaurant_berkeley-thomas_kemper_porter,0,0,244988575744,"{""name"":""Thomas Kemper Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""pyramid_alehouse_brewery_and_restaurant_berkeley"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
+seabright_brewery-oatmeal_stout,0,0,244988379136,"{""name"":""Oatmeal Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""seabright_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,18,1
+stevens_point_brewery-pale_ale,0,0,245121089536,"{""name"":""Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+wells_and_youngs_brewing_company_ltd,0,0,245745254401,"{""name"":""Wells and (&) Youngs Brewing Company Ltd."",""city"":"""",""state"":"""",""code"":"""",""country"":""United Kingdom"",""phone"":"""",""website"":""http://www.bombardier.co.uk/bombardier"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,10,1
+prescott_brewing_company-willow_wheat,0,0,245001158656,"{""name"":""Willow Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""prescott_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
+staatliches_hofbrauhaus_in_munchen-original,0,0,245103591424,"{""name"":""Original"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""staatliches_hofbrauhaus_in_munchen"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+stone_brewing_co-stone_10th_anniversery_ipa,0,0,245121810434,"{""name"":""Stone 10th Anniversery IPA"",""abv"":10.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Stone 10th Anniversary IPA harkens back to our earlier Anniversary Ales, with abundant hopping at many stages of the brewing process. Appropriately, the aroma is over-the-top, with pronounced piney and resiny hop flavors combined with tropical fruit esters and more subtle notes of toasted malts and alcohol. Our Stone 10th Anniversary Ale weighs in at 10% alcohol by volume (perfect for a 10th anniversary beer), and has a little more color and malt character than our other IPAs. In addition to using the new Summit hop variety in the brewhouse to provide the powerful bitterness, we went back through our records and found some of our favorite hops over the years, and used them to flavor this brew, including Chinook, Crystal, and large doses of Simcoe in the dry-hop to provide a huge, complex, piney, fruity and floral hop character. This is a colossal beer, big in every sense: hoppy, malty, rich, and strong! Right up our alley."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,57,1
+tabernash_brewing-weiss,0,0,245122269186,"{""name"":""Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
+six_rivers_brewery-six_rivers_ipa,0,0,244994801665,"{""name"":""Six Rivers IPA"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""six_rivers_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
+schlobrauerei_reckendorf-edel_pils,0,0,244995260416,"{""name"":""Edel-Pils"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""schlobrauerei_reckendorf"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+tommyknocker_brewery_and_pub,0,0,245114273792,"{""name"":""Tommyknocker Brewery and Pub"",""city"":""Idaho Springs"",""state"":""Colorado"",""code"":""80452"",""country"":""United States"",""phone"":""1-303-567-2688"",""website"":""http://www.tommyknocker.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1401 Miner Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7418,""lon"":-105.518}}",1,37,1
+thunder_canyon_brewery-thunderhead_ipa,0,0,245104640002,"{""name"":""Thunderhead IPA"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunder_canyon_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Granddaddy of Pale Ales, this style got its start as a special brew for English soldiers living in India. Our IPA is a medium bodied ale, with a light copper color characterized by an intense hop flavor, with a full flowery hop aroma and higher alcohol content."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,14,1
+timmermans-timmermans_framboise,0,0,245122793472,"{""name"":""Timmermans Framboise"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""timmermans"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,59,1
+sly_fox_brewhouse_and_eatery_royersford-piketown_pils,0,0,245119320065,"{""name"":""Piketown Pils"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sly_fox_brewhouse_and_eatery_royersford"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+titletown_brewing-hopping_turtle_pale_ale,0,0,245106016257,"{""name"":""Hopping Turtle Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+wychwood_brewery-wychcraft,0,0,245751742465,"{""name"":""Wychcraft"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,54,1
+wynkoop_brewing,0,0,245746171904,"{""name"":""Wynkoop Brewing"",""city"":""Denver"",""state"":""Colorado"",""code"":""80202"",""country"":""United States"",""phone"":""1-303-297-2700"",""website"":""http://www.wynkoop.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1634 18th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.7535,""lon"":-104.998}}",1,16,1
+upstream_brewing_company_at_legacy-double_ipa,0,0,245111717888,"{""name"":""Double IPA"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,31,1
+tollemache_and_cobbold_brewery-ipa,0,0,245114667009,"{""name"":""IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tollemache_and_cobbold_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,38,1
+pyramid_alehouse_brewery_and_restaurant_seattle,0,0,244988575745,"{""name"":""Pyramid Alehouse, Brewery and Restaurant - Seattle"",""city"":""Seattle"",""state"":""Washington"",""code"":""98134"",""country"":""United States"",""phone"":""1-206-682-3377"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1201 First Avenue South""]}",1,19,1
+shaftebury_brewing-cream_ale,0,0,244988379137,"{""name"":""Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shaftebury_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,18,1
+stone_cellar_brewpub_restaurant-masterpiece_porter,0,0,245121089537,"{""name"":""Masterpiece Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_cellar_brewpub_restaurant"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
+wernesgruner_brauerei-pils_legende,0,0,245745254402,"{""name"":""Pils Legende"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wernesgruner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,10,1
+pripps_ringnes_bryggerier,0,0,245001158657,"{""name"":""Pripps Ringnes Bryggerier"",""city"":""Bromma"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":60.4877,""lon"":9.1885}}",1,49,1
+steamworks-signature_pale_ale,0,0,245103656960,"{""name"":""Signature Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""The term \""Pale Ale\"" dates back to the 1800s when all beer was dark brown in colour. New malting techniques led to the development of pale malt, a barley malt kilned at low temperatures which contributed very little colour to the finished beer. Hence the birth of Pale Ale, an amber- to copper-coloured ale you could actually see through. Plenty of British Crystal malt in the grist lends this ale its rich colour, its caramel maltiness, and adds the occasional whiff of toffee to the nose. An addition of American and German hops to the kettle at the end of the boil is used to suffuse our Pale Ale with a gently spicy hop finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+stone_brewing_co-stone_ipa,0,0,245121875968,"{""name"":""Stone IPA"",""abv"":6.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""An \""India Pale Ale\"" by definition is highly hopped and high in alcohol (ours is 6.9% alc./vol.).\r\n\r\nMedium Bodied Refreshing Ale\r\nLight-medium malt character with a heavy dose of over the top hops! Two full weeks of \""dry hopping\"" give this beer its abundant hop aroma and crisp hop flavor."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
+the_livery-the_livery_kilt_tilter,0,0,245122334720,"{""name"":""The Livery Kilt Tilter"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Our version of a Scotch Ale is made with a portion of peat smoked barley. Very malty, with a subtle smoky finish. Also available in a barrel aged version."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,58,1
+smuttynose_brewing_co-smuttynose_finestkind_ipa,0,0,245112766464,"{""name"":""Smuttynose Finestkind IPA"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""smuttynose_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Portsmouth is a colonial era seaport town, so it goes to follow that sooner or later we'd brew an India Pale Ale as a tribute to those big, hoppy 19th century ales that made the long sea voyage from England's temperate shores, 'round the Cape of Good Hope, to the sultry climes of the faraway East Indies.\r\n\r\nBut there's another reason we brewed this beer, one that's closer to our home and hearts. Hopheads. \r\n\r\nTen years ago we brewed our first batch of Shoals Pale Ale, our American interpretation of the traditional British ESB (Extra Special Bitter) style. At the time, it was widely considered to be darned hoppy. However, a funny thing happened over the last decade - our Shoals Pale Ale didn't change; beer lovers did, and we started to hear more and more: “Why don't you guys make a really hoppy beer?”\r\n\r\nYou could say, then, that Smuttynose IPA is a physical salute to the glory of the American hop grower. The citrusy hop flavor coming from a mixture of Simcoe and Santiams is pleasantly balanced by a smooth bitterness from the Amarillo hops. The beer itself is light bodied and crisp with a golden color that will throw a slight haze, as we bottle it unfiltered. At 65 IBU's, this is definitely not a training-wheels IPA, but is meant for hop lovers looking to satisfy their craving in a way that's not easy to find. We think they’ll be quite pleased."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,34,1
+shepherd_neame-spitfire_premium_kentish_strong_ale,0,0,244995260417,"{""name"":""Spitfire Premium Kentish Strong Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""shepherd_neame"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+troegs_brewing-dead_reckoning_porter,0,0,245114273793,"{""name"":""Dead Reckoning Porter"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In the 14th Century, Sailors would rely on sheer skill to get from a starting point to a final destination. They called this Dead Reckoning. We see our beer the same way. We know where to begin and know where to go, but there are hundreds of ways to get there.\r\n\r\nDead Reckoning is unfiltered and weighs in at 5.8% abv and 53 IBU’s. It features Pilsner, Caramel, Chocolate and Roasted malts along with Chinook and Vanguard hops. “The outstanding taste and flavor of Dead Reckoning originates in the chocolate and roasted malts,” says John Trogner. \""There is a nice hoppiness in the front of the beer, but the rich, smooth mouth feel is what really stands out.\"""",""style"":""Porter"",""category"":""Irish Ale""}",1,37,1
+tommyknocker_brewery_and_pub-tundrabeary_ale,0,0,245104640003,"{""name"":""Tundrabeary Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,14,1
+tommyknocker_brewery_and_pub-ornery_amber_lager,0,0,245122793473,"{""name"":""Ornery Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tommyknocker_brewery_and_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""Ornery Amber is brewed with a blend of the finest European hops and gently roasted malts."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+southern_tier_brewing_co-oat_imperial_oatmeal_stout,0,0,245119385600,"{""name"":""Oat Imperial Oatmeal Stout"",""abv"":12.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""It is beer #2 in our \""Blackwater Series\"" of original Imperial Stouts. The first in the Series was \""Is\"", a dark and bitter Russian Imperial Stout. \""Oat\"" is the follow up; an Oatmeal Stout with major alcohol volume and tons of body to back it up. The cloying character of the oats in this brew lends itself to a chewy and almost oily mouthfeel. ABV. is off the charts at about 12.5%. Note, that this is an all malt beer fermented with our house ale strain of yeast. Judicious hopping with Columbus and Chinook produce a hoppy aroma that mingles nicely with the chocolate and de-bittered black barley from Belgium."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,50,1
+titletown_brewing-piper_down_scottish_ale,0,0,245106016258,"{""name"":""Piper Down Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+yuengling_son_brewing-yuengling_premium_beer,0,0,245751742466,"{""name"":""Yuengling Premium Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A regional favorite, Yuengling Premium Beer is popular among local beer drinkers for its thirst quenching taste. It is a pilsner-style brew, gold in color with pale malt character that finishes crisp and clean. Premium flawlessly blends both two-row and six-row barley malt for a well balanced flavor that is always refreshing. Traces of the slight hop aroma are evident in every delicious sip of Premium Beer. Discover this well kept secret and enjoy the superior quality and taste you've come to expect from America's Oldest Brewery."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,54,1
+youngs_company_brewery-winter_warmer,0,0,245746171905,"{""name"":""Winter Warmer"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Old Ale"",""category"":""British Ale""}",1,16,1
+upstream_brewing_company_at_legacy-gueuze_lambic,0,0,245111717889,"{""name"":""Gueuze-Lambic"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Belgian-Style Fruit Lambic"",""category"":""Belgian and French Ale""}",1,31,1
+troegs_brewing-nugget_nectar,0,0,245114732544,"{""name"":""Nugget Nectar"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Squeeze those hops for all they’re worth and prepare to pucker up: Nugget Nectar Ale, will take hopheads to nirvana with a heady collection of Nugget, Warrior and Tomahawk hops. Starting with the same base ingredients of our flagship HopBack Amber Ale, Nugget Nectar intensifies the malt and hop flavors to create an explosive hop experience."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,38,1
+rail_house_restaurant_and_brewpub-gold_rush_discontinued,0,0,244988575746,"{""name"":""Gold Rush (discontinued)"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rail_house_restaurant_and_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+siletz_roadhouse_brewery-mojo_ale,0,0,244988444672,"{""name"":""Mojo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""siletz_roadhouse_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,18,1
+stonecutters_brewhouse,0,0,245121155072,"{""name"":""Stonecutters Brewhouse"",""city"":""Barre"",""state"":""Vermont"",""code"":""5641"",""country"":""United States"",""phone"":""(802) 476-6000"",""website"":""http://www.stonecuttersbrewhouse.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Stonecutters Brewhouse is a 4 barrel brewhouse located in central Vermont in the small town (pop. 9000) of Barre. Barre is the sister town to Montpelier, which is the capital of Vermont. Stonecutters is a locally owned and operated."",""address"":[""14 N Main St.""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":44.1972,""lon"":-72.5019}}",1,55,1
+williams_brothers_brewing_company-fraoch_heather_ale,0,0,245745319936,"{""name"":""Fraoch Heather Ale"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""williams_brothers_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+raccoon_lodge_and_brewpub_cascade_brewing-cascade_razberry_wheat,0,0,245001158658,"{""name"":""Cascade Razberry Wheat"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""raccoon_lodge_and_brewpub_cascade_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Razberry Wheat is crisp with a refreshing tartness and the fresh aroma of raspberries. This salmon pink ale is just the thing to transport you to berry time in the summer."",""style"":""Fruit Beer"",""category"":""Other Style""}",1,49,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-hefeweizen,0,0,245103656961,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,12,1
+summit_brewing-hefe_weizen,0,0,245121875969,"{""name"":""Hefe-Weizen"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,57,1
+thunderhead_brewery-hefeweizen,0,0,245122334721,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
+snowshoe_brewing_sonora-thompson_pale_ale,0,0,245112766465,"{""name"":""Thompson Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""snowshoe_brewing_sonora"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,34,1
+sierra_nevada_brewing_co-unfiltered_wheat_beer,0,0,244995260418,"{""name"":""Unfiltered Wheat Beer"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""From the Sierra Nevada Brewing Co. website:\r\nPale, smooth, and light-bodied, Sierra Nevada Wheat Beer is brewed from premium malted wheat and light barley malts, utilizing our traditional ale yeast. This unfiltered ale is finished with the characteristically spicy Strissel Spalt hops from the Alsace region of France. \r\n\r\n“The lightest Sierra Nevada beer is this refreshing wheat beer made with barley & wheat for a very light character but loads of flavor!”\r\n\r\n– BevMo.com\r\n\r\nSILVER MEDAL WINNER\r\nCalifornia State Fair (American Wheat: 2000)"",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,35,1
+tui_brewery-east_india_pale_ale,0,0,245114273794,"{""name"":""East India Pale Ale"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tui_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+troegs_brewing-scratch_10_2008,0,0,245104705536,"{""name"":""Scratch #10 2008"",""abv"":10.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""he third time just might be the charm—Scratch #10-2008 is our third triple in the Scratch Beer series.\r\n\r\nThis grand cru has been lovingly aged since late-February, yet still unleashes the slightest hint of alcohol heat.\r\n\r\nScratch #10-2008 also has a triple flavor inspiration combining the caramel/toffee notes of dememera sugar and molasses, with citrus and licorice flavors created by the orange peel and star anise; lastly we create a peppery/spicy finish with the same trappist yeast has been used in each Scratch Beer Triple."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,14,1
+tropical_beverage_international_co_ltd-phuket_lager,0,0,245122859008,"{""name"":""Phuket Lager"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tropical_beverage_international_co_ltd"",""updated"":""2010-07-22 20:00:20"",""description"":""Phuket Beer was created as a refreshing ‘boutique’ beer in view of the exotic island of Phuket with a much lower formula of bitterness than any other domestic rivals in Thailand.\r\n\r\nPhuket Beer is the first regional beer brewed in Thailand and is positioned to appeal to both the international markets as well as the local population. This is manifested through the label and packaging designs presented in both English and Thai languages.\r\n\r\nPhuket Beer is well positioned as a premium brand located somewhere between the local standard brands and the imported premium brands. The efforts were inspired from the feeling of being in a tropical paradise. Thai beer consumers have become more sophisticated over the years, by selecting and demanding premium and high-end beers. initial consumer target was Phuket Island's significant tourist sector, a sector that is prone to taste and drink locally produced brands.However, strategic positioning and selected marketing of Phuket Beer has resulted in a ray of successful export markets with overwhelming response from the initial markets overseas.\r\n\r\nThe philosophy is to provide a ‘tropical lifestyle’ drinking experience in a fresh clean light tasting lager beer with 5% alcohol by volume, which is in total contrast to the other Thai beers that are very bitter with higher alcohol content."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,59,1
+spaten_franziskaner_brau-optimator,0,0,245119385601,"{""name"":""Optimator"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""spaten_franziskaner_brau"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,50,1
+triple_rock_brewery-pale,0,0,245106016259,"{""name"":""Pale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triple_rock_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+valley_forge_brewing-dunkelweizen,0,0,245111783424,"{""name"":""Dunkelweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_forge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+troegs_brewing-scratch_19_2009_imperial_double_expresso_oatmeal_stout,0,0,245114732545,"{""name"":""Scratch #19 2009 Imperial Double Expresso Oatmeal Stout"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Every beer tells a story, and some are longer than others.\r\n\r\nConsider Scratch #19; originally designed as an enhanced take on Scratch #15 with a slightly higher ABV, our brewers went to town to deliver a brew slightly more akin to our fabled Scratch #5, the Imperial Oatmeal Stout brewed for The Flying Mouflan Experience.\r\n\r\nFor Scratch #19, we teamed up with St. Thomas Roasters of Linglestown to create a special blend of espresso beans. They added Kenyan beans to the mix because of a strong citrus flavor that compliments the hops. Creating en environment akin a French press, the beans are combined with whole flower hops in the hopback, and the hot wort passes through the vessel on the way to fermentation giving Scratch #19 a lush coffee espresso nose and hints of coffee flavor. There is a silky quality to the mouthfeel and a citrus hop finsh coming from the Kenyan beans and hops.\r\n\r\nSome stories have twists, and unfortunately a faulty valve in the fermentation cellar led to a dramatic beer tragedy one afternoon in the brewery. Risking life and limb (while keeping his mouth open to sample the beer), a heroic brewery team member took the dive reconnecting the valve and saving about half the batch of Scratch #19.\r\n\r\nSo for your amusement (and our final relief), we give you a draft-only release of a third-take on a style that demands continued research for the Troegs Brewery staff. Enjoy!"",""style"":""Oatmeal Stout"",""category"":""British Ale""}",1,38,1
+redhook_ale_brewery-redhook_long_hammer_ipa,0,0,244988641280,"{""name"":""Redhook Long Hammer IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""redhook_ale_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+speakeasy_ales_and_lagers-untouchable_pale_ale,0,0,245106212864,"{""name"":""Untouchable Pale Ale"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""speakeasy_ales_and_lagers"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+tennent_caledonian_brewery-lager,0,0,245121155073,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tennent_caledonian_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+wynkoop_brewing-light_rail_ale,0,0,245745319937,"{""name"":""Light Rail Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This blonde beer has a very light body and mild flavors of hops and pale malts. A hint of caramel malt gives color to this popular choice for craft beer newcomers"",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,10,1
+rock_art_brewery-rock_art_ipa,0,0,245001224192,"{""name"":""Rock Art IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_art_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A light copper body low bitterness with good hop flavor. This is my impression of what the English troops may have been drinking when they occupied India. The pale ale they drank had mellowed considerably. The wooden casks had spent many months traveling on ships and long inland journeys to the troops, where they were then tapped and enjoyed."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
+stone_brewing_co-imperial_stout_2003,0,0,245103656962,"{""name"":""Imperial Stout 2003"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,12,1
+tabernash_brewing,0,0,245121875970,"{""name"":""Tabernash Brewing"",""city"":""Longmont"",""state"":""Colorado"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":40.1672,""lon"":-105.102}}",1,57,1
+tin_whistle_brewing,0,0,245122400256,"{""name"":""Tin Whistle Brewing"",""city"":""Penticton"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-250-770-1122"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""954 West Eckhardt Avenue""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.4944,""lon"":-119.61}}",1,58,1
+stone_brewing_co-oaked_arrogant_bastard_ale,0,0,245112832000,"{""name"":""Oaked Arrogant Bastard Ale"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Arrogant Bastard Ale aged in oak barrels."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,34,1
+silver_gulch_brewing_company-old_55_pale_ale,0,0,244995325952,"{""name"":""Old 55 Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""silver_gulch_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+two_brothers_brewing-brown_fox_ale,0,0,245114339328,"{""name"":""Brown Fox Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,37,1
+tustin_brewing,0,0,245104705537,"{""name"":""Tustin Brewing"",""city"":""Tustin"",""state"":""California"",""code"":""92780"",""country"":""United States"",""phone"":""1-714-665-2337"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""13011 Newport Avenue #100""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":33.7496,""lon"":-117.812}}",1,14,1
+trout_river_brewing,0,0,245122859009,"{""name"":""Trout River Brewing"",""city"":""Lyndonville"",""state"":""Vermont"",""code"":""5851"",""country"":""United States"",""phone"":""802) 656-9396"",""website"":""http://www.troutriverbrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Trout River Brewing prides itself on creating and serving fresh, all natural, premium ales and lagers. Our beers are made with pure Vermont water, the best imported and domestic malts and hops, and quality yeasts. Nothing else is added and we take nothing away!"",""address"":[""58 Broad Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.5203,""lon"":-72.0014}}",1,59,1
+standing_stone_brewing_company,0,0,245119451136,"{""name"":""Standing Stone Brewing Company"",""city"":""Ashland"",""state"":""Oregon"",""code"":""97520"",""country"":""United States"",""phone"":""(541) 482-2448"",""website"":""http://www.standingstonebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Ashland's only full service brewpub is housed in an historic building with a light industrial character. We offer our own freshly brewed handcrafted ales and lagers, including seasonal and other specialty brews. All Standing Stone Ales are made here at the brewery in ten barrel batches using over 80% organic malts."",""address"":[""101 Oak Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.1976,""lon"":-122.715}}",1,50,1
+troegs_brewing,0,0,245106081792,"{""name"":""Troegs Brewing"",""city"":""Harrisburg"",""state"":""Pennsylvania"",""code"":""17104"",""country"":""United States"",""phone"":""1-717-232-1297"",""website"":""http://www.troegs.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Tröegs Brewing Company was established in 1997. Today, the brewery produces nine different beers including Hopback Amber Ale, Troegenator Doublebock, Rugged Trail Ale, Tröegs Pale Ale, Nugget Nectar (seasonal) Dead Reckoning Porter (seasonal), Sunshine Pils (seasonal), The Mad Elf (seasonal), and distributes its product in Pennsylvania, New Jersey, Maryland, Delaware and Virginia."",""address"":[""800 Paxton Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.2559,""lon"":-76.8715}}",1,17,1
+victory_brewing-st_boisterous_hellerbock,0,0,245111783425,"{""name"":""St. Boisterous Hellerbock"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A full-bodied lager beer of exuberant and robust character. It’s muscle-man body comes from decocted German malts and noble German hops. Lagered long and cold to refine its strong temperament, St. Boisterous emerges smooth and seductive, with a malty sweet charm. This classic rendition of the German ‘maibock' style will warm your heart."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,31,1
+troegs_brewing-scratch_7_2008,0,0,245114732546,"{""name"":""Scratch #7 2008"",""abv"":7.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Red and white wheat combined with darker malts add body to this hazy, unfiltered ale. Fermented with the same yeast as DreamWeaver Wheat replicating the pepper, clove and all-spice flavors found in our year-round beer."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,38,1
+russian_river_brewing-damnation,0,0,244988641281,"{""name"":""Damnation"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""russian_river_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Damnation has extraordinary aromas of banana and pear with mouth filling flavors of sweet malt and earthy hops. The lingering finish is dry and slightly bitter but very, very smooth."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,19,1
+st_austell_brewery-proper_job,0,0,245106278400,"{""name"":""Proper Job"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_austell_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Proper Job is an authentic IPA brewed with Cornish spring water and malt made from a blend of malts including Cornish grown Maris Otter barley."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,18,1
+the_alchemist-broken_spoke,0,0,245121155074,"{""name"":""Broken Spoke"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":""An American pale ale made entirely with amarillo hops."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+zea_rotisserie_and_brewery-ginger_slap_spiced_ale,0,0,245745319938,"{""name"":""Ginger-\""slap\"" Spiced Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,10,1
+rock_bottom_restaurant_brewery_san_jose-boulder_creek_pale_ale,0,0,245001224193,"{""name"":""Boulder Creek Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rock_bottom_restaurant_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+stroh_brewery_company-lone_star,0,0,245103722496,"{""name"":""Lone Star"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stroh_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+titletown_brewing-fort_edward_augustus_1770_scottish_ale,0,0,245121941504,"{""name"":""Fort Edward Augustus 1770 Scottish Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+titletown_brewing-boxcar_brown_ale,0,0,245122400257,"{""name"":""Boxcar Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,58,1
+stone_cellar_brewpub_restaurant,0,0,245112832001,"{""name"":""Stone Cellar Brewpub & Restaurant"",""city"":""Appleton"",""state"":""Wisconsin"",""code"":""54915"",""country"":""United States"",""phone"":""1-920-735-0507"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1004 South Olde Oneida""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":44.2536,""lon"":-88.4037}}",1,34,1
+sports_city_cafe_brewery-india_pale_ale,0,0,245113159680,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sports_city_cafe_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,35,1
+tyranena_brewing-gemuetlichkeit_oktoberfest,0,0,245114339329,"{""name"":""Gemuetlichkeit Oktoberfest"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Gemuetlichkeit translates from German as \""the fondness of feasting, drinking and merry company.\"" This is true of most everyone in Wisconsin, especially those of us at the brewery. Each September in the nearby city of Jefferson, Wisconsin, thousand turn out for Gemuetlichkeit Days, a celebration of the area's German heritage. We invite you to celebrate the spirit of Gemuetlichkeit with us. Don your lederhösen, kick up your heels with a polka and raise a stein of our Gemuetlichkeit Oktoberfest with a friend. Ein Prosit!\r\n\r\nGemuetlichkeit Oktoberfest is a rich, amber lager with a malty aroma and balanced hop bitterness. This seasonal style is served at German Oktoberfests in liter steins."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,37,1
+ukiah_brewing-emancipator,0,0,245104705538,"{""name"":""Emancipator"",""abv"":8.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ukiah_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,14,1
+weyerbacher_brewing_company-blasphemy,0,0,245752201216,"{""name"":""Blasphemy"",""abv"":11.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""First released in March 2007, Blasphemy is our award winning QUAD aged in bourbon barrels. But not overaged, so we've picked up gentle vanilla oaky notes which complement rather than supercede the complex qualities that already make QUAD such an incredible beer. Expected to be an annual Spring seasonal, supplies are limited. ABV is 11.8%."",""style"":""Belgian-Style Quadrupel"",""category"":""Belgian and French Ale""}",1,59,1
+steamworks-empress_india_pale_ale,0,0,245119451137,"{""name"":""Empress India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""During the heyday of the British Empire, India Pale Ale was born as a strong pale ale brewed especially to endure the rigors of the long journey to the colonies. In order to guard against spoilage, I.P.A. was brewed with a high alcohol content and with liberal amounts of hops, which act as a natural preservative. This ale's golden amber colour only hints at its full-bodied flavour. Its sumptuous maltiness is tempered by a goodly amount of bitterness and a mouth-filling hop flavour. In order to finish our I.P.A. with a truly fresh hop bouquet, we dry hop this ale in the serving tank with both East Kent Goldings and Mount Hood hops."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,50,1
+tucher_bru,0,0,245106081793,"{""name"":""Tucher Bru"",""city"":""Nrnberg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)911-/-9776-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Schillerstrae 14""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.4643,""lon"":11.0847}}",1,17,1
+walldorff_brew_pub,0,0,245748006912,"{""name"":""Walldorff Brew Pub"",""city"":""Hastings"",""state"":""Michigan"",""code"":""49508"",""country"":""United States"",""phone"":""269 945-4400"",""website"":""http://walldorffbrewpub.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""105 East State Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.6488,""lon"":-85.2875}}",1,31,1
+upland_brewing-upland_wheat_ale,0,0,245114732547,"{""name"":""Upland Wheat Ale"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upland_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,38,1
+saint_louis_brewery_schlafy_tap_room-schlafly_witbier,0,0,244988641282,"{""name"":""Schlafly Witbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_louis_brewery_schlafy_tap_room"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+steve_and_clark_s_brew_pub_and_sausage_co_2-northwest_pale_ale,0,0,245106278401,"{""name"":""Northwest Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steve_and_clark_s_brew_pub_and_sausage_co_2"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,18,1
+thirstybear_brewing-polar_ale,0,0,245121155075,"{""name"":""Polar Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+rogue_ales-menage_frog,0,0,245001224194,"{""name"":""Menage Frog"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""rogue_ales"",""updated"":""2010-07-22 20:00:20"",""description"":""Belgian Style Tripel using same Abbey Yeast. Monster aromas and sweet flavors coming from the yeast and a huge amount of Belgian Candi Sugar. Ingredients: Weyermann Pilsner Malt, Belgian Candi Sugar, Saaz Hops."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,49,1
+summit_brewing-horizon_red_ale,0,0,245103722497,"{""name"":""Horizon Red Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""summit_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A richer shade of Red. Summit has artfully crossed the boundaries of traditional IPA and Amber styles to create a brew all our own. Featuring an aromatic blend of Horizon, Amarillo and Cascade hops with nicely balanced malts for a flavor you’ll enjoy to the fullest."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+top_of_the_hill_restaurant_and_brewery-davie_poplar_ipa,0,0,245121941505,"{""name"":""Davie Poplar IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""top_of_the_hill_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,57,1
+troegs_brewing-scratch_27_2010_cocaoabunga,0,0,245122400258,"{""name"":""Scratch #27 2010 Cocaoabunga"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch #27-2010 begins a new fold in the Scratch series. For the next several batches individual Troegs brewers will create recipes of their choice. First up, The Ticeman had a hankering for a sweet stout, so the Troegs brothers and all the brewers met with Scharffen Berger Chocolate Company engineers to eat ridiculous amounts of cocoa nibs and chocolates over a few pints of beer.\r\n\r\nThis collaboration resulted in the delivery of a special blend of cocoa nibs that were added during the boiling process. In addition to the nibs, lactose was added at the end of the boil to give a little sweetness in the body. The addition of Galena and Simcoe hops lends a subtle fruity balance. After primary fermentation, the beer was aged for three weeks on a blend of cocoa nibs and Ugandan vanilla beans.\r\n\r\nDubbed Cocaoabunga, this unfiltered beer has a pleasant cocoa aroma, a subtle sweetness in the mouthfeel, a full-bodied flavor, and hints of vanilla. Enjoy!"",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,58,1
+stoney_creek_brewing_company,0,0,245112897536,"{""name"":""Stoney Creek Brewing Company"",""city"":""Detroit"",""state"":""Michigan"",""code"":""48207"",""country"":""United States"",""phone"":""1-877-786-6399"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""237 Joseph Campau""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3372,""lon"":-83.0186}}",1,34,1
+stone_city_brewing-stein_bock,0,0,245113225216,"{""name"":""Stein Bock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_city_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,35,1
+unibroue-la_fin_du_monde,0,0,245114404864,"{""name"":""La Fin Du Monde"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""La Fin du Monde has a brilliant golden color with vigorously effervescent foam.\r\nIt is midly yeasty with a complex palate of malt, fruit and spice notes followed by a smooth, dry finish."",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,37,1
+weyerbacher_brewing_company,0,0,245745909760,"{""name"":""Weyerbacher Brewing Company"",""city"":""Easton"",""state"":""Pennsylvania"",""code"":""18042"",""country"":""United States"",""phone"":""1.610.559.5561"",""website"":""http://www.weyerbacher.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""At Weyerbacher, we're passionate about our brews. That passion is reflected in the diversity of our offerings. We currently offer over twenty styles of beers. These range from our flagship beers Double Simcoe IPA, Hops Infusion, Merry Monks' Ale, Old Heathen and Blithering Idiot Barleywine to our big seasonals like QUAD and Imperial Pumpkin Ale. And don't forget our bourbon barrel beers: Heresy, Insanity, and Blasphemy ( and yes, we actually age them in real bourbon barrels, and we only use the barrels once). We practically have a new seasonal every month."",""address"":[""905 Line Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.6732,""lon"":-75.2249}}",1,14,1
+wyder_s_cider,0,0,245752201217,"{""name"":""Wyder's Cider"",""city"":""Calgary"",""state"":""Alberta"",""code"":""0"",""country"":""Canada"",""phone"":""1-510-832-4540"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""255999 Eighth Street SW""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.034,""lon"":-114.083}}",1,59,1
+steamworks-lions_gate_lager,0,0,245119516672,"{""name"":""Lions Gate Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""steamworks"",""updated"":""2010-07-22 20:00:20"",""description"":""While ales are fermented for relatively short periods of time at room temperature, lagers employ a special variety of yeast and much cooler fermentation temperatures to achieve their truly clean, dry flavour profile. Our Lion's Gate Lager has a light body, a very crisp palate and a soft, hop finish, which is imparted by the exquisitely gentle Czech Saaz hop variety. The Lions would approve."",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+twin_ports_brewing-derailed_ale,0,0,245106081794,"{""name"":""Derailed Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+watney_brewery-red_barrel,0,0,245748072448,"{""name"":""Red Barrel"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""watney_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+upper_mississippi_brewing-bartles_and_lager,0,0,245114798080,"{""name"":""Bartles and Lager"",""abv"":4.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upper_mississippi_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
+sand_creek_brewing_company-lilja_s_hop_nest_monster,0,0,244988706816,"{""name"":""Lilja's Hop Nest Monster"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sand_creek_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+stone_brewing_co-stone_11th_anniversery_ale,0,0,245106343936,"{""name"":""Stone 11th Anniversery Ale"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The inspiration for making a Black IPA (or should we say \""India Black Ale/ IBA\""?) has been over a year in the making. As soon as we wrapped up the brewing of the Stone 10th Anniversary IPA, we started brainstorming ideas for the Stone 11th Anniversary Ale, and the Black IPA concept was born. This was a challenging brew to formulate and achieve what we considered the ideal flavor balance of intense up-front hops with balanced roasted malt flavors, a deep, rich flavor, and a hearty bitterness."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,18,1
+titletown_brewing-old_broadway_cream_ale,0,0,245121220608,"{""name"":""Old Broadway Cream Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+russell_brewing,0,0,245001289728,"{""name"":""Russell Brewing"",""city"":""Surrey"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-599-1190"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""202 - 13018 80th Avenue""]}",1,49,1
+sweetwater_brewing_casper,0,0,245103722498,"{""name"":""Sweetwater Brewing - Casper"",""city"":""Casper"",""state"":""Wyoming"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":42.8666,""lon"":-106.313}}",1,12,1
+twin_rivers_brewing,0,0,245121941506,"{""name"":""Twin Rivers Brewing"",""city"":""Monroe"",""state"":""Washington"",""code"":""98272"",""country"":""United States"",""phone"":""1-360-794-4056"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""104 North Lewis Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.8559,""lon"":-121.971}}",1,57,1
+watson_brothers_brewhouse,0,0,245752070144,"{""name"":""Watson Brothers Brewhouse"",""city"":""Blue Ash"",""state"":""Ohio"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":39.232,""lon"":-84.3783}}",1,58,1
+sturgeon_bay_brewing-peninsula_pirate_pilsner,0,0,245112897537,"{""name"":""Peninsula Pirate Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sturgeon_bay_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+stout_brothers_public_house-taverner_nut_brown_ale,0,0,245113225217,"{""name"":""Taverner Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stout_brothers_public_house"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,35,1
+unibroue-maudite,0,0,245114404865,"{""name"":""Maudite"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Maudite has a deep amber-red color with a rocky foam head and an appealing aroma of wild spices and floral hop notes. It is spicy, vinous, and deliciously complex with a crisp hop finish.\r\n\r\n\r\nThe robust maltiness and spiciness of our\r\namber-red ale is counterbalanced by an\r\nassertive hop finish, offering a distinctive\r\nflavor that is cognac-like in complexity."",""style"":""Belgian-Style Dark Strong Ale"",""category"":""Belgian and French Ale""}",1,37,1
+wrzburger_hofbru_ag,0,0,245745909761,"{""name"":""Wrzburger Hofbru AG"",""city"":""Wrzburg"",""state"":""Bayern"",""code"":"""",""country"":""Germany"",""phone"":""49-(0)931-/-4109-0"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hchberger Strae 28""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":49.792,""lon"":9.915}}",1,14,1
+yards_brewing-yards_extra_special_ale,0,0,245752266752,"{""name"":""Yards Extra Special Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Crafted from the finest ingredients and originally intended for the cask-ale connoisseur, Extra Special Ale is a robust and hearty amber ale with a malt body and aromatic hop finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,59,1
+stevens_point_brewery-lizard_lager,0,0,245119516673,"{""name"":""Lizard Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stevens_point_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,50,1
+unicer,0,0,245106147328,"{""name"":""Unicer"",""city"":"""",""state"":"""",""code"":"""",""country"":""Portugal"",""phone"":"""",""website"":""http://www.unicer.pt"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,17,1
+white_oak_cider-black_cider,0,0,245748072449,"{""name"":""Black Cider"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_oak_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+wachusetts_brewing_company,0,0,245749252096,"{""name"":""Wachusetts Brewing Company"",""city"":""Westminster"",""state"":""Massachusetts"",""code"":""1473"",""country"":""United States"",""phone"":""978-874-9965"",""website"":""http://www.wachusettbrew.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""History Wachusett Brewery founders Ned, Kevin and Peter developed a significant appreciation for beer while attending Worcester Polytechnic Institute. Adventures in biking, canoeing, and hiking that led the trio to the northern New England states allowed them to visit some of the first operating craft breweries. Armed with a we can do this attitude the three cast off from their careers in engineering and biology to found the Wachusett Brewing Co. in 1993. Wachusett Country Ale was introduced to beer fans of Massachusetts the next year after lots of experimenting to get the formula just right. When Wachusett opened, the three designed and built most of the equipment; did the brewing and filling, selling and delivering, and everything else that a small startup brewery needed. Ned, Kevin and Peter are now backed by some of the most passionate and capable co-workers in the industry. Wachusett Ales continue to be hand crafted with the finest ingredients available, bottled and kegged in our Westminster facility. The three have never strayed from their plan to brew and sell the freshest, highest quality beers possible."",""address"":[""175 State Road East""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":42.5586,""lon"":-71.8715}}",1,38,1
+santa_cruz_brewing-beacon_barleywine,0,0,244988706817,"{""name"":""Beacon Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""santa_cruz_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+t_bonz_gill_grill_and_brewery-low_country_light_lager,0,0,245106343937,"{""name"":""Low Country Light Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""t_bonz_gill_grill_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,18,1
+tworows_restaurant_brewery_dallas-honey_blonde_light_pale_ale,0,0,245121220609,"{""name"":""Honey Blonde Light Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,55,1
+saint_arnold_brewing-saint_arnold_texas_weat,0,0,245001289729,"{""name"":""Saint Arnold Texas Weat"",""abv"":3.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""saint_arnold_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A refreshing, flavorful filtered wheat beer. The perfect beer to accompany a meal or for a summer's day. The wheat contributes a lighter flavor while maintaining a rich body. The beer has a light hop profile -- just enough to give the beer balance and complexity. The light fruitiness is derived from a Kölsch yeast strain. A chill haze may be present, which is a characteristic of wheat beers. \r\n\r\nSaint Arnold Texas Wheat is best consumed at 40-45° Fahrenheit.""}",1,49,1
+taylor_s_crossing_brewing-red_truck_ale,0,0,245103722499,"{""name"":""Red Truck Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""taylor_s_crossing_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+tyranena_brewing-shantytown_doppelbock,0,0,245122007040,"{""name"":""Shantytown Doppelbock"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""The sun barely breaks the horizon, the arctic winds bite, and snow blankets the land. It’s winter in Wisconsin! Throughout the area, you’ll find armies of fisherman, clad in blaze orange parkas and snowmobile suits, dragging their crudely built ice shanties onto the frozen lakes. While they vary in size, shape and color, each shanty contains an enthusiast braving the cold; spinning their tall tales; staring deeply into that hole in the ice; and, of course, enjoying a Legendary Wisconsin Beer. Brewed in the fall to help you survive our Wisconsin winters.\r\n\r\nShantytown Doppelbock is brewed in the style of a German Doppelbock. Brown in color with malty sweetness and a full body."",""style"":""German-Style Doppelbock"",""category"":""German Lager""}",1,57,1
+wrzburger_hofbru_ag-julius_echter_hefe_weissbier_hell,0,0,245752135680,"{""name"":""Julius Echter Hefe-Weißbier Hell"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wrzburger_hofbru_ag"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,58,1
+swan_brewery-lager,0,0,245112897538,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""swan_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+stroh_brewery_company-schlitz,0,0,245113290752,"{""name"":""Schlitz"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stroh_brewery_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,35,1
+union_colony_brewery-old_8444_alt,0,0,245114404866,"{""name"":""Old 8444 Alt"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""union_colony_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
+yuengling_son_brewing-yuengling_premium_light,0,0,245745975296,"{""name"":""Yuengling Premium Light"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Yuengling Light Beer is skillfully crafted to deliver a consistently refreshing brew with only 98 calories. Drawing from traditional brewing techniques, our Light Beer is brewed longer to reduce the sugar content and produce fewer calories in each thirst-quenching drink. Its pale golden color is complemented by a light-bodied flavor. Yuengling Light maintains a well balanced character of malt and hops, with slight carbonation for a crisp satisfying finish. We sacrifice nothing to produce a premium light beer that is low in calories and full of flavor. This combination delivers the ultimate refreshment in Yuengling Light Beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,14,1
+sullivan_s_black_forest_brew_haus_grill-pirate_s_porter,0,0,245119582208,"{""name"":""Pirate's Porter"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Arrr this be a dark beer with strong notes of coffee and chocolate flavors."",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,50,1
+valley_forge_brewing-regiment_pale_ale,0,0,245106147329,"{""name"":""Regiment Pale Ale"",""abv"":6.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_forge_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,17,1
+white_winter_winery-traditional_brackett,0,0,245748072450,"{""name"":""Traditional Brackett"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_winter_winery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+water_street_brewery-honey_lager_light,0,0,245749317632,"{""name"":""Honey Lager Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,38,1
+second_street_brewery-altbier,0,0,244988706818,"{""name"":""Altbier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""second_street_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,19,1
+terrapin_beer_company-sunray_wheat_beer,0,0,245106343938,"{""name"":""SunRay Wheat Beer"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The Sunray Wheat is a German-style unfiltered wheat beer brewed with a touch of local Georgia Coast Tupelo honey from the Savannah Bee Company.\r\n\r\nIts inviting banana and sweet clove like aroma gives way to a pleasant, clean finish with a hint of tartness.\r\n\r\nThis beer is available in the Terrapin “All The Hits” Variety 12-pack as well as in individual 6-packs."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,18,1
+unibroue-ephemere_pomme,0,0,245121220610,"{""name"":""Éphémère Pomme"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""White ale brewed with apple must\r\n\r\nRedolent of ripe Granny Smith apples, this\r\nunique white ale pleases the palate with a\r\ndelicate balance of fruit and spice notes and\r\njust a hint of sweetness.\r\n \r\nÉphémère apple satisfies with each sip and\r\nrefreshes in all seasons, especially when\r\npaired with an artisan cheddar cheese, pork\r\ntenderloin served with apple chutney or Vidalia\r\nonion soup.\r\n\r\nWe developed the Éphémère (Ephemeral)\r\nseries to feature a seasonal fruit in a\r\nrefreshing, lightly spiced white ale.\r\n \r\nThe label depicts a fairy, an ephemeral spirit\r\nassociated with fruits picked at the peak of\r\nripeness during each harvest season. \r\nÉphémère apple flavor is brewed with apple\r\nmust, which consists of the freshly-pressed\r\njuice from apples.\r\n\r\nEnjoy this beer 'alfresco' while dining in the\r\nafternoon sun, relaxing at a family gathering or\r\nat a picnic in the back yard.\r\n\r\nWinner of 3 Gold Medals from the Beverage\r\nTesting Institute since 2002"",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,55,1
+santa_barbara_brewing,0,0,245001355264,"{""name"":""Santa Barbara Brewing"",""city"":""Santa Barbara"",""state"":""California"",""code"":""93101"",""country"":""United States"",""phone"":""1-805-730-1040"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""501 State Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":34.4166,""lon"":-119.696}}",1,49,1
+terrapin_beer_company-hopsecutioner,0,0,245103788032,"{""name"":""Hopsecutioner"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Here ye, here ye…All hopheads shall herewith rejoice! Terrapin has recruited ye old HOPSECUTIONER to execute the exact hop profile for this killer IPA!"",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
+ukiah_brewing,0,0,245122007041,"{""name"":""Ukiah Brewing"",""city"":""Ukiah"",""state"":""California"",""code"":""95482"",""country"":""United States"",""phone"":""1-707-468-5898"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""102 South State Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":39.1498,""lon"":-123.208}}",1,57,1
+yakima_brewing_and_malting_grant_s_ales-india_pale_ale,0,0,245752135681,"{""name"":""India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,58,1
+tempo-goldstar,0,0,245112963072,"{""name"":""Goldstar"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tempo"",""updated"":""2010-07-22 20:00:20"",""description"":""The best beer ever!""}",1,34,1
+sullivan_s_black_forest_brew_haus_grill-sully_s_irish_stout,0,0,245113290753,"{""name"":""Sully's Irish Stout"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sullivan_s_black_forest_brew_haus_grill"",""updated"":""2010-07-22 20:00:20"",""description"":""Put on your kilt and enjoy this roasted, dark, malty and slightly sweet beer."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+upstream_brewing_company_at_legacy-oak_aged_ebenezer,0,0,245114404867,"{""name"":""Oak Aged Ebenezer"",""abv"":9.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_company_at_legacy"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,37,1
+zea_rotisserie_and_brewery-lager,0,0,245745975297,"{""name"":""Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,14,1
+tailgate_beer-tailgate_ipa,0,0,245119582209,"{""name"":""Tailgate IPA"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tailgate_beer"",""updated"":""2010-07-22 20:00:20"",""description"":""This is what beer is all about. First swallow offers a nice little bite, followed by a blossom of flavors delivered by our handpicked aromatic hops. Flavor carries through the end with a full fisted kick of alcohol content that rocks the Richter scale at 6.5%. A nose of citrus with a floral essence of spice tickles the tongue in this ode to hops. Discover an IPA that encourages how to enjoy what beer is all about."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,50,1
+victory_brewing-hop_wallop,0,0,245106212864,"{""name"":""Hop Wallop"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""We celebrate the pioneering spirit of old Horace 'Hop' Wallop and those who dare mighty adventurous things in this vivid, robust ale. As our annual homage to the hop harvest, expect loads of aromatic splendor and bitter beauty."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,17,1
+widmer_brothers_brewing-sweet_betty_classic_blonde_ale,0,0,245748137984,"{""name"":""Sweet Betty Classic Blonde Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,31,1
+wdi_bru_huus-ur_weizen,0,0,245749317633,"{""name"":""Ur-Weizen"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,38,1
+st_austell_brewery-tribute_premium_cornish_ale,0,0,245106540544,"{""name"":""Tribute Premium Cornish Ale"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""st_austell_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A Supreme Champion Ale of Cornwall as\r\nvoted by CAMRA*, and the South West's Favourite cask beer**, Tribute is a popular\r\nfavourite with locals and visitors to Cornwall, as well as being a much sought after guest ale throughout the rest of the UK. It is brewed using specially grown Cornish Gold Malt and is a perfect accompaniment to chicken, gammon or fish. The ideal alternative to a fine white wine."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,19,1
+the_church_brew_works-mad_brewer_maibock,0,0,245106409472,"{""name"":""Mad Brewer Maibock"",""abv"":7.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_church_brew_works"",""updated"":""2010-07-22 20:00:20"",""description"":""A bock beer is required by German law to start at 17°Plato. For those who are interested, °Plato is a measurement of the sugar content before fermentation. It is a very malty lager beer with medium hop bitterness. A maibock is a light to amber colored bock beer. A Maibock is very similar to a Helles/pale bock. Maibocks were originally brewed for the coming of spring, hence the name Mai (German for May). The Mad Brewer Maibock is medium amber in color. Though similar in color to our Pipe Organ Pale Ale, it is very different in character. Don’t let it get you though, it’s a very strong beer at about 7% alcohol. It has a very clean and malty nose. The hop bitterness is evident, but not dominant. The Mad Brewer Maibock will finish quite full and have a delicate sweetness."",""style"":""German-Style Heller Bock/Maibock"",""category"":""German Lager""}",1,18,1
+utenos_alus-porter,0,0,245121220611,"{""name"":""Porter"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""utenos_alus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,55,1
+selin_s_grove_brewing_co-selin_s_grove_ipa,0,0,245001355265,"{""name"":""Selin's Grove IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""selin_s_grove_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
+terrapin_beer_company-terrapin_all_american_imperial_pilsner,0,0,245103788033,"{""name"":""Terrapin All-American Imperial Pilsner"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""terrapin_beer_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Help us celebrate American Independence and American Beer Month in July with the release of the Terrapin All-American Imperial Pilsner.\r\n\r\nThis beer was brewed using only American malts, American hops, and American yeast. Who says you have to import ingredients from Germany to make a true Pilsner?\r\n\r\nOf course, this Pilsner is made “Terrapin Style”. Hence the 75 B.U.’s, the 7.5% alcohol and the term “IMPERIAL Pilsner”.""}",1,12,1
+viking_brewing-copperhead_premium_ruby_lager,0,0,245751939072,"{""name"":""Copperhead Premium Ruby Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""viking_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,57,1
+yegua_creek_brewing_dallas-golden_wheat,0,0,245752135682,"{""name"":""Golden Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,58,1
+thomas_hooker_brewing-hooker_oktoberfest,0,0,245112963073,"{""name"":""Hooker Oktoberfest"",""abv"":5.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_hooker_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Originally brewed to celebrate the beginning of the German brewing season and the 1810 wedding of crown prince Ludwig of Bavaria and his bride-to-be, princess Therese of Saxon-Hildburghausen. This amber beer was brewed in March (\""Marzenbier\"") and left to age in cool lagering caves during the heat of the summer. Our rich and satisfying Bavarian-style OctoberFest comes from a special blend of imported German malts that creates a full-bodied brew and stresses a malty flavor and lingering aroma. Gently hopped and delicately balanced, its true-to-style, slow fermentation and long, cold maturation produces a luxuriously smooth, award-winning brew."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,34,1
+surly_brewing-darkness,0,0,245113356288,"{""name"":""Darkness"",""abv"":10.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""surly_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This Russian Imperial Stout is a sipper. Problem is that you want to sip it all night. Look for this one to be released when the leaves change color and Halloween is approaching. Brewed with a blend of 8 different malts, oats and candi sugar. This huge stout reflects Surly's commitment to brewing intensely flavored beers in small batches. Only 25 barrels of this beer were brewed."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,35,1
+upstream_brewing_old_market-dundee_scotch_ale,0,0,245114470400,"{""name"":""Dundee Scotch Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Our Dundee Scotch Ale begins with a traditional \r\nsweetness and finishes with a full, malty flavor. Don’t be fooled by the dark color—this beer is delicious and surprisingly easy to drink."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,37,1
+the_bruery-orchard_white,0,0,245119647744,"{""name"":""Orchard White"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_bruery"",""updated"":""2010-07-22 20:00:20"",""description"":""Orchard White is an unfiltered, bottle conditioned Belgian-style witbier. This hazy, straw yellow beer is spiced with coriander, citrus peel and lavender added to the boil and whirlpool. A spicy, fruity yeast strain is used to add complexity, and rolled oats are added for a silky texture."",""style"":""Belgian-Style White"",""category"":""Belgian and French Ale""}",1,50,1
+victory_brewing-prima_pils,0,0,245106212865,"{""name"":""Prima Pils"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Heaps of hops give this pale lager a bracing, herbal bite over layers of soft and smooth malt flavor. This refreshing combination of tastes makes Prima a classy quencher in the tradition of the great pilsners of Europe. Dry and delightful, this is an elegant beer."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,17,1
+willoughby_brewing-wenceslas,0,0,245748137985,"{""name"":""Wenceslas"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""willoughby_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,31,1
+weyerbacher_brewing_company-scotch_ale,0,0,245749383168,"{""name"":""Scotch Ale"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Exceptionally smooth and thoroughly robust, Weyerbacher Scotch Ale has a deep delicious flavor that will warm you down to your wee little bones. Malty and roasty on the palate, and with distinctive caramel notes, this beer will satisfy the desires of any malty beer aficionado. \r\n\r\nWeyerbacher Scotch Ale is our interpretation of a beer style originating from Scotland, where the chilly damp weather calls for a hearty beer. Lacking the preservative powers of hops, scotch ales were brewed with high alcohol content to prevent spoilage. And at 8.7% ABV (alcohol by volume) Weyerbacher Scotch Ale definitely contains a warming belt.\r\n\r\nWe brew Weyerbacher Scotch Ale mostly in the cooler months of the year. Check out the Upcoming Events and Beers page for the next time it will be at a beer store near you."",""style"":""Scotch Ale"",""category"":""British Ale""}",1,38,1
+sweetwater_brewing_casper-wild_wyo_wheat,0,0,245106606080,"{""name"":""Wild Wyo Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweetwater_brewing_casper"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+troegs_brewing-scratch_11_2008,0,0,245106409473,"{""name"":""Scratch #11 2008"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Next up, we present Scratch Beer #11-2008, a Bitter. Back in the day, we used to brew a little number called Tröegs ESB. Even though this beer was retired almost six years ago, we still get numerous Tröegs old-schoolers (Martha) begging for its return.\r\n\r\nWell hang onto your boot straps because Scratch #11 is about as close as we can get to the original ESB without firing up the old brew kettle. The Scratch #11 recipe originates from Chris’ stint at England’s University of Sunderland brewing program. After returning to Colorado the brothers drew on Chris’ experience and brewed pilot batches tweaking that recipe. The ESB production recipe has direct bloodlines to these pilot batches.\r\n\r\nThe Thames Valley ale yeast and the roasted barley create a biscuit flavor with nutty undertones. Combining these flavors with the earthiness of East Kent Golding hops creates one hell of a fine session beer. Take in the deep mahogany beauty of this beer and breathe in the full hoppy nose. It’s not the ESB, but it’s damn special."",""style"":""Ordinary Bitter"",""category"":""British Ale""}",1,18,1
+weinkeller_brewery_berwyn-pilsner,0,0,245751742464,"{""name"":""Pilsner"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,55,1
+ship_inn_brewpub-pheasant_plucker,0,0,245001355266,"{""name"":""Pheasant Plucker"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""ship_inn_brewpub"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,49,1
+thomas_kemper_brewing,0,0,245103788034,"{""name"":""Thomas Kemper Brewing"",""city"":""Seattle"",""state"":""Washington"",""code"":""98134"",""country"":""United States"",""phone"":""1-260-682-8322"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""91 South Royal Brougham""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":47.5924,""lon"":-122.334}}",1,12,1
+weyerbacher_brewing_company-weyerbacher_juliet,0,0,245752004608,"{""name"":""Weyerbacher Juliet"",""abv"":8.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Brown Ale/Altbier"",""category"":""German Ale""}",1,57,1
+yuengling_son_brewing-yuengling_lager_light,0,0,245752135683,"{""name"":""Yuengling Lager Light"",""abv"":3.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""True to its American heritage, Yuengling Light Lager is an exceptional brew that appeals to consumers who don't want to sacrifice character for a low-calorie light beer. It has been masterfully developed to maintain the full flavor profile akin to our flagship Lager brand. Skillfully pairing a caramel malt flavor and mild hop character creates a beautifully rich-colored beer with deep amber highlights that finishes smooth and clean. With only 99 calories, Yuengling Light Lager is a uniquely refreshing beer that brings new dimension to the meaning light beer."",""style"":""American-Style Light Lager"",""category"":""North American Lager""}",1,58,1
+three_floyds_brewing-dark_lord_russian_imperial_stout,0,0,245112963074,"{""name"":""Dark Lord Russian Imperial Stout"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Gargantuan Russian Stout brewed with coffee, molasses, and honey."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,34,1
+tabernash_brewing-dunkel_weizen,0,0,245113356289,"{""name"":""Dunkel Weizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tabernash_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+voodoo_brewing_co_llc-big_black_voodoo_daddy,0,0,245749055488,"{""name"":""Big Black Voodoo Daddy"",""abv"":12.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our Imperial Stout that we age in conditioning tanks with oak staves. This adds a classic character of old world aging with out the Bourbon tones. This black ale is about 12% alc. and very rich in roasted and chocolate malt tones. Velvety smooth and able tobe aged for years. For now this will be a Seasonal Beer Offering. \r\n\r\nAll Beers to be bottle conditioned and Refermented."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,37,1
+the_cambridge_house-old_mill_pond_esb,0,0,245119647745,"{""name"":""Old Mill Pond ESB"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_cambridge_house"",""updated"":""2010-07-22 20:00:20"",""description"":""As English style extra special bitter, brewed using the finest malt and hops from England to produce a well balanced medium body pint."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,50,1
+voodoo_brewing_co_llc-voodoo_love_child,0,0,245746237440,"{""name"":""Voodoo Love Child"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is our Gran Met Ale aged on intimate Passion Fruit, Raspberry and Michigan Tart Cherry. Lightly spiced with passion. Light Reddish hue and with a alcohol strength of 10% and nicely carbonated in the bottle. \r\n\r\nAgain Bottle Conditioned and Fermented. \r\n\r\nEnjoy a couple and have your own Voodoo Love Child later!!!"",""style"":""Belgian-Style Tripel"",""category"":""Belgian and French Ale""}",1,17,1
+yards_brewing,0,0,245748137986,"{""name"":""Yards Brewing"",""city"":""Philadelphia"",""state"":""Pennsylvania"",""code"":""19125"",""country"":""United States"",""phone"":""1-215-634-2600"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""2439 Amber Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.9831,""lon"":-75.1274}}",1,31,1
+wynkoop_brewing-two_guns_pilsner,0,0,245749383169,"{""name"":""Two Guns Pilsner"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wynkoop_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A Czech style Pilsner, Two Guns is golden in color with a soft malt character derived from Bohemian barley and just enough spicy bitterness to make another tasted desirable."",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,38,1
+third_street_ale_works-old_redwood_porter,0,0,245106671616,"{""name"":""Old Redwood Porter"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""third_street_ale_works"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
+twisted_pine_brewing_company,0,0,245106475008,"{""name"":""Twisted Pine Brewing Company"",""city"":""Boulder"",""state"":""Colorado"",""code"":""80301"",""country"":""United States"",""phone"":""303.786.9270"",""website"":""http://www.twistedpinebrewing.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Established in 1995, Twisted Pine Brewing Company produces only 100% natural, unpasteurized pure malt ales, batch brewed and hand-crafted. Because we believe that craft beer is best enjoyed fresh, Twisted Pine ales can only be found throughout Colorado. By maintaining only a local presence we feel proud that our beers capture the full flavor and variety of style found at our brewery. It is our intention to bring to you a select family of individually distinctive ales that we as brewers would enjoy drinking ourselves. That is our final measure. We ignore costs, fads, and difficulty in creating our ales. And, while we are very serious about the art and business of beer making, we try to avoid taking ourselves too seriously. After all, we realize brewing a fine beer isn't exactly nuclear physics. It's something far more important. -Twistedpine.com"",""address"":[""3201 Walnut Street Ste A""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.0201,""lon"":-105.251}}",1,18,1
+yakima_brewing_and_malting_grant_s_ales-hefeweizen,0,0,245751808000,"{""name"":""Hefeweizen"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,55,1
+sierra_nevada_brewing_co-harvest_ale,0,0,245001420800,"{""name"":""Harvest Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sierra_nevada_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""The cornerstone of our Harvest series is the beer that started the modern-day fresh hop ale phenomenon in America, our original Harvest Ale. \r\n\r\nCreated in 1996, Harvest Ale features Cascade and Centennial hops from the Yakima Valley in Eastern Washington. These hops are harvested and shipped as “wet” un-dried hops—the same day they are picked—to our brewery in Chico where our brewers eagerly wait to get them into the brew kettle while their oils and resins are still at their peak."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+three_floyds_brewing-dreadnaught_imperial_ipa,0,0,245103853568,"{""name"":""Dreadnaught Imperial IPA"",""abv"":9.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""three_floyds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""A hop lover’s dream! Mango and peach aromas with a crisp citrus finish."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,12,1
+white_oak_cider-1997,0,0,245752004609,"{""name"":""1997"",""abv"":6.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_oak_cider"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,57,1
+thunderhead_brewery-american_wheat,0,0,245112963075,"{""name"":""American Wheat"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,34,1
+tampa_bay_brewing,0,0,245113421824,"{""name"":""Tampa Bay Brewing"",""city"":""Tampa"",""state"":""Florida"",""code"":""33605"",""country"":""United States"",""phone"":""1-813-247-1422"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1812 North 15th Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":27.9607,""lon"":-82.4433}}",1,35,1
+voodoo_brewing_co_llc-wynona_s_big_brown_ale,0,0,245749121024,"{""name"":""Wynona's Big Brown Ale"",""abv"":7.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""This is named after a song that sparked the idea to make this ale. Brown ales seem to be there, but not really there, do you know what I mean? Well that won't be the mistake with Wynona! We Voodooed out this style and added more that's what we say. Mildly hoppy and smooth with hints of chocolate and tons of brown malt to let you know it's there. Currently 7.3% by vol. \r\n\r\nBottle conditioned and Refermented. \r\n\r\nGet down with the brown, You'll be Happy You Did!!"",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,37,1
+the_church_brew_works,0,0,245119647746,"{""name"":""The Church Brew Works"",""city"":""Pittsburgh"",""state"":""Pennsylvania"",""code"":""15201"",""country"":""United States"",""phone"":""412-688-8200"",""website"":""http://churchbrew.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""3525 Liberty Avenue""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.4624,""lon"":-79.9645}}",1,50,1
+water_tower_brewing-old_ls_barleywine,0,0,245746237441,"{""name"":""Old LS Barleywine"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""water_tower_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,17,1
+zea_rotisserie_and_brewery-z_p_a_india_pale_ale,0,0,245748203520,"{""name"":""Z.P.A. India Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,31,1
+thirstybear_brewing-thirsty_ipa,0,0,245106737152,"{""name"":""Thirsty IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thirstybear_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+victory_brewing-wild_devil_ale,0,0,245746302976,"{""name"":""Wild Devil Ale"",""abv"":6.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,18,1
+yegua_creek_brewing_dallas-icehaus_pale_ale,0,0,245751808001,"{""name"":""Icehaus Pale Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+sly_fox_brewhouse_and_eatery_phoenixville,0,0,245118926848,"{""name"":""Sly Fox Brewhouse and Eatery - Phoenixville"",""city"":""Phoenixville"",""state"":""Pennsylvania"",""code"":""19460"",""country"":""United States"",""phone"":""1-610-935-4540"",""website"":""http://www.slyfoxbeer.com/index1.asp"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A family owned brewpub founded in 1995. A second location, in Royersford, PA, was opened in 2004 and includes a full production brewery as well as an accompanying restaurant. Head brewer is Brian O'Reilly, a multi-GABF Medal winner. Sly Fox packages its beers in cans, 22oz and 750ml bottles, but not in the standard 12oz-er. The pub is noted for its annual Bock Festival & Goat Race (winning goat's name goes on the year's MaiBock) and the IPA Project, a year-long program of single varietal beers culminating in an Imperial IPA using all those varietals, released at a day-long party every December when all the IPAs are on draught."",""address"":[""519 Kimberton Road""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.1298,""lon"":-75.5499}}",1,49,1
+trap_rock_restaurant_and_brewery-hathor_red_lager,0,0,245103853569,"{""name"":""Hathor Red Lager"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,12,1
+williams_brothers_brewing_company,0,0,245752004610,"{""name"":""Williams Brothers Brewing Company"",""city"":""Alloa"",""state"":""Scotland"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01259)-725511"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""New Alloa Brewery""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":56.1163,""lon"":-3.7954}}",1,57,1
+tongerlo,0,0,245113028608,"{""name"":""Tongerlo"",""city"":""Westerlo"",""state"":""Antwerp"",""code"":"""",""country"":""Belgium"",""phone"":"""",""website"":""http://www.tongerlo.be"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":51.0873,""lon"":4.9178}}",1,34,1
+the_alchemist-alena,0,0,245113421825,"{""name"":""Alena"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_alchemist"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,35,1
+whitstable_brewery-east_india_ipa,0,0,245749186560,"{""name"":""East India IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitstable_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,37,1
+the_livery-herb_superb,0,0,245119713280,"{""name"":""Herb Superb"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""This India Pale Ale is brewed with English Maris Otter pale malt and Chocolate malt, giving it a dark color and is generously hopped with English Fuggles hops. Named for mug club member and brewery supporter Herb Caldwell."",""style"":""English-Style India Pale Ale"",""category"":""British Ale""}",1,50,1
+weyerbacher_brewing_company-weyerbacher_india,0,0,245746302976,"{""name"":""Weyerbacher India"",""abv"":7.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""The latest in our Brewers’ Select One-offs, India is a West Coast style IPA at [7.2%] ABV, with incredibly delicious hoppiness! Golden in color, this beer is tilted way over toward the hops by way of less specialty malts used in the mash. Draft will be going out to select wholesalers in PA, NJ, FL, and MD.” 70+ IBU’s."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,17,1
+trade_winds_brewing-paniolo_ale,0,0,245106737153,"{""name"":""Paniolo Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trade_winds_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,19,1
+victory_brewing-workhorse_porter,0,0,245746368512,"{""name"":""Workhorse Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,18,1
+youngs_company_brewery-double_chocolate_stout,0,0,245751808002,"{""name"":""Double Chocolate Stout"",""abv"":5.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""youngs_company_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A rich, creamy stout with roasted chocolate flavors. A perfect dessert beer."",""style"":""Sweet Stout"",""category"":""British Ale""}",1,55,1
+southend_brewery_and_smokehouse_charleston-blonde_light,0,0,245118926849,"{""name"":""Blonde Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southend_brewery_and_smokehouse_charleston"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,49,1
+trinity_brewing_company-flo_ipa,0,0,245103919104,"{""name"":""Flo IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trinity_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
+yazoo_brewing-sly_rye_porter,0,0,245752070144,"{""name"":""Sly Rye Porter"",""abv"":5.7,""ibu"":28.0,""srm"":29.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2011-04-17 12:32:26"",""description"":""A rich, chocolaty English Porter with a clean finish. We use the finest floor-malted Maris Otter malts from England, the same malts used for the best single-malt scotch. A portion of malted rye gives a spicy, slightly dry finish."",""style"":""Porter"",""category"":""North American Ale""}",1,57,1
+trap_rock_restaurant_and_brewery-ghost_pony_helles_lager,0,0,245113028609,"{""name"":""Ghost Pony Helles Lager"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+the_livery-barrel_aged_synapse_esb,0,0,245113421826,"{""name"":""Barrel Aged Synapse ESB"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Extra Special Bitter, or ESB, were the benchmark beers for British brewers to serve to their special customers. Brewed with British pale and crystal malt, this reddish copper beer finishes with a subtle dose of English Fuggles hops."",""style"":""Extra Special Bitter"",""category"":""British Ale""}",1,35,1
+wild_duck_brewing,0,0,245749186561,"{""name"":""Wild Duck Brewing"",""city"":""Eugene"",""state"":""Oregon"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":44.0521,""lon"":-123.087}}",1,37,1
+tied_house_cafe_brewery_san_jose-alpine_gold,0,0,245119713281,"{""name"":""Alpine Gold"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+troegs_brewing-scratch_23_2009_kellar_fest,0,0,245106737154,"{""name"":""Scratch #23 2009 Kellar Fest"",""abv"":5.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""In honor of Oktoberfest, we give you Scratch #23-2009, Kellar Fest. This unfiltered lager features all German malts and noble hops. Fermented with the Augustinerbrau yeast strain, Kellar Fest is a blend of Bohemian Pils, Munich and Vienna malts. The Magnum hops provide a crisp bitterness and the Hallertau noble hops impart a slight earthy taste. Kellar Fest finishes crisp and dry with hints of fruit. Grab a lamb handle and savor this Kellar Fest.""}",1,19,1
+watch_city_brewing,0,0,245746368513,"{""name"":""Watch City Brewing"",""city"":""Waltham"",""state"":""Massachusetts"",""code"":""2453"",""country"":""United States"",""phone"":""1-781-647-4000"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""256 Moody Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":42.3718,""lon"":-71.2367}}",1,18,1
+yuengling_son_brewing-lord_chesterfield_ale,0,0,245751808003,"{""name"":""Lord Chesterfield Ale"",""abv"":5.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yuengling_son_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""One of our distinct classic beers brewed since 1829, Yuengling Lord Chesterfield Ale has as much rich heritage as it does flavor and appeal. Crafted in a unique two-stage European brewing style for enhanced bitterness, it utilizes both conventional kettle hopping and dry hopping after fermentation resulting in a dry sharp finish. Brewed with select hops, its distinct robust flavor is derived from a delicate combination of sweet maltiness and lingering herbal bitterness. Lord Chesterfield Ale's bright gold color is complemented by a lightly laced foam head and fragrant zesty aroma. This fine Ale compares with the very best crafty-style beers. It pairs flawlessly with many foods including seafood dishes and fine cheeses."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,55,1
+southern_tier_brewing_co-heavy_weizen_imperial_unfiltered_wheat_ale,0,0,245118992384,"{""name"":""Heavy Weizen Imperial Unfiltered Wheat Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""southern_tier_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,49,1
+troegs_brewing-scratch_17_2009,0,0,245103919105,"{""name"":""Scratch #17 2009"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""O.G.: 12.7 Plato\r\nA.B.V.: 5.6%\r\nIBU: 43\r\nMalt: Pils\r\nYeast: Augustiner\r\nHops: Select, Tradition, Spalt, Glacier"",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,12,1
+yegua_creek_brewing_dallas-white_rock_red,0,0,245752070145,"{""name"":""White Rock Red"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,57,1
+two_brothers_brewing-iditarod_imperial_stout,0,0,245113094144,"{""name"":""Iditarod Imperial Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,34,1
+the_lost_abbey,0,0,245113487360,"{""name"":""The Lost Abbey"",""city"":""San Marcos"",""state"":""California"",""code"":""92069"",""country"":""United States"",""phone"":""(800) 918-6816"",""website"":""http://www.lostabbey.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""155 Mata Way Suite 104""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":33.1406,""lon"":-117.15}}",1,35,1
+tied_house_cafe_brewery_san_jose-ironwood_dark,0,0,245119713282,"{""name"":""Ironwood Dark"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tied_house_cafe_brewery_san_jose"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,50,1
+twin_ports_brewing-gingered_ale,0,0,245106802688,"{""name"":""Gingered Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,19,1
+weyerbacher_brewing_company-imperial_pumpkin_ale,0,0,245746368514,"{""name"":""Imperial Pumpkin Ale"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Yes that's right! The mother of all Pumpkin Ales is currently in transit to our wholesalers and should be out on shelves around mid-September. This 8.0% ABV pumpkin ale is heartier, spicier, and more \""caramelly\"" and \""pumpkiny\"" than its faint brethren! \r\n Perfect finisher on a cool autumn night, or match it up with a slice of pumpkin pie and fresh whipped cream. \r\n If you don't agree this is the mother of all pumpkin ales, then you just don't like mothers!"",""style"":""Pumpkin Beer"",""category"":""Other Style""}",1,18,1
+spilker_ales,0,0,245118992385,"{""name"":""Spilker Ales"",""city"":""Cortland"",""state"":""Nebraska"",""code"":""68331"",""country"":""United States"",""phone"":""1-402-798-7445"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""300 West Fourth Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":40.5058,""lon"":-96.707}}",1,49,1
+tucher_bru-dunkles_hefe_weizen,0,0,245103919106,"{""name"":""Dunkles Hefe Weizen"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tucher_bru"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+valley_brewing_company-indian_red_ale,0,0,245113094145,"{""name"":""Indian Red Ale"",""abv"":6.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A flavorful Red Ale with a generous helping of fresh Cascade hops. A full-bodied unfiltered beer with a slightly dry and roasted finish."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,34,1
+thunderhead_brewery-belgian_brown,0,0,245113487361,"{""name"":""Belgian Brown"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thunderhead_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+titletown_brewing-befuddelator_doppelbock,0,0,245119713283,"{""name"":""Befuddelator Doppelbock"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""titletown_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Traditional German-Style Bock"",""category"":""German Lager""}",1,50,1
+tworows_restaurant_brewery_dallas-barking_fish_porter,0,0,245106802689,"{""name"":""Barking Fish Porter"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tworows_restaurant_brewery_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Porter"",""category"":""Irish Ale""}",1,19,1
+yaletown_brewing,0,0,245746434048,"{""name"":""Yaletown Brewing"",""city"":""Vancouver"",""state"":""British Columbia"",""code"":""0"",""country"":""Canada"",""phone"":""1-604-688-0039"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1111 Mainland Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":49.2755,""lon"":-123.121}}",1,18,1
+stone_brewing_co-imperial_russian_stout,0,0,245119057920,"{""name"":""Imperial Russian Stout"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""stone_brewing_co"",""updated"":""2010-07-22 20:00:20"",""description"":""Brewed in the authentic historical style of an Imperial Russian Stout, this ale is massive. Intensely aromatic (notes of anise, lack currants, coffee, roastiness and alcohol) and heavy on the palate, this brew goes where few can --- and fewer dare even try. The style originated from Czarist Russia's demand for ever thicker English stouts. Expect our version of this mysterious brew to pour like Siberian crude and taste even heavier!"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,49,1
+unibroue-seigneuriale,0,0,245103984640,"{""name"":""Seigneuriale"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""The copper-colored body and generous foam\r\nhead of this amber ale tantalize the eyes but\r\nit's the complex flavor of Seigneuriale that\r\ndelivers a pleasant surprise. It is slightly\r\nsweet, malty and spicy, but a distinctive hop\r\ncharacter and notes of apricot brandy give\r\nSeigneuriale a truly unique character. \r\n\r\nWe recommending pairing it with carved ham,\r\napricot-glazed duck or squab, Thai shrimp\r\ncurry or a holiday fruit cake."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,12,1
+victory_brewing-festbier,0,0,245113094146,"{""name"":""Festbier"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Seductively smooth, this medium-bodied amber beauty is akin to the great Oktoberfest beers of Munich. All German malts and whole flower European hops make this lager true to style."",""style"":""German-Style Oktoberfest"",""category"":""German Lager""}",1,34,1
+triumph_brewing_of_princeton-winter_wonder,0,0,245113487362,"{""name"":""Winter Wonder"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""triumph_brewing_of_princeton"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+trap_rock_restaurant_and_brewery-pacific_coast_ale,0,0,245119778816,"{""name"":""Pacific Coast Ale"",""abv"":5.6,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trap_rock_restaurant_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+tyranena_brewing-bitter_woman_from_hell_extra_ipa,0,0,245106802690,"{""name"":""Bitter Woman From Hell Extra IPA"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""tyranena_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,19,1
+yuksom_breweries,0,0,245746434049,"{""name"":""Yuksom Breweries"",""city"":""Malli"",""state"":""Sikkim"",""code"":"""",""country"":""India"",""phone"":""91 03595-70205"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[]}",1,18,1
+sweet_water_tavern_and_brewery-great_american_s_restaurant_pale_ale,0,0,245119057921,"{""name"":""Great American's Restaurant Pale Ale"",""abv"":5.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""sweet_water_tavern_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""A fruity, copper-colored ale with a firm maltiness & dry hop."",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+voodoo_brewing_co_llc-4_seasons_ipa,0,0,245745516544,"{""name"":""4 Seasons IPA"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""voodoo_brewing_co_llc"",""updated"":""2010-07-22 20:00:20"",""description"":""India Pale Ale is a wonderful example of marriage. Bitter Hops and Boasting Barley come together to make one of the most sought after ales of the Craft Beer masses. Bottle Conditioned and Refermented."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,12,1
+water_street_brewery,0,0,245748400128,"{""name"":""Water Street Brewery"",""city"":""Milwaukee"",""state"":""Wisconsin"",""code"":""53202"",""country"":""United States"",""phone"":""1-414-272-1195"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""1101 North Water Street""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":43.0448,""lon"":-87.9114}}",1,34,1
+tsingtao,0,0,245113552896,"{""name"":""Tsingtao"",""city"":""Qingdao"",""state"":""Shandong"",""code"":"""",""country"":""China"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":36.0663,""lon"":120.383}}",1,35,1
+two_brothers_brewing-northwind_imperial_stout,0,0,245119778817,"{""name"":""Northwind Imperial Stout"",""abv"":7.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""two_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,50,1
+victory_brewing-moonglow_weizenbock,0,0,245106868224,"{""name"":""Moonglow Weizenbock"",""abv"":8.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""victory_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""This dark amber wheat beer features fruity and spicy aromas galore. Significant strength underlies the pleasant citric appeal of this bock beer. Redolent with the flavors of harvest fruit, Moonglow typifies the traditional weizenbock-style so thoroughly enjoyed throughout Bavaria. Left unfiltered, its unique yeast strain gives Moonglow a radiance all its own."",""style"":""South German-Style Weizenbock"",""category"":""German Ale""}",1,19,1
+tallgrass_brewing_co,0,0,245119123456,"{""name"":""Tallgrass Brewing Co."",""city"":""Manhattan"",""state"":""KS"",""code"":""66502"",""country"":""United States"",""phone"":""785-537-1131"",""website"":""http://www.tallgrassbeer.com"",""type"":""brewery"",""updated"":""2010-11-11 19:21:21"",""description"":"""",""address"":[""8845 Quail Lane""]}",1,49,1
+weyerbacher_brewing_company-old_heathen,0,0,245745582080,"{""name"":""Old Heathen"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Rich, velvety and deliciously complex, Old Heathen is a truly distinctive winter warmer. We use seven types of malt and two varieties of hops to bring forth this big brew. Quite robust and roasty on the palate, Old Heathen imperial stout has a wonderfully fruity nose and a moderately dry finish. The taste is highly complex- perhaps you'll even discern notes of espresso or chocolate. \r\n\r\nOld Heathen imperial stout is our interpretation of a beer style that originated in the 18th century. Brewed in England and exported to Germany, Scandinavia and Russia, these beers became fashionable among the members of the Czar's court. In order to survive long voyages they were brewed with high alcohol content to prevent spoilage. And at 8.0% ABV (alcohol by volume) Old Heathen definitely contains a warming belt. You may want to lay down a few bottles for future evaluation- this beer keeps well and will only get better with age.\r\n\r\nLike most of our beers, Weyerbacher Old Heathen is a perfect accompaniment to foods. Try it with rich stews, oysters, caviar or roasted meats. Old Heathen is also a perfect companion to chocolate desserts.\r\n\r\nOld Heathen is now available year-round."",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,12,1
+wdi_bru_huus-dunkel,0,0,245748400129,"{""name"":""Dunkel"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,34,1
+tworows_restaurant_brewery_dallas,0,0,245113552897,"{""name"":""TwoRows Restaurant & Brewery - Dallas"",""city"":""Dallas"",""state"":""Texas"",""code"":""75206"",""country"":""United States"",""phone"":""1-214-696-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""5500 Greenville Avenue #1300""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":32.8545,""lon"":-96.7687}}",1,35,1
+uinta_brewing_compnay-gelande_amber_lager,0,0,245119778818,"{""name"":""Gelande Amber Lager"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uinta_brewing_compnay"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+wdi_bru_huus-single_malt_bier,0,0,245746434048,"{""name"":""Single-Malt-Bier"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wdi_bru_huus"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Lager"",""category"":""North American Lager""}",1,19,1
+the_blind_bat_brewery_llc,0,0,245119123457,"{""name"":""The Blind Bat Brewery LLC"",""city"":""Centerport"",""state"":""New York"",""code"":""11721"",""country"":""United States"",""phone"":""(631) 891-7909"",""website"":""http://www.blindbatbrewery.com/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""420 Harrison Drive""],""geo"":{""accuracy"":""ROOFTOP"",""lat"":40.8959,""lon"":-73.3811}}",1,49,1
+white_winter_winery-dry_mead,0,0,245745582081,"{""name"":""Dry Mead"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""white_winter_winery"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+weinkeller_brewery_berwyn-bavarian_weiss,0,0,245748400130,"{""name"":""Bavarian Weiss"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,34,1
+uehara_shuzou_co_ltd_echigo_beer_pub-koshihikari_echigo_beer,0,0,245113618432,"{""name"":""Koshihikari Echigo Beer"",""abv"":5.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""uehara_shuzou_co_ltd_echigo_beer_pub"",""updated"":""2011-07-23 20:37:34"",""description"":""Japanese Rice Lager"",""style"":""Out of Category"",""category"":""Other Style""}",1,35,1
+upstream_brewing_old_market-gold_coast_blonde_ale,0,0,245119844352,"{""name"":""Gold Coast Blonde Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""Gold Coast Blonde is light in malt and hops and of course, golden in color. A great choice if you’re looking for true American beer flavor with a bit more malt than a light beer has to offer."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,50,1
+weeping_radish_restaurant_and_brewery_manteo,0,0,245746499584,"{""name"":""Weeping Radish Restaurant and Brewery - Manteo"",""city"":""Manteo"",""state"":""North Carolina"",""code"":""27954"",""country"":""United States"",""phone"":""1-800-896-5403"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""525 N Virginia Dare Road""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":35.8859,""lon"":-75.6697}}",1,19,1
+the_livery-cousin_jax,0,0,245119123458,"{""name"":""Cousin Jax"",""abv"":9.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""the_livery"",""updated"":""2010-07-22 20:00:20"",""description"":""Way up in the Keewenaw Peninsula in Michigans UP, Mt. Bohemia ski area has a powder run hidden at the top called \""Cousin Jack\"" (named after the Cornish miners)that winds its' way steeply through the rocks and trees. AAAHHH WINTER!!! Double the Belgian Malt, double the Amarillo hops-a perfect way to end any day. Everyones' favorite cousin! Also available barrel aged."",""style"":""Imperial or Double India Pale Ale"",""category"":""North American Ale""}",1,49,1
+wild_river_brewing_and_pizza_cave_junction-light,0,0,245745647616,"{""name"":""Light"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wild_river_brewing_and_pizza_cave_junction"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,12,1
+weinkeller_brewery_berwyn-nut_brown_ale,0,0,245748531200,"{""name"":""Nut Brown Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Brown Ale"",""category"":""North American Ale""}",1,34,1
+unibroue-terrible,0,0,245113618433,"{""name"":""Terrible"",""abv"":10.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""unibroue"",""updated"":""2010-07-22 20:00:20"",""description"":""Topped by a sumptuous head of foam, La Terrible possesses a fruity aroma enriched with notes of roasted malt and Madeira. Its long lasting flavour is both elegant and full bodied.\r\n\r\nLa Terrible is a dark brown beer on lees and is part of a collection of exotic and refined Unibroue beers brewed using 100% natural raw materials. It may be drunk as an aperitif or as an after dinner digestive. It is equally a perfect accompaniment to the above-mentioned dishes or a pleasant alternative to coffee."",""style"":""Other Belgian-Style Ales"",""category"":""Belgian and French Ale""}",1,35,1
+warsteiner_brauerei-warsteiner_premium_verum,0,0,245751021568,"{""name"":""Warsteiner Premium Verum"",""abv"":4.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""warsteiner_brauerei"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""German-Style Pilsener"",""category"":""German Lager""}",1,50,1
+weyerbacher_brewing_company-delta_ale,0,0,245746499585,"{""name"":""Delta Ale"",""abv"":7.8,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A pitch black stout made with ginger, cinnamon and a touch of molasses. This medium–bodied ale has flavors of dark chocolate, roasted coffee beans and ginger snap cookies."",""style"":""Herb and Spice Beer"",""category"":""Other Style""}",1,19,1
+thomas_hooker_brewing-thomas_hooker_irish_red_ale,0,0,245119188992,"{""name"":""Thomas Hooker Irish Red Ale"",""abv"":5.3,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""thomas_hooker_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Thomas Hooker's traditional Irish-Style Red Ale gets its warm, ruby color from an interesting blend of pale, caramel and roasted malts which promote a sweetness that's balanced with crisp, authentic, English-style hops. A very unique and drinkable red ale that's also favored by amber lovers.\r\nHooker Irish Red is drinks well year-round, not just on St. Paddy's day."",""style"":""Irish-Style Red Ale"",""category"":""Irish Ale""}",1,49,1
+wisconsin_brewing,0,0,245745647617,"{""name"":""Wisconsin Brewing"",""city"":""Wauwatosa"",""state"":""Wisconsin"",""code"":"""",""country"":""United States"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":43.0495,""lon"":-88.0076}}",1,12,1
+weyerbacher_brewing_company-heresy,0,0,245748596736,"{""name"":""Heresy"",""abv"":8.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""This incredibly intriguing Imperial Stout is made by aging our Old Heathen in some very famous Oak barrels that were used for aging bourbon! What do we have when we are done? A stout whose very essence has been enhanced. A stout whose complexity has been increased. A stout with notes of Oak, whiskey and vanilla melding together to create a new sensation. Have we gone too far this time? We don't think so. Heresy is a step above and a leap beyond the extraordinary. Taste it and see what everyone is talking about. 8.0% ABV"",""style"":""American-Style Imperial Stout"",""category"":""North American Ale""}",1,34,1
+van_honsebrouch-kasteel_blonde,0,0,245113618434,"{""name"":""Kasteel Blonde"",""abv"":11.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""van_honsebrouch"",""updated"":""2010-07-22 20:00:20"",""description"":""Slightly dangerous beer - tastes like an 8% blonde, delivers like nothing else. A little tart around the edges, due to the higher alcohol content, but otherwise a pleasant strong pils taste : not too much hop on the palate."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,35,1
+weyerbacher_brewing_company-decadence,0,0,245751087104,"{""name"":""Decadence"",""abv"":13.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Decadence is our Tenth Anniversay spiced amber ale. This is a very limited production, brewed only once, to celebrate ten fantastic years in business. This ale weighs in at 13% ABV and is a fantastic sipper, especially after dinner or consider paring it with a good book on a cool fall evening. Decadence is brewed with honey, cardamom spice and gentian (a rare botanical!) This ale is very unique and will develop finer character when aged at cellar temperatures."",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,50,1
+whim_ales,0,0,245746565120,"{""name"":""Whim Ales"",""city"":""Buxton"",""state"":""Derby"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01298)-84991"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Hartington""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":53.1407,""lon"":-1.8084}}",1,19,1
+trailhead_brewing_company-red_winter_ale,0,0,245119188993,"{""name"":""Red Winter Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""trailhead_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Amber/Red Ale"",""category"":""North American Ale""}",1,49,1
+whitstable_brewery,0,0,245748662272,"{""name"":""Whitstable Brewery"",""city"":""Maidstone"",""state"":""Kent"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01622)-851007"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Little Telpits Farm, Woodcock Lane""],""geo"":{""accuracy"":""GEOMETRIC_CENTER"",""lat"":51.2047,""lon"":0.6813}}",1,34,1
+vivungs_bryggeri,0,0,245748727808,"{""name"":""Vivungs Bryggeri"",""city"":""Romakloster"",""state"":"""",""code"":"""",""country"":""Sweden"",""phone"":"""",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":57.4985,""lon"":18.459}}",1,35,1
+wh_brakspear_sons-henley_ale,0,0,245751087105,"{""name"":""Henley Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wh_brakspear_sons"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,50,1
+widmer_brothers_brewing-widmer_hefeweizen,0,0,245746565121,"{""name"":""Widmer Hefeweizen"",""abv"":4.9,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""widmer_brothers_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""\""A golden unfiltered wheat beer that is truly cloudy and clearly superb. Ever since Widmer introduced Hefeweizen to America in 1986, ours has been the standard by which all other Hefeweizens are judged.\r\n1998 and 2006 GABF Gold Medal Award Winner\r\n2004 Gold Medal Beer Cup\""\r\n-Widmer Brothers Brewing Company"",""style"":""South German-Style Hefeweizen"",""category"":""German Ale""}",1,19,1
+trailhead_brewing_company,0,0,245119188994,"{""name"":""Trailhead Brewing Company"",""city"":""Saint Charles"",""state"":""Missouri"",""code"":""63301"",""country"":""United States"",""phone"":""1-636-946-2739"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""921 South Riverside Drive""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":38.7745,""lon"":-90.484}}",1,49,1
+woodforde_s_norfolk_ales,0,0,245748662273,"{""name"":""Woodforde's Norfolk Ales"",""city"":""Norwich"",""state"":""Norfolk"",""code"":"""",""country"":""United Kingdom"",""phone"":""44-(01603)-720353"",""website"":"""",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""Woodbastwick""],""geo"":{""accuracy"":""APPROXIMATE"",""lat"":52.6842,""lon"":1.449}}",1,34,1
+walldorff_brew_pub-bistro_blonde,0,0,245748727809,"{""name"":""Bistro Blonde"",""abv"":4.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""walldorff_brew_pub"",""updated"":""2010-07-22 20:00:20"",""description"":""An easy drinking ale that goes well with our food offerings. Also a great introduction to the world of craft brewing."",""style"":""Golden or Blonde Ale"",""category"":""North American Ale""}",1,35,1
+yazoo_brewing-pale_ale,0,0,245751152640,"{""name"":""Pale Ale"",""abv"":5.8,""ibu"":55.0,""srm"":6.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2011-04-17 12:25:31"",""description"":""A new version of an American classic. Our Yazoo Pale Ale bursts with spicy, citrusy hop aroma and flavor, coming from the newly discovered Amarillo hop. The wonderful hop aroma is balanced nicely with a toasty malt body, ending with a cleansing hop finish. Made with English Pale, Munich, Vienna, and Crystal malts, and generously hopped with Amarillo, Perle, and Cascade hops. Fermented with our English ale yeast."",""style"":""American-Style Strong Pale Ale"",""category"":""North American Ale""}",1,50,1
+yakima_brewing_and_malting_grant_s_ales-imperial_stout,0,0,245746565122,"{""name"":""Imperial Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yakima_brewing_and_malting_grant_s_ales"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,19,1
+troegs_brewing-scratch_beer_31_2010_citra_of_brotherly_love_ipa,0,0,245119188995,"{""name"":""Scratch Beer 31 - 2010 Citra Of Brotherly Love IPA"",""abv"":7.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""troegs_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Scratch 31, the brothers and the brewers decided to revisit one of our favorite sweet spots – IPA – and have some fun with hop flavors. Dubbed ‘Citra of Brotherly Love’ in honor of Philly Beer week, Scratch #31 has generous amounts of Apollo, Cascade and Citra hops. This is our first use of Citra hops, which is known for an intense grapefruit aroma and flavor.\r\n\r\nWhile showcasing the intense Citra flavor we added additional bitterness with Apollo and Chinook hops as well. Scratch #31 went through a bed of Chinook hops in the hopback and was dry-hopped with Cascade and Citra hops."",""style"":""American-Style India Pale Ale"",""category"":""North American Ale""}",1,49,1
+yards_brewing-yards_saison,0,0,245748727808,"{""name"":""Yards Saison"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Saisons were historically brewed to keep the farmhands happy and hydrated during the warm summer months. Crafted using Belgian pilsen malt and candi sugar, this golden Belgian style ale is a refreshing change from your usual beer lineup."",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,34,1
+weinkeller_brewery_berwyn-dublin_stout,0,0,245748793344,"{""name"":""Dublin Stout"",""abv"":6.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weinkeller_brewery_berwyn"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,35,1
+yazoo_brewing-dos_perros,0,0,245746630656,"{""name"":""Dos Perros"",""abv"":3.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yazoo_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Many Mexican beer styles today are descendants of old Austrian styles, from when Austria ruled Mexico in the late 19th century. Our Dos Perros is made with German Munich malt, English Pale malt, and Chocolate malt, and hopped with Perle and Saaz hops. To lighten the body, as many Mexican brewers do, we add a small portion of flaked maize. The result is a wonderfully bready malt aroma, balanced with some maize sweetness and a noble hop finish.\r\n\r\nFood Pairings: The toasty malt flavors go great with barbeque, grilled salmon, carmelized onions, and most hot and spicy foods. Try it with Mexican or Thai dishes.\r\n\r\nOG: 10.4 Plato\r\nFG: 3.3 Plato\r\nIBUs: 21\r\nSRM: 13\r\n3.5% abv"",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,19,1
+twin_ports_brewing-hopfenkopf,0,0,245119254528,"{""name"":""Hopfenkopf"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""twin_ports_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,49,1
+yegua_creek_brewing_dallas-cask_scotch_ale,0,0,245748793345,"{""name"":""Cask Scotch Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yegua_creek_brewing_dallas"",""updated"":""2010-07-22 20:00:20"",""description"":""""}",1,35,1
+zea_rotisserie_and_brewery-category_5_strong_ale,0,0,245746630657,"{""name"":""Category 5 Strong Ale"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""zea_rotisserie_and_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Pale Ale"",""category"":""North American Ale""}",1,19,1
+upland_brewing,0,0,245119254529,"{""name"":""Upland Brewing"",""city"":""Bloomington"",""state"":""Indiana"",""code"":""47404"",""country"":""United States"",""phone"":""1-812-336-2337"",""website"":""http://www.uplandbeer.com"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""Located in downtown Bloomington, just a few blocks from Courthouse Square, we are open (and brewing award-winning beers) every day of the year except Thanksgiving, Christmas Day, and New Year's Day. The Tap Room and Biergarten has six everyday Upland beers on tap with additional Seasonal brews (Oktoberfest, Winter Warmer, Chocolate Stout, Maibock�yea springtime!) throughout the year. (Check the News section opposite for seasonal release dates and related celebrations.) The Tap Room restaurant offers an eclectic menu of great pub grub (signature nachos, rib tips like no others) plus dinner fare that addresses sophisticated palates with cuisines from around the world. (Yes, we're a brew pub, but our wine list is excellent). Better yet, sign on to our Upland Update to learn who's performing. And while you're here be sure to check out the weekly dinner specials from the fertile imaginations of our excellent restaurant crew. Part of a group that's interested in brewing? Arrange for a brewery tour. We are proud of our hand-crafted, award-winning beers and would be delighted to guide you through the many stages involved in the brewing process. In the meantime, take the Virtual Tour for an inside look at how glorious stainless steel can be when directed to perform a noble task! Most of all, everyone here welcomes you to come by and partake of the Upland Experience�where great food, great beer, and great friends come together. Can't get to Bloomington? No problemo. As Indiana's largest microbrewer, you can find Upland beers in better stores, taverns, and restaurants throughout the state of Indiana."",""address"":[""350 West Eleventh Street""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":39.1733,""lon"":-86.5369}}",1,49,1
+york_brewery,0,0,245748858880,"{""name"":""York Brewery"",""city"":""York"",""state"":"""",""code"":""YO1 6JT"",""country"":""England"",""phone"":""01904 621162"",""website"":""http://www.york-brewery.co.uk"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""address"":[""12 Toft Green""],""geo"":{""accuracy"":""RANGE_INTERPOLATED"",""lat"":53.9571,""lon"":-1.0905}}",1,35,1
+till,0,0,89984275906560,"{""click"":""to edit"",""new in 2.0"":""there are no reserved field names""}",1,19,1
+upstream_brewing_old_market-american_wheat,0,0,245119254530,"{""name"":""American Wheat"",""abv"":4.7,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""upstream_brewing_old_market"",""updated"":""2010-07-22 20:00:20"",""description"":""A Silver Medal Winner in the American Hefenweizen category at the 2004 Great American Beer Festival, our American Wheat has a crisp and refreshing flavor."",""style"":""Light American Wheat Ale or Lager"",""category"":""Other Style""}",1,49,1
+valley_brewing_company-valley_brewing_london_tavern_ale,0,0,245119320064,"{""name"":""Valley Brewing London Tavern Ale"",""abv"":4.4,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""valley_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""A classic English Style Mild with a light hop profile. London Tavern Ale is a well balanced beer with caramel flavor and English character. Only traditional English Kent Goldings and Fuggles hops are used."",""style"":""English-Style Pale Mild Ale"",""category"":""British Ale""}",1,49,1
+wernesgruner_brauerei_gmbh,0,0,245750824960,"{""name"":""Wernesgrüner Brauerei GmbH"",""city"":""Steinberg-Wernesgrün, Germany"",""state"":"""",""code"":"""",""country"":""Germany"",""phone"":"""",""website"":""http://www.wernesgruener.de/"",""type"":""brewery"",""updated"":""2010-07-22 20:00:20"",""description"":""The Wernesgrüner Brewery or Wernesgrüner Brauerei GmbH is a brewery in Steinberg-Wernesgrün, Saxony, Germany. The brewery was founded in 1436 when the brothers Schorer acquired the rights to brew and open a tavern. After establishing property for bottling they soon began brewing on what would become the foundations of the Wernesgrüner Pils Legend. It is known as the aforementioned Pils Legend, because it was a bitter specialty during the communist period in Germany. [1] Throughout the company's history it has endured numerous changes of ownership. In 1762 the Günnel family bought the Schorer brewery. In 1774 the Männel family took over the bottling properties. Even though at the end of the 19th century the label now had five independent breweries, the families were still competing with each other. By 1910 the company had established itself throughout Germany and the Netherlands, and was even served on the renowned Hapag-Lloyd ships that ran from Hamburg to America.[1] The company was acquired by the Bitburger Braugruppe GmbH in 2002. The current output is 850,000 hl per year."",""address"":[]}",1,49,1
+weyerbacher_brewing_company-insanity,0,0,245750890496,"{""name"":""Insanity"",""abv"":11.1,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Insanity, just released this past November, 2004, is Weyerbacher's latest creation in the world of cutting edge beers. Insanity is made by aging our perfectly balanced Blithering Idiot Barleywine in oak bourbon casks. This incredible combination creates a melange of flavors such as malt, dates, oak, vanilla, and bourbon just to name a few.\r\n\r\n Insanity is 11.1% ABV. It is best enjoyed in a brandy snifter and served at 45-50 degrees F."",""style"":""American-Style Barley Wine Ale"",""category"":""North American Ale""}",1,49,1
+weyerbacher_brewing_company-muse_farmhouse_ale,0,0,245750956032,"{""name"":""Muse Farmhouse Ale"",""abv"":6.2,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""weyerbacher_brewing_company"",""updated"":""2010-07-22 20:00:20"",""description"":""Muse, a Farmhouse Ale, is brewed \""somewhat\"" in the tradition of the style, but it has Weyerbacher fingerprints all over it! Made with Pale malt, a little carapils, raw wheat and raw oats, this warm weather seasonal is dry and ever so slightly tart on the pallet from the wheat and oats. At 6.2% abv, its a bit higher than your strictly traditional farmhouse, but not out of the realm, really. The wheat and oats makes the mouthfeel silky and light at the same time. They also bring some cloudiness to the brew, but don't be afraid! Hopped with Styrian Goldings and finished with Saaz, this beer has a noticable hoppy dryness which makes it a fine thirst quencher, something the original Farmhouse Ales were intended to be, served to workers out in the fields on hot summer days as a restorative.\r\nFermented with Forbidden Fruit yeast, at a very high temperature (78F), the spiciness developed is entirely from this traditional yeast strain, not from any kettle additions. Unfiltered, to enjoy this natural beauty, and imagine yourself out in the flat fields of Belgium! Cheers!"",""style"":""French & Belgian-Style Saison"",""category"":""Belgian and French Ale""}",1,49,1
+whitstable_brewery-whitstable_oyster_stout,0,0,245750956033,"{""name"":""Whitstable Oyster Stout"",""abv"":0.0,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""whitstable_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
+wychwood_brewery-hobgoblin,0,0,245750956034,"{""name"":""Hobgoblin"",""abv"":5.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""wychwood_brewery"",""updated"":""2010-07-22 20:00:20"",""description"":"""",""style"":""Dark American-Belgo-Style Ale"",""category"":""North American Ale""}",1,49,1
+yards_brewing-yards_love_stout,0,0,245751021568,"{""name"":""Yards Love Stout"",""abv"":4.5,""ibu"":0.0,""srm"":0.0,""upc"":0,""type"":""beer"",""brewery_id"":""yards_brewing"",""updated"":""2010-07-22 20:00:20"",""description"":""Straight from the heart of the City of Brotherly Love comes a dark and chocolatey seductive little stout dominated by roasted malt flavor. This is one Philly favorite that won't break your heart and will always love you back."",""style"":""American-Style Stout"",""category"":""North American Ale""}",1,49,1
diff --git a/hyracks/hyracks-examples/text-example/textserver/data/file1.txt b/hyracks/hyracks-examples/text-example/textserver/data/file1.txt
index c4c3130..a02bd85 100644
--- a/hyracks/hyracks-examples/text-example/textserver/data/file1.txt
+++ b/hyracks/hyracks-examples/text-example/textserver/data/file1.txt
@@ -1,13052 +1,13052 @@
-Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle
-
-This eBook is for the use of anyone anywhere at no cost and with
-almost no restrictions whatsoever. You may copy it, give it away or
-re-use it under the terms of the Project Gutenberg License included
-with this eBook or online at www.gutenberg.net
-
-
-Title: The Adventures of Sherlock Holmes
-
-Author: Arthur Conan Doyle
-
-Posting Date: April 18, 2011 [EBook #1661]
-First Posted: November 29, 2002
-
-Language: English
-
-
-*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES ***
-
-
-
-
-Produced by an anonymous Project Gutenberg volunteer and Jose Menendez
-
-
-
-
-
-
-
-
-
-THE ADVENTURES OF SHERLOCK HOLMES
-
-by
-
-SIR ARTHUR CONAN DOYLE
-
-
-
- I. A Scandal in Bohemia
- II. The Red-headed League
- III. A Case of Identity
- IV. The Boscombe Valley Mystery
- V. The Five Orange Pips
- VI. The Man with the Twisted Lip
- VII. The Adventure of the Blue Carbuncle
-VIII. The Adventure of the Speckled Band
- IX. The Adventure of the Engineer's Thumb
- X. The Adventure of the Noble Bachelor
- XI. The Adventure of the Beryl Coronet
- XII. The Adventure of the Copper Beeches
-
-
-
-
-ADVENTURE I. A SCANDAL IN BOHEMIA
-
-I.
-
-To Sherlock Holmes she is always THE woman. I have seldom heard
-him mention her under any other name. In his eyes she eclipses
-and predominates the whole of her sex. It was not that he felt
-any emotion akin to love for Irene Adler. All emotions, and that
-one particularly, were abhorrent to his cold, precise but
-admirably balanced mind. He was, I take it, the most perfect
-reasoning and observing machine that the world has seen, but as a
-lover he would have placed himself in a false position. He never
-spoke of the softer passions, save with a gibe and a sneer. They
-were admirable things for the observer--excellent for drawing the
-veil from men's motives and actions. But for the trained reasoner
-to admit such intrusions into his own delicate and finely
-adjusted temperament was to introduce a distracting factor which
-might throw a doubt upon all his mental results. Grit in a
-sensitive instrument, or a crack in one of his own high-power
-lenses, would not be more disturbing than a strong emotion in a
-nature such as his. And yet there was but one woman to him, and
-that woman was the late Irene Adler, of dubious and questionable
-memory.
-
-I had seen little of Holmes lately. My marriage had drifted us
-away from each other. My own complete happiness, and the
-home-centred interests which rise up around the man who first
-finds himself master of his own establishment, were sufficient to
-absorb all my attention, while Holmes, who loathed every form of
-society with his whole Bohemian soul, remained in our lodgings in
-Baker Street, buried among his old books, and alternating from
-week to week between cocaine and ambition, the drowsiness of the
-drug, and the fierce energy of his own keen nature. He was still,
-as ever, deeply attracted by the study of crime, and occupied his
-immense faculties and extraordinary powers of observation in
-following out those clues, and clearing up those mysteries which
-had been abandoned as hopeless by the official police. From time
-to time I heard some vague account of his doings: of his summons
-to Odessa in the case of the Trepoff murder, of his clearing up
-of the singular tragedy of the Atkinson brothers at Trincomalee,
-and finally of the mission which he had accomplished so
-delicately and successfully for the reigning family of Holland.
-Beyond these signs of his activity, however, which I merely
-shared with all the readers of the daily press, I knew little of
-my former friend and companion.
-
-One night--it was on the twentieth of March, 1888--I was
-returning from a journey to a patient (for I had now returned to
-civil practice), when my way led me through Baker Street. As I
-passed the well-remembered door, which must always be associated
-in my mind with my wooing, and with the dark incidents of the
-Study in Scarlet, I was seized with a keen desire to see Holmes
-again, and to know how he was employing his extraordinary powers.
-His rooms were brilliantly lit, and, even as I looked up, I saw
-his tall, spare figure pass twice in a dark silhouette against
-the blind. He was pacing the room swiftly, eagerly, with his head
-sunk upon his chest and his hands clasped behind him. To me, who
-knew his every mood and habit, his attitude and manner told their
-own story. He was at work again. He had risen out of his
-drug-created dreams and was hot upon the scent of some new
-problem. I rang the bell and was shown up to the chamber which
-had formerly been in part my own.
-
-His manner was not effusive. It seldom was; but he was glad, I
-think, to see me. With hardly a word spoken, but with a kindly
-eye, he waved me to an armchair, threw across his case of cigars,
-and indicated a spirit case and a gasogene in the corner. Then he
-stood before the fire and looked me over in his singular
-introspective fashion.
-
-"Wedlock suits you," he remarked. "I think, Watson, that you have
-put on seven and a half pounds since I saw you."
-
-"Seven!" I answered.
-
-"Indeed, I should have thought a little more. Just a trifle more,
-I fancy, Watson. And in practice again, I observe. You did not
-tell me that you intended to go into harness."
-
-"Then, how do you know?"
-
-"I see it, I deduce it. How do I know that you have been getting
-yourself very wet lately, and that you have a most clumsy and
-careless servant girl?"
-
-"My dear Holmes," said I, "this is too much. You would certainly
-have been burned, had you lived a few centuries ago. It is true
-that I had a country walk on Thursday and came home in a dreadful
-mess, but as I have changed my clothes I can't imagine how you
-deduce it. As to Mary Jane, she is incorrigible, and my wife has
-given her notice, but there, again, I fail to see how you work it
-out."
-
-He chuckled to himself and rubbed his long, nervous hands
-together.
-
-"It is simplicity itself," said he; "my eyes tell me that on the
-inside of your left shoe, just where the firelight strikes it,
-the leather is scored by six almost parallel cuts. Obviously they
-have been caused by someone who has very carelessly scraped round
-the edges of the sole in order to remove crusted mud from it.
-Hence, you see, my double deduction that you had been out in vile
-weather, and that you had a particularly malignant boot-slitting
-specimen of the London slavey. As to your practice, if a
-gentleman walks into my rooms smelling of iodoform, with a black
-mark of nitrate of silver upon his right forefinger, and a bulge
-on the right side of his top-hat to show where he has secreted
-his stethoscope, I must be dull, indeed, if I do not pronounce
-him to be an active member of the medical profession."
-
-I could not help laughing at the ease with which he explained his
-process of deduction. "When I hear you give your reasons," I
-remarked, "the thing always appears to me to be so ridiculously
-simple that I could easily do it myself, though at each
-successive instance of your reasoning I am baffled until you
-explain your process. And yet I believe that my eyes are as good
-as yours."
-
-"Quite so," he answered, lighting a cigarette, and throwing
-himself down into an armchair. "You see, but you do not observe.
-The distinction is clear. For example, you have frequently seen
-the steps which lead up from the hall to this room."
-
-"Frequently."
-
-"How often?"
-
-"Well, some hundreds of times."
-
-"Then how many are there?"
-
-"How many? I don't know."
-
-"Quite so! You have not observed. And yet you have seen. That is
-just my point. Now, I know that there are seventeen steps,
-because I have both seen and observed. By-the-way, since you are
-interested in these little problems, and since you are good
-enough to chronicle one or two of my trifling experiences, you
-may be interested in this." He threw over a sheet of thick,
-pink-tinted note-paper which had been lying open upon the table.
-"It came by the last post," said he. "Read it aloud."
-
-The note was undated, and without either signature or address.
-
-"There will call upon you to-night, at a quarter to eight
-o'clock," it said, "a gentleman who desires to consult you upon a
-matter of the very deepest moment. Your recent services to one of
-the royal houses of Europe have shown that you are one who may
-safely be trusted with matters which are of an importance which
-can hardly be exaggerated. This account of you we have from all
-quarters received. Be in your chamber then at that hour, and do
-not take it amiss if your visitor wear a mask."
-
-"This is indeed a mystery," I remarked. "What do you imagine that
-it means?"
-
-"I have no data yet. It is a capital mistake to theorize before
-one has data. Insensibly one begins to twist facts to suit
-theories, instead of theories to suit facts. But the note itself.
-What do you deduce from it?"
-
-I carefully examined the writing, and the paper upon which it was
-written.
-
-"The man who wrote it was presumably well to do," I remarked,
-endeavouring to imitate my companion's processes. "Such paper
-could not be bought under half a crown a packet. It is peculiarly
-strong and stiff."
-
-"Peculiar--that is the very word," said Holmes. "It is not an
-English paper at all. Hold it up to the light."
-
-I did so, and saw a large "E" with a small "g," a "P," and a
-large "G" with a small "t" woven into the texture of the paper.
-
-"What do you make of that?" asked Holmes.
-
-"The name of the maker, no doubt; or his monogram, rather."
-
-"Not at all. The 'G' with the small 't' stands for
-'Gesellschaft,' which is the German for 'Company.' It is a
-customary contraction like our 'Co.' 'P,' of course, stands for
-'Papier.' Now for the 'Eg.' Let us glance at our Continental
-Gazetteer." He took down a heavy brown volume from his shelves.
-"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking
-country--in Bohemia, not far from Carlsbad. 'Remarkable as being
-the scene of the death of Wallenstein, and for its numerous
-glass-factories and paper-mills.' Ha, ha, my boy, what do you
-make of that?" His eyes sparkled, and he sent up a great blue
-triumphant cloud from his cigarette.
-
-"The paper was made in Bohemia," I said.
-
-"Precisely. And the man who wrote the note is a German. Do you
-note the peculiar construction of the sentence--'This account of
-you we have from all quarters received.' A Frenchman or Russian
-could not have written that. It is the German who is so
-uncourteous to his verbs. It only remains, therefore, to discover
-what is wanted by this German who writes upon Bohemian paper and
-prefers wearing a mask to showing his face. And here he comes, if
-I am not mistaken, to resolve all our doubts."
-
-As he spoke there was the sharp sound of horses' hoofs and
-grating wheels against the curb, followed by a sharp pull at the
-bell. Holmes whistled.
-
-"A pair, by the sound," said he. "Yes," he continued, glancing
-out of the window. "A nice little brougham and a pair of
-beauties. A hundred and fifty guineas apiece. There's money in
-this case, Watson, if there is nothing else."
-
-"I think that I had better go, Holmes."
-
-"Not a bit, Doctor. Stay where you are. I am lost without my
-Boswell. And this promises to be interesting. It would be a pity
-to miss it."
-
-"But your client--"
-
-"Never mind him. I may want your help, and so may he. Here he
-comes. Sit down in that armchair, Doctor, and give us your best
-attention."
-
-A slow and heavy step, which had been heard upon the stairs and
-in the passage, paused immediately outside the door. Then there
-was a loud and authoritative tap.
-
-"Come in!" said Holmes.
-
-A man entered who could hardly have been less than six feet six
-inches in height, with the chest and limbs of a Hercules. His
-dress was rich with a richness which would, in England, be looked
-upon as akin to bad taste. Heavy bands of astrakhan were slashed
-across the sleeves and fronts of his double-breasted coat, while
-the deep blue cloak which was thrown over his shoulders was lined
-with flame-coloured silk and secured at the neck with a brooch
-which consisted of a single flaming beryl. Boots which extended
-halfway up his calves, and which were trimmed at the tops with
-rich brown fur, completed the impression of barbaric opulence
-which was suggested by his whole appearance. He carried a
-broad-brimmed hat in his hand, while he wore across the upper
-part of his face, extending down past the cheekbones, a black
-vizard mask, which he had apparently adjusted that very moment,
-for his hand was still raised to it as he entered. From the lower
-part of the face he appeared to be a man of strong character,
-with a thick, hanging lip, and a long, straight chin suggestive
-of resolution pushed to the length of obstinacy.
-
-"You had my note?" he asked with a deep harsh voice and a
-strongly marked German accent. "I told you that I would call." He
-looked from one to the other of us, as if uncertain which to
-address.
-
-"Pray take a seat," said Holmes. "This is my friend and
-colleague, Dr. Watson, who is occasionally good enough to help me
-in my cases. Whom have I the honour to address?"
-
-"You may address me as the Count Von Kramm, a Bohemian nobleman.
-I understand that this gentleman, your friend, is a man of honour
-and discretion, whom I may trust with a matter of the most
-extreme importance. If not, I should much prefer to communicate
-with you alone."
-
-I rose to go, but Holmes caught me by the wrist and pushed me
-back into my chair. "It is both, or none," said he. "You may say
-before this gentleman anything which you may say to me."
-
-The Count shrugged his broad shoulders. "Then I must begin," said
-he, "by binding you both to absolute secrecy for two years; at
-the end of that time the matter will be of no importance. At
-present it is not too much to say that it is of such weight it
-may have an influence upon European history."
-
-"I promise," said Holmes.
-
-"And I."
-
-"You will excuse this mask," continued our strange visitor. "The
-august person who employs me wishes his agent to be unknown to
-you, and I may confess at once that the title by which I have
-just called myself is not exactly my own."
-
-"I was aware of it," said Holmes dryly.
-
-"The circumstances are of great delicacy, and every precaution
-has to be taken to quench what might grow to be an immense
-scandal and seriously compromise one of the reigning families of
-Europe. To speak plainly, the matter implicates the great House
-of Ormstein, hereditary kings of Bohemia."
-
-"I was also aware of that," murmured Holmes, settling himself
-down in his armchair and closing his eyes.
-
-Our visitor glanced with some apparent surprise at the languid,
-lounging figure of the man who had been no doubt depicted to him
-as the most incisive reasoner and most energetic agent in Europe.
-Holmes slowly reopened his eyes and looked impatiently at his
-gigantic client.
-
-"If your Majesty would condescend to state your case," he
-remarked, "I should be better able to advise you."
-
-The man sprang from his chair and paced up and down the room in
-uncontrollable agitation. Then, with a gesture of desperation, he
-tore the mask from his face and hurled it upon the ground. "You
-are right," he cried; "I am the King. Why should I attempt to
-conceal it?"
-
-"Why, indeed?" murmured Holmes. "Your Majesty had not spoken
-before I was aware that I was addressing Wilhelm Gottsreich
-Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and
-hereditary King of Bohemia."
-
-"But you can understand," said our strange visitor, sitting down
-once more and passing his hand over his high white forehead, "you
-can understand that I am not accustomed to doing such business in
-my own person. Yet the matter was so delicate that I could not
-confide it to an agent without putting myself in his power. I
-have come incognito from Prague for the purpose of consulting
-you."
-
-"Then, pray consult," said Holmes, shutting his eyes once more.
-
-"The facts are briefly these: Some five years ago, during a
-lengthy visit to Warsaw, I made the acquaintance of the well-known
-adventuress, Irene Adler. The name is no doubt familiar to you."
-
-"Kindly look her up in my index, Doctor," murmured Holmes without
-opening his eyes. For many years he had adopted a system of
-docketing all paragraphs concerning men and things, so that it
-was difficult to name a subject or a person on which he could not
-at once furnish information. In this case I found her biography
-sandwiched in between that of a Hebrew rabbi and that of a
-staff-commander who had written a monograph upon the deep-sea
-fishes.
-
-"Let me see!" said Holmes. "Hum! Born in New Jersey in the year
-1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera
-of Warsaw--yes! Retired from operatic stage--ha! Living in
-London--quite so! Your Majesty, as I understand, became entangled
-with this young person, wrote her some compromising letters, and
-is now desirous of getting those letters back."
-
-"Precisely so. But how--"
-
-"Was there a secret marriage?"
-
-"None."
-
-"No legal papers or certificates?"
-
-"None."
-
-"Then I fail to follow your Majesty. If this young person should
-produce her letters for blackmailing or other purposes, how is
-she to prove their authenticity?"
-
-"There is the writing."
-
-"Pooh, pooh! Forgery."
-
-"My private note-paper."
-
-"Stolen."
-
-"My own seal."
-
-"Imitated."
-
-"My photograph."
-
-"Bought."
-
-"We were both in the photograph."
-
-"Oh, dear! That is very bad! Your Majesty has indeed committed an
-indiscretion."
-
-"I was mad--insane."
-
-"You have compromised yourself seriously."
-
-"I was only Crown Prince then. I was young. I am but thirty now."
-
-"It must be recovered."
-
-"We have tried and failed."
-
-"Your Majesty must pay. It must be bought."
-
-"She will not sell."
-
-"Stolen, then."
-
-"Five attempts have been made. Twice burglars in my pay ransacked
-her house. Once we diverted her luggage when she travelled. Twice
-she has been waylaid. There has been no result."
-
-"No sign of it?"
-
-"Absolutely none."
-
-Holmes laughed. "It is quite a pretty little problem," said he.
-
-"But a very serious one to me," returned the King reproachfully.
-
-"Very, indeed. And what does she propose to do with the
-photograph?"
-
-"To ruin me."
-
-"But how?"
-
-"I am about to be married."
-
-"So I have heard."
-
-"To Clotilde Lothman von Saxe-Meningen, second daughter of the
-King of Scandinavia. You may know the strict principles of her
-family. She is herself the very soul of delicacy. A shadow of a
-doubt as to my conduct would bring the matter to an end."
-
-"And Irene Adler?"
-
-"Threatens to send them the photograph. And she will do it. I
-know that she will do it. You do not know her, but she has a soul
-of steel. She has the face of the most beautiful of women, and
-the mind of the most resolute of men. Rather than I should marry
-another woman, there are no lengths to which she would not
-go--none."
-
-"You are sure that she has not sent it yet?"
-
-"I am sure."
-
-"And why?"
-
-"Because she has said that she would send it on the day when the
-betrothal was publicly proclaimed. That will be next Monday."
-
-"Oh, then we have three days yet," said Holmes with a yawn. "That
-is very fortunate, as I have one or two matters of importance to
-look into just at present. Your Majesty will, of course, stay in
-London for the present?"
-
-"Certainly. You will find me at the Langham under the name of the
-Count Von Kramm."
-
-"Then I shall drop you a line to let you know how we progress."
-
-"Pray do so. I shall be all anxiety."
-
-"Then, as to money?"
-
-"You have carte blanche."
-
-"Absolutely?"
-
-"I tell you that I would give one of the provinces of my kingdom
-to have that photograph."
-
-"And for present expenses?"
-
-The King took a heavy chamois leather bag from under his cloak
-and laid it on the table.
-
-"There are three hundred pounds in gold and seven hundred in
-notes," he said.
-
-Holmes scribbled a receipt upon a sheet of his note-book and
-handed it to him.
-
-"And Mademoiselle's address?" he asked.
-
-"Is Briony Lodge, Serpentine Avenue, St. John's Wood."
-
-Holmes took a note of it. "One other question," said he. "Was the
-photograph a cabinet?"
-
-"It was."
-
-"Then, good-night, your Majesty, and I trust that we shall soon
-have some good news for you. And good-night, Watson," he added,
-as the wheels of the royal brougham rolled down the street. "If
-you will be good enough to call to-morrow afternoon at three
-o'clock I should like to chat this little matter over with you."
-
-
-II.
-
-At three o'clock precisely I was at Baker Street, but Holmes had
-not yet returned. The landlady informed me that he had left the
-house shortly after eight o'clock in the morning. I sat down
-beside the fire, however, with the intention of awaiting him,
-however long he might be. I was already deeply interested in his
-inquiry, for, though it was surrounded by none of the grim and
-strange features which were associated with the two crimes which
-I have already recorded, still, the nature of the case and the
-exalted station of his client gave it a character of its own.
-Indeed, apart from the nature of the investigation which my
-friend had on hand, there was something in his masterly grasp of
-a situation, and his keen, incisive reasoning, which made it a
-pleasure to me to study his system of work, and to follow the
-quick, subtle methods by which he disentangled the most
-inextricable mysteries. So accustomed was I to his invariable
-success that the very possibility of his failing had ceased to
-enter into my head.
-
-It was close upon four before the door opened, and a
-drunken-looking groom, ill-kempt and side-whiskered, with an
-inflamed face and disreputable clothes, walked into the room.
-Accustomed as I was to my friend's amazing powers in the use of
-disguises, I had to look three times before I was certain that it
-was indeed he. With a nod he vanished into the bedroom, whence he
-emerged in five minutes tweed-suited and respectable, as of old.
-Putting his hands into his pockets, he stretched out his legs in
-front of the fire and laughed heartily for some minutes.
-
-"Well, really!" he cried, and then he choked and laughed again
-until he was obliged to lie back, limp and helpless, in the
-chair.
-
-"What is it?"
-
-"It's quite too funny. I am sure you could never guess how I
-employed my morning, or what I ended by doing."
-
-"I can't imagine. I suppose that you have been watching the
-habits, and perhaps the house, of Miss Irene Adler."
-
-"Quite so; but the sequel was rather unusual. I will tell you,
-however. I left the house a little after eight o'clock this
-morning in the character of a groom out of work. There is a
-wonderful sympathy and freemasonry among horsey men. Be one of
-them, and you will know all that there is to know. I soon found
-Briony Lodge. It is a bijou villa, with a garden at the back, but
-built out in front right up to the road, two stories. Chubb lock
-to the door. Large sitting-room on the right side, well
-furnished, with long windows almost to the floor, and those
-preposterous English window fasteners which a child could open.
-Behind there was nothing remarkable, save that the passage window
-could be reached from the top of the coach-house. I walked round
-it and examined it closely from every point of view, but without
-noting anything else of interest.
-
-"I then lounged down the street and found, as I expected, that
-there was a mews in a lane which runs down by one wall of the
-garden. I lent the ostlers a hand in rubbing down their horses,
-and received in exchange twopence, a glass of half and half, two
-fills of shag tobacco, and as much information as I could desire
-about Miss Adler, to say nothing of half a dozen other people in
-the neighbourhood in whom I was not in the least interested, but
-whose biographies I was compelled to listen to."
-
-"And what of Irene Adler?" I asked.
-
-"Oh, she has turned all the men's heads down in that part. She is
-the daintiest thing under a bonnet on this planet. So say the
-Serpentine-mews, to a man. She lives quietly, sings at concerts,
-drives out at five every day, and returns at seven sharp for
-dinner. Seldom goes out at other times, except when she sings.
-Has only one male visitor, but a good deal of him. He is dark,
-handsome, and dashing, never calls less than once a day, and
-often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See
-the advantages of a cabman as a confidant. They had driven him
-home a dozen times from Serpentine-mews, and knew all about him.
-When I had listened to all they had to tell, I began to walk up
-and down near Briony Lodge once more, and to think over my plan
-of campaign.
-
-"This Godfrey Norton was evidently an important factor in the
-matter. He was a lawyer. That sounded ominous. What was the
-relation between them, and what the object of his repeated
-visits? Was she his client, his friend, or his mistress? If the
-former, she had probably transferred the photograph to his
-keeping. If the latter, it was less likely. On the issue of this
-question depended whether I should continue my work at Briony
-Lodge, or turn my attention to the gentleman's chambers in the
-Temple. It was a delicate point, and it widened the field of my
-inquiry. I fear that I bore you with these details, but I have to
-let you see my little difficulties, if you are to understand the
-situation."
-
-"I am following you closely," I answered.
-
-"I was still balancing the matter in my mind when a hansom cab
-drove up to Briony Lodge, and a gentleman sprang out. He was a
-remarkably handsome man, dark, aquiline, and moustached--evidently
-the man of whom I had heard. He appeared to be in a
-great hurry, shouted to the cabman to wait, and brushed past the
-maid who opened the door with the air of a man who was thoroughly
-at home.
-
-"He was in the house about half an hour, and I could catch
-glimpses of him in the windows of the sitting-room, pacing up and
-down, talking excitedly, and waving his arms. Of her I could see
-nothing. Presently he emerged, looking even more flurried than
-before. As he stepped up to the cab, he pulled a gold watch from
-his pocket and looked at it earnestly, 'Drive like the devil,' he
-shouted, 'first to Gross & Hankey's in Regent Street, and then to
-the Church of St. Monica in the Edgeware Road. Half a guinea if
-you do it in twenty minutes!'
-
-"Away they went, and I was just wondering whether I should not do
-well to follow them when up the lane came a neat little landau,
-the coachman with his coat only half-buttoned, and his tie under
-his ear, while all the tags of his harness were sticking out of
-the buckles. It hadn't pulled up before she shot out of the hall
-door and into it. I only caught a glimpse of her at the moment,
-but she was a lovely woman, with a face that a man might die for.
-
-"'The Church of St. Monica, John,' she cried, 'and half a
-sovereign if you reach it in twenty minutes.'
-
-"This was quite too good to lose, Watson. I was just balancing
-whether I should run for it, or whether I should perch behind her
-landau when a cab came through the street. The driver looked
-twice at such a shabby fare, but I jumped in before he could
-object. 'The Church of St. Monica,' said I, 'and half a sovereign
-if you reach it in twenty minutes.' It was twenty-five minutes to
-twelve, and of course it was clear enough what was in the wind.
-
-"My cabby drove fast. I don't think I ever drove faster, but the
-others were there before us. The cab and the landau with their
-steaming horses were in front of the door when I arrived. I paid
-the man and hurried into the church. There was not a soul there
-save the two whom I had followed and a surpliced clergyman, who
-seemed to be expostulating with them. They were all three
-standing in a knot in front of the altar. I lounged up the side
-aisle like any other idler who has dropped into a church.
-Suddenly, to my surprise, the three at the altar faced round to
-me, and Godfrey Norton came running as hard as he could towards
-me.
-
-"'Thank God,' he cried. 'You'll do. Come! Come!'
-
-"'What then?' I asked.
-
-"'Come, man, come, only three minutes, or it won't be legal.'
-
-"I was half-dragged up to the altar, and before I knew where I was
-I found myself mumbling responses which were whispered in my ear,
-and vouching for things of which I knew nothing, and generally
-assisting in the secure tying up of Irene Adler, spinster, to
-Godfrey Norton, bachelor. It was all done in an instant, and
-there was the gentleman thanking me on the one side and the lady
-on the other, while the clergyman beamed on me in front. It was
-the most preposterous position in which I ever found myself in my
-life, and it was the thought of it that started me laughing just
-now. It seems that there had been some informality about their
-license, that the clergyman absolutely refused to marry them
-without a witness of some sort, and that my lucky appearance
-saved the bridegroom from having to sally out into the streets in
-search of a best man. The bride gave me a sovereign, and I mean
-to wear it on my watch-chain in memory of the occasion."
-
-"This is a very unexpected turn of affairs," said I; "and what
-then?"
-
-"Well, I found my plans very seriously menaced. It looked as if
-the pair might take an immediate departure, and so necessitate
-very prompt and energetic measures on my part. At the church
-door, however, they separated, he driving back to the Temple, and
-she to her own house. 'I shall drive out in the park at five as
-usual,' she said as she left him. I heard no more. They drove
-away in different directions, and I went off to make my own
-arrangements."
-
-"Which are?"
-
-"Some cold beef and a glass of beer," he answered, ringing the
-bell. "I have been too busy to think of food, and I am likely to
-be busier still this evening. By the way, Doctor, I shall want
-your co-operation."
-
-"I shall be delighted."
-
-"You don't mind breaking the law?"
-
-"Not in the least."
-
-"Nor running a chance of arrest?"
-
-"Not in a good cause."
-
-"Oh, the cause is excellent!"
-
-"Then I am your man."
-
-"I was sure that I might rely on you."
-
-"But what is it you wish?"
-
-"When Mrs. Turner has brought in the tray I will make it clear to
-you. Now," he said as he turned hungrily on the simple fare that
-our landlady had provided, "I must discuss it while I eat, for I
-have not much time. It is nearly five now. In two hours we must
-be on the scene of action. Miss Irene, or Madame, rather, returns
-from her drive at seven. We must be at Briony Lodge to meet her."
-
-"And what then?"
-
-"You must leave that to me. I have already arranged what is to
-occur. There is only one point on which I must insist. You must
-not interfere, come what may. You understand?"
-
-"I am to be neutral?"
-
-"To do nothing whatever. There will probably be some small
-unpleasantness. Do not join in it. It will end in my being
-conveyed into the house. Four or five minutes afterwards the
-sitting-room window will open. You are to station yourself close
-to that open window."
-
-"Yes."
-
-"You are to watch me, for I will be visible to you."
-
-"Yes."
-
-"And when I raise my hand--so--you will throw into the room what
-I give you to throw, and will, at the same time, raise the cry of
-fire. You quite follow me?"
-
-"Entirely."
-
-"It is nothing very formidable," he said, taking a long cigar-shaped
-roll from his pocket. "It is an ordinary plumber's smoke-rocket,
-fitted with a cap at either end to make it self-lighting.
-Your task is confined to that. When you raise your cry of fire,
-it will be taken up by quite a number of people. You may then
-walk to the end of the street, and I will rejoin you in ten
-minutes. I hope that I have made myself clear?"
-
-"I am to remain neutral, to get near the window, to watch you,
-and at the signal to throw in this object, then to raise the cry
-of fire, and to wait you at the corner of the street."
-
-"Precisely."
-
-"Then you may entirely rely on me."
-
-"That is excellent. I think, perhaps, it is almost time that I
-prepare for the new role I have to play."
-
-He disappeared into his bedroom and returned in a few minutes in
-the character of an amiable and simple-minded Nonconformist
-clergyman. His broad black hat, his baggy trousers, his white
-tie, his sympathetic smile, and general look of peering and
-benevolent curiosity were such as Mr. John Hare alone could have
-equalled. It was not merely that Holmes changed his costume. His
-expression, his manner, his very soul seemed to vary with every
-fresh part that he assumed. The stage lost a fine actor, even as
-science lost an acute reasoner, when he became a specialist in
-crime.
-
-It was a quarter past six when we left Baker Street, and it still
-wanted ten minutes to the hour when we found ourselves in
-Serpentine Avenue. It was already dusk, and the lamps were just
-being lighted as we paced up and down in front of Briony Lodge,
-waiting for the coming of its occupant. The house was just such
-as I had pictured it from Sherlock Holmes' succinct description,
-but the locality appeared to be less private than I expected. On
-the contrary, for a small street in a quiet neighbourhood, it was
-remarkably animated. There was a group of shabbily dressed men
-smoking and laughing in a corner, a scissors-grinder with his
-wheel, two guardsmen who were flirting with a nurse-girl, and
-several well-dressed young men who were lounging up and down with
-cigars in their mouths.
-
-"You see," remarked Holmes, as we paced to and fro in front of
-the house, "this marriage rather simplifies matters. The
-photograph becomes a double-edged weapon now. The chances are
-that she would be as averse to its being seen by Mr. Godfrey
-Norton, as our client is to its coming to the eyes of his
-princess. Now the question is, Where are we to find the
-photograph?"
-
-"Where, indeed?"
-
-"It is most unlikely that she carries it about with her. It is
-cabinet size. Too large for easy concealment about a woman's
-dress. She knows that the King is capable of having her waylaid
-and searched. Two attempts of the sort have already been made. We
-may take it, then, that she does not carry it about with her."
-
-"Where, then?"
-
-"Her banker or her lawyer. There is that double possibility. But
-I am inclined to think neither. Women are naturally secretive,
-and they like to do their own secreting. Why should she hand it
-over to anyone else? She could trust her own guardianship, but
-she could not tell what indirect or political influence might be
-brought to bear upon a business man. Besides, remember that she
-had resolved to use it within a few days. It must be where she
-can lay her hands upon it. It must be in her own house."
-
-"But it has twice been burgled."
-
-"Pshaw! They did not know how to look."
-
-"But how will you look?"
-
-"I will not look."
-
-"What then?"
-
-"I will get her to show me."
-
-"But she will refuse."
-
-"She will not be able to. But I hear the rumble of wheels. It is
-her carriage. Now carry out my orders to the letter."
-
-As he spoke the gleam of the side-lights of a carriage came round
-the curve of the avenue. It was a smart little landau which
-rattled up to the door of Briony Lodge. As it pulled up, one of
-the loafing men at the corner dashed forward to open the door in
-the hope of earning a copper, but was elbowed away by another
-loafer, who had rushed up with the same intention. A fierce
-quarrel broke out, which was increased by the two guardsmen, who
-took sides with one of the loungers, and by the scissors-grinder,
-who was equally hot upon the other side. A blow was struck, and
-in an instant the lady, who had stepped from her carriage, was
-the centre of a little knot of flushed and struggling men, who
-struck savagely at each other with their fists and sticks. Holmes
-dashed into the crowd to protect the lady; but just as he reached
-her he gave a cry and dropped to the ground, with the blood
-running freely down his face. At his fall the guardsmen took to
-their heels in one direction and the loungers in the other, while
-a number of better-dressed people, who had watched the scuffle
-without taking part in it, crowded in to help the lady and to
-attend to the injured man. Irene Adler, as I will still call her,
-had hurried up the steps; but she stood at the top with her
-superb figure outlined against the lights of the hall, looking
-back into the street.
-
-"Is the poor gentleman much hurt?" she asked.
-
-"He is dead," cried several voices.
-
-"No, no, there's life in him!" shouted another. "But he'll be
-gone before you can get him to hospital."
-
-"He's a brave fellow," said a woman. "They would have had the
-lady's purse and watch if it hadn't been for him. They were a
-gang, and a rough one, too. Ah, he's breathing now."
-
-"He can't lie in the street. May we bring him in, marm?"
-
-"Surely. Bring him into the sitting-room. There is a comfortable
-sofa. This way, please!"
-
-Slowly and solemnly he was borne into Briony Lodge and laid out
-in the principal room, while I still observed the proceedings
-from my post by the window. The lamps had been lit, but the
-blinds had not been drawn, so that I could see Holmes as he lay
-upon the couch. I do not know whether he was seized with
-compunction at that moment for the part he was playing, but I
-know that I never felt more heartily ashamed of myself in my life
-than when I saw the beautiful creature against whom I was
-conspiring, or the grace and kindliness with which she waited
-upon the injured man. And yet it would be the blackest treachery
-to Holmes to draw back now from the part which he had intrusted
-to me. I hardened my heart, and took the smoke-rocket from under
-my ulster. After all, I thought, we are not injuring her. We are
-but preventing her from injuring another.
-
-Holmes had sat up upon the couch, and I saw him motion like a man
-who is in need of air. A maid rushed across and threw open the
-window. At the same instant I saw him raise his hand and at the
-signal I tossed my rocket into the room with a cry of "Fire!" The
-word was no sooner out of my mouth than the whole crowd of
-spectators, well dressed and ill--gentlemen, ostlers, and
-servant-maids--joined in a general shriek of "Fire!" Thick clouds
-of smoke curled through the room and out at the open window. I
-caught a glimpse of rushing figures, and a moment later the voice
-of Holmes from within assuring them that it was a false alarm.
-Slipping through the shouting crowd I made my way to the corner
-of the street, and in ten minutes was rejoiced to find my
-friend's arm in mine, and to get away from the scene of uproar.
-He walked swiftly and in silence for some few minutes until we
-had turned down one of the quiet streets which lead towards the
-Edgeware Road.
-
-"You did it very nicely, Doctor," he remarked. "Nothing could
-have been better. It is all right."
-
-"You have the photograph?"
-
-"I know where it is."
-
-"And how did you find out?"
-
-"She showed me, as I told you she would."
-
-"I am still in the dark."
-
-"I do not wish to make a mystery," said he, laughing. "The matter
-was perfectly simple. You, of course, saw that everyone in the
-street was an accomplice. They were all engaged for the evening."
-
-"I guessed as much."
-
-"Then, when the row broke out, I had a little moist red paint in
-the palm of my hand. I rushed forward, fell down, clapped my hand
-to my face, and became a piteous spectacle. It is an old trick."
-
-"That also I could fathom."
-
-"Then they carried me in. She was bound to have me in. What else
-could she do? And into her sitting-room, which was the very room
-which I suspected. It lay between that and her bedroom, and I was
-determined to see which. They laid me on a couch, I motioned for
-air, they were compelled to open the window, and you had your
-chance."
-
-"How did that help you?"
-
-"It was all-important. When a woman thinks that her house is on
-fire, her instinct is at once to rush to the thing which she
-values most. It is a perfectly overpowering impulse, and I have
-more than once taken advantage of it. In the case of the
-Darlington substitution scandal it was of use to me, and also in
-the Arnsworth Castle business. A married woman grabs at her baby;
-an unmarried one reaches for her jewel-box. Now it was clear to
-me that our lady of to-day had nothing in the house more precious
-to her than what we are in quest of. She would rush to secure it.
-The alarm of fire was admirably done. The smoke and shouting were
-enough to shake nerves of steel. She responded beautifully. The
-photograph is in a recess behind a sliding panel just above the
-right bell-pull. She was there in an instant, and I caught a
-glimpse of it as she half-drew it out. When I cried out that it
-was a false alarm, she replaced it, glanced at the rocket, rushed
-from the room, and I have not seen her since. I rose, and, making
-my excuses, escaped from the house. I hesitated whether to
-attempt to secure the photograph at once; but the coachman had
-come in, and as he was watching me narrowly it seemed safer to
-wait. A little over-precipitance may ruin all."
-
-"And now?" I asked.
-
-"Our quest is practically finished. I shall call with the King
-to-morrow, and with you, if you care to come with us. We will be
-shown into the sitting-room to wait for the lady, but it is
-probable that when she comes she may find neither us nor the
-photograph. It might be a satisfaction to his Majesty to regain
-it with his own hands."
-
-"And when will you call?"
-
-"At eight in the morning. She will not be up, so that we shall
-have a clear field. Besides, we must be prompt, for this marriage
-may mean a complete change in her life and habits. I must wire to
-the King without delay."
-
-We had reached Baker Street and had stopped at the door. He was
-searching his pockets for the key when someone passing said:
-
-"Good-night, Mister Sherlock Holmes."
-
-There were several people on the pavement at the time, but the
-greeting appeared to come from a slim youth in an ulster who had
-hurried by.
-
-"I've heard that voice before," said Holmes, staring down the
-dimly lit street. "Now, I wonder who the deuce that could have
-been."
-
-
-III.
-
-I slept at Baker Street that night, and we were engaged upon our
-toast and coffee in the morning when the King of Bohemia rushed
-into the room.
-
-"You have really got it!" he cried, grasping Sherlock Holmes by
-either shoulder and looking eagerly into his face.
-
-"Not yet."
-
-"But you have hopes?"
-
-"I have hopes."
-
-"Then, come. I am all impatience to be gone."
-
-"We must have a cab."
-
-"No, my brougham is waiting."
-
-"Then that will simplify matters." We descended and started off
-once more for Briony Lodge.
-
-"Irene Adler is married," remarked Holmes.
-
-"Married! When?"
-
-"Yesterday."
-
-"But to whom?"
-
-"To an English lawyer named Norton."
-
-"But she could not love him."
-
-"I am in hopes that she does."
-
-"And why in hopes?"
-
-"Because it would spare your Majesty all fear of future
-annoyance. If the lady loves her husband, she does not love your
-Majesty. If she does not love your Majesty, there is no reason
-why she should interfere with your Majesty's plan."
-
-"It is true. And yet--Well! I wish she had been of my own
-station! What a queen she would have made!" He relapsed into a
-moody silence, which was not broken until we drew up in
-Serpentine Avenue.
-
-The door of Briony Lodge was open, and an elderly woman stood
-upon the steps. She watched us with a sardonic eye as we stepped
-from the brougham.
-
-"Mr. Sherlock Holmes, I believe?" said she.
-
-"I am Mr. Holmes," answered my companion, looking at her with a
-questioning and rather startled gaze.
-
-"Indeed! My mistress told me that you were likely to call. She
-left this morning with her husband by the 5:15 train from Charing
-Cross for the Continent."
-
-"What!" Sherlock Holmes staggered back, white with chagrin and
-surprise. "Do you mean that she has left England?"
-
-"Never to return."
-
-"And the papers?" asked the King hoarsely. "All is lost."
-
-"We shall see." He pushed past the servant and rushed into the
-drawing-room, followed by the King and myself. The furniture was
-scattered about in every direction, with dismantled shelves and
-open drawers, as if the lady had hurriedly ransacked them before
-her flight. Holmes rushed at the bell-pull, tore back a small
-sliding shutter, and, plunging in his hand, pulled out a
-photograph and a letter. The photograph was of Irene Adler
-herself in evening dress, the letter was superscribed to
-"Sherlock Holmes, Esq. To be left till called for." My friend
-tore it open and we all three read it together. It was dated at
-midnight of the preceding night and ran in this way:
-
-"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You
-took me in completely. Until after the alarm of fire, I had not a
-suspicion. But then, when I found how I had betrayed myself, I
-began to think. I had been warned against you months ago. I had
-been told that if the King employed an agent it would certainly
-be you. And your address had been given me. Yet, with all this,
-you made me reveal what you wanted to know. Even after I became
-suspicious, I found it hard to think evil of such a dear, kind
-old clergyman. But, you know, I have been trained as an actress
-myself. Male costume is nothing new to me. I often take advantage
-of the freedom which it gives. I sent John, the coachman, to
-watch you, ran up stairs, got into my walking-clothes, as I call
-them, and came down just as you departed.
-
-"Well, I followed you to your door, and so made sure that I was
-really an object of interest to the celebrated Mr. Sherlock
-Holmes. Then I, rather imprudently, wished you good-night, and
-started for the Temple to see my husband.
-
-"We both thought the best resource was flight, when pursued by
-so formidable an antagonist; so you will find the nest empty when
-you call to-morrow. As to the photograph, your client may rest in
-peace. I love and am loved by a better man than he. The King may
-do what he will without hindrance from one whom he has cruelly
-wronged. I keep it only to safeguard myself, and to preserve a
-weapon which will always secure me from any steps which he might
-take in the future. I leave a photograph which he might care to
-possess; and I remain, dear Mr. Sherlock Holmes,
-
- "Very truly yours,
- "IRENE NORTON, née ADLER."
-
-"What a woman--oh, what a woman!" cried the King of Bohemia, when
-we had all three read this epistle. "Did I not tell you how quick
-and resolute she was? Would she not have made an admirable queen?
-Is it not a pity that she was not on my level?"
-
-"From what I have seen of the lady she seems indeed to be on a
-very different level to your Majesty," said Holmes coldly. "I am
-sorry that I have not been able to bring your Majesty's business
-to a more successful conclusion."
-
-"On the contrary, my dear sir," cried the King; "nothing could be
-more successful. I know that her word is inviolate. The
-photograph is now as safe as if it were in the fire."
-
-"I am glad to hear your Majesty say so."
-
-"I am immensely indebted to you. Pray tell me in what way I can
-reward you. This ring--" He slipped an emerald snake ring from
-his finger and held it out upon the palm of his hand.
-
-"Your Majesty has something which I should value even more
-highly," said Holmes.
-
-"You have but to name it."
-
-"This photograph!"
-
-The King stared at him in amazement.
-
-"Irene's photograph!" he cried. "Certainly, if you wish it."
-
-"I thank your Majesty. Then there is no more to be done in the
-matter. I have the honour to wish you a very good-morning." He
-bowed, and, turning away without observing the hand which the
-King had stretched out to him, he set off in my company for his
-chambers.
-
-And that was how a great scandal threatened to affect the kingdom
-of Bohemia, and how the best plans of Mr. Sherlock Holmes were
-beaten by a woman's wit. He used to make merry over the
-cleverness of women, but I have not heard him do it of late. And
-when he speaks of Irene Adler, or when he refers to her
-photograph, it is always under the honourable title of the woman.
-
-
-
-ADVENTURE II. THE RED-HEADED LEAGUE
-
-I had called upon my friend, Mr. Sherlock Holmes, one day in the
-autumn of last year and found him in deep conversation with a
-very stout, florid-faced, elderly gentleman with fiery red hair.
-With an apology for my intrusion, I was about to withdraw when
-Holmes pulled me abruptly into the room and closed the door
-behind me.
-
-"You could not possibly have come at a better time, my dear
-Watson," he said cordially.
-
-"I was afraid that you were engaged."
-
-"So I am. Very much so."
-
-"Then I can wait in the next room."
-
-"Not at all. This gentleman, Mr. Wilson, has been my partner and
-helper in many of my most successful cases, and I have no
-doubt that he will be of the utmost use to me in yours also."
-
-The stout gentleman half rose from his chair and gave a bob of
-greeting, with a quick little questioning glance from his small
-fat-encircled eyes.
-
-"Try the settee," said Holmes, relapsing into his armchair and
-putting his fingertips together, as was his custom when in
-judicial moods. "I know, my dear Watson, that you share my love
-of all that is bizarre and outside the conventions and humdrum
-routine of everyday life. You have shown your relish for it by
-the enthusiasm which has prompted you to chronicle, and, if you
-will excuse my saying so, somewhat to embellish so many of my own
-little adventures."
-
-"Your cases have indeed been of the greatest interest to me," I
-observed.
-
-"You will remember that I remarked the other day, just before we
-went into the very simple problem presented by Miss Mary
-Sutherland, that for strange effects and extraordinary
-combinations we must go to life itself, which is always far more
-daring than any effort of the imagination."
-
-"A proposition which I took the liberty of doubting."
-
-"You did, Doctor, but none the less you must come round to my
-view, for otherwise I shall keep on piling fact upon fact on you
-until your reason breaks down under them and acknowledges me to
-be right. Now, Mr. Jabez Wilson here has been good enough to call
-upon me this morning, and to begin a narrative which promises to
-be one of the most singular which I have listened to for some
-time. You have heard me remark that the strangest and most unique
-things are very often connected not with the larger but with the
-smaller crimes, and occasionally, indeed, where there is room for
-doubt whether any positive crime has been committed. As far as I
-have heard it is impossible for me to say whether the present
-case is an instance of crime or not, but the course of events is
-certainly among the most singular that I have ever listened to.
-Perhaps, Mr. Wilson, you would have the great kindness to
-recommence your narrative. I ask you not merely because my friend
-Dr. Watson has not heard the opening part but also because the
-peculiar nature of the story makes me anxious to have every
-possible detail from your lips. As a rule, when I have heard some
-slight indication of the course of events, I am able to guide
-myself by the thousands of other similar cases which occur to my
-memory. In the present instance I am forced to admit that the
-facts are, to the best of my belief, unique."
-
-The portly client puffed out his chest with an appearance of some
-little pride and pulled a dirty and wrinkled newspaper from the
-inside pocket of his greatcoat. As he glanced down the
-advertisement column, with his head thrust forward and the paper
-flattened out upon his knee, I took a good look at the man and
-endeavoured, after the fashion of my companion, to read the
-indications which might be presented by his dress or appearance.
-
-I did not gain very much, however, by my inspection. Our visitor
-bore every mark of being an average commonplace British
-tradesman, obese, pompous, and slow. He wore rather baggy grey
-shepherd's check trousers, a not over-clean black frock-coat,
-unbuttoned in the front, and a drab waistcoat with a heavy brassy
-Albert chain, and a square pierced bit of metal dangling down as
-an ornament. A frayed top-hat and a faded brown overcoat with a
-wrinkled velvet collar lay upon a chair beside him. Altogether,
-look as I would, there was nothing remarkable about the man save
-his blazing red head, and the expression of extreme chagrin and
-discontent upon his features.
-
-Sherlock Holmes' quick eye took in my occupation, and he shook
-his head with a smile as he noticed my questioning glances.
-"Beyond the obvious facts that he has at some time done manual
-labour, that he takes snuff, that he is a Freemason, that he has
-been in China, and that he has done a considerable amount of
-writing lately, I can deduce nothing else."
-
-Mr. Jabez Wilson started up in his chair, with his forefinger
-upon the paper, but his eyes upon my companion.
-
-"How, in the name of good-fortune, did you know all that, Mr.
-Holmes?" he asked. "How did you know, for example, that I did
-manual labour. It's as true as gospel, for I began as a ship's
-carpenter."
-
-"Your hands, my dear sir. Your right hand is quite a size larger
-than your left. You have worked with it, and the muscles are more
-developed."
-
-"Well, the snuff, then, and the Freemasonry?"
-
-"I won't insult your intelligence by telling you how I read that,
-especially as, rather against the strict rules of your order, you
-use an arc-and-compass breastpin."
-
-"Ah, of course, I forgot that. But the writing?"
-
-"What else can be indicated by that right cuff so very shiny for
-five inches, and the left one with the smooth patch near the
-elbow where you rest it upon the desk?"
-
-"Well, but China?"
-
-"The fish that you have tattooed immediately above your right
-wrist could only have been done in China. I have made a small
-study of tattoo marks and have even contributed to the literature
-of the subject. That trick of staining the fishes' scales of a
-delicate pink is quite peculiar to China. When, in addition, I
-see a Chinese coin hanging from your watch-chain, the matter
-becomes even more simple."
-
-Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I
-thought at first that you had done something clever, but I see
-that there was nothing in it, after all."
-
-"I begin to think, Watson," said Holmes, "that I make a mistake
-in explaining. 'Omne ignotum pro magnifico,' you know, and my
-poor little reputation, such as it is, will suffer shipwreck if I
-am so candid. Can you not find the advertisement, Mr. Wilson?"
-
-"Yes, I have got it now," he answered with his thick red finger
-planted halfway down the column. "Here it is. This is what began
-it all. You just read it for yourself, sir."
-
-I took the paper from him and read as follows:
-
-"TO THE RED-HEADED LEAGUE: On account of the bequest of the late
-Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now
-another vacancy open which entitles a member of the League to a
-salary of 4 pounds a week for purely nominal services. All
-red-headed men who are sound in body and mind and above the age
-of twenty-one years, are eligible. Apply in person on Monday, at
-eleven o'clock, to Duncan Ross, at the offices of the League, 7
-Pope's Court, Fleet Street."
-
-"What on earth does this mean?" I ejaculated after I had twice
-read over the extraordinary announcement.
-
-Holmes chuckled and wriggled in his chair, as was his habit when
-in high spirits. "It is a little off the beaten track, isn't it?"
-said he. "And now, Mr. Wilson, off you go at scratch and tell us
-all about yourself, your household, and the effect which this
-advertisement had upon your fortunes. You will first make a note,
-Doctor, of the paper and the date."
-
-"It is The Morning Chronicle of April 27, 1890. Just two months
-ago."
-
-"Very good. Now, Mr. Wilson?"
-
-"Well, it is just as I have been telling you, Mr. Sherlock
-Holmes," said Jabez Wilson, mopping his forehead; "I have a small
-pawnbroker's business at Coburg Square, near the City. It's not a
-very large affair, and of late years it has not done more than
-just give me a living. I used to be able to keep two assistants,
-but now I only keep one; and I would have a job to pay him but
-that he is willing to come for half wages so as to learn the
-business."
-
-"What is the name of this obliging youth?" asked Sherlock Holmes.
-
-"His name is Vincent Spaulding, and he's not such a youth,
-either. It's hard to say his age. I should not wish a smarter
-assistant, Mr. Holmes; and I know very well that he could better
-himself and earn twice what I am able to give him. But, after
-all, if he is satisfied, why should I put ideas in his head?"
-
-"Why, indeed? You seem most fortunate in having an employé who
-comes under the full market price. It is not a common experience
-among employers in this age. I don't know that your assistant is
-not as remarkable as your advertisement."
-
-"Oh, he has his faults, too," said Mr. Wilson. "Never was such a
-fellow for photography. Snapping away with a camera when he ought
-to be improving his mind, and then diving down into the cellar
-like a rabbit into its hole to develop his pictures. That is his
-main fault, but on the whole he's a good worker. There's no vice
-in him."
-
-"He is still with you, I presume?"
-
-"Yes, sir. He and a girl of fourteen, who does a bit of simple
-cooking and keeps the place clean--that's all I have in the
-house, for I am a widower and never had any family. We live very
-quietly, sir, the three of us; and we keep a roof over our heads
-and pay our debts, if we do nothing more.
-
-"The first thing that put us out was that advertisement.
-Spaulding, he came down into the office just this day eight
-weeks, with this very paper in his hand, and he says:
-
-"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.'
-
-"'Why that?' I asks.
-
-"'Why,' says he, 'here's another vacancy on the League of the
-Red-headed Men. It's worth quite a little fortune to any man who
-gets it, and I understand that there are more vacancies than
-there are men, so that the trustees are at their wits' end what
-to do with the money. If my hair would only change colour, here's
-a nice little crib all ready for me to step into.'
-
-"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a
-very stay-at-home man, and as my business came to me instead of
-my having to go to it, I was often weeks on end without putting
-my foot over the door-mat. In that way I didn't know much of what
-was going on outside, and I was always glad of a bit of news.
-
-"'Have you never heard of the League of the Red-headed Men?' he
-asked with his eyes open.
-
-"'Never.'
-
-"'Why, I wonder at that, for you are eligible yourself for one
-of the vacancies.'
-
-"'And what are they worth?' I asked.
-
-"'Oh, merely a couple of hundred a year, but the work is slight,
-and it need not interfere very much with one's other
-occupations.'
-
-"Well, you can easily think that that made me prick up my ears,
-for the business has not been over-good for some years, and an
-extra couple of hundred would have been very handy.
-
-"'Tell me all about it,' said I.
-
-"'Well,' said he, showing me the advertisement, 'you can see for
-yourself that the League has a vacancy, and there is the address
-where you should apply for particulars. As far as I can make out,
-the League was founded by an American millionaire, Ezekiah
-Hopkins, who was very peculiar in his ways. He was himself
-red-headed, and he had a great sympathy for all red-headed men;
-so when he died it was found that he had left his enormous
-fortune in the hands of trustees, with instructions to apply the
-interest to the providing of easy berths to men whose hair is of
-that colour. From all I hear it is splendid pay and very little to
-do.'
-
-"'But,' said I, 'there would be millions of red-headed men who
-would apply.'
-
-"'Not so many as you might think,' he answered. 'You see it is
-really confined to Londoners, and to grown men. This American had
-started from London when he was young, and he wanted to do the
-old town a good turn. Then, again, I have heard it is no use your
-applying if your hair is light red, or dark red, or anything but
-real bright, blazing, fiery red. Now, if you cared to apply, Mr.
-Wilson, you would just walk in; but perhaps it would hardly be
-worth your while to put yourself out of the way for the sake of a
-few hundred pounds.'
-
-"Now, it is a fact, gentlemen, as you may see for yourselves,
-that my hair is of a very full and rich tint, so that it seemed
-to me that if there was to be any competition in the matter I
-stood as good a chance as any man that I had ever met. Vincent
-Spaulding seemed to know so much about it that I thought he might
-prove useful, so I just ordered him to put up the shutters for
-the day and to come right away with me. He was very willing to
-have a holiday, so we shut the business up and started off for
-the address that was given us in the advertisement.
-
-"I never hope to see such a sight as that again, Mr. Holmes. From
-north, south, east, and west every man who had a shade of red in
-his hair had tramped into the city to answer the advertisement.
-Fleet Street was choked with red-headed folk, and Pope's Court
-looked like a coster's orange barrow. I should not have thought
-there were so many in the whole country as were brought together
-by that single advertisement. Every shade of colour they
-were--straw, lemon, orange, brick, Irish-setter, liver, clay;
-but, as Spaulding said, there were not many who had the real
-vivid flame-coloured tint. When I saw how many were waiting, I
-would have given it up in despair; but Spaulding would not hear
-of it. How he did it I could not imagine, but he pushed and
-pulled and butted until he got me through the crowd, and right up
-to the steps which led to the office. There was a double stream
-upon the stair, some going up in hope, and some coming back
-dejected; but we wedged in as well as we could and soon found
-ourselves in the office."
-
-"Your experience has been a most entertaining one," remarked
-Holmes as his client paused and refreshed his memory with a huge
-pinch of snuff. "Pray continue your very interesting statement."
-
-"There was nothing in the office but a couple of wooden chairs
-and a deal table, behind which sat a small man with a head that
-was even redder than mine. He said a few words to each candidate
-as he came up, and then he always managed to find some fault in
-them which would disqualify them. Getting a vacancy did not seem
-to be such a very easy matter, after all. However, when our turn
-came the little man was much more favourable to me than to any of
-the others, and he closed the door as we entered, so that he
-might have a private word with us.
-
-"'This is Mr. Jabez Wilson,' said my assistant, 'and he is
-willing to fill a vacancy in the League.'
-
-"'And he is admirably suited for it,' the other answered. 'He has
-every requirement. I cannot recall when I have seen anything so
-fine.' He took a step backward, cocked his head on one side, and
-gazed at my hair until I felt quite bashful. Then suddenly he
-plunged forward, wrung my hand, and congratulated me warmly on my
-success.
-
-"'It would be injustice to hesitate,' said he. 'You will,
-however, I am sure, excuse me for taking an obvious precaution.'
-With that he seized my hair in both his hands, and tugged until I
-yelled with the pain. 'There is water in your eyes,' said he as
-he released me. 'I perceive that all is as it should be. But we
-have to be careful, for we have twice been deceived by wigs and
-once by paint. I could tell you tales of cobbler's wax which
-would disgust you with human nature.' He stepped over to the
-window and shouted through it at the top of his voice that the
-vacancy was filled. A groan of disappointment came up from below,
-and the folk all trooped away in different directions until there
-was not a red-head to be seen except my own and that of the
-manager.
-
-"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of
-the pensioners upon the fund left by our noble benefactor. Are
-you a married man, Mr. Wilson? Have you a family?'
-
-"I answered that I had not.
-
-"His face fell immediately.
-
-"'Dear me!' he said gravely, 'that is very serious indeed! I am
-sorry to hear you say that. The fund was, of course, for the
-propagation and spread of the red-heads as well as for their
-maintenance. It is exceedingly unfortunate that you should be a
-bachelor.'
-
-"My face lengthened at this, Mr. Holmes, for I thought that I was
-not to have the vacancy after all; but after thinking it over for
-a few minutes he said that it would be all right.
-
-"'In the case of another,' said he, 'the objection might be
-fatal, but we must stretch a point in favour of a man with such a
-head of hair as yours. When shall you be able to enter upon your
-new duties?'
-
-"'Well, it is a little awkward, for I have a business already,'
-said I.
-
-"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding.
-'I should be able to look after that for you.'
-
-"'What would be the hours?' I asked.
-
-"'Ten to two.'
-
-"Now a pawnbroker's business is mostly done of an evening, Mr.
-Holmes, especially Thursday and Friday evening, which is just
-before pay-day; so it would suit me very well to earn a little in
-the mornings. Besides, I knew that my assistant was a good man,
-and that he would see to anything that turned up.
-
-"'That would suit me very well,' said I. 'And the pay?'
-
-"'Is 4 pounds a week.'
-
-"'And the work?'
-
-"'Is purely nominal.'
-
-"'What do you call purely nominal?'
-
-"'Well, you have to be in the office, or at least in the
-building, the whole time. If you leave, you forfeit your whole
-position forever. The will is very clear upon that point. You
-don't comply with the conditions if you budge from the office
-during that time.'
-
-"'It's only four hours a day, and I should not think of leaving,'
-said I.
-
-"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness
-nor business nor anything else. There you must stay, or you lose
-your billet.'
-
-"'And the work?'
-
-"'Is to copy out the "Encyclopaedia Britannica." There is the first
-volume of it in that press. You must find your own ink, pens, and
-blotting-paper, but we provide this table and chair. Will you be
-ready to-morrow?'
-
-"'Certainly,' I answered.
-
-"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you
-once more on the important position which you have been fortunate
-enough to gain.' He bowed me out of the room and I went home with
-my assistant, hardly knowing what to say or do, I was so pleased
-at my own good fortune.
-
-"Well, I thought over the matter all day, and by evening I was in
-low spirits again; for I had quite persuaded myself that the
-whole affair must be some great hoax or fraud, though what its
-object might be I could not imagine. It seemed altogether past
-belief that anyone could make such a will, or that they would pay
-such a sum for doing anything so simple as copying out the
-'Encyclopaedia Britannica.' Vincent Spaulding did what he could to
-cheer me up, but by bedtime I had reasoned myself out of the
-whole thing. However, in the morning I determined to have a look
-at it anyhow, so I bought a penny bottle of ink, and with a
-quill-pen, and seven sheets of foolscap paper, I started off for
-Pope's Court.
-
-"Well, to my surprise and delight, everything was as right as
-possible. The table was set out ready for me, and Mr. Duncan Ross
-was there to see that I got fairly to work. He started me off
-upon the letter A, and then he left me; but he would drop in from
-time to time to see that all was right with me. At two o'clock he
-bade me good-day, complimented me upon the amount that I had
-written, and locked the door of the office after me.
-
-"This went on day after day, Mr. Holmes, and on Saturday the
-manager came in and planked down four golden sovereigns for my
-week's work. It was the same next week, and the same the week
-after. Every morning I was there at ten, and every afternoon I
-left at two. By degrees Mr. Duncan Ross took to coming in only
-once of a morning, and then, after a time, he did not come in at
-all. Still, of course, I never dared to leave the room for an
-instant, for I was not sure when he might come, and the billet
-was such a good one, and suited me so well, that I would not risk
-the loss of it.
-
-"Eight weeks passed away like this, and I had written about
-Abbots and Archery and Armour and Architecture and Attica, and
-hoped with diligence that I might get on to the B's before very
-long. It cost me something in foolscap, and I had pretty nearly
-filled a shelf with my writings. And then suddenly the whole
-business came to an end."
-
-"To an end?"
-
-"Yes, sir. And no later than this morning. I went to my work as
-usual at ten o'clock, but the door was shut and locked, with a
-little square of cardboard hammered on to the middle of the
-panel with a tack. Here it is, and you can read for yourself."
-
-He held up a piece of white cardboard about the size of a sheet
-of note-paper. It read in this fashion:
-
- THE RED-HEADED LEAGUE
-
- IS
-
- DISSOLVED.
-
- October 9, 1890.
-
-Sherlock Holmes and I surveyed this curt announcement and the
-rueful face behind it, until the comical side of the affair so
-completely overtopped every other consideration that we both
-burst out into a roar of laughter.
-
-"I cannot see that there is anything very funny," cried our
-client, flushing up to the roots of his flaming head. "If you can
-do nothing better than laugh at me, I can go elsewhere."
-
-"No, no," cried Holmes, shoving him back into the chair from
-which he had half risen. "I really wouldn't miss your case for
-the world. It is most refreshingly unusual. But there is, if you
-will excuse my saying so, something just a little funny about it.
-Pray what steps did you take when you found the card upon the
-door?"
-
-"I was staggered, sir. I did not know what to do. Then I called
-at the offices round, but none of them seemed to know anything
-about it. Finally, I went to the landlord, who is an accountant
-living on the ground-floor, and I asked him if he could tell me
-what had become of the Red-headed League. He said that he had
-never heard of any such body. Then I asked him who Mr. Duncan
-Ross was. He answered that the name was new to him.
-
-"'Well,' said I, 'the gentleman at No. 4.'
-
-"'What, the red-headed man?'
-
-"'Yes.'
-
-"'Oh,' said he, 'his name was William Morris. He was a solicitor
-and was using my room as a temporary convenience until his new
-premises were ready. He moved out yesterday.'
-
-"'Where could I find him?'
-
-"'Oh, at his new offices. He did tell me the address. Yes, 17
-King Edward Street, near St. Paul's.'
-
-"I started off, Mr. Holmes, but when I got to that address it was
-a manufactory of artificial knee-caps, and no one in it had ever
-heard of either Mr. William Morris or Mr. Duncan Ross."
-
-"And what did you do then?" asked Holmes.
-
-"I went home to Saxe-Coburg Square, and I took the advice of my
-assistant. But he could not help me in any way. He could only say
-that if I waited I should hear by post. But that was not quite
-good enough, Mr. Holmes. I did not wish to lose such a place
-without a struggle, so, as I had heard that you were good enough
-to give advice to poor folk who were in need of it, I came right
-away to you."
-
-"And you did very wisely," said Holmes. "Your case is an
-exceedingly remarkable one, and I shall be happy to look into it.
-From what you have told me I think that it is possible that
-graver issues hang from it than might at first sight appear."
-
-"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four
-pound a week."
-
-"As far as you are personally concerned," remarked Holmes, "I do
-not see that you have any grievance against this extraordinary
-league. On the contrary, you are, as I understand, richer by some
-30 pounds, to say nothing of the minute knowledge which you have
-gained on every subject which comes under the letter A. You have
-lost nothing by them."
-
-"No, sir. But I want to find out about them, and who they are,
-and what their object was in playing this prank--if it was a
-prank--upon me. It was a pretty expensive joke for them, for it
-cost them two and thirty pounds."
-
-"We shall endeavour to clear up these points for you. And, first,
-one or two questions, Mr. Wilson. This assistant of yours who
-first called your attention to the advertisement--how long had he
-been with you?"
-
-"About a month then."
-
-"How did he come?"
-
-"In answer to an advertisement."
-
-"Was he the only applicant?"
-
-"No, I had a dozen."
-
-"Why did you pick him?"
-
-"Because he was handy and would come cheap."
-
-"At half-wages, in fact."
-
-"Yes."
-
-"What is he like, this Vincent Spaulding?"
-
-"Small, stout-built, very quick in his ways, no hair on his face,
-though he's not short of thirty. Has a white splash of acid upon
-his forehead."
-
-Holmes sat up in his chair in considerable excitement. "I thought
-as much," said he. "Have you ever observed that his ears are
-pierced for earrings?"
-
-"Yes, sir. He told me that a gipsy had done it for him when he
-was a lad."
-
-"Hum!" said Holmes, sinking back in deep thought. "He is still
-with you?"
-
-"Oh, yes, sir; I have only just left him."
-
-"And has your business been attended to in your absence?"
-
-"Nothing to complain of, sir. There's never very much to do of a
-morning."
-
-"That will do, Mr. Wilson. I shall be happy to give you an
-opinion upon the subject in the course of a day or two. To-day is
-Saturday, and I hope that by Monday we may come to a conclusion."
-
-"Well, Watson," said Holmes when our visitor had left us, "what
-do you make of it all?"
-
-"I make nothing of it," I answered frankly. "It is a most
-mysterious business."
-
-"As a rule," said Holmes, "the more bizarre a thing is the less
-mysterious it proves to be. It is your commonplace, featureless
-crimes which are really puzzling, just as a commonplace face is
-the most difficult to identify. But I must be prompt over this
-matter."
-
-"What are you going to do, then?" I asked.
-
-"To smoke," he answered. "It is quite a three pipe problem, and I
-beg that you won't speak to me for fifty minutes." He curled
-himself up in his chair, with his thin knees drawn up to his
-hawk-like nose, and there he sat with his eyes closed and his
-black clay pipe thrusting out like the bill of some strange bird.
-I had come to the conclusion that he had dropped asleep, and
-indeed was nodding myself, when he suddenly sprang out of his
-chair with the gesture of a man who has made up his mind and put
-his pipe down upon the mantelpiece.
-
-"Sarasate plays at the St. James's Hall this afternoon," he
-remarked. "What do you think, Watson? Could your patients spare
-you for a few hours?"
-
-"I have nothing to do to-day. My practice is never very
-absorbing."
-
-"Then put on your hat and come. I am going through the City
-first, and we can have some lunch on the way. I observe that
-there is a good deal of German music on the programme, which is
-rather more to my taste than Italian or French. It is
-introspective, and I want to introspect. Come along!"
-
-We travelled by the Underground as far as Aldersgate; and a short
-walk took us to Saxe-Coburg Square, the scene of the singular
-story which we had listened to in the morning. It was a poky,
-little, shabby-genteel place, where four lines of dingy
-two-storied brick houses looked out into a small railed-in
-enclosure, where a lawn of weedy grass and a few clumps of faded
-laurel-bushes made a hard fight against a smoke-laden and
-uncongenial atmosphere. Three gilt balls and a brown board with
-"JABEZ WILSON" in white letters, upon a corner house, announced
-the place where our red-headed client carried on his business.
-Sherlock Holmes stopped in front of it with his head on one side
-and looked it all over, with his eyes shining brightly between
-puckered lids. Then he walked slowly up the street, and then down
-again to the corner, still looking keenly at the houses. Finally
-he returned to the pawnbroker's, and, having thumped vigorously
-upon the pavement with his stick two or three times, he went up
-to the door and knocked. It was instantly opened by a
-bright-looking, clean-shaven young fellow, who asked him to step
-in.
-
-"Thank you," said Holmes, "I only wished to ask you how you would
-go from here to the Strand."
-
-"Third right, fourth left," answered the assistant promptly,
-closing the door.
-
-"Smart fellow, that," observed Holmes as we walked away. "He is,
-in my judgment, the fourth smartest man in London, and for daring
-I am not sure that he has not a claim to be third. I have known
-something of him before."
-
-"Evidently," said I, "Mr. Wilson's assistant counts for a good
-deal in this mystery of the Red-headed League. I am sure that you
-inquired your way merely in order that you might see him."
-
-"Not him."
-
-"What then?"
-
-"The knees of his trousers."
-
-"And what did you see?"
-
-"What I expected to see."
-
-"Why did you beat the pavement?"
-
-"My dear doctor, this is a time for observation, not for talk. We
-are spies in an enemy's country. We know something of Saxe-Coburg
-Square. Let us now explore the parts which lie behind it."
-
-The road in which we found ourselves as we turned round the
-corner from the retired Saxe-Coburg Square presented as great a
-contrast to it as the front of a picture does to the back. It was
-one of the main arteries which conveyed the traffic of the City
-to the north and west. The roadway was blocked with the immense
-stream of commerce flowing in a double tide inward and outward,
-while the footpaths were black with the hurrying swarm of
-pedestrians. It was difficult to realise as we looked at the line
-of fine shops and stately business premises that they really
-abutted on the other side upon the faded and stagnant square
-which we had just quitted.
-
-"Let me see," said Holmes, standing at the corner and glancing
-along the line, "I should like just to remember the order of the
-houses here. It is a hobby of mine to have an exact knowledge of
-London. There is Mortimer's, the tobacconist, the little
-newspaper shop, the Coburg branch of the City and Suburban Bank,
-the Vegetarian Restaurant, and McFarlane's carriage-building
-depot. That carries us right on to the other block. And now,
-Doctor, we've done our work, so it's time we had some play. A
-sandwich and a cup of coffee, and then off to violin-land, where
-all is sweetness and delicacy and harmony, and there are no
-red-headed clients to vex us with their conundrums."
-
-My friend was an enthusiastic musician, being himself not only a
-very capable performer but a composer of no ordinary merit. All
-the afternoon he sat in the stalls wrapped in the most perfect
-happiness, gently waving his long, thin fingers in time to the
-music, while his gently smiling face and his languid, dreamy eyes
-were as unlike those of Holmes the sleuth-hound, Holmes the
-relentless, keen-witted, ready-handed criminal agent, as it was
-possible to conceive. In his singular character the dual nature
-alternately asserted itself, and his extreme exactness and
-astuteness represented, as I have often thought, the reaction
-against the poetic and contemplative mood which occasionally
-predominated in him. The swing of his nature took him from
-extreme languor to devouring energy; and, as I knew well, he was
-never so truly formidable as when, for days on end, he had been
-lounging in his armchair amid his improvisations and his
-black-letter editions. Then it was that the lust of the chase
-would suddenly come upon him, and that his brilliant reasoning
-power would rise to the level of intuition, until those who were
-unacquainted with his methods would look askance at him as on a
-man whose knowledge was not that of other mortals. When I saw him
-that afternoon so enwrapped in the music at St. James's Hall I
-felt that an evil time might be coming upon those whom he had set
-himself to hunt down.
-
-"You want to go home, no doubt, Doctor," he remarked as we
-emerged.
-
-"Yes, it would be as well."
-
-"And I have some business to do which will take some hours. This
-business at Coburg Square is serious."
-
-"Why serious?"
-
-"A considerable crime is in contemplation. I have every reason to
-believe that we shall be in time to stop it. But to-day being
-Saturday rather complicates matters. I shall want your help
-to-night."
-
-"At what time?"
-
-"Ten will be early enough."
-
-"I shall be at Baker Street at ten."
-
-"Very well. And, I say, Doctor, there may be some little danger,
-so kindly put your army revolver in your pocket." He waved his
-hand, turned on his heel, and disappeared in an instant among the
-crowd.
-
-I trust that I am not more dense than my neighbours, but I was
-always oppressed with a sense of my own stupidity in my dealings
-with Sherlock Holmes. Here I had heard what he had heard, I had
-seen what he had seen, and yet from his words it was evident that
-he saw clearly not only what had happened but what was about to
-happen, while to me the whole business was still confused and
-grotesque. As I drove home to my house in Kensington I thought
-over it all, from the extraordinary story of the red-headed
-copier of the "Encyclopaedia" down to the visit to Saxe-Coburg
-Square, and the ominous words with which he had parted from me.
-What was this nocturnal expedition, and why should I go armed?
-Where were we going, and what were we to do? I had the hint from
-Holmes that this smooth-faced pawnbroker's assistant was a
-formidable man--a man who might play a deep game. I tried to
-puzzle it out, but gave it up in despair and set the matter aside
-until night should bring an explanation.
-
-It was a quarter-past nine when I started from home and made my
-way across the Park, and so through Oxford Street to Baker
-Street. Two hansoms were standing at the door, and as I entered
-the passage I heard the sound of voices from above. On entering
-his room I found Holmes in animated conversation with two men,
-one of whom I recognised as Peter Jones, the official police
-agent, while the other was a long, thin, sad-faced man, with a
-very shiny hat and oppressively respectable frock-coat.
-
-"Ha! Our party is complete," said Holmes, buttoning up his
-pea-jacket and taking his heavy hunting crop from the rack.
-"Watson, I think you know Mr. Jones, of Scotland Yard? Let me
-introduce you to Mr. Merryweather, who is to be our companion in
-to-night's adventure."
-
-"We're hunting in couples again, Doctor, you see," said Jones in
-his consequential way. "Our friend here is a wonderful man for
-starting a chase. All he wants is an old dog to help him to do
-the running down."
-
-"I hope a wild goose may not prove to be the end of our chase,"
-observed Mr. Merryweather gloomily.
-
-"You may place considerable confidence in Mr. Holmes, sir," said
-the police agent loftily. "He has his own little methods, which
-are, if he won't mind my saying so, just a little too theoretical
-and fantastic, but he has the makings of a detective in him. It
-is not too much to say that once or twice, as in that business of
-the Sholto murder and the Agra treasure, he has been more nearly
-correct than the official force."
-
-"Oh, if you say so, Mr. Jones, it is all right," said the
-stranger with deference. "Still, I confess that I miss my rubber.
-It is the first Saturday night for seven-and-twenty years that I
-have not had my rubber."
-
-"I think you will find," said Sherlock Holmes, "that you will
-play for a higher stake to-night than you have ever done yet, and
-that the play will be more exciting. For you, Mr. Merryweather,
-the stake will be some 30,000 pounds; and for you, Jones, it will
-be the man upon whom you wish to lay your hands."
-
-"John Clay, the murderer, thief, smasher, and forger. He's a
-young man, Mr. Merryweather, but he is at the head of his
-profession, and I would rather have my bracelets on him than on
-any criminal in London. He's a remarkable man, is young John
-Clay. His grandfather was a royal duke, and he himself has been
-to Eton and Oxford. His brain is as cunning as his fingers, and
-though we meet signs of him at every turn, we never know where to
-find the man himself. He'll crack a crib in Scotland one week,
-and be raising money to build an orphanage in Cornwall the next.
-I've been on his track for years and have never set eyes on him
-yet."
-
-"I hope that I may have the pleasure of introducing you to-night.
-I've had one or two little turns also with Mr. John Clay, and I
-agree with you that he is at the head of his profession. It is
-past ten, however, and quite time that we started. If you two
-will take the first hansom, Watson and I will follow in the
-second."
-
-Sherlock Holmes was not very communicative during the long drive
-and lay back in the cab humming the tunes which he had heard in
-the afternoon. We rattled through an endless labyrinth of gas-lit
-streets until we emerged into Farrington Street.
-
-"We are close there now," my friend remarked. "This fellow
-Merryweather is a bank director, and personally interested in the
-matter. I thought it as well to have Jones with us also. He is
-not a bad fellow, though an absolute imbecile in his profession.
-He has one positive virtue. He is as brave as a bulldog and as
-tenacious as a lobster if he gets his claws upon anyone. Here we
-are, and they are waiting for us."
-
-We had reached the same crowded thoroughfare in which we had
-found ourselves in the morning. Our cabs were dismissed, and,
-following the guidance of Mr. Merryweather, we passed down a
-narrow passage and through a side door, which he opened for us.
-Within there was a small corridor, which ended in a very massive
-iron gate. This also was opened, and led down a flight of winding
-stone steps, which terminated at another formidable gate. Mr.
-Merryweather stopped to light a lantern, and then conducted us
-down a dark, earth-smelling passage, and so, after opening a
-third door, into a huge vault or cellar, which was piled all
-round with crates and massive boxes.
-
-"You are not very vulnerable from above," Holmes remarked as he
-held up the lantern and gazed about him.
-
-"Nor from below," said Mr. Merryweather, striking his stick upon
-the flags which lined the floor. "Why, dear me, it sounds quite
-hollow!" he remarked, looking up in surprise.
-
-"I must really ask you to be a little more quiet!" said Holmes
-severely. "You have already imperilled the whole success of our
-expedition. Might I beg that you would have the goodness to sit
-down upon one of those boxes, and not to interfere?"
-
-The solemn Mr. Merryweather perched himself upon a crate, with a
-very injured expression upon his face, while Holmes fell upon his
-knees upon the floor and, with the lantern and a magnifying lens,
-began to examine minutely the cracks between the stones. A few
-seconds sufficed to satisfy him, for he sprang to his feet again
-and put his glass in his pocket.
-
-"We have at least an hour before us," he remarked, "for they can
-hardly take any steps until the good pawnbroker is safely in bed.
-Then they will not lose a minute, for the sooner they do their
-work the longer time they will have for their escape. We are at
-present, Doctor--as no doubt you have divined--in the cellar of
-the City branch of one of the principal London banks. Mr.
-Merryweather is the chairman of directors, and he will explain to
-you that there are reasons why the more daring criminals of
-London should take a considerable interest in this cellar at
-present."
-
-"It is our French gold," whispered the director. "We have had
-several warnings that an attempt might be made upon it."
-
-"Your French gold?"
-
-"Yes. We had occasion some months ago to strengthen our resources
-and borrowed for that purpose 30,000 napoleons from the Bank of
-France. It has become known that we have never had occasion to
-unpack the money, and that it is still lying in our cellar. The
-crate upon which I sit contains 2,000 napoleons packed between
-layers of lead foil. Our reserve of bullion is much larger at
-present than is usually kept in a single branch office, and the
-directors have had misgivings upon the subject."
-
-"Which were very well justified," observed Holmes. "And now it is
-time that we arranged our little plans. I expect that within an
-hour matters will come to a head. In the meantime Mr.
-Merryweather, we must put the screen over that dark lantern."
-
-"And sit in the dark?"
-
-"I am afraid so. I had brought a pack of cards in my pocket, and
-I thought that, as we were a partie carrée, you might have your
-rubber after all. But I see that the enemy's preparations have
-gone so far that we cannot risk the presence of a light. And,
-first of all, we must choose our positions. These are daring men,
-and though we shall take them at a disadvantage, they may do us
-some harm unless we are careful. I shall stand behind this crate,
-and do you conceal yourselves behind those. Then, when I flash a
-light upon them, close in swiftly. If they fire, Watson, have no
-compunction about shooting them down."
-
-I placed my revolver, cocked, upon the top of the wooden case
-behind which I crouched. Holmes shot the slide across the front
-of his lantern and left us in pitch darkness--such an absolute
-darkness as I have never before experienced. The smell of hot
-metal remained to assure us that the light was still there, ready
-to flash out at a moment's notice. To me, with my nerves worked
-up to a pitch of expectancy, there was something depressing and
-subduing in the sudden gloom, and in the cold dank air of the
-vault.
-
-"They have but one retreat," whispered Holmes. "That is back
-through the house into Saxe-Coburg Square. I hope that you have
-done what I asked you, Jones?"
-
-"I have an inspector and two officers waiting at the front door."
-
-"Then we have stopped all the holes. And now we must be silent
-and wait."
-
-What a time it seemed! From comparing notes afterwards it was but
-an hour and a quarter, yet it appeared to me that the night must
-have almost gone and the dawn be breaking above us. My limbs
-were weary and stiff, for I feared to change my position; yet my
-nerves were worked up to the highest pitch of tension, and my
-hearing was so acute that I could not only hear the gentle
-breathing of my companions, but I could distinguish the deeper,
-heavier in-breath of the bulky Jones from the thin, sighing note
-of the bank director. From my position I could look over the case
-in the direction of the floor. Suddenly my eyes caught the glint
-of a light.
-
-At first it was but a lurid spark upon the stone pavement. Then
-it lengthened out until it became a yellow line, and then,
-without any warning or sound, a gash seemed to open and a hand
-appeared, a white, almost womanly hand, which felt about in the
-centre of the little area of light. For a minute or more the
-hand, with its writhing fingers, protruded out of the floor. Then
-it was withdrawn as suddenly as it appeared, and all was dark
-again save the single lurid spark which marked a chink between
-the stones.
-
-Its disappearance, however, was but momentary. With a rending,
-tearing sound, one of the broad, white stones turned over upon
-its side and left a square, gaping hole, through which streamed
-the light of a lantern. Over the edge there peeped a clean-cut,
-boyish face, which looked keenly about it, and then, with a hand
-on either side of the aperture, drew itself shoulder-high and
-waist-high, until one knee rested upon the edge. In another
-instant he stood at the side of the hole and was hauling after
-him a companion, lithe and small like himself, with a pale face
-and a shock of very red hair.
-
-"It's all clear," he whispered. "Have you the chisel and the
-bags? Great Scott! Jump, Archie, jump, and I'll swing for it!"
-
-Sherlock Holmes had sprung out and seized the intruder by the
-collar. The other dived down the hole, and I heard the sound of
-rending cloth as Jones clutched at his skirts. The light flashed
-upon the barrel of a revolver, but Holmes' hunting crop came
-down on the man's wrist, and the pistol clinked upon the stone
-floor.
-
-"It's no use, John Clay," said Holmes blandly. "You have no
-chance at all."
-
-"So I see," the other answered with the utmost coolness. "I fancy
-that my pal is all right, though I see you have got his
-coat-tails."
-
-"There are three men waiting for him at the door," said Holmes.
-
-"Oh, indeed! You seem to have done the thing very completely. I
-must compliment you."
-
-"And I you," Holmes answered. "Your red-headed idea was very new
-and effective."
-
-"You'll see your pal again presently," said Jones. "He's quicker
-at climbing down holes than I am. Just hold out while I fix the
-derbies."
-
-"I beg that you will not touch me with your filthy hands,"
-remarked our prisoner as the handcuffs clattered upon his wrists.
-"You may not be aware that I have royal blood in my veins. Have
-the goodness, also, when you address me always to say 'sir' and
-'please.'"
-
-"All right," said Jones with a stare and a snigger. "Well, would
-you please, sir, march upstairs, where we can get a cab to carry
-your Highness to the police-station?"
-
-"That is better," said John Clay serenely. He made a sweeping bow
-to the three of us and walked quietly off in the custody of the
-detective.
-
-"Really, Mr. Holmes," said Mr. Merryweather as we followed them
-from the cellar, "I do not know how the bank can thank you or
-repay you. There is no doubt that you have detected and defeated
-in the most complete manner one of the most determined attempts
-at bank robbery that have ever come within my experience."
-
-"I have had one or two little scores of my own to settle with Mr.
-John Clay," said Holmes. "I have been at some small expense over
-this matter, which I shall expect the bank to refund, but beyond
-that I am amply repaid by having had an experience which is in
-many ways unique, and by hearing the very remarkable narrative of
-the Red-headed League."
-
-
-"You see, Watson," he explained in the early hours of the morning
-as we sat over a glass of whisky and soda in Baker Street, "it
-was perfectly obvious from the first that the only possible
-object of this rather fantastic business of the advertisement of
-the League, and the copying of the 'Encyclopaedia,' must be to get
-this not over-bright pawnbroker out of the way for a number of
-hours every day. It was a curious way of managing it, but,
-really, it would be difficult to suggest a better. The method was
-no doubt suggested to Clay's ingenious mind by the colour of his
-accomplice's hair. The 4 pounds a week was a lure which must draw
-him, and what was it to them, who were playing for thousands?
-They put in the advertisement, one rogue has the temporary
-office, the other rogue incites the man to apply for it, and
-together they manage to secure his absence every morning in the
-week. From the time that I heard of the assistant having come for
-half wages, it was obvious to me that he had some strong motive
-for securing the situation."
-
-"But how could you guess what the motive was?"
-
-"Had there been women in the house, I should have suspected a
-mere vulgar intrigue. That, however, was out of the question. The
-man's business was a small one, and there was nothing in his
-house which could account for such elaborate preparations, and
-such an expenditure as they were at. It must, then, be something
-out of the house. What could it be? I thought of the assistant's
-fondness for photography, and his trick of vanishing into the
-cellar. The cellar! There was the end of this tangled clue. Then
-I made inquiries as to this mysterious assistant and found that I
-had to deal with one of the coolest and most daring criminals in
-London. He was doing something in the cellar--something which
-took many hours a day for months on end. What could it be, once
-more? I could think of nothing save that he was running a tunnel
-to some other building.
-
-"So far I had got when we went to visit the scene of action. I
-surprised you by beating upon the pavement with my stick. I was
-ascertaining whether the cellar stretched out in front or behind.
-It was not in front. Then I rang the bell, and, as I hoped, the
-assistant answered it. We have had some skirmishes, but we had
-never set eyes upon each other before. I hardly looked at his
-face. His knees were what I wished to see. You must yourself have
-remarked how worn, wrinkled, and stained they were. They spoke of
-those hours of burrowing. The only remaining point was what they
-were burrowing for. I walked round the corner, saw the City and
-Suburban Bank abutted on our friend's premises, and felt that I
-had solved my problem. When you drove home after the concert I
-called upon Scotland Yard and upon the chairman of the bank
-directors, with the result that you have seen."
-
-"And how could you tell that they would make their attempt
-to-night?" I asked.
-
-"Well, when they closed their League offices that was a sign that
-they cared no longer about Mr. Jabez Wilson's presence--in other
-words, that they had completed their tunnel. But it was essential
-that they should use it soon, as it might be discovered, or the
-bullion might be removed. Saturday would suit them better than
-any other day, as it would give them two days for their escape.
-For all these reasons I expected them to come to-night."
-
-"You reasoned it out beautifully," I exclaimed in unfeigned
-admiration. "It is so long a chain, and yet every link rings
-true."
-
-"It saved me from ennui," he answered, yawning. "Alas! I already
-feel it closing in upon me. My life is spent in one long effort
-to escape from the commonplaces of existence. These little
-problems help me to do so."
-
-"And you are a benefactor of the race," said I.
-
-He shrugged his shoulders. "Well, perhaps, after all, it is of
-some little use," he remarked. "'L'homme c'est rien--l'oeuvre
-c'est tout,' as Gustave Flaubert wrote to George Sand."
-
-
-
-ADVENTURE III. A CASE OF IDENTITY
-
-"My dear fellow," said Sherlock Holmes as we sat on either side
-of the fire in his lodgings at Baker Street, "life is infinitely
-stranger than anything which the mind of man could invent. We
-would not dare to conceive the things which are really mere
-commonplaces of existence. If we could fly out of that window
-hand in hand, hover over this great city, gently remove the
-roofs, and peep in at the queer things which are going on, the
-strange coincidences, the plannings, the cross-purposes, the
-wonderful chains of events, working through generations, and
-leading to the most outré results, it would make all fiction with
-its conventionalities and foreseen conclusions most stale and
-unprofitable."
-
-"And yet I am not convinced of it," I answered. "The cases which
-come to light in the papers are, as a rule, bald enough, and
-vulgar enough. We have in our police reports realism pushed to
-its extreme limits, and yet the result is, it must be confessed,
-neither fascinating nor artistic."
-
-"A certain selection and discretion must be used in producing a
-realistic effect," remarked Holmes. "This is wanting in the
-police report, where more stress is laid, perhaps, upon the
-platitudes of the magistrate than upon the details, which to an
-observer contain the vital essence of the whole matter. Depend
-upon it, there is nothing so unnatural as the commonplace."
-
-I smiled and shook my head. "I can quite understand your thinking
-so," I said. "Of course, in your position of unofficial adviser
-and helper to everybody who is absolutely puzzled, throughout
-three continents, you are brought in contact with all that is
-strange and bizarre. But here"--I picked up the morning paper
-from the ground--"let us put it to a practical test. Here is the
-first heading upon which I come. 'A husband's cruelty to his
-wife.' There is half a column of print, but I know without
-reading it that it is all perfectly familiar to me. There is, of
-course, the other woman, the drink, the push, the blow, the
-bruise, the sympathetic sister or landlady. The crudest of
-writers could invent nothing more crude."
-
-"Indeed, your example is an unfortunate one for your argument,"
-said Holmes, taking the paper and glancing his eye down it. "This
-is the Dundas separation case, and, as it happens, I was engaged
-in clearing up some small points in connection with it. The
-husband was a teetotaler, there was no other woman, and the
-conduct complained of was that he had drifted into the habit of
-winding up every meal by taking out his false teeth and hurling
-them at his wife, which, you will allow, is not an action likely
-to occur to the imagination of the average story-teller. Take a
-pinch of snuff, Doctor, and acknowledge that I have scored over
-you in your example."
-
-He held out his snuffbox of old gold, with a great amethyst in
-the centre of the lid. Its splendour was in such contrast to his
-homely ways and simple life that I could not help commenting upon
-it.
-
-"Ah," said he, "I forgot that I had not seen you for some weeks.
-It is a little souvenir from the King of Bohemia in return for my
-assistance in the case of the Irene Adler papers."
-
-"And the ring?" I asked, glancing at a remarkable brilliant which
-sparkled upon his finger.
-
-"It was from the reigning family of Holland, though the matter in
-which I served them was of such delicacy that I cannot confide it
-even to you, who have been good enough to chronicle one or two of
-my little problems."
-
-"And have you any on hand just now?" I asked with interest.
-
-"Some ten or twelve, but none which present any feature of
-interest. They are important, you understand, without being
-interesting. Indeed, I have found that it is usually in
-unimportant matters that there is a field for the observation,
-and for the quick analysis of cause and effect which gives the
-charm to an investigation. The larger crimes are apt to be the
-simpler, for the bigger the crime the more obvious, as a rule, is
-the motive. In these cases, save for one rather intricate matter
-which has been referred to me from Marseilles, there is nothing
-which presents any features of interest. It is possible, however,
-that I may have something better before very many minutes are
-over, for this is one of my clients, or I am much mistaken."
-
-He had risen from his chair and was standing between the parted
-blinds gazing down into the dull neutral-tinted London street.
-Looking over his shoulder, I saw that on the pavement opposite
-there stood a large woman with a heavy fur boa round her neck,
-and a large curling red feather in a broad-brimmed hat which was
-tilted in a coquettish Duchess of Devonshire fashion over her
-ear. From under this great panoply she peeped up in a nervous,
-hesitating fashion at our windows, while her body oscillated
-backward and forward, and her fingers fidgeted with her glove
-buttons. Suddenly, with a plunge, as of the swimmer who leaves
-the bank, she hurried across the road, and we heard the sharp
-clang of the bell.
-
-"I have seen those symptoms before," said Holmes, throwing his
-cigarette into the fire. "Oscillation upon the pavement always
-means an affaire de coeur. She would like advice, but is not sure
-that the matter is not too delicate for communication. And yet
-even here we may discriminate. When a woman has been seriously
-wronged by a man she no longer oscillates, and the usual symptom
-is a broken bell wire. Here we may take it that there is a love
-matter, but that the maiden is not so much angry as perplexed, or
-grieved. But here she comes in person to resolve our doubts."
-
-As he spoke there was a tap at the door, and the boy in buttons
-entered to announce Miss Mary Sutherland, while the lady herself
-loomed behind his small black figure like a full-sailed
-merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed
-her with the easy courtesy for which he was remarkable, and,
-having closed the door and bowed her into an armchair, he looked
-her over in the minute and yet abstracted fashion which was
-peculiar to him.
-
-"Do you not find," he said, "that with your short sight it is a
-little trying to do so much typewriting?"
-
-"I did at first," she answered, "but now I know where the letters
-are without looking." Then, suddenly realising the full purport
-of his words, she gave a violent start and looked up, with fear
-and astonishment upon her broad, good-humoured face. "You've
-heard about me, Mr. Holmes," she cried, "else how could you know
-all that?"
-
-"Never mind," said Holmes, laughing; "it is my business to know
-things. Perhaps I have trained myself to see what others
-overlook. If not, why should you come to consult me?"
-
-"I came to you, sir, because I heard of you from Mrs. Etherege,
-whose husband you found so easy when the police and everyone had
-given him up for dead. Oh, Mr. Holmes, I wish you would do as
-much for me. I'm not rich, but still I have a hundred a year in
-my own right, besides the little that I make by the machine, and
-I would give it all to know what has become of Mr. Hosmer Angel."
-
-"Why did you come away to consult me in such a hurry?" asked
-Sherlock Holmes, with his finger-tips together and his eyes to
-the ceiling.
-
-Again a startled look came over the somewhat vacuous face of Miss
-Mary Sutherland. "Yes, I did bang out of the house," she said,
-"for it made me angry to see the easy way in which Mr.
-Windibank--that is, my father--took it all. He would not go to
-the police, and he would not go to you, and so at last, as he
-would do nothing and kept on saying that there was no harm done,
-it made me mad, and I just on with my things and came right away
-to you."
-
-"Your father," said Holmes, "your stepfather, surely, since the
-name is different."
-
-"Yes, my stepfather. I call him father, though it sounds funny,
-too, for he is only five years and two months older than myself."
-
-"And your mother is alive?"
-
-"Oh, yes, mother is alive and well. I wasn't best pleased, Mr.
-Holmes, when she married again so soon after father's death, and
-a man who was nearly fifteen years younger than herself. Father
-was a plumber in the Tottenham Court Road, and he left a tidy
-business behind him, which mother carried on with Mr. Hardy, the
-foreman; but when Mr. Windibank came he made her sell the
-business, for he was very superior, being a traveller in wines.
-They got 4700 pounds for the goodwill and interest, which wasn't
-near as much as father could have got if he had been alive."
-
-I had expected to see Sherlock Holmes impatient under this
-rambling and inconsequential narrative, but, on the contrary, he
-had listened with the greatest concentration of attention.
-
-"Your own little income," he asked, "does it come out of the
-business?"
-
-"Oh, no, sir. It is quite separate and was left me by my uncle
-Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per
-cent. Two thousand five hundred pounds was the amount, but I can
-only touch the interest."
-
-"You interest me extremely," said Holmes. "And since you draw so
-large a sum as a hundred a year, with what you earn into the
-bargain, you no doubt travel a little and indulge yourself in
-every way. I believe that a single lady can get on very nicely
-upon an income of about 60 pounds."
-
-"I could do with much less than that, Mr. Holmes, but you
-understand that as long as I live at home I don't wish to be a
-burden to them, and so they have the use of the money just while
-I am staying with them. Of course, that is only just for the
-time. Mr. Windibank draws my interest every quarter and pays it
-over to mother, and I find that I can do pretty well with what I
-earn at typewriting. It brings me twopence a sheet, and I can
-often do from fifteen to twenty sheets in a day."
-
-"You have made your position very clear to me," said Holmes.
-"This is my friend, Dr. Watson, before whom you can speak as
-freely as before myself. Kindly tell us now all about your
-connection with Mr. Hosmer Angel."
-
-A flush stole over Miss Sutherland's face, and she picked
-nervously at the fringe of her jacket. "I met him first at the
-gasfitters' ball," she said. "They used to send father tickets
-when he was alive, and then afterwards they remembered us, and
-sent them to mother. Mr. Windibank did not wish us to go. He
-never did wish us to go anywhere. He would get quite mad if I
-wanted so much as to join a Sunday-school treat. But this time I
-was set on going, and I would go; for what right had he to
-prevent? He said the folk were not fit for us to know, when all
-father's friends were to be there. And he said that I had nothing
-fit to wear, when I had my purple plush that I had never so much
-as taken out of the drawer. At last, when nothing else would do,
-he went off to France upon the business of the firm, but we went,
-mother and I, with Mr. Hardy, who used to be our foreman, and it
-was there I met Mr. Hosmer Angel."
-
-"I suppose," said Holmes, "that when Mr. Windibank came back from
-France he was very annoyed at your having gone to the ball."
-
-"Oh, well, he was very good about it. He laughed, I remember, and
-shrugged his shoulders, and said there was no use denying
-anything to a woman, for she would have her way."
-
-"I see. Then at the gasfitters' ball you met, as I understand, a
-gentleman called Mr. Hosmer Angel."
-
-"Yes, sir. I met him that night, and he called next day to ask if
-we had got home all safe, and after that we met him--that is to
-say, Mr. Holmes, I met him twice for walks, but after that father
-came back again, and Mr. Hosmer Angel could not come to the house
-any more."
-
-"No?"
-
-"Well, you know father didn't like anything of the sort. He
-wouldn't have any visitors if he could help it, and he used to
-say that a woman should be happy in her own family circle. But
-then, as I used to say to mother, a woman wants her own circle to
-begin with, and I had not got mine yet."
-
-"But how about Mr. Hosmer Angel? Did he make no attempt to see
-you?"
-
-"Well, father was going off to France again in a week, and Hosmer
-wrote and said that it would be safer and better not to see each
-other until he had gone. We could write in the meantime, and he
-used to write every day. I took the letters in in the morning, so
-there was no need for father to know."
-
-"Were you engaged to the gentleman at this time?"
-
-"Oh, yes, Mr. Holmes. We were engaged after the first walk that
-we took. Hosmer--Mr. Angel--was a cashier in an office in
-Leadenhall Street--and--"
-
-"What office?"
-
-"That's the worst of it, Mr. Holmes, I don't know."
-
-"Where did he live, then?"
-
-"He slept on the premises."
-
-"And you don't know his address?"
-
-"No--except that it was Leadenhall Street."
-
-"Where did you address your letters, then?"
-
-"To the Leadenhall Street Post Office, to be left till called
-for. He said that if they were sent to the office he would be
-chaffed by all the other clerks about having letters from a lady,
-so I offered to typewrite them, like he did his, but he wouldn't
-have that, for he said that when I wrote them they seemed to come
-from me, but when they were typewritten he always felt that the
-machine had come between us. That will just show you how fond he
-was of me, Mr. Holmes, and the little things that he would think
-of."
-
-"It was most suggestive," said Holmes. "It has long been an axiom
-of mine that the little things are infinitely the most important.
-Can you remember any other little things about Mr. Hosmer Angel?"
-
-"He was a very shy man, Mr. Holmes. He would rather walk with me
-in the evening than in the daylight, for he said that he hated to
-be conspicuous. Very retiring and gentlemanly he was. Even his
-voice was gentle. He'd had the quinsy and swollen glands when he
-was young, he told me, and it had left him with a weak throat,
-and a hesitating, whispering fashion of speech. He was always
-well dressed, very neat and plain, but his eyes were weak, just
-as mine are, and he wore tinted glasses against the glare."
-
-"Well, and what happened when Mr. Windibank, your stepfather,
-returned to France?"
-
-"Mr. Hosmer Angel came to the house again and proposed that we
-should marry before father came back. He was in dreadful earnest
-and made me swear, with my hands on the Testament, that whatever
-happened I would always be true to him. Mother said he was quite
-right to make me swear, and that it was a sign of his passion.
-Mother was all in his favour from the first and was even fonder
-of him than I was. Then, when they talked of marrying within the
-week, I began to ask about father; but they both said never to
-mind about father, but just to tell him afterwards, and mother
-said she would make it all right with him. I didn't quite like
-that, Mr. Holmes. It seemed funny that I should ask his leave, as
-he was only a few years older than me; but I didn't want to do
-anything on the sly, so I wrote to father at Bordeaux, where the
-company has its French offices, but the letter came back to me on
-the very morning of the wedding."
-
-"It missed him, then?"
-
-"Yes, sir; for he had started to England just before it arrived."
-
-"Ha! that was unfortunate. Your wedding was arranged, then, for
-the Friday. Was it to be in church?"
-
-"Yes, sir, but very quietly. It was to be at St. Saviour's, near
-King's Cross, and we were to have breakfast afterwards at the St.
-Pancras Hotel. Hosmer came for us in a hansom, but as there were
-two of us he put us both into it and stepped himself into a
-four-wheeler, which happened to be the only other cab in the
-street. We got to the church first, and when the four-wheeler
-drove up we waited for him to step out, but he never did, and
-when the cabman got down from the box and looked there was no one
-there! The cabman said that he could not imagine what had become
-of him, for he had seen him get in with his own eyes. That was
-last Friday, Mr. Holmes, and I have never seen or heard anything
-since then to throw any light upon what became of him."
-
-"It seems to me that you have been very shamefully treated," said
-Holmes.
-
-"Oh, no, sir! He was too good and kind to leave me so. Why, all
-the morning he was saying to me that, whatever happened, I was to
-be true; and that even if something quite unforeseen occurred to
-separate us, I was always to remember that I was pledged to him,
-and that he would claim his pledge sooner or later. It seemed
-strange talk for a wedding-morning, but what has happened since
-gives a meaning to it."
-
-"Most certainly it does. Your own opinion is, then, that some
-unforeseen catastrophe has occurred to him?"
-
-"Yes, sir. I believe that he foresaw some danger, or else he
-would not have talked so. And then I think that what he foresaw
-happened."
-
-"But you have no notion as to what it could have been?"
-
-"None."
-
-"One more question. How did your mother take the matter?"
-
-"She was angry, and said that I was never to speak of the matter
-again."
-
-"And your father? Did you tell him?"
-
-"Yes; and he seemed to think, with me, that something had
-happened, and that I should hear of Hosmer again. As he said,
-what interest could anyone have in bringing me to the doors of
-the church, and then leaving me? Now, if he had borrowed my
-money, or if he had married me and got my money settled on him,
-there might be some reason, but Hosmer was very independent about
-money and never would look at a shilling of mine. And yet, what
-could have happened? And why could he not write? Oh, it drives me
-half-mad to think of it, and I can't sleep a wink at night." She
-pulled a little handkerchief out of her muff and began to sob
-heavily into it.
-
-"I shall glance into the case for you," said Holmes, rising, "and
-I have no doubt that we shall reach some definite result. Let the
-weight of the matter rest upon me now, and do not let your mind
-dwell upon it further. Above all, try to let Mr. Hosmer Angel
-vanish from your memory, as he has done from your life."
-
-"Then you don't think I'll see him again?"
-
-"I fear not."
-
-"Then what has happened to him?"
-
-"You will leave that question in my hands. I should like an
-accurate description of him and any letters of his which you can
-spare."
-
-"I advertised for him in last Saturday's Chronicle," said she.
-"Here is the slip and here are four letters from him."
-
-"Thank you. And your address?"
-
-"No. 31 Lyon Place, Camberwell."
-
-"Mr. Angel's address you never had, I understand. Where is your
-father's place of business?"
-
-"He travels for Westhouse & Marbank, the great claret importers
-of Fenchurch Street."
-
-"Thank you. You have made your statement very clearly. You will
-leave the papers here, and remember the advice which I have given
-you. Let the whole incident be a sealed book, and do not allow it
-to affect your life."
-
-"You are very kind, Mr. Holmes, but I cannot do that. I shall be
-true to Hosmer. He shall find me ready when he comes back."
-
-For all the preposterous hat and the vacuous face, there was
-something noble in the simple faith of our visitor which
-compelled our respect. She laid her little bundle of papers upon
-the table and went her way, with a promise to come again whenever
-she might be summoned.
-
-Sherlock Holmes sat silent for a few minutes with his fingertips
-still pressed together, his legs stretched out in front of him,
-and his gaze directed upward to the ceiling. Then he took down
-from the rack the old and oily clay pipe, which was to him as a
-counsellor, and, having lit it, he leaned back in his chair, with
-the thick blue cloud-wreaths spinning up from him, and a look of
-infinite languor in his face.
-
-"Quite an interesting study, that maiden," he observed. "I found
-her more interesting than her little problem, which, by the way,
-is rather a trite one. You will find parallel cases, if you
-consult my index, in Andover in '77, and there was something of
-the sort at The Hague last year. Old as is the idea, however,
-there were one or two details which were new to me. But the
-maiden herself was most instructive."
-
-"You appeared to read a good deal upon her which was quite
-invisible to me," I remarked.
-
-"Not invisible but unnoticed, Watson. You did not know where to
-look, and so you missed all that was important. I can never bring
-you to realise the importance of sleeves, the suggestiveness of
-thumb-nails, or the great issues that may hang from a boot-lace.
-Now, what did you gather from that woman's appearance? Describe
-it."
-
-"Well, she had a slate-coloured, broad-brimmed straw hat, with a
-feather of a brickish red. Her jacket was black, with black beads
-sewn upon it, and a fringe of little black jet ornaments. Her
-dress was brown, rather darker than coffee colour, with a little
-purple plush at the neck and sleeves. Her gloves were greyish and
-were worn through at the right forefinger. Her boots I didn't
-observe. She had small round, hanging gold earrings, and a
-general air of being fairly well-to-do in a vulgar, comfortable,
-easy-going way."
-
-Sherlock Holmes clapped his hands softly together and chuckled.
-
-"'Pon my word, Watson, you are coming along wonderfully. You have
-really done very well indeed. It is true that you have missed
-everything of importance, but you have hit upon the method, and
-you have a quick eye for colour. Never trust to general
-impressions, my boy, but concentrate yourself upon details. My
-first glance is always at a woman's sleeve. In a man it is
-perhaps better first to take the knee of the trouser. As you
-observe, this woman had plush upon her sleeves, which is a most
-useful material for showing traces. The double line a little
-above the wrist, where the typewritist presses against the table,
-was beautifully defined. The sewing-machine, of the hand type,
-leaves a similar mark, but only on the left arm, and on the side
-of it farthest from the thumb, instead of being right across the
-broadest part, as this was. I then glanced at her face, and,
-observing the dint of a pince-nez at either side of her nose, I
-ventured a remark upon short sight and typewriting, which seemed
-to surprise her."
-
-"It surprised me."
-
-"But, surely, it was obvious. I was then much surprised and
-interested on glancing down to observe that, though the boots
-which she was wearing were not unlike each other, they were
-really odd ones; the one having a slightly decorated toe-cap, and
-the other a plain one. One was buttoned only in the two lower
-buttons out of five, and the other at the first, third, and
-fifth. Now, when you see that a young lady, otherwise neatly
-dressed, has come away from home with odd boots, half-buttoned,
-it is no great deduction to say that she came away in a hurry."
-
-"And what else?" I asked, keenly interested, as I always was, by
-my friend's incisive reasoning.
-
-"I noted, in passing, that she had written a note before leaving
-home but after being fully dressed. You observed that her right
-glove was torn at the forefinger, but you did not apparently see
-that both glove and finger were stained with violet ink. She had
-written in a hurry and dipped her pen too deep. It must have been
-this morning, or the mark would not remain clear upon the finger.
-All this is amusing, though rather elementary, but I must go back
-to business, Watson. Would you mind reading me the advertised
-description of Mr. Hosmer Angel?"
-
-I held the little printed slip to the light.
-
-"Missing," it said, "on the morning of the fourteenth, a gentleman
-named Hosmer Angel. About five ft. seven in. in height;
-strongly built, sallow complexion, black hair, a little bald in
-the centre, bushy, black side-whiskers and moustache; tinted
-glasses, slight infirmity of speech. Was dressed, when last seen,
-in black frock-coat faced with silk, black waistcoat, gold Albert
-chain, and grey Harris tweed trousers, with brown gaiters over
-elastic-sided boots. Known to have been employed in an office in
-Leadenhall Street. Anybody bringing--"
-
-"That will do," said Holmes. "As to the letters," he continued,
-glancing over them, "they are very commonplace. Absolutely no
-clue in them to Mr. Angel, save that he quotes Balzac once. There
-is one remarkable point, however, which will no doubt strike
-you."
-
-"They are typewritten," I remarked.
-
-"Not only that, but the signature is typewritten. Look at the
-neat little 'Hosmer Angel' at the bottom. There is a date, you
-see, but no superscription except Leadenhall Street, which is
-rather vague. The point about the signature is very suggestive--in
-fact, we may call it conclusive."
-
-"Of what?"
-
-"My dear fellow, is it possible you do not see how strongly it
-bears upon the case?"
-
-"I cannot say that I do unless it were that he wished to be able
-to deny his signature if an action for breach of promise were
-instituted."
-
-"No, that was not the point. However, I shall write two letters,
-which should settle the matter. One is to a firm in the City, the
-other is to the young lady's stepfather, Mr. Windibank, asking
-him whether he could meet us here at six o'clock tomorrow
-evening. It is just as well that we should do business with the
-male relatives. And now, Doctor, we can do nothing until the
-answers to those letters come, so we may put our little problem
-upon the shelf for the interim."
-
-I had had so many reasons to believe in my friend's subtle powers
-of reasoning and extraordinary energy in action that I felt that
-he must have some solid grounds for the assured and easy
-demeanour with which he treated the singular mystery which he had
-been called upon to fathom. Once only had I known him to fail, in
-the case of the King of Bohemia and of the Irene Adler
-photograph; but when I looked back to the weird business of the
-Sign of Four, and the extraordinary circumstances connected with
-the Study in Scarlet, I felt that it would be a strange tangle
-indeed which he could not unravel.
-
-I left him then, still puffing at his black clay pipe, with the
-conviction that when I came again on the next evening I would
-find that he held in his hands all the clues which would lead up
-to the identity of the disappearing bridegroom of Miss Mary
-Sutherland.
-
-A professional case of great gravity was engaging my own
-attention at the time, and the whole of next day I was busy at
-the bedside of the sufferer. It was not until close upon six
-o'clock that I found myself free and was able to spring into a
-hansom and drive to Baker Street, half afraid that I might be too
-late to assist at the dénouement of the little mystery. I found
-Sherlock Holmes alone, however, half asleep, with his long, thin
-form curled up in the recesses of his armchair. A formidable
-array of bottles and test-tubes, with the pungent cleanly smell
-of hydrochloric acid, told me that he had spent his day in the
-chemical work which was so dear to him.
-
-"Well, have you solved it?" I asked as I entered.
-
-"Yes. It was the bisulphate of baryta."
-
-"No, no, the mystery!" I cried.
-
-"Oh, that! I thought of the salt that I have been working upon.
-There was never any mystery in the matter, though, as I said
-yesterday, some of the details are of interest. The only drawback
-is that there is no law, I fear, that can touch the scoundrel."
-
-"Who was he, then, and what was his object in deserting Miss
-Sutherland?"
-
-The question was hardly out of my mouth, and Holmes had not yet
-opened his lips to reply, when we heard a heavy footfall in the
-passage and a tap at the door.
-
-"This is the girl's stepfather, Mr. James Windibank," said
-Holmes. "He has written to me to say that he would be here at
-six. Come in!"
-
-The man who entered was a sturdy, middle-sized fellow, some
-thirty years of age, clean-shaven, and sallow-skinned, with a
-bland, insinuating manner, and a pair of wonderfully sharp and
-penetrating grey eyes. He shot a questioning glance at each of
-us, placed his shiny top-hat upon the sideboard, and with a
-slight bow sidled down into the nearest chair.
-
-"Good-evening, Mr. James Windibank," said Holmes. "I think that
-this typewritten letter is from you, in which you made an
-appointment with me for six o'clock?"
-
-"Yes, sir. I am afraid that I am a little late, but I am not
-quite my own master, you know. I am sorry that Miss Sutherland
-has troubled you about this little matter, for I think it is far
-better not to wash linen of the sort in public. It was quite
-against my wishes that she came, but she is a very excitable,
-impulsive girl, as you may have noticed, and she is not easily
-controlled when she has made up her mind on a point. Of course, I
-did not mind you so much, as you are not connected with the
-official police, but it is not pleasant to have a family
-misfortune like this noised abroad. Besides, it is a useless
-expense, for how could you possibly find this Hosmer Angel?"
-
-"On the contrary," said Holmes quietly; "I have every reason to
-believe that I will succeed in discovering Mr. Hosmer Angel."
-
-Mr. Windibank gave a violent start and dropped his gloves. "I am
-delighted to hear it," he said.
-
-"It is a curious thing," remarked Holmes, "that a typewriter has
-really quite as much individuality as a man's handwriting. Unless
-they are quite new, no two of them write exactly alike. Some
-letters get more worn than others, and some wear only on one
-side. Now, you remark in this note of yours, Mr. Windibank, that
-in every case there is some little slurring over of the 'e,' and
-a slight defect in the tail of the 'r.' There are fourteen other
-characteristics, but those are the more obvious."
-
-"We do all our correspondence with this machine at the office,
-and no doubt it is a little worn," our visitor answered, glancing
-keenly at Holmes with his bright little eyes.
-
-"And now I will show you what is really a very interesting study,
-Mr. Windibank," Holmes continued. "I think of writing another
-little monograph some of these days on the typewriter and its
-relation to crime. It is a subject to which I have devoted some
-little attention. I have here four letters which purport to come
-from the missing man. They are all typewritten. In each case, not
-only are the 'e's' slurred and the 'r's' tailless, but you will
-observe, if you care to use my magnifying lens, that the fourteen
-other characteristics to which I have alluded are there as well."
-
-Mr. Windibank sprang out of his chair and picked up his hat. "I
-cannot waste time over this sort of fantastic talk, Mr. Holmes,"
-he said. "If you can catch the man, catch him, and let me know
-when you have done it."
-
-"Certainly," said Holmes, stepping over and turning the key in
-the door. "I let you know, then, that I have caught him!"
-
-"What! where?" shouted Mr. Windibank, turning white to his lips
-and glancing about him like a rat in a trap.
-
-"Oh, it won't do--really it won't," said Holmes suavely. "There
-is no possible getting out of it, Mr. Windibank. It is quite too
-transparent, and it was a very bad compliment when you said that
-it was impossible for me to solve so simple a question. That's
-right! Sit down and let us talk it over."
-
-Our visitor collapsed into a chair, with a ghastly face and a
-glitter of moisture on his brow. "It--it's not actionable," he
-stammered.
-
-"I am very much afraid that it is not. But between ourselves,
-Windibank, it was as cruel and selfish and heartless a trick in a
-petty way as ever came before me. Now, let me just run over the
-course of events, and you will contradict me if I go wrong."
-
-The man sat huddled up in his chair, with his head sunk upon his
-breast, like one who is utterly crushed. Holmes stuck his feet up
-on the corner of the mantelpiece and, leaning back with his hands
-in his pockets, began talking, rather to himself, as it seemed,
-than to us.
-
-"The man married a woman very much older than himself for her
-money," said he, "and he enjoyed the use of the money of the
-daughter as long as she lived with them. It was a considerable
-sum, for people in their position, and the loss of it would have
-made a serious difference. It was worth an effort to preserve it.
-The daughter was of a good, amiable disposition, but affectionate
-and warm-hearted in her ways, so that it was evident that with
-her fair personal advantages, and her little income, she would
-not be allowed to remain single long. Now her marriage would
-mean, of course, the loss of a hundred a year, so what does her
-stepfather do to prevent it? He takes the obvious course of
-keeping her at home and forbidding her to seek the company of
-people of her own age. But soon he found that that would not
-answer forever. She became restive, insisted upon her rights, and
-finally announced her positive intention of going to a certain
-ball. What does her clever stepfather do then? He conceives an
-idea more creditable to his head than to his heart. With the
-connivance and assistance of his wife he disguised himself,
-covered those keen eyes with tinted glasses, masked the face with
-a moustache and a pair of bushy whiskers, sunk that clear voice
-into an insinuating whisper, and doubly secure on account of the
-girl's short sight, he appears as Mr. Hosmer Angel, and keeps off
-other lovers by making love himself."
-
-"It was only a joke at first," groaned our visitor. "We never
-thought that she would have been so carried away."
-
-"Very likely not. However that may be, the young lady was very
-decidedly carried away, and, having quite made up her mind that
-her stepfather was in France, the suspicion of treachery never
-for an instant entered her mind. She was flattered by the
-gentleman's attentions, and the effect was increased by the
-loudly expressed admiration of her mother. Then Mr. Angel began
-to call, for it was obvious that the matter should be pushed as
-far as it would go if a real effect were to be produced. There
-were meetings, and an engagement, which would finally secure the
-girl's affections from turning towards anyone else. But the
-deception could not be kept up forever. These pretended journeys
-to France were rather cumbrous. The thing to do was clearly to
-bring the business to an end in such a dramatic manner that it
-would leave a permanent impression upon the young lady's mind and
-prevent her from looking upon any other suitor for some time to
-come. Hence those vows of fidelity exacted upon a Testament, and
-hence also the allusions to a possibility of something happening
-on the very morning of the wedding. James Windibank wished Miss
-Sutherland to be so bound to Hosmer Angel, and so uncertain as to
-his fate, that for ten years to come, at any rate, she would not
-listen to another man. As far as the church door he brought her,
-and then, as he could go no farther, he conveniently vanished
-away by the old trick of stepping in at one door of a
-four-wheeler and out at the other. I think that was the chain of
-events, Mr. Windibank!"
-
-Our visitor had recovered something of his assurance while Holmes
-had been talking, and he rose from his chair now with a cold
-sneer upon his pale face.
-
-"It may be so, or it may not, Mr. Holmes," said he, "but if you
-are so very sharp you ought to be sharp enough to know that it is
-you who are breaking the law now, and not me. I have done nothing
-actionable from the first, but as long as you keep that door
-locked you lay yourself open to an action for assault and illegal
-constraint."
-
-"The law cannot, as you say, touch you," said Holmes, unlocking
-and throwing open the door, "yet there never was a man who
-deserved punishment more. If the young lady has a brother or a
-friend, he ought to lay a whip across your shoulders. By Jove!"
-he continued, flushing up at the sight of the bitter sneer upon
-the man's face, "it is not part of my duties to my client, but
-here's a hunting crop handy, and I think I shall just treat
-myself to--" He took two swift steps to the whip, but before he
-could grasp it there was a wild clatter of steps upon the stairs,
-the heavy hall door banged, and from the window we could see Mr.
-James Windibank running at the top of his speed down the road.
-
-"There's a cold-blooded scoundrel!" said Holmes, laughing, as he
-threw himself down into his chair once more. "That fellow will
-rise from crime to crime until he does something very bad, and
-ends on a gallows. The case has, in some respects, been not
-entirely devoid of interest."
-
-"I cannot now entirely see all the steps of your reasoning," I
-remarked.
-
-"Well, of course it was obvious from the first that this Mr.
-Hosmer Angel must have some strong object for his curious
-conduct, and it was equally clear that the only man who really
-profited by the incident, as far as we could see, was the
-stepfather. Then the fact that the two men were never together,
-but that the one always appeared when the other was away, was
-suggestive. So were the tinted spectacles and the curious voice,
-which both hinted at a disguise, as did the bushy whiskers. My
-suspicions were all confirmed by his peculiar action in
-typewriting his signature, which, of course, inferred that his
-handwriting was so familiar to her that she would recognise even
-the smallest sample of it. You see all these isolated facts,
-together with many minor ones, all pointed in the same
-direction."
-
-"And how did you verify them?"
-
-"Having once spotted my man, it was easy to get corroboration. I
-knew the firm for which this man worked. Having taken the printed
-description. I eliminated everything from it which could be the
-result of a disguise--the whiskers, the glasses, the voice, and I
-sent it to the firm, with a request that they would inform me
-whether it answered to the description of any of their
-travellers. I had already noticed the peculiarities of the
-typewriter, and I wrote to the man himself at his business
-address asking him if he would come here. As I expected, his
-reply was typewritten and revealed the same trivial but
-characteristic defects. The same post brought me a letter from
-Westhouse & Marbank, of Fenchurch Street, to say that the
-description tallied in every respect with that of their employé,
-James Windibank. Voilà tout!"
-
-"And Miss Sutherland?"
-
-"If I tell her she will not believe me. You may remember the old
-Persian saying, 'There is danger for him who taketh the tiger
-cub, and danger also for whoso snatches a delusion from a woman.'
-There is as much sense in Hafiz as in Horace, and as much
-knowledge of the world."
-
-
-
-ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY
-
-We were seated at breakfast one morning, my wife and I, when the
-maid brought in a telegram. It was from Sherlock Holmes and ran
-in this way:
-
-"Have you a couple of days to spare? Have just been wired for from
-the west of England in connection with Boscombe Valley tragedy.
-Shall be glad if you will come with me. Air and scenery perfect.
-Leave Paddington by the 11:15."
-
-"What do you say, dear?" said my wife, looking across at me.
-"Will you go?"
-
-"I really don't know what to say. I have a fairly long list at
-present."
-
-"Oh, Anstruther would do your work for you. You have been looking
-a little pale lately. I think that the change would do you good,
-and you are always so interested in Mr. Sherlock Holmes' cases."
-
-"I should be ungrateful if I were not, seeing what I gained
-through one of them," I answered. "But if I am to go, I must pack
-at once, for I have only half an hour."
-
-My experience of camp life in Afghanistan had at least had the
-effect of making me a prompt and ready traveller. My wants were
-few and simple, so that in less than the time stated I was in a
-cab with my valise, rattling away to Paddington Station. Sherlock
-Holmes was pacing up and down the platform, his tall, gaunt
-figure made even gaunter and taller by his long grey
-travelling-cloak and close-fitting cloth cap.
-
-"It is really very good of you to come, Watson," said he. "It
-makes a considerable difference to me, having someone with me on
-whom I can thoroughly rely. Local aid is always either worthless
-or else biassed. If you will keep the two corner seats I shall
-get the tickets."
-
-We had the carriage to ourselves save for an immense litter of
-papers which Holmes had brought with him. Among these he rummaged
-and read, with intervals of note-taking and of meditation, until
-we were past Reading. Then he suddenly rolled them all into a
-gigantic ball and tossed them up onto the rack.
-
-"Have you heard anything of the case?" he asked.
-
-"Not a word. I have not seen a paper for some days."
-
-"The London press has not had very full accounts. I have just
-been looking through all the recent papers in order to master the
-particulars. It seems, from what I gather, to be one of those
-simple cases which are so extremely difficult."
-
-"That sounds a little paradoxical."
-
-"But it is profoundly true. Singularity is almost invariably a
-clue. The more featureless and commonplace a crime is, the more
-difficult it is to bring it home. In this case, however, they
-have established a very serious case against the son of the
-murdered man."
-
-"It is a murder, then?"
-
-"Well, it is conjectured to be so. I shall take nothing for
-granted until I have the opportunity of looking personally into
-it. I will explain the state of things to you, as far as I have
-been able to understand it, in a very few words.
-
-"Boscombe Valley is a country district not very far from Ross, in
-Herefordshire. The largest landed proprietor in that part is a
-Mr. John Turner, who made his money in Australia and returned
-some years ago to the old country. One of the farms which he
-held, that of Hatherley, was let to Mr. Charles McCarthy, who was
-also an ex-Australian. The men had known each other in the
-colonies, so that it was not unnatural that when they came to
-settle down they should do so as near each other as possible.
-Turner was apparently the richer man, so McCarthy became his
-tenant but still remained, it seems, upon terms of perfect
-equality, as they were frequently together. McCarthy had one son,
-a lad of eighteen, and Turner had an only daughter of the same
-age, but neither of them had wives living. They appear to have
-avoided the society of the neighbouring English families and to
-have led retired lives, though both the McCarthys were fond of
-sport and were frequently seen at the race-meetings of the
-neighbourhood. McCarthy kept two servants--a man and a girl.
-Turner had a considerable household, some half-dozen at the
-least. That is as much as I have been able to gather about the
-families. Now for the facts.
-
-"On June 3rd, that is, on Monday last, McCarthy left his house at
-Hatherley about three in the afternoon and walked down to the
-Boscombe Pool, which is a small lake formed by the spreading out
-of the stream which runs down the Boscombe Valley. He had been
-out with his serving-man in the morning at Ross, and he had told
-the man that he must hurry, as he had an appointment of
-importance to keep at three. From that appointment he never came
-back alive.
-
-"From Hatherley Farm-house to the Boscombe Pool is a quarter of a
-mile, and two people saw him as he passed over this ground. One
-was an old woman, whose name is not mentioned, and the other was
-William Crowder, a game-keeper in the employ of Mr. Turner. Both
-these witnesses depose that Mr. McCarthy was walking alone. The
-game-keeper adds that within a few minutes of his seeing Mr.
-McCarthy pass he had seen his son, Mr. James McCarthy, going the
-same way with a gun under his arm. To the best of his belief, the
-father was actually in sight at the time, and the son was
-following him. He thought no more of the matter until he heard in
-the evening of the tragedy that had occurred.
-
-"The two McCarthys were seen after the time when William Crowder,
-the game-keeper, lost sight of them. The Boscombe Pool is thickly
-wooded round, with just a fringe of grass and of reeds round the
-edge. A girl of fourteen, Patience Moran, who is the daughter of
-the lodge-keeper of the Boscombe Valley estate, was in one of the
-woods picking flowers. She states that while she was there she
-saw, at the border of the wood and close by the lake, Mr.
-McCarthy and his son, and that they appeared to be having a
-violent quarrel. She heard Mr. McCarthy the elder using very
-strong language to his son, and she saw the latter raise up his
-hand as if to strike his father. She was so frightened by their
-violence that she ran away and told her mother when she reached
-home that she had left the two McCarthys quarrelling near
-Boscombe Pool, and that she was afraid that they were going to
-fight. She had hardly said the words when young Mr. McCarthy came
-running up to the lodge to say that he had found his father dead
-in the wood, and to ask for the help of the lodge-keeper. He was
-much excited, without either his gun or his hat, and his right
-hand and sleeve were observed to be stained with fresh blood. On
-following him they found the dead body stretched out upon the
-grass beside the pool. The head had been beaten in by repeated
-blows of some heavy and blunt weapon. The injuries were such as
-might very well have been inflicted by the butt-end of his son's
-gun, which was found lying on the grass within a few paces of the
-body. Under these circumstances the young man was instantly
-arrested, and a verdict of 'wilful murder' having been returned
-at the inquest on Tuesday, he was on Wednesday brought before the
-magistrates at Ross, who have referred the case to the next
-Assizes. Those are the main facts of the case as they came out
-before the coroner and the police-court."
-
-"I could hardly imagine a more damning case," I remarked. "If
-ever circumstantial evidence pointed to a criminal it does so
-here."
-
-"Circumstantial evidence is a very tricky thing," answered Holmes
-thoughtfully. "It may seem to point very straight to one thing,
-but if you shift your own point of view a little, you may find it
-pointing in an equally uncompromising manner to something
-entirely different. It must be confessed, however, that the case
-looks exceedingly grave against the young man, and it is very
-possible that he is indeed the culprit. There are several people
-in the neighbourhood, however, and among them Miss Turner, the
-daughter of the neighbouring landowner, who believe in his
-innocence, and who have retained Lestrade, whom you may recollect
-in connection with the Study in Scarlet, to work out the case in
-his interest. Lestrade, being rather puzzled, has referred the
-case to me, and hence it is that two middle-aged gentlemen are
-flying westward at fifty miles an hour instead of quietly
-digesting their breakfasts at home."
-
-"I am afraid," said I, "that the facts are so obvious that you
-will find little credit to be gained out of this case."
-
-"There is nothing more deceptive than an obvious fact," he
-answered, laughing. "Besides, we may chance to hit upon some
-other obvious facts which may have been by no means obvious to
-Mr. Lestrade. You know me too well to think that I am boasting
-when I say that I shall either confirm or destroy his theory by
-means which he is quite incapable of employing, or even of
-understanding. To take the first example to hand, I very clearly
-perceive that in your bedroom the window is upon the right-hand
-side, and yet I question whether Mr. Lestrade would have noted
-even so self-evident a thing as that."
-
-"How on earth--"
-
-"My dear fellow, I know you well. I know the military neatness
-which characterises you. You shave every morning, and in this
-season you shave by the sunlight; but since your shaving is less
-and less complete as we get farther back on the left side, until
-it becomes positively slovenly as we get round the angle of the
-jaw, it is surely very clear that that side is less illuminated
-than the other. I could not imagine a man of your habits looking
-at himself in an equal light and being satisfied with such a
-result. I only quote this as a trivial example of observation and
-inference. Therein lies my métier, and it is just possible that
-it may be of some service in the investigation which lies before
-us. There are one or two minor points which were brought out in
-the inquest, and which are worth considering."
-
-"What are they?"
-
-"It appears that his arrest did not take place at once, but after
-the return to Hatherley Farm. On the inspector of constabulary
-informing him that he was a prisoner, he remarked that he was not
-surprised to hear it, and that it was no more than his deserts.
-This observation of his had the natural effect of removing any
-traces of doubt which might have remained in the minds of the
-coroner's jury."
-
-"It was a confession," I ejaculated.
-
-"No, for it was followed by a protestation of innocence."
-
-"Coming on the top of such a damning series of events, it was at
-least a most suspicious remark."
-
-"On the contrary," said Holmes, "it is the brightest rift which I
-can at present see in the clouds. However innocent he might be,
-he could not be such an absolute imbecile as not to see that the
-circumstances were very black against him. Had he appeared
-surprised at his own arrest, or feigned indignation at it, I
-should have looked upon it as highly suspicious, because such
-surprise or anger would not be natural under the circumstances,
-and yet might appear to be the best policy to a scheming man. His
-frank acceptance of the situation marks him as either an innocent
-man, or else as a man of considerable self-restraint and
-firmness. As to his remark about his deserts, it was also not
-unnatural if you consider that he stood beside the dead body of
-his father, and that there is no doubt that he had that very day
-so far forgotten his filial duty as to bandy words with him, and
-even, according to the little girl whose evidence is so
-important, to raise his hand as if to strike him. The
-self-reproach and contrition which are displayed in his remark
-appear to me to be the signs of a healthy mind rather than of a
-guilty one."
-
-I shook my head. "Many men have been hanged on far slighter
-evidence," I remarked.
-
-"So they have. And many men have been wrongfully hanged."
-
-"What is the young man's own account of the matter?"
-
-"It is, I am afraid, not very encouraging to his supporters,
-though there are one or two points in it which are suggestive.
-You will find it here, and may read it for yourself."
-
-He picked out from his bundle a copy of the local Herefordshire
-paper, and having turned down the sheet he pointed out the
-paragraph in which the unfortunate young man had given his own
-statement of what had occurred. I settled myself down in the
-corner of the carriage and read it very carefully. It ran in this
-way:
-
-"Mr. James McCarthy, the only son of the deceased, was then called
-and gave evidence as follows: 'I had been away from home for
-three days at Bristol, and had only just returned upon the
-morning of last Monday, the 3rd. My father was absent from home at
-the time of my arrival, and I was informed by the maid that he
-had driven over to Ross with John Cobb, the groom. Shortly after
-my return I heard the wheels of his trap in the yard, and,
-looking out of my window, I saw him get out and walk rapidly out
-of the yard, though I was not aware in which direction he was
-going. I then took my gun and strolled out in the direction of
-the Boscombe Pool, with the intention of visiting the rabbit
-warren which is upon the other side. On my way I saw William
-Crowder, the game-keeper, as he had stated in his evidence; but
-he is mistaken in thinking that I was following my father. I had
-no idea that he was in front of me. When about a hundred yards
-from the pool I heard a cry of "Cooee!" which was a usual signal
-between my father and myself. I then hurried forward, and found
-him standing by the pool. He appeared to be much surprised at
-seeing me and asked me rather roughly what I was doing there. A
-conversation ensued which led to high words and almost to blows,
-for my father was a man of a very violent temper. Seeing that his
-passion was becoming ungovernable, I left him and returned
-towards Hatherley Farm. I had not gone more than 150 yards,
-however, when I heard a hideous outcry behind me, which caused me
-to run back again. I found my father expiring upon the ground,
-with his head terribly injured. I dropped my gun and held him in
-my arms, but he almost instantly expired. I knelt beside him for
-some minutes, and then made my way to Mr. Turner's lodge-keeper,
-his house being the nearest, to ask for assistance. I saw no one
-near my father when I returned, and I have no idea how he came by
-his injuries. He was not a popular man, being somewhat cold and
-forbidding in his manners, but he had, as far as I know, no
-active enemies. I know nothing further of the matter.'
-
-"The Coroner: Did your father make any statement to you before
-he died?
-
-"Witness: He mumbled a few words, but I could only catch some
-allusion to a rat.
-
-"The Coroner: What did you understand by that?
-
-"Witness: It conveyed no meaning to me. I thought that he was
-delirious.
-
-"The Coroner: What was the point upon which you and your father
-had this final quarrel?
-
-"Witness: I should prefer not to answer.
-
-"The Coroner: I am afraid that I must press it.
-
-"Witness: It is really impossible for me to tell you. I can
-assure you that it has nothing to do with the sad tragedy which
-followed.
-
-"The Coroner: That is for the court to decide. I need not point
-out to you that your refusal to answer will prejudice your case
-considerably in any future proceedings which may arise.
-
-"Witness: I must still refuse.
-
-"The Coroner: I understand that the cry of 'Cooee' was a common
-signal between you and your father?
-
-"Witness: It was.
-
-"The Coroner: How was it, then, that he uttered it before he saw
-you, and before he even knew that you had returned from Bristol?
-
-"Witness (with considerable confusion): I do not know.
-
-"A Juryman: Did you see nothing which aroused your suspicions
-when you returned on hearing the cry and found your father
-fatally injured?
-
-"Witness: Nothing definite.
-
-"The Coroner: What do you mean?
-
-"Witness: I was so disturbed and excited as I rushed out into
-the open, that I could think of nothing except of my father. Yet
-I have a vague impression that as I ran forward something lay
-upon the ground to the left of me. It seemed to me to be
-something grey in colour, a coat of some sort, or a plaid perhaps.
-When I rose from my father I looked round for it, but it was
-gone.
-
-"'Do you mean that it disappeared before you went for help?'
-
-"'Yes, it was gone.'
-
-"'You cannot say what it was?'
-
-"'No, I had a feeling something was there.'
-
-"'How far from the body?'
-
-"'A dozen yards or so.'
-
-"'And how far from the edge of the wood?'
-
-"'About the same.'
-
-"'Then if it was removed it was while you were within a dozen
-yards of it?'
-
-"'Yes, but with my back towards it.'
-
-"This concluded the examination of the witness."
-
-"I see," said I as I glanced down the column, "that the coroner
-in his concluding remarks was rather severe upon young McCarthy.
-He calls attention, and with reason, to the discrepancy about his
-father having signalled to him before seeing him, also to his
-refusal to give details of his conversation with his father, and
-his singular account of his father's dying words. They are all,
-as he remarks, very much against the son."
-
-Holmes laughed softly to himself and stretched himself out upon
-the cushioned seat. "Both you and the coroner have been at some
-pains," said he, "to single out the very strongest points in the
-young man's favour. Don't you see that you alternately give him
-credit for having too much imagination and too little? Too
-little, if he could not invent a cause of quarrel which would
-give him the sympathy of the jury; too much, if he evolved from
-his own inner consciousness anything so outré as a dying
-reference to a rat, and the incident of the vanishing cloth. No,
-sir, I shall approach this case from the point of view that what
-this young man says is true, and we shall see whither that
-hypothesis will lead us. And now here is my pocket Petrarch, and
-not another word shall I say of this case until we are on the
-scene of action. We lunch at Swindon, and I see that we shall be
-there in twenty minutes."
-
-It was nearly four o'clock when we at last, after passing through
-the beautiful Stroud Valley, and over the broad gleaming Severn,
-found ourselves at the pretty little country-town of Ross. A
-lean, ferret-like man, furtive and sly-looking, was waiting for
-us upon the platform. In spite of the light brown dustcoat and
-leather-leggings which he wore in deference to his rustic
-surroundings, I had no difficulty in recognising Lestrade, of
-Scotland Yard. With him we drove to the Hereford Arms where a
-room had already been engaged for us.
-
-"I have ordered a carriage," said Lestrade as we sat over a cup
-of tea. "I knew your energetic nature, and that you would not be
-happy until you had been on the scene of the crime."
-
-"It was very nice and complimentary of you," Holmes answered. "It
-is entirely a question of barometric pressure."
-
-Lestrade looked startled. "I do not quite follow," he said.
-
-"How is the glass? Twenty-nine, I see. No wind, and not a cloud
-in the sky. I have a caseful of cigarettes here which need
-smoking, and the sofa is very much superior to the usual country
-hotel abomination. I do not think that it is probable that I
-shall use the carriage to-night."
-
-Lestrade laughed indulgently. "You have, no doubt, already formed
-your conclusions from the newspapers," he said. "The case is as
-plain as a pikestaff, and the more one goes into it the plainer
-it becomes. Still, of course, one can't refuse a lady, and such a
-very positive one, too. She has heard of you, and would have your
-opinion, though I repeatedly told her that there was nothing
-which you could do which I had not already done. Why, bless my
-soul! here is her carriage at the door."
-
-He had hardly spoken before there rushed into the room one of the
-most lovely young women that I have ever seen in my life. Her
-violet eyes shining, her lips parted, a pink flush upon her
-cheeks, all thought of her natural reserve lost in her
-overpowering excitement and concern.
-
-"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the
-other of us, and finally, with a woman's quick intuition,
-fastening upon my companion, "I am so glad that you have come. I
-have driven down to tell you so. I know that James didn't do it.
-I know it, and I want you to start upon your work knowing it,
-too. Never let yourself doubt upon that point. We have known each
-other since we were little children, and I know his faults as no
-one else does; but he is too tender-hearted to hurt a fly. Such a
-charge is absurd to anyone who really knows him."
-
-"I hope we may clear him, Miss Turner," said Sherlock Holmes.
-"You may rely upon my doing all that I can."
-
-"But you have read the evidence. You have formed some conclusion?
-Do you not see some loophole, some flaw? Do you not yourself
-think that he is innocent?"
-
-"I think that it is very probable."
-
-"There, now!" she cried, throwing back her head and looking
-defiantly at Lestrade. "You hear! He gives me hopes."
-
-Lestrade shrugged his shoulders. "I am afraid that my colleague
-has been a little quick in forming his conclusions," he said.
-
-"But he is right. Oh! I know that he is right. James never did
-it. And about his quarrel with his father, I am sure that the
-reason why he would not speak about it to the coroner was because
-I was concerned in it."
-
-"In what way?" asked Holmes.
-
-"It is no time for me to hide anything. James and his father had
-many disagreements about me. Mr. McCarthy was very anxious that
-there should be a marriage between us. James and I have always
-loved each other as brother and sister; but of course he is young
-and has seen very little of life yet, and--and--well, he
-naturally did not wish to do anything like that yet. So there
-were quarrels, and this, I am sure, was one of them."
-
-"And your father?" asked Holmes. "Was he in favour of such a
-union?"
-
-"No, he was averse to it also. No one but Mr. McCarthy was in
-favour of it." A quick blush passed over her fresh young face as
-Holmes shot one of his keen, questioning glances at her.
-
-"Thank you for this information," said he. "May I see your father
-if I call to-morrow?"
-
-"I am afraid the doctor won't allow it."
-
-"The doctor?"
-
-"Yes, have you not heard? Poor father has never been strong for
-years back, but this has broken him down completely. He has taken
-to his bed, and Dr. Willows says that he is a wreck and that his
-nervous system is shattered. Mr. McCarthy was the only man alive
-who had known dad in the old days in Victoria."
-
-"Ha! In Victoria! That is important."
-
-"Yes, at the mines."
-
-"Quite so; at the gold-mines, where, as I understand, Mr. Turner
-made his money."
-
-"Yes, certainly."
-
-"Thank you, Miss Turner. You have been of material assistance to
-me."
-
-"You will tell me if you have any news to-morrow. No doubt you
-will go to the prison to see James. Oh, if you do, Mr. Holmes, do
-tell him that I know him to be innocent."
-
-"I will, Miss Turner."
-
-"I must go home now, for dad is very ill, and he misses me so if
-I leave him. Good-bye, and God help you in your undertaking." She
-hurried from the room as impulsively as she had entered, and we
-heard the wheels of her carriage rattle off down the street.
-
-"I am ashamed of you, Holmes," said Lestrade with dignity after a
-few minutes' silence. "Why should you raise up hopes which you
-are bound to disappoint? I am not over-tender of heart, but I
-call it cruel."
-
-"I think that I see my way to clearing James McCarthy," said
-Holmes. "Have you an order to see him in prison?"
-
-"Yes, but only for you and me."
-
-"Then I shall reconsider my resolution about going out. We have
-still time to take a train to Hereford and see him to-night?"
-
-"Ample."
-
-"Then let us do so. Watson, I fear that you will find it very
-slow, but I shall only be away a couple of hours."
-
-I walked down to the station with them, and then wandered through
-the streets of the little town, finally returning to the hotel,
-where I lay upon the sofa and tried to interest myself in a
-yellow-backed novel. The puny plot of the story was so thin,
-however, when compared to the deep mystery through which we were
-groping, and I found my attention wander so continually from the
-action to the fact, that I at last flung it across the room and
-gave myself up entirely to a consideration of the events of the
-day. Supposing that this unhappy young man's story were
-absolutely true, then what hellish thing, what absolutely
-unforeseen and extraordinary calamity could have occurred between
-the time when he parted from his father, and the moment when,
-drawn back by his screams, he rushed into the glade? It was
-something terrible and deadly. What could it be? Might not the
-nature of the injuries reveal something to my medical instincts?
-I rang the bell and called for the weekly county paper, which
-contained a verbatim account of the inquest. In the surgeon's
-deposition it was stated that the posterior third of the left
-parietal bone and the left half of the occipital bone had been
-shattered by a heavy blow from a blunt weapon. I marked the spot
-upon my own head. Clearly such a blow must have been struck from
-behind. That was to some extent in favour of the accused, as when
-seen quarrelling he was face to face with his father. Still, it
-did not go for very much, for the older man might have turned his
-back before the blow fell. Still, it might be worth while to call
-Holmes' attention to it. Then there was the peculiar dying
-reference to a rat. What could that mean? It could not be
-delirium. A man dying from a sudden blow does not commonly become
-delirious. No, it was more likely to be an attempt to explain how
-he met his fate. But what could it indicate? I cudgelled my
-brains to find some possible explanation. And then the incident
-of the grey cloth seen by young McCarthy. If that were true the
-murderer must have dropped some part of his dress, presumably his
-overcoat, in his flight, and must have had the hardihood to
-return and to carry it away at the instant when the son was
-kneeling with his back turned not a dozen paces off. What a
-tissue of mysteries and improbabilities the whole thing was! I
-did not wonder at Lestrade's opinion, and yet I had so much faith
-in Sherlock Holmes' insight that I could not lose hope as long
-as every fresh fact seemed to strengthen his conviction of young
-McCarthy's innocence.
-
-It was late before Sherlock Holmes returned. He came back alone,
-for Lestrade was staying in lodgings in the town.
-
-"The glass still keeps very high," he remarked as he sat down.
-"It is of importance that it should not rain before we are able
-to go over the ground. On the other hand, a man should be at his
-very best and keenest for such nice work as that, and I did not
-wish to do it when fagged by a long journey. I have seen young
-McCarthy."
-
-"And what did you learn from him?"
-
-"Nothing."
-
-"Could he throw no light?"
-
-"None at all. I was inclined to think at one time that he knew
-who had done it and was screening him or her, but I am convinced
-now that he is as puzzled as everyone else. He is not a very
-quick-witted youth, though comely to look at and, I should think,
-sound at heart."
-
-"I cannot admire his taste," I remarked, "if it is indeed a fact
-that he was averse to a marriage with so charming a young lady as
-this Miss Turner."
-
-"Ah, thereby hangs a rather painful tale. This fellow is madly,
-insanely, in love with her, but some two years ago, when he was
-only a lad, and before he really knew her, for she had been away
-five years at a boarding-school, what does the idiot do but get
-into the clutches of a barmaid in Bristol and marry her at a
-registry office? No one knows a word of the matter, but you can
-imagine how maddening it must be to him to be upbraided for not
-doing what he would give his very eyes to do, but what he knows
-to be absolutely impossible. It was sheer frenzy of this sort
-which made him throw his hands up into the air when his father,
-at their last interview, was goading him on to propose to Miss
-Turner. On the other hand, he had no means of supporting himself,
-and his father, who was by all accounts a very hard man, would
-have thrown him over utterly had he known the truth. It was with
-his barmaid wife that he had spent the last three days in
-Bristol, and his father did not know where he was. Mark that
-point. It is of importance. Good has come out of evil, however,
-for the barmaid, finding from the papers that he is in serious
-trouble and likely to be hanged, has thrown him over utterly and
-has written to him to say that she has a husband already in the
-Bermuda Dockyard, so that there is really no tie between them. I
-think that that bit of news has consoled young McCarthy for all
-that he has suffered."
-
-"But if he is innocent, who has done it?"
-
-"Ah! who? I would call your attention very particularly to two
-points. One is that the murdered man had an appointment with
-someone at the pool, and that the someone could not have been his
-son, for his son was away, and he did not know when he would
-return. The second is that the murdered man was heard to cry
-'Cooee!' before he knew that his son had returned. Those are the
-crucial points upon which the case depends. And now let us talk
-about George Meredith, if you please, and we shall leave all
-minor matters until to-morrow."
-
-There was no rain, as Holmes had foretold, and the morning broke
-bright and cloudless. At nine o'clock Lestrade called for us with
-the carriage, and we set off for Hatherley Farm and the Boscombe
-Pool.
-
-"There is serious news this morning," Lestrade observed. "It is
-said that Mr. Turner, of the Hall, is so ill that his life is
-despaired of."
-
-"An elderly man, I presume?" said Holmes.
-
-"About sixty; but his constitution has been shattered by his life
-abroad, and he has been in failing health for some time. This
-business has had a very bad effect upon him. He was an old friend
-of McCarthy's, and, I may add, a great benefactor to him, for I
-have learned that he gave him Hatherley Farm rent free."
-
-"Indeed! That is interesting," said Holmes.
-
-"Oh, yes! In a hundred other ways he has helped him. Everybody
-about here speaks of his kindness to him."
-
-"Really! Does it not strike you as a little singular that this
-McCarthy, who appears to have had little of his own, and to have
-been under such obligations to Turner, should still talk of
-marrying his son to Turner's daughter, who is, presumably,
-heiress to the estate, and that in such a very cocksure manner,
-as if it were merely a case of a proposal and all else would
-follow? It is the more strange, since we know that Turner himself
-was averse to the idea. The daughter told us as much. Do you not
-deduce something from that?"
-
-"We have got to the deductions and the inferences," said
-Lestrade, winking at me. "I find it hard enough to tackle facts,
-Holmes, without flying away after theories and fancies."
-
-"You are right," said Holmes demurely; "you do find it very hard
-to tackle the facts."
-
-"Anyhow, I have grasped one fact which you seem to find it
-difficult to get hold of," replied Lestrade with some warmth.
-
-"And that is--"
-
-"That McCarthy senior met his death from McCarthy junior and that
-all theories to the contrary are the merest moonshine."
-
-"Well, moonshine is a brighter thing than fog," said Holmes,
-laughing. "But I am very much mistaken if this is not Hatherley
-Farm upon the left."
-
-"Yes, that is it." It was a widespread, comfortable-looking
-building, two-storied, slate-roofed, with great yellow blotches
-of lichen upon the grey walls. The drawn blinds and the smokeless
-chimneys, however, gave it a stricken look, as though the weight
-of this horror still lay heavy upon it. We called at the door,
-when the maid, at Holmes' request, showed us the boots which her
-master wore at the time of his death, and also a pair of the
-son's, though not the pair which he had then had. Having measured
-these very carefully from seven or eight different points, Holmes
-desired to be led to the court-yard, from which we all followed
-the winding track which led to Boscombe Pool.
-
-Sherlock Holmes was transformed when he was hot upon such a scent
-as this. Men who had only known the quiet thinker and logician of
-Baker Street would have failed to recognise him. His face flushed
-and darkened. His brows were drawn into two hard black lines,
-while his eyes shone out from beneath them with a steely glitter.
-His face was bent downward, his shoulders bowed, his lips
-compressed, and the veins stood out like whipcord in his long,
-sinewy neck. His nostrils seemed to dilate with a purely animal
-lust for the chase, and his mind was so absolutely concentrated
-upon the matter before him that a question or remark fell
-unheeded upon his ears, or, at the most, only provoked a quick,
-impatient snarl in reply. Swiftly and silently he made his way
-along the track which ran through the meadows, and so by way of
-the woods to the Boscombe Pool. It was damp, marshy ground, as is
-all that district, and there were marks of many feet, both upon
-the path and amid the short grass which bounded it on either
-side. Sometimes Holmes would hurry on, sometimes stop dead, and
-once he made quite a little detour into the meadow. Lestrade and
-I walked behind him, the detective indifferent and contemptuous,
-while I watched my friend with the interest which sprang from the
-conviction that every one of his actions was directed towards a
-definite end.
-
-The Boscombe Pool, which is a little reed-girt sheet of water
-some fifty yards across, is situated at the boundary between the
-Hatherley Farm and the private park of the wealthy Mr. Turner.
-Above the woods which lined it upon the farther side we could see
-the red, jutting pinnacles which marked the site of the rich
-landowner's dwelling. On the Hatherley side of the pool the woods
-grew very thick, and there was a narrow belt of sodden grass
-twenty paces across between the edge of the trees and the reeds
-which lined the lake. Lestrade showed us the exact spot at which
-the body had been found, and, indeed, so moist was the ground,
-that I could plainly see the traces which had been left by the
-fall of the stricken man. To Holmes, as I could see by his eager
-face and peering eyes, very many other things were to be read
-upon the trampled grass. He ran round, like a dog who is picking
-up a scent, and then turned upon my companion.
-
-"What did you go into the pool for?" he asked.
-
-"I fished about with a rake. I thought there might be some weapon
-or other trace. But how on earth--"
-
-"Oh, tut, tut! I have no time! That left foot of yours with its
-inward twist is all over the place. A mole could trace it, and
-there it vanishes among the reeds. Oh, how simple it would all
-have been had I been here before they came like a herd of buffalo
-and wallowed all over it. Here is where the party with the
-lodge-keeper came, and they have covered all tracks for six or
-eight feet round the body. But here are three separate tracks of
-the same feet." He drew out a lens and lay down upon his
-waterproof to have a better view, talking all the time rather to
-himself than to us. "These are young McCarthy's feet. Twice he
-was walking, and once he ran swiftly, so that the soles are
-deeply marked and the heels hardly visible. That bears out his
-story. He ran when he saw his father on the ground. Then here are
-the father's feet as he paced up and down. What is this, then? It
-is the butt-end of the gun as the son stood listening. And this?
-Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite
-unusual boots! They come, they go, they come again--of course
-that was for the cloak. Now where did they come from?" He ran up
-and down, sometimes losing, sometimes finding the track until we
-were well within the edge of the wood and under the shadow of a
-great beech, the largest tree in the neighbourhood. Holmes traced
-his way to the farther side of this and lay down once more upon
-his face with a little cry of satisfaction. For a long time he
-remained there, turning over the leaves and dried sticks,
-gathering up what seemed to me to be dust into an envelope and
-examining with his lens not only the ground but even the bark of
-the tree as far as he could reach. A jagged stone was lying among
-the moss, and this also he carefully examined and retained. Then
-he followed a pathway through the wood until he came to the
-highroad, where all traces were lost.
-
-"It has been a case of considerable interest," he remarked,
-returning to his natural manner. "I fancy that this grey house on
-the right must be the lodge. I think that I will go in and have a
-word with Moran, and perhaps write a little note. Having done
-that, we may drive back to our luncheon. You may walk to the cab,
-and I shall be with you presently."
-
-It was about ten minutes before we regained our cab and drove
-back into Ross, Holmes still carrying with him the stone which he
-had picked up in the wood.
-
-"This may interest you, Lestrade," he remarked, holding it out.
-"The murder was done with it."
-
-"I see no marks."
-
-"There are none."
-
-"How do you know, then?"
-
-"The grass was growing under it. It had only lain there a few
-days. There was no sign of a place whence it had been taken. It
-corresponds with the injuries. There is no sign of any other
-weapon."
-
-"And the murderer?"
-
-"Is a tall man, left-handed, limps with the right leg, wears
-thick-soled shooting-boots and a grey cloak, smokes Indian
-cigars, uses a cigar-holder, and carries a blunt pen-knife in his
-pocket. There are several other indications, but these may be
-enough to aid us in our search."
-
-Lestrade laughed. "I am afraid that I am still a sceptic," he
-said. "Theories are all very well, but we have to deal with a
-hard-headed British jury."
-
-"Nous verrons," answered Holmes calmly. "You work your own
-method, and I shall work mine. I shall be busy this afternoon,
-and shall probably return to London by the evening train."
-
-"And leave your case unfinished?"
-
-"No, finished."
-
-"But the mystery?"
-
-"It is solved."
-
-"Who was the criminal, then?"
-
-"The gentleman I describe."
-
-"But who is he?"
-
-"Surely it would not be difficult to find out. This is not such a
-populous neighbourhood."
-
-Lestrade shrugged his shoulders. "I am a practical man," he said,
-"and I really cannot undertake to go about the country looking
-for a left-handed gentleman with a game leg. I should become the
-laughing-stock of Scotland Yard."
-
-"All right," said Holmes quietly. "I have given you the chance.
-Here are your lodgings. Good-bye. I shall drop you a line before
-I leave."
-
-Having left Lestrade at his rooms, we drove to our hotel, where
-we found lunch upon the table. Holmes was silent and buried in
-thought with a pained expression upon his face, as one who finds
-himself in a perplexing position.
-
-"Look here, Watson," he said when the cloth was cleared "just sit
-down in this chair and let me preach to you for a little. I don't
-know quite what to do, and I should value your advice. Light a
-cigar and let me expound."
-
- "Pray do so."
-
-"Well, now, in considering this case there are two points about
-young McCarthy's narrative which struck us both instantly,
-although they impressed me in his favour and you against him. One
-was the fact that his father should, according to his account,
-cry 'Cooee!' before seeing him. The other was his singular dying
-reference to a rat. He mumbled several words, you understand, but
-that was all that caught the son's ear. Now from this double
-point our research must commence, and we will begin it by
-presuming that what the lad says is absolutely true."
-
-"What of this 'Cooee!' then?"
-
-"Well, obviously it could not have been meant for the son. The
-son, as far as he knew, was in Bristol. It was mere chance that
-he was within earshot. The 'Cooee!' was meant to attract the
-attention of whoever it was that he had the appointment with. But
-'Cooee' is a distinctly Australian cry, and one which is used
-between Australians. There is a strong presumption that the
-person whom McCarthy expected to meet him at Boscombe Pool was
-someone who had been in Australia."
-
-"What of the rat, then?"
-
-Sherlock Holmes took a folded paper from his pocket and flattened
-it out on the table. "This is a map of the Colony of Victoria,"
-he said. "I wired to Bristol for it last night." He put his hand
-over part of the map. "What do you read?"
-
-"ARAT," I read.
-
-"And now?" He raised his hand.
-
-"BALLARAT."
-
-"Quite so. That was the word the man uttered, and of which his
-son only caught the last two syllables. He was trying to utter
-the name of his murderer. So and so, of Ballarat."
-
-"It is wonderful!" I exclaimed.
-
-"It is obvious. And now, you see, I had narrowed the field down
-considerably. The possession of a grey garment was a third point
-which, granting the son's statement to be correct, was a
-certainty. We have come now out of mere vagueness to the definite
-conception of an Australian from Ballarat with a grey cloak."
-
-"Certainly."
-
-"And one who was at home in the district, for the pool can only
-be approached by the farm or by the estate, where strangers could
-hardly wander."
-
-"Quite so."
-
-"Then comes our expedition of to-day. By an examination of the
-ground I gained the trifling details which I gave to that
-imbecile Lestrade, as to the personality of the criminal."
-
-"But how did you gain them?"
-
-"You know my method. It is founded upon the observation of
-trifles."
-
-"His height I know that you might roughly judge from the length
-of his stride. His boots, too, might be told from their traces."
-
-"Yes, they were peculiar boots."
-
-"But his lameness?"
-
-"The impression of his right foot was always less distinct than
-his left. He put less weight upon it. Why? Because he limped--he
-was lame."
-
-"But his left-handedness."
-
-"You were yourself struck by the nature of the injury as recorded
-by the surgeon at the inquest. The blow was struck from
-immediately behind, and yet was upon the left side. Now, how can
-that be unless it were by a left-handed man? He had stood behind
-that tree during the interview between the father and son. He had
-even smoked there. I found the ash of a cigar, which my special
-knowledge of tobacco ashes enables me to pronounce as an Indian
-cigar. I have, as you know, devoted some attention to this, and
-written a little monograph on the ashes of 140 different
-varieties of pipe, cigar, and cigarette tobacco. Having found the
-ash, I then looked round and discovered the stump among the moss
-where he had tossed it. It was an Indian cigar, of the variety
-which are rolled in Rotterdam."
-
-"And the cigar-holder?"
-
-"I could see that the end had not been in his mouth. Therefore he
-used a holder. The tip had been cut off, not bitten off, but the
-cut was not a clean one, so I deduced a blunt pen-knife."
-
-"Holmes," I said, "you have drawn a net round this man from which
-he cannot escape, and you have saved an innocent human life as
-truly as if you had cut the cord which was hanging him. I see the
-direction in which all this points. The culprit is--"
-
-"Mr. John Turner," cried the hotel waiter, opening the door of
-our sitting-room, and ushering in a visitor.
-
-The man who entered was a strange and impressive figure. His
-slow, limping step and bowed shoulders gave the appearance of
-decrepitude, and yet his hard, deep-lined, craggy features, and
-his enormous limbs showed that he was possessed of unusual
-strength of body and of character. His tangled beard, grizzled
-hair, and outstanding, drooping eyebrows combined to give an air
-of dignity and power to his appearance, but his face was of an
-ashen white, while his lips and the corners of his nostrils were
-tinged with a shade of blue. It was clear to me at a glance that
-he was in the grip of some deadly and chronic disease.
-
-"Pray sit down on the sofa," said Holmes gently. "You had my
-note?"
-
-"Yes, the lodge-keeper brought it up. You said that you wished to
-see me here to avoid scandal."
-
-"I thought people would talk if I went to the Hall."
-
-"And why did you wish to see me?" He looked across at my
-companion with despair in his weary eyes, as though his question
-was already answered.
-
-"Yes," said Holmes, answering the look rather than the words. "It
-is so. I know all about McCarthy."
-
-The old man sank his face in his hands. "God help me!" he cried.
-"But I would not have let the young man come to harm. I give you
-my word that I would have spoken out if it went against him at
-the Assizes."
-
-"I am glad to hear you say so," said Holmes gravely.
-
-"I would have spoken now had it not been for my dear girl. It
-would break her heart--it will break her heart when she hears
-that I am arrested."
-
-"It may not come to that," said Holmes.
-
-"What?"
-
-"I am no official agent. I understand that it was your daughter
-who required my presence here, and I am acting in her interests.
-Young McCarthy must be got off, however."
-
-"I am a dying man," said old Turner. "I have had diabetes for
-years. My doctor says it is a question whether I shall live a
-month. Yet I would rather die under my own roof than in a gaol."
-
-Holmes rose and sat down at the table with his pen in his hand
-and a bundle of paper before him. "Just tell us the truth," he
-said. "I shall jot down the facts. You will sign it, and Watson
-here can witness it. Then I could produce your confession at the
-last extremity to save young McCarthy. I promise you that I shall
-not use it unless it is absolutely needed."
-
-"It's as well," said the old man; "it's a question whether I
-shall live to the Assizes, so it matters little to me, but I
-should wish to spare Alice the shock. And now I will make the
-thing clear to you; it has been a long time in the acting, but
-will not take me long to tell.
-
-"You didn't know this dead man, McCarthy. He was a devil
-incarnate. I tell you that. God keep you out of the clutches of
-such a man as he. His grip has been upon me these twenty years,
-and he has blasted my life. I'll tell you first how I came to be
-in his power.
-
-"It was in the early '60's at the diggings. I was a young chap
-then, hot-blooded and reckless, ready to turn my hand at
-anything; I got among bad companions, took to drink, had no luck
-with my claim, took to the bush, and in a word became what you
-would call over here a highway robber. There were six of us, and
-we had a wild, free life of it, sticking up a station from time
-to time, or stopping the wagons on the road to the diggings.
-Black Jack of Ballarat was the name I went under, and our party
-is still remembered in the colony as the Ballarat Gang.
-
-"One day a gold convoy came down from Ballarat to Melbourne, and
-we lay in wait for it and attacked it. There were six troopers
-and six of us, so it was a close thing, but we emptied four of
-their saddles at the first volley. Three of our boys were killed,
-however, before we got the swag. I put my pistol to the head of
-the wagon-driver, who was this very man McCarthy. I wish to the
-Lord that I had shot him then, but I spared him, though I saw his
-wicked little eyes fixed on my face, as though to remember every
-feature. We got away with the gold, became wealthy men, and made
-our way over to England without being suspected. There I parted
-from my old pals and determined to settle down to a quiet and
-respectable life. I bought this estate, which chanced to be in
-the market, and I set myself to do a little good with my money,
-to make up for the way in which I had earned it. I married, too,
-and though my wife died young she left me my dear little Alice.
-Even when she was just a baby her wee hand seemed to lead me down
-the right path as nothing else had ever done. In a word, I turned
-over a new leaf and did my best to make up for the past. All was
-going well when McCarthy laid his grip upon me.
-
-"I had gone up to town about an investment, and I met him in
-Regent Street with hardly a coat to his back or a boot to his
-foot.
-
-"'Here we are, Jack,' says he, touching me on the arm; 'we'll be
-as good as a family to you. There's two of us, me and my son, and
-you can have the keeping of us. If you don't--it's a fine,
-law-abiding country is England, and there's always a policeman
-within hail.'
-
-"Well, down they came to the west country, there was no shaking
-them off, and there they have lived rent free on my best land
-ever since. There was no rest for me, no peace, no forgetfulness;
-turn where I would, there was his cunning, grinning face at my
-elbow. It grew worse as Alice grew up, for he soon saw I was more
-afraid of her knowing my past than of the police. Whatever he
-wanted he must have, and whatever it was I gave him without
-question, land, money, houses, until at last he asked a thing
-which I could not give. He asked for Alice.
-
-"His son, you see, had grown up, and so had my girl, and as I was
-known to be in weak health, it seemed a fine stroke to him that
-his lad should step into the whole property. But there I was
-firm. I would not have his cursed stock mixed with mine; not that
-I had any dislike to the lad, but his blood was in him, and that
-was enough. I stood firm. McCarthy threatened. I braved him to do
-his worst. We were to meet at the pool midway between our houses
-to talk it over.
-
-"When I went down there I found him talking with his son, so I
-smoked a cigar and waited behind a tree until he should be alone.
-But as I listened to his talk all that was black and bitter in
-me seemed to come uppermost. He was urging his son to marry my
-daughter with as little regard for what she might think as if she
-were a slut from off the streets. It drove me mad to think that I
-and all that I held most dear should be in the power of such a
-man as this. Could I not snap the bond? I was already a dying and
-a desperate man. Though clear of mind and fairly strong of limb,
-I knew that my own fate was sealed. But my memory and my girl!
-Both could be saved if I could but silence that foul tongue. I
-did it, Mr. Holmes. I would do it again. Deeply as I have sinned,
-I have led a life of martyrdom to atone for it. But that my girl
-should be entangled in the same meshes which held me was more
-than I could suffer. I struck him down with no more compunction
-than if he had been some foul and venomous beast. His cry brought
-back his son; but I had gained the cover of the wood, though I
-was forced to go back to fetch the cloak which I had dropped in
-my flight. That is the true story, gentlemen, of all that
-occurred."
-
-"Well, it is not for me to judge you," said Holmes as the old man
-signed the statement which had been drawn out. "I pray that we
-may never be exposed to such a temptation."
-
-"I pray not, sir. And what do you intend to do?"
-
-"In view of your health, nothing. You are yourself aware that you
-will soon have to answer for your deed at a higher court than the
-Assizes. I will keep your confession, and if McCarthy is
-condemned I shall be forced to use it. If not, it shall never be
-seen by mortal eye; and your secret, whether you be alive or
-dead, shall be safe with us."
-
-"Farewell, then," said the old man solemnly. "Your own deathbeds,
-when they come, will be the easier for the thought of the peace
-which you have given to mine." Tottering and shaking in all his
-giant frame, he stumbled slowly from the room.
-
-"God help us!" said Holmes after a long silence. "Why does fate
-play such tricks with poor, helpless worms? I never hear of such
-a case as this that I do not think of Baxter's words, and say,
-'There, but for the grace of God, goes Sherlock Holmes.'"
-
-James McCarthy was acquitted at the Assizes on the strength of a
-number of objections which had been drawn out by Holmes and
-submitted to the defending counsel. Old Turner lived for seven
-months after our interview, but he is now dead; and there is
-every prospect that the son and daughter may come to live happily
-together in ignorance of the black cloud which rests upon their
-past.
-
-
-
-ADVENTURE V. THE FIVE ORANGE PIPS
-
-When I glance over my notes and records of the Sherlock Holmes
-cases between the years '82 and '90, I am faced by so many which
-present strange and interesting features that it is no easy
-matter to know which to choose and which to leave. Some, however,
-have already gained publicity through the papers, and others have
-not offered a field for those peculiar qualities which my friend
-possessed in so high a degree, and which it is the object of
-these papers to illustrate. Some, too, have baffled his
-analytical skill, and would be, as narratives, beginnings without
-an ending, while others have been but partially cleared up, and
-have their explanations founded rather upon conjecture and
-surmise than on that absolute logical proof which was so dear to
-him. There is, however, one of these last which was so remarkable
-in its details and so startling in its results that I am tempted
-to give some account of it in spite of the fact that there are
-points in connection with it which never have been, and probably
-never will be, entirely cleared up.
-
-The year '87 furnished us with a long series of cases of greater
-or less interest, of which I retain the records. Among my
-headings under this one twelve months I find an account of the
-adventure of the Paradol Chamber, of the Amateur Mendicant
-Society, who held a luxurious club in the lower vault of a
-furniture warehouse, of the facts connected with the loss of the
-British barque "Sophy Anderson", of the singular adventures of the
-Grice Patersons in the island of Uffa, and finally of the
-Camberwell poisoning case. In the latter, as may be remembered,
-Sherlock Holmes was able, by winding up the dead man's watch, to
-prove that it had been wound up two hours before, and that
-therefore the deceased had gone to bed within that time--a
-deduction which was of the greatest importance in clearing up the
-case. All these I may sketch out at some future date, but none of
-them present such singular features as the strange train of
-circumstances which I have now taken up my pen to describe.
-
-It was in the latter days of September, and the equinoctial gales
-had set in with exceptional violence. All day the wind had
-screamed and the rain had beaten against the windows, so that
-even here in the heart of great, hand-made London we were forced
-to raise our minds for the instant from the routine of life and
-to recognise the presence of those great elemental forces which
-shriek at mankind through the bars of his civilisation, like
-untamed beasts in a cage. As evening drew in, the storm grew
-higher and louder, and the wind cried and sobbed like a child in
-the chimney. Sherlock Holmes sat moodily at one side of the
-fireplace cross-indexing his records of crime, while I at the
-other was deep in one of Clark Russell's fine sea-stories until
-the howl of the gale from without seemed to blend with the text,
-and the splash of the rain to lengthen out into the long swash of
-the sea waves. My wife was on a visit to her mother's, and for a
-few days I was a dweller once more in my old quarters at Baker
-Street.
-
-"Why," said I, glancing up at my companion, "that was surely the
-bell. Who could come to-night? Some friend of yours, perhaps?"
-
-"Except yourself I have none," he answered. "I do not encourage
-visitors."
-
-"A client, then?"
-
-"If so, it is a serious case. Nothing less would bring a man out
-on such a day and at such an hour. But I take it that it is more
-likely to be some crony of the landlady's."
-
-Sherlock Holmes was wrong in his conjecture, however, for there
-came a step in the passage and a tapping at the door. He
-stretched out his long arm to turn the lamp away from himself and
-towards the vacant chair upon which a newcomer must sit.
-
-"Come in!" said he.
-
-The man who entered was young, some two-and-twenty at the
-outside, well-groomed and trimly clad, with something of
-refinement and delicacy in his bearing. The streaming umbrella
-which he held in his hand, and his long shining waterproof told
-of the fierce weather through which he had come. He looked about
-him anxiously in the glare of the lamp, and I could see that his
-face was pale and his eyes heavy, like those of a man who is
-weighed down with some great anxiety.
-
-"I owe you an apology," he said, raising his golden pince-nez to
-his eyes. "I trust that I am not intruding. I fear that I have
-brought some traces of the storm and rain into your snug
-chamber."
-
-"Give me your coat and umbrella," said Holmes. "They may rest
-here on the hook and will be dry presently. You have come up from
-the south-west, I see."
-
-"Yes, from Horsham."
-
-"That clay and chalk mixture which I see upon your toe caps is
-quite distinctive."
-
-"I have come for advice."
-
-"That is easily got."
-
-"And help."
-
-"That is not always so easy."
-
-"I have heard of you, Mr. Holmes. I heard from Major Prendergast
-how you saved him in the Tankerville Club scandal."
-
-"Ah, of course. He was wrongfully accused of cheating at cards."
-
-"He said that you could solve anything."
-
-"He said too much."
-
-"That you are never beaten."
-
-"I have been beaten four times--three times by men, and once by a
-woman."
-
-"But what is that compared with the number of your successes?"
-
-"It is true that I have been generally successful."
-
-"Then you may be so with me."
-
-"I beg that you will draw your chair up to the fire and favour me
-with some details as to your case."
-
-"It is no ordinary one."
-
-"None of those which come to me are. I am the last court of
-appeal."
-
-"And yet I question, sir, whether, in all your experience, you
-have ever listened to a more mysterious and inexplicable chain of
-events than those which have happened in my own family."
-
-"You fill me with interest," said Holmes. "Pray give us the
-essential facts from the commencement, and I can afterwards
-question you as to those details which seem to me to be most
-important."
-
-The young man pulled his chair up and pushed his wet feet out
-towards the blaze.
-
-"My name," said he, "is John Openshaw, but my own affairs have,
-as far as I can understand, little to do with this awful
-business. It is a hereditary matter; so in order to give you an
-idea of the facts, I must go back to the commencement of the
-affair.
-
-"You must know that my grandfather had two sons--my uncle Elias
-and my father Joseph. My father had a small factory at Coventry,
-which he enlarged at the time of the invention of bicycling. He
-was a patentee of the Openshaw unbreakable tire, and his business
-met with such success that he was able to sell it and to retire
-upon a handsome competence.
-
-"My uncle Elias emigrated to America when he was a young man and
-became a planter in Florida, where he was reported to have done
-very well. At the time of the war he fought in Jackson's army,
-and afterwards under Hood, where he rose to be a colonel. When
-Lee laid down his arms my uncle returned to his plantation, where
-he remained for three or four years. About 1869 or 1870 he came
-back to Europe and took a small estate in Sussex, near Horsham.
-He had made a very considerable fortune in the States, and his
-reason for leaving them was his aversion to the negroes, and his
-dislike of the Republican policy in extending the franchise to
-them. He was a singular man, fierce and quick-tempered, very
-foul-mouthed when he was angry, and of a most retiring
-disposition. During all the years that he lived at Horsham, I
-doubt if ever he set foot in the town. He had a garden and two or
-three fields round his house, and there he would take his
-exercise, though very often for weeks on end he would never leave
-his room. He drank a great deal of brandy and smoked very
-heavily, but he would see no society and did not want any
-friends, not even his own brother.
-
-"He didn't mind me; in fact, he took a fancy to me, for at the
-time when he saw me first I was a youngster of twelve or so. This
-would be in the year 1878, after he had been eight or nine years
-in England. He begged my father to let me live with him and he
-was very kind to me in his way. When he was sober he used to be
-fond of playing backgammon and draughts with me, and he would
-make me his representative both with the servants and with the
-tradespeople, so that by the time that I was sixteen I was quite
-master of the house. I kept all the keys and could go where I
-liked and do what I liked, so long as I did not disturb him in
-his privacy. There was one singular exception, however, for he
-had a single room, a lumber-room up among the attics, which was
-invariably locked, and which he would never permit either me or
-anyone else to enter. With a boy's curiosity I have peeped
-through the keyhole, but I was never able to see more than such a
-collection of old trunks and bundles as would be expected in such
-a room.
-
-"One day--it was in March, 1883--a letter with a foreign stamp
-lay upon the table in front of the colonel's plate. It was not a
-common thing for him to receive letters, for his bills were all
-paid in ready money, and he had no friends of any sort. 'From
-India!' said he as he took it up, 'Pondicherry postmark! What can
-this be?' Opening it hurriedly, out there jumped five little
-dried orange pips, which pattered down upon his plate. I began to
-laugh at this, but the laugh was struck from my lips at the sight
-of his face. His lip had fallen, his eyes were protruding, his
-skin the colour of putty, and he glared at the envelope which he
-still held in his trembling hand, 'K. K. K.!' he shrieked, and
-then, 'My God, my God, my sins have overtaken me!'
-
-"'What is it, uncle?' I cried.
-
-"'Death,' said he, and rising from the table he retired to his
-room, leaving me palpitating with horror. I took up the envelope
-and saw scrawled in red ink upon the inner flap, just above the
-gum, the letter K three times repeated. There was nothing else
-save the five dried pips. What could be the reason of his
-overpowering terror? I left the breakfast-table, and as I
-ascended the stair I met him coming down with an old rusty key,
-which must have belonged to the attic, in one hand, and a small
-brass box, like a cashbox, in the other.
-
-"'They may do what they like, but I'll checkmate them still,'
-said he with an oath. 'Tell Mary that I shall want a fire in my
-room to-day, and send down to Fordham, the Horsham lawyer.'
-
-"I did as he ordered, and when the lawyer arrived I was asked to
-step up to the room. The fire was burning brightly, and in the
-grate there was a mass of black, fluffy ashes, as of burned
-paper, while the brass box stood open and empty beside it. As I
-glanced at the box I noticed, with a start, that upon the lid was
-printed the treble K which I had read in the morning upon the
-envelope.
-
-"'I wish you, John,' said my uncle, 'to witness my will. I leave
-my estate, with all its advantages and all its disadvantages, to
-my brother, your father, whence it will, no doubt, descend to
-you. If you can enjoy it in peace, well and good! If you find you
-cannot, take my advice, my boy, and leave it to your deadliest
-enemy. I am sorry to give you such a two-edged thing, but I can't
-say what turn things are going to take. Kindly sign the paper
-where Mr. Fordham shows you.'
-
-"I signed the paper as directed, and the lawyer took it away with
-him. The singular incident made, as you may think, the deepest
-impression upon me, and I pondered over it and turned it every
-way in my mind without being able to make anything of it. Yet I
-could not shake off the vague feeling of dread which it left
-behind, though the sensation grew less keen as the weeks passed
-and nothing happened to disturb the usual routine of our lives. I
-could see a change in my uncle, however. He drank more than ever,
-and he was less inclined for any sort of society. Most of his
-time he would spend in his room, with the door locked upon the
-inside, but sometimes he would emerge in a sort of drunken frenzy
-and would burst out of the house and tear about the garden with a
-revolver in his hand, screaming out that he was afraid of no man,
-and that he was not to be cooped up, like a sheep in a pen, by
-man or devil. When these hot fits were over, however, he would
-rush tumultuously in at the door and lock and bar it behind him,
-like a man who can brazen it out no longer against the terror
-which lies at the roots of his soul. At such times I have seen
-his face, even on a cold day, glisten with moisture, as though it
-were new raised from a basin.
-
-"Well, to come to an end of the matter, Mr. Holmes, and not to
-abuse your patience, there came a night when he made one of those
-drunken sallies from which he never came back. We found him, when
-we went to search for him, face downward in a little
-green-scummed pool, which lay at the foot of the garden. There
-was no sign of any violence, and the water was but two feet deep,
-so that the jury, having regard to his known eccentricity,
-brought in a verdict of 'suicide.' But I, who knew how he winced
-from the very thought of death, had much ado to persuade myself
-that he had gone out of his way to meet it. The matter passed,
-however, and my father entered into possession of the estate, and
-of some 14,000 pounds, which lay to his credit at the bank."
-
-"One moment," Holmes interposed, "your statement is, I foresee,
-one of the most remarkable to which I have ever listened. Let me
-have the date of the reception by your uncle of the letter, and
-the date of his supposed suicide."
-
-"The letter arrived on March 10, 1883. His death was seven weeks
-later, upon the night of May 2nd."
-
-"Thank you. Pray proceed."
-
-"When my father took over the Horsham property, he, at my
-request, made a careful examination of the attic, which had been
-always locked up. We found the brass box there, although its
-contents had been destroyed. On the inside of the cover was a
-paper label, with the initials of K. K. K. repeated upon it, and
-'Letters, memoranda, receipts, and a register' written beneath.
-These, we presume, indicated the nature of the papers which had
-been destroyed by Colonel Openshaw. For the rest, there was
-nothing of much importance in the attic save a great many
-scattered papers and note-books bearing upon my uncle's life in
-America. Some of them were of the war time and showed that he had
-done his duty well and had borne the repute of a brave soldier.
-Others were of a date during the reconstruction of the Southern
-states, and were mostly concerned with politics, for he had
-evidently taken a strong part in opposing the carpet-bag
-politicians who had been sent down from the North.
-
-"Well, it was the beginning of '84 when my father came to live at
-Horsham, and all went as well as possible with us until the
-January of '85. On the fourth day after the new year I heard my
-father give a sharp cry of surprise as we sat together at the
-breakfast-table. There he was, sitting with a newly opened
-envelope in one hand and five dried orange pips in the
-outstretched palm of the other one. He had always laughed at what
-he called my cock-and-bull story about the colonel, but he looked
-very scared and puzzled now that the same thing had come upon
-himself.
-
-"'Why, what on earth does this mean, John?' he stammered.
-
-"My heart had turned to lead. 'It is K. K. K.,' said I.
-
-"He looked inside the envelope. 'So it is,' he cried. 'Here are
-the very letters. But what is this written above them?'
-
-"'Put the papers on the sundial,' I read, peeping over his
-shoulder.
-
-"'What papers? What sundial?' he asked.
-
-"'The sundial in the garden. There is no other,' said I; 'but the
-papers must be those that are destroyed.'
-
-"'Pooh!' said he, gripping hard at his courage. 'We are in a
-civilised land here, and we can't have tomfoolery of this kind.
-Where does the thing come from?'
-
-"'From Dundee,' I answered, glancing at the postmark.
-
-"'Some preposterous practical joke,' said he. 'What have I to do
-with sundials and papers? I shall take no notice of such
-nonsense.'
-
-"'I should certainly speak to the police,' I said.
-
-"'And be laughed at for my pains. Nothing of the sort.'
-
-"'Then let me do so?'
-
-"'No, I forbid you. I won't have a fuss made about such
-nonsense.'
-
-"It was in vain to argue with him, for he was a very obstinate
-man. I went about, however, with a heart which was full of
-forebodings.
-
-"On the third day after the coming of the letter my father went
-from home to visit an old friend of his, Major Freebody, who is
-in command of one of the forts upon Portsdown Hill. I was glad
-that he should go, for it seemed to me that he was farther from
-danger when he was away from home. In that, however, I was in
-error. Upon the second day of his absence I received a telegram
-from the major, imploring me to come at once. My father had
-fallen over one of the deep chalk-pits which abound in the
-neighbourhood, and was lying senseless, with a shattered skull. I
-hurried to him, but he passed away without having ever recovered
-his consciousness. He had, as it appears, been returning from
-Fareham in the twilight, and as the country was unknown to him,
-and the chalk-pit unfenced, the jury had no hesitation in
-bringing in a verdict of 'death from accidental causes.'
-Carefully as I examined every fact connected with his death, I
-was unable to find anything which could suggest the idea of
-murder. There were no signs of violence, no footmarks, no
-robbery, no record of strangers having been seen upon the roads.
-And yet I need not tell you that my mind was far from at ease,
-and that I was well-nigh certain that some foul plot had been
-woven round him.
-
-"In this sinister way I came into my inheritance. You will ask me
-why I did not dispose of it? I answer, because I was well
-convinced that our troubles were in some way dependent upon an
-incident in my uncle's life, and that the danger would be as
-pressing in one house as in another.
-
-"It was in January, '85, that my poor father met his end, and two
-years and eight months have elapsed since then. During that time
-I have lived happily at Horsham, and I had begun to hope that
-this curse had passed away from the family, and that it had ended
-with the last generation. I had begun to take comfort too soon,
-however; yesterday morning the blow fell in the very shape in
-which it had come upon my father."
-
-The young man took from his waistcoat a crumpled envelope, and
-turning to the table he shook out upon it five little dried
-orange pips.
-
-"This is the envelope," he continued. "The postmark is
-London--eastern division. Within are the very words which were
-upon my father's last message: 'K. K. K.'; and then 'Put the
-papers on the sundial.'"
-
-"What have you done?" asked Holmes.
-
-"Nothing."
-
-"Nothing?"
-
-"To tell the truth"--he sank his face into his thin, white
-hands--"I have felt helpless. I have felt like one of those poor
-rabbits when the snake is writhing towards it. I seem to be in
-the grasp of some resistless, inexorable evil, which no foresight
-and no precautions can guard against."
-
-"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are
-lost. Nothing but energy can save you. This is no time for
-despair."
-
-"I have seen the police."
-
-"Ah!"
-
-"But they listened to my story with a smile. I am convinced that
-the inspector has formed the opinion that the letters are all
-practical jokes, and that the deaths of my relations were really
-accidents, as the jury stated, and were not to be connected with
-the warnings."
-
-Holmes shook his clenched hands in the air. "Incredible
-imbecility!" he cried.
-
-"They have, however, allowed me a policeman, who may remain in
-the house with me."
-
-"Has he come with you to-night?"
-
-"No. His orders were to stay in the house."
-
-Again Holmes raved in the air.
-
-"Why did you come to me," he cried, "and, above all, why did you
-not come at once?"
-
-"I did not know. It was only to-day that I spoke to Major
-Prendergast about my troubles and was advised by him to come to
-you."
-
-"It is really two days since you had the letter. We should have
-acted before this. You have no further evidence, I suppose, than
-that which you have placed before us--no suggestive detail which
-might help us?"
-
-"There is one thing," said John Openshaw. He rummaged in his coat
-pocket, and, drawing out a piece of discoloured, blue-tinted
-paper, he laid it out upon the table. "I have some remembrance,"
-said he, "that on the day when my uncle burned the papers I
-observed that the small, unburned margins which lay amid the
-ashes were of this particular colour. I found this single sheet
-upon the floor of his room, and I am inclined to think that it
-may be one of the papers which has, perhaps, fluttered out from
-among the others, and in that way has escaped destruction. Beyond
-the mention of pips, I do not see that it helps us much. I think
-myself that it is a page from some private diary. The writing is
-undoubtedly my uncle's."
-
-Holmes moved the lamp, and we both bent over the sheet of paper,
-which showed by its ragged edge that it had indeed been torn from
-a book. It was headed, "March, 1869," and beneath were the
-following enigmatical notices:
-
-"4th. Hudson came. Same old platform.
-
-"7th. Set the pips on McCauley, Paramore, and
- John Swain, of St. Augustine.
-
-"9th. McCauley cleared.
-
-"10th. John Swain cleared.
-
-"12th. Visited Paramore. All well."
-
-"Thank you!" said Holmes, folding up the paper and returning it
-to our visitor. "And now you must on no account lose another
-instant. We cannot spare time even to discuss what you have told
-me. You must get home instantly and act."
-
-"What shall I do?"
-
-"There is but one thing to do. It must be done at once. You must
-put this piece of paper which you have shown us into the brass
-box which you have described. You must also put in a note to say
-that all the other papers were burned by your uncle, and that
-this is the only one which remains. You must assert that in such
-words as will carry conviction with them. Having done this, you
-must at once put the box out upon the sundial, as directed. Do
-you understand?"
-
-"Entirely."
-
-"Do not think of revenge, or anything of the sort, at present. I
-think that we may gain that by means of the law; but we have our
-web to weave, while theirs is already woven. The first
-consideration is to remove the pressing danger which threatens
-you. The second is to clear up the mystery and to punish the
-guilty parties."
-
-"I thank you," said the young man, rising and pulling on his
-overcoat. "You have given me fresh life and hope. I shall
-certainly do as you advise."
-
-"Do not lose an instant. And, above all, take care of yourself in
-the meanwhile, for I do not think that there can be a doubt that
-you are threatened by a very real and imminent danger. How do you
-go back?"
-
-"By train from Waterloo."
-
-"It is not yet nine. The streets will be crowded, so I trust that
-you may be in safety. And yet you cannot guard yourself too
-closely."
-
-"I am armed."
-
-"That is well. To-morrow I shall set to work upon your case."
-
-"I shall see you at Horsham, then?"
-
-"No, your secret lies in London. It is there that I shall seek
-it."
-
-"Then I shall call upon you in a day, or in two days, with news
-as to the box and the papers. I shall take your advice in every
-particular." He shook hands with us and took his leave. Outside
-the wind still screamed and the rain splashed and pattered
-against the windows. This strange, wild story seemed to have come
-to us from amid the mad elements--blown in upon us like a sheet
-of sea-weed in a gale--and now to have been reabsorbed by them
-once more.
-
-Sherlock Holmes sat for some time in silence, with his head sunk
-forward and his eyes bent upon the red glow of the fire. Then he
-lit his pipe, and leaning back in his chair he watched the blue
-smoke-rings as they chased each other up to the ceiling.
-
-"I think, Watson," he remarked at last, "that of all our cases we
-have had none more fantastic than this."
-
-"Save, perhaps, the Sign of Four."
-
-"Well, yes. Save, perhaps, that. And yet this John Openshaw seems
-to me to be walking amid even greater perils than did the
-Sholtos."
-
-"But have you," I asked, "formed any definite conception as to
-what these perils are?"
-
-"There can be no question as to their nature," he answered.
-
-"Then what are they? Who is this K. K. K., and why does he pursue
-this unhappy family?"
-
-Sherlock Holmes closed his eyes and placed his elbows upon the
-arms of his chair, with his finger-tips together. "The ideal
-reasoner," he remarked, "would, when he had once been shown a
-single fact in all its bearings, deduce from it not only all the
-chain of events which led up to it but also all the results which
-would follow from it. As Cuvier could correctly describe a whole
-animal by the contemplation of a single bone, so the observer who
-has thoroughly understood one link in a series of incidents
-should be able to accurately state all the other ones, both
-before and after. We have not yet grasped the results which the
-reason alone can attain to. Problems may be solved in the study
-which have baffled all those who have sought a solution by the
-aid of their senses. To carry the art, however, to its highest
-pitch, it is necessary that the reasoner should be able to
-utilise all the facts which have come to his knowledge; and this
-in itself implies, as you will readily see, a possession of all
-knowledge, which, even in these days of free education and
-encyclopaedias, is a somewhat rare accomplishment. It is not so
-impossible, however, that a man should possess all knowledge
-which is likely to be useful to him in his work, and this I have
-endeavoured in my case to do. If I remember rightly, you on one
-occasion, in the early days of our friendship, defined my limits
-in a very precise fashion."
-
-"Yes," I answered, laughing. "It was a singular document.
-Philosophy, astronomy, and politics were marked at zero, I
-remember. Botany variable, geology profound as regards the
-mud-stains from any region within fifty miles of town, chemistry
-eccentric, anatomy unsystematic, sensational literature and crime
-records unique, violin-player, boxer, swordsman, lawyer, and
-self-poisoner by cocaine and tobacco. Those, I think, were the
-main points of my analysis."
-
-Holmes grinned at the last item. "Well," he said, "I say now, as
-I said then, that a man should keep his little brain-attic
-stocked with all the furniture that he is likely to use, and the
-rest he can put away in the lumber-room of his library, where he
-can get it if he wants it. Now, for such a case as the one which
-has been submitted to us to-night, we need certainly to muster
-all our resources. Kindly hand me down the letter K of the
-'American Encyclopaedia' which stands upon the shelf beside you.
-Thank you. Now let us consider the situation and see what may be
-deduced from it. In the first place, we may start with a strong
-presumption that Colonel Openshaw had some very strong reason for
-leaving America. Men at his time of life do not change all their
-habits and exchange willingly the charming climate of Florida for
-the lonely life of an English provincial town. His extreme love
-of solitude in England suggests the idea that he was in fear of
-someone or something, so we may assume as a working hypothesis
-that it was fear of someone or something which drove him from
-America. As to what it was he feared, we can only deduce that by
-considering the formidable letters which were received by himself
-and his successors. Did you remark the postmarks of those
-letters?"
-
-"The first was from Pondicherry, the second from Dundee, and the
-third from London."
-
-"From East London. What do you deduce from that?"
-
-"They are all seaports. That the writer was on board of a ship."
-
-"Excellent. We have already a clue. There can be no doubt that
-the probability--the strong probability--is that the writer was
-on board of a ship. And now let us consider another point. In the
-case of Pondicherry, seven weeks elapsed between the threat and
-its fulfilment, in Dundee it was only some three or four days.
-Does that suggest anything?"
-
-"A greater distance to travel."
-
-"But the letter had also a greater distance to come."
-
-"Then I do not see the point."
-
-"There is at least a presumption that the vessel in which the man
-or men are is a sailing-ship. It looks as if they always send
-their singular warning or token before them when starting upon
-their mission. You see how quickly the deed followed the sign
-when it came from Dundee. If they had come from Pondicherry in a
-steamer they would have arrived almost as soon as their letter.
-But, as a matter of fact, seven weeks elapsed. I think that those
-seven weeks represented the difference between the mail-boat which
-brought the letter and the sailing vessel which brought the
-writer."
-
-"It is possible."
-
-"More than that. It is probable. And now you see the deadly
-urgency of this new case, and why I urged young Openshaw to
-caution. The blow has always fallen at the end of the time which
-it would take the senders to travel the distance. But this one
-comes from London, and therefore we cannot count upon delay."
-
-"Good God!" I cried. "What can it mean, this relentless
-persecution?"
-
-"The papers which Openshaw carried are obviously of vital
-importance to the person or persons in the sailing-ship. I think
-that it is quite clear that there must be more than one of them.
-A single man could not have carried out two deaths in such a way
-as to deceive a coroner's jury. There must have been several in
-it, and they must have been men of resource and determination.
-Their papers they mean to have, be the holder of them who it may.
-In this way you see K. K. K. ceases to be the initials of an
-individual and becomes the badge of a society."
-
-"But of what society?"
-
-"Have you never--" said Sherlock Holmes, bending forward and
-sinking his voice--"have you never heard of the Ku Klux Klan?"
-
-"I never have."
-
-Holmes turned over the leaves of the book upon his knee. "Here it
-is," said he presently:
-
-"'Ku Klux Klan. A name derived from the fanciful resemblance to
-the sound produced by cocking a rifle. This terrible secret
-society was formed by some ex-Confederate soldiers in the
-Southern states after the Civil War, and it rapidly formed local
-branches in different parts of the country, notably in Tennessee,
-Louisiana, the Carolinas, Georgia, and Florida. Its power was
-used for political purposes, principally for the terrorising of
-the negro voters and the murdering and driving from the country
-of those who were opposed to its views. Its outrages were usually
-preceded by a warning sent to the marked man in some fantastic
-but generally recognised shape--a sprig of oak-leaves in some
-parts, melon seeds or orange pips in others. On receiving this
-the victim might either openly abjure his former ways, or might
-fly from the country. If he braved the matter out, death would
-unfailingly come upon him, and usually in some strange and
-unforeseen manner. So perfect was the organisation of the
-society, and so systematic its methods, that there is hardly a
-case upon record where any man succeeded in braving it with
-impunity, or in which any of its outrages were traced home to the
-perpetrators. For some years the organisation flourished in spite
-of the efforts of the United States government and of the better
-classes of the community in the South. Eventually, in the year
-1869, the movement rather suddenly collapsed, although there have
-been sporadic outbreaks of the same sort since that date.'
-
-"You will observe," said Holmes, laying down the volume, "that
-the sudden breaking up of the society was coincident with the
-disappearance of Openshaw from America with their papers. It may
-well have been cause and effect. It is no wonder that he and his
-family have some of the more implacable spirits upon their track.
-You can understand that this register and diary may implicate
-some of the first men in the South, and that there may be many
-who will not sleep easy at night until it is recovered."
-
-"Then the page we have seen--"
-
-"Is such as we might expect. It ran, if I remember right, 'sent
-the pips to A, B, and C'--that is, sent the society's warning to
-them. Then there are successive entries that A and B cleared, or
-left the country, and finally that C was visited, with, I fear, a
-sinister result for C. Well, I think, Doctor, that we may let
-some light into this dark place, and I believe that the only
-chance young Openshaw has in the meantime is to do what I have
-told him. There is nothing more to be said or to be done
-to-night, so hand me over my violin and let us try to forget for
-half an hour the miserable weather and the still more miserable
-ways of our fellow-men."
-
-
-It had cleared in the morning, and the sun was shining with a
-subdued brightness through the dim veil which hangs over the
-great city. Sherlock Holmes was already at breakfast when I came
-down.
-
-"You will excuse me for not waiting for you," said he; "I have, I
-foresee, a very busy day before me in looking into this case of
-young Openshaw's."
-
-"What steps will you take?" I asked.
-
-"It will very much depend upon the results of my first inquiries.
-I may have to go down to Horsham, after all."
-
-"You will not go there first?"
-
-"No, I shall commence with the City. Just ring the bell and the
-maid will bring up your coffee."
-
-As I waited, I lifted the unopened newspaper from the table and
-glanced my eye over it. It rested upon a heading which sent a
-chill to my heart.
-
-"Holmes," I cried, "you are too late."
-
-"Ah!" said he, laying down his cup, "I feared as much. How was it
-done?" He spoke calmly, but I could see that he was deeply moved.
-
-"My eye caught the name of Openshaw, and the heading 'Tragedy
-Near Waterloo Bridge.' Here is the account:
-
-"Between nine and ten last night Police-Constable Cook, of the H
-Division, on duty near Waterloo Bridge, heard a cry for help and
-a splash in the water. The night, however, was extremely dark and
-stormy, so that, in spite of the help of several passers-by, it
-was quite impossible to effect a rescue. The alarm, however, was
-given, and, by the aid of the water-police, the body was
-eventually recovered. It proved to be that of a young gentleman
-whose name, as it appears from an envelope which was found in his
-pocket, was John Openshaw, and whose residence is near Horsham.
-It is conjectured that he may have been hurrying down to catch
-the last train from Waterloo Station, and that in his haste and
-the extreme darkness he missed his path and walked over the edge
-of one of the small landing-places for river steamboats. The body
-exhibited no traces of violence, and there can be no doubt that
-the deceased had been the victim of an unfortunate accident,
-which should have the effect of calling the attention of the
-authorities to the condition of the riverside landing-stages."
-
-We sat in silence for some minutes, Holmes more depressed and
-shaken than I had ever seen him.
-
-"That hurts my pride, Watson," he said at last. "It is a petty
-feeling, no doubt, but it hurts my pride. It becomes a personal
-matter with me now, and, if God sends me health, I shall set my
-hand upon this gang. That he should come to me for help, and that
-I should send him away to his death--!" He sprang from his chair
-and paced about the room in uncontrollable agitation, with a
-flush upon his sallow cheeks and a nervous clasping and
-unclasping of his long thin hands.
-
-"They must be cunning devils," he exclaimed at last. "How could
-they have decoyed him down there? The Embankment is not on the
-direct line to the station. The bridge, no doubt, was too
-crowded, even on such a night, for their purpose. Well, Watson,
-we shall see who will win in the long run. I am going out now!"
-
-"To the police?"
-
-"No; I shall be my own police. When I have spun the web they may
-take the flies, but not before."
-
-All day I was engaged in my professional work, and it was late in
-the evening before I returned to Baker Street. Sherlock Holmes
-had not come back yet. It was nearly ten o'clock before he
-entered, looking pale and worn. He walked up to the sideboard,
-and tearing a piece from the loaf he devoured it voraciously,
-washing it down with a long draught of water.
-
-"You are hungry," I remarked.
-
-"Starving. It had escaped my memory. I have had nothing since
-breakfast."
-
-"Nothing?"
-
-"Not a bite. I had no time to think of it."
-
-"And how have you succeeded?"
-
-"Well."
-
-"You have a clue?"
-
-"I have them in the hollow of my hand. Young Openshaw shall not
-long remain unavenged. Why, Watson, let us put their own devilish
-trade-mark upon them. It is well thought of!"
-
-"What do you mean?"
-
-He took an orange from the cupboard, and tearing it to pieces he
-squeezed out the pips upon the table. Of these he took five and
-thrust them into an envelope. On the inside of the flap he wrote
-"S. H. for J. O." Then he sealed it and addressed it to "Captain
-James Calhoun, Barque 'Lone Star,' Savannah, Georgia."
-
-"That will await him when he enters port," said he, chuckling.
-"It may give him a sleepless night. He will find it as sure a
-precursor of his fate as Openshaw did before him."
-
-"And who is this Captain Calhoun?"
-
-"The leader of the gang. I shall have the others, but he first."
-
-"How did you trace it, then?"
-
-He took a large sheet of paper from his pocket, all covered with
-dates and names.
-
-"I have spent the whole day," said he, "over Lloyd's registers
-and files of the old papers, following the future career of every
-vessel which touched at Pondicherry in January and February in
-'83. There were thirty-six ships of fair tonnage which were
-reported there during those months. Of these, one, the 'Lone Star,'
-instantly attracted my attention, since, although it was reported
-as having cleared from London, the name is that which is given to
-one of the states of the Union."
-
-"Texas, I think."
-
-"I was not and am not sure which; but I knew that the ship must
-have an American origin."
-
-"What then?"
-
-"I searched the Dundee records, and when I found that the barque
-'Lone Star' was there in January, '85, my suspicion became a
-certainty. I then inquired as to the vessels which lay at present
-in the port of London."
-
-"Yes?"
-
-"The 'Lone Star' had arrived here last week. I went down to the
-Albert Dock and found that she had been taken down the river by
-the early tide this morning, homeward bound to Savannah. I wired
-to Gravesend and learned that she had passed some time ago, and
-as the wind is easterly I have no doubt that she is now past the
-Goodwins and not very far from the Isle of Wight."
-
-"What will you do, then?"
-
-"Oh, I have my hand upon him. He and the two mates, are as I
-learn, the only native-born Americans in the ship. The others are
-Finns and Germans. I know, also, that they were all three away
-from the ship last night. I had it from the stevedore who has
-been loading their cargo. By the time that their sailing-ship
-reaches Savannah the mail-boat will have carried this letter, and
-the cable will have informed the police of Savannah that these
-three gentlemen are badly wanted here upon a charge of murder."
-
-There is ever a flaw, however, in the best laid of human plans,
-and the murderers of John Openshaw were never to receive the
-orange pips which would show them that another, as cunning and as
-resolute as themselves, was upon their track. Very long and very
-severe were the equinoctial gales that year. We waited long for
-news of the "Lone Star" of Savannah, but none ever reached us. We
-did at last hear that somewhere far out in the Atlantic a
-shattered stern-post of a boat was seen swinging in the trough
-of a wave, with the letters "L. S." carved upon it, and that is
-all which we shall ever know of the fate of the "Lone Star."
-
-
-
-ADVENTURE VI. THE MAN WITH THE TWISTED LIP
-
-Isa Whitney, brother of the late Elias Whitney, D.D., Principal
-of the Theological College of St. George's, was much addicted to
-opium. The habit grew upon him, as I understand, from some
-foolish freak when he was at college; for having read De
-Quincey's description of his dreams and sensations, he had
-drenched his tobacco with laudanum in an attempt to produce the
-same effects. He found, as so many more have done, that the
-practice is easier to attain than to get rid of, and for many
-years he continued to be a slave to the drug, an object of
-mingled horror and pity to his friends and relatives. I can see
-him now, with yellow, pasty face, drooping lids, and pin-point
-pupils, all huddled in a chair, the wreck and ruin of a noble
-man.
-
-One night--it was in June, '89--there came a ring to my bell,
-about the hour when a man gives his first yawn and glances at the
-clock. I sat up in my chair, and my wife laid her needle-work
-down in her lap and made a little face of disappointment.
-
-"A patient!" said she. "You'll have to go out."
-
-I groaned, for I was newly come back from a weary day.
-
-We heard the door open, a few hurried words, and then quick steps
-upon the linoleum. Our own door flew open, and a lady, clad in
-some dark-coloured stuff, with a black veil, entered the room.
-
-"You will excuse my calling so late," she began, and then,
-suddenly losing her self-control, she ran forward, threw her arms
-about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in
-such trouble!" she cried; "I do so want a little help."
-
-"Why," said my wife, pulling up her veil, "it is Kate Whitney.
-How you startled me, Kate! I had not an idea who you were when
-you came in."
-
-"I didn't know what to do, so I came straight to you." That was
-always the way. Folk who were in grief came to my wife like birds
-to a light-house.
-
-"It was very sweet of you to come. Now, you must have some wine
-and water, and sit here comfortably and tell us all about it. Or
-should you rather that I sent James off to bed?"
-
-"Oh, no, no! I want the doctor's advice and help, too. It's about
-Isa. He has not been home for two days. I am so frightened about
-him!"
-
-It was not the first time that she had spoken to us of her
-husband's trouble, to me as a doctor, to my wife as an old friend
-and school companion. We soothed and comforted her by such words
-as we could find. Did she know where her husband was? Was it
-possible that we could bring him back to her?
-
-It seems that it was. She had the surest information that of late
-he had, when the fit was on him, made use of an opium den in the
-farthest east of the City. Hitherto his orgies had always been
-confined to one day, and he had come back, twitching and
-shattered, in the evening. But now the spell had been upon him
-eight-and-forty hours, and he lay there, doubtless among the
-dregs of the docks, breathing in the poison or sleeping off the
-effects. There he was to be found, she was sure of it, at the Bar
-of Gold, in Upper Swandam Lane. But what was she to do? How could
-she, a young and timid woman, make her way into such a place and
-pluck her husband out from among the ruffians who surrounded him?
-
-There was the case, and of course there was but one way out of
-it. Might I not escort her to this place? And then, as a second
-thought, why should she come at all? I was Isa Whitney's medical
-adviser, and as such I had influence over him. I could manage it
-better if I were alone. I promised her on my word that I would
-send him home in a cab within two hours if he were indeed at the
-address which she had given me. And so in ten minutes I had left
-my armchair and cheery sitting-room behind me, and was speeding
-eastward in a hansom on a strange errand, as it seemed to me at
-the time, though the future only could show how strange it was to
-be.
-
-But there was no great difficulty in the first stage of my
-adventure. Upper Swandam Lane is a vile alley lurking behind the
-high wharves which line the north side of the river to the east
-of London Bridge. Between a slop-shop and a gin-shop, approached
-by a steep flight of steps leading down to a black gap like the
-mouth of a cave, I found the den of which I was in search.
-Ordering my cab to wait, I passed down the steps, worn hollow in
-the centre by the ceaseless tread of drunken feet; and by the
-light of a flickering oil-lamp above the door I found the latch
-and made my way into a long, low room, thick and heavy with the
-brown opium smoke, and terraced with wooden berths, like the
-forecastle of an emigrant ship.
-
-Through the gloom one could dimly catch a glimpse of bodies lying
-in strange fantastic poses, bowed shoulders, bent knees, heads
-thrown back, and chins pointing upward, with here and there a
-dark, lack-lustre eye turned upon the newcomer. Out of the black
-shadows there glimmered little red circles of light, now bright,
-now faint, as the burning poison waxed or waned in the bowls of
-the metal pipes. The most lay silent, but some muttered to
-themselves, and others talked together in a strange, low,
-monotonous voice, their conversation coming in gushes, and then
-suddenly tailing off into silence, each mumbling out his own
-thoughts and paying little heed to the words of his neighbour. At
-the farther end was a small brazier of burning charcoal, beside
-which on a three-legged wooden stool there sat a tall, thin old
-man, with his jaw resting upon his two fists, and his elbows upon
-his knees, staring into the fire.
-
-As I entered, a sallow Malay attendant had hurried up with a pipe
-for me and a supply of the drug, beckoning me to an empty berth.
-
-"Thank you. I have not come to stay," said I. "There is a friend
-of mine here, Mr. Isa Whitney, and I wish to speak with him."
-
-There was a movement and an exclamation from my right, and
-peering through the gloom, I saw Whitney, pale, haggard, and
-unkempt, staring out at me.
-
-"My God! It's Watson," said he. He was in a pitiable state of
-reaction, with every nerve in a twitter. "I say, Watson, what
-o'clock is it?"
-
-"Nearly eleven."
-
-"Of what day?"
-
-"Of Friday, June 19th."
-
-"Good heavens! I thought it was Wednesday. It is Wednesday. What
-d'you want to frighten a chap for?" He sank his face onto his
-arms and began to sob in a high treble key.
-
-"I tell you that it is Friday, man. Your wife has been waiting
-this two days for you. You should be ashamed of yourself!"
-
-"So I am. But you've got mixed, Watson, for I have only been here
-a few hours, three pipes, four pipes--I forget how many. But I'll
-go home with you. I wouldn't frighten Kate--poor little Kate.
-Give me your hand! Have you a cab?"
-
-"Yes, I have one waiting."
-
-"Then I shall go in it. But I must owe something. Find what I
-owe, Watson. I am all off colour. I can do nothing for myself."
-
-I walked down the narrow passage between the double row of
-sleepers, holding my breath to keep out the vile, stupefying
-fumes of the drug, and looking about for the manager. As I passed
-the tall man who sat by the brazier I felt a sudden pluck at my
-skirt, and a low voice whispered, "Walk past me, and then look
-back at me." The words fell quite distinctly upon my ear. I
-glanced down. They could only have come from the old man at my
-side, and yet he sat now as absorbed as ever, very thin, very
-wrinkled, bent with age, an opium pipe dangling down from between
-his knees, as though it had dropped in sheer lassitude from his
-fingers. I took two steps forward and looked back. It took all my
-self-control to prevent me from breaking out into a cry of
-astonishment. He had turned his back so that none could see him
-but I. His form had filled out, his wrinkles were gone, the dull
-eyes had regained their fire, and there, sitting by the fire and
-grinning at my surprise, was none other than Sherlock Holmes. He
-made a slight motion to me to approach him, and instantly, as he
-turned his face half round to the company once more, subsided
-into a doddering, loose-lipped senility.
-
-"Holmes!" I whispered, "what on earth are you doing in this den?"
-
-"As low as you can," he answered; "I have excellent ears. If you
-would have the great kindness to get rid of that sottish friend
-of yours I should be exceedingly glad to have a little talk with
-you."
-
-"I have a cab outside."
-
-"Then pray send him home in it. You may safely trust him, for he
-appears to be too limp to get into any mischief. I should
-recommend you also to send a note by the cabman to your wife to
-say that you have thrown in your lot with me. If you will wait
-outside, I shall be with you in five minutes."
-
-It was difficult to refuse any of Sherlock Holmes' requests, for
-they were always so exceedingly definite, and put forward with
-such a quiet air of mastery. I felt, however, that when Whitney
-was once confined in the cab my mission was practically
-accomplished; and for the rest, I could not wish anything better
-than to be associated with my friend in one of those singular
-adventures which were the normal condition of his existence. In a
-few minutes I had written my note, paid Whitney's bill, led him
-out to the cab, and seen him driven through the darkness. In a
-very short time a decrepit figure had emerged from the opium den,
-and I was walking down the street with Sherlock Holmes. For two
-streets he shuffled along with a bent back and an uncertain foot.
-Then, glancing quickly round, he straightened himself out and
-burst into a hearty fit of laughter.
-
-"I suppose, Watson," said he, "that you imagine that I have added
-opium-smoking to cocaine injections, and all the other little
-weaknesses on which you have favoured me with your medical
-views."
-
-"I was certainly surprised to find you there."
-
-"But not more so than I to find you."
-
-"I came to find a friend."
-
-"And I to find an enemy."
-
-"An enemy?"
-
-"Yes; one of my natural enemies, or, shall I say, my natural
-prey. Briefly, Watson, I am in the midst of a very remarkable
-inquiry, and I have hoped to find a clue in the incoherent
-ramblings of these sots, as I have done before now. Had I been
-recognised in that den my life would not have been worth an
-hour's purchase; for I have used it before now for my own
-purposes, and the rascally Lascar who runs it has sworn to have
-vengeance upon me. There is a trap-door at the back of that
-building, near the corner of Paul's Wharf, which could tell some
-strange tales of what has passed through it upon the moonless
-nights."
-
-"What! You do not mean bodies?"
-
-"Ay, bodies, Watson. We should be rich men if we had 1000 pounds
-for every poor devil who has been done to death in that den. It
-is the vilest murder-trap on the whole riverside, and I fear that
-Neville St. Clair has entered it never to leave it more. But our
-trap should be here." He put his two forefingers between his
-teeth and whistled shrilly--a signal which was answered by a
-similar whistle from the distance, followed shortly by the rattle
-of wheels and the clink of horses' hoofs.
-
-"Now, Watson," said Holmes, as a tall dog-cart dashed up through
-the gloom, throwing out two golden tunnels of yellow light from
-its side lanterns. "You'll come with me, won't you?"
-
-"If I can be of use."
-
-"Oh, a trusty comrade is always of use; and a chronicler still
-more so. My room at The Cedars is a double-bedded one."
-
-"The Cedars?"
-
-"Yes; that is Mr. St. Clair's house. I am staying there while I
-conduct the inquiry."
-
-"Where is it, then?"
-
-"Near Lee, in Kent. We have a seven-mile drive before us."
-
-"But I am all in the dark."
-
-"Of course you are. You'll know all about it presently. Jump up
-here. All right, John; we shall not need you. Here's half a
-crown. Look out for me to-morrow, about eleven. Give her her
-head. So long, then!"
-
-He flicked the horse with his whip, and we dashed away through
-the endless succession of sombre and deserted streets, which
-widened gradually, until we were flying across a broad
-balustraded bridge, with the murky river flowing sluggishly
-beneath us. Beyond lay another dull wilderness of bricks and
-mortar, its silence broken only by the heavy, regular footfall of
-the policeman, or the songs and shouts of some belated party of
-revellers. A dull wrack was drifting slowly across the sky, and a
-star or two twinkled dimly here and there through the rifts of
-the clouds. Holmes drove in silence, with his head sunk upon his
-breast, and the air of a man who is lost in thought, while I sat
-beside him, curious to learn what this new quest might be which
-seemed to tax his powers so sorely, and yet afraid to break in
-upon the current of his thoughts. We had driven several miles,
-and were beginning to get to the fringe of the belt of suburban
-villas, when he shook himself, shrugged his shoulders, and lit up
-his pipe with the air of a man who has satisfied himself that he
-is acting for the best.
-
-"You have a grand gift of silence, Watson," said he. "It makes
-you quite invaluable as a companion. 'Pon my word, it is a great
-thing for me to have someone to talk to, for my own thoughts are
-not over-pleasant. I was wondering what I should say to this dear
-little woman to-night when she meets me at the door."
-
-"You forget that I know nothing about it."
-
-"I shall just have time to tell you the facts of the case before
-we get to Lee. It seems absurdly simple, and yet, somehow I can
-get nothing to go upon. There's plenty of thread, no doubt, but I
-can't get the end of it into my hand. Now, I'll state the case
-clearly and concisely to you, Watson, and maybe you can see a
-spark where all is dark to me."
-
-"Proceed, then."
-
-"Some years ago--to be definite, in May, 1884--there came to Lee
-a gentleman, Neville St. Clair by name, who appeared to have
-plenty of money. He took a large villa, laid out the grounds very
-nicely, and lived generally in good style. By degrees he made
-friends in the neighbourhood, and in 1887 he married the daughter
-of a local brewer, by whom he now has two children. He had no
-occupation, but was interested in several companies and went into
-town as a rule in the morning, returning by the 5:14 from Cannon
-Street every night. Mr. St. Clair is now thirty-seven years of
-age, is a man of temperate habits, a good husband, a very
-affectionate father, and a man who is popular with all who know
-him. I may add that his whole debts at the present moment, as far
-as we have been able to ascertain, amount to 88 pounds 10s., while
-he has 220 pounds standing to his credit in the Capital and
-Counties Bank. There is no reason, therefore, to think that money
-troubles have been weighing upon his mind.
-
-"Last Monday Mr. Neville St. Clair went into town rather earlier
-than usual, remarking before he started that he had two important
-commissions to perform, and that he would bring his little boy
-home a box of bricks. Now, by the merest chance, his wife
-received a telegram upon this same Monday, very shortly after his
-departure, to the effect that a small parcel of considerable
-value which she had been expecting was waiting for her at the
-offices of the Aberdeen Shipping Company. Now, if you are well up
-in your London, you will know that the office of the company is
-in Fresno Street, which branches out of Upper Swandam Lane, where
-you found me to-night. Mrs. St. Clair had her lunch, started for
-the City, did some shopping, proceeded to the company's office,
-got her packet, and found herself at exactly 4:35 walking through
-Swandam Lane on her way back to the station. Have you followed me
-so far?"
-
-"It is very clear."
-
-"If you remember, Monday was an exceedingly hot day, and Mrs. St.
-Clair walked slowly, glancing about in the hope of seeing a cab,
-as she did not like the neighbourhood in which she found herself.
-While she was walking in this way down Swandam Lane, she suddenly
-heard an ejaculation or cry, and was struck cold to see her
-husband looking down at her and, as it seemed to her, beckoning
-to her from a second-floor window. The window was open, and she
-distinctly saw his face, which she describes as being terribly
-agitated. He waved his hands frantically to her, and then
-vanished from the window so suddenly that it seemed to her that
-he had been plucked back by some irresistible force from behind.
-One singular point which struck her quick feminine eye was that
-although he wore some dark coat, such as he had started to town
-in, he had on neither collar nor necktie.
-
-"Convinced that something was amiss with him, she rushed down the
-steps--for the house was none other than the opium den in which
-you found me to-night--and running through the front room she
-attempted to ascend the stairs which led to the first floor. At
-the foot of the stairs, however, she met this Lascar scoundrel of
-whom I have spoken, who thrust her back and, aided by a Dane, who
-acts as assistant there, pushed her out into the street. Filled
-with the most maddening doubts and fears, she rushed down the
-lane and, by rare good-fortune, met in Fresno Street a number of
-constables with an inspector, all on their way to their beat. The
-inspector and two men accompanied her back, and in spite of the
-continued resistance of the proprietor, they made their way to
-the room in which Mr. St. Clair had last been seen. There was no
-sign of him there. In fact, in the whole of that floor there was
-no one to be found save a crippled wretch of hideous aspect, who,
-it seems, made his home there. Both he and the Lascar stoutly
-swore that no one else had been in the front room during the
-afternoon. So determined was their denial that the inspector was
-staggered, and had almost come to believe that Mrs. St. Clair had
-been deluded when, with a cry, she sprang at a small deal box
-which lay upon the table and tore the lid from it. Out there fell
-a cascade of children's bricks. It was the toy which he had
-promised to bring home.
-
-"This discovery, and the evident confusion which the cripple
-showed, made the inspector realise that the matter was serious.
-The rooms were carefully examined, and results all pointed to an
-abominable crime. The front room was plainly furnished as a
-sitting-room and led into a small bedroom, which looked out upon
-the back of one of the wharves. Between the wharf and the bedroom
-window is a narrow strip, which is dry at low tide but is covered
-at high tide with at least four and a half feet of water. The
-bedroom window was a broad one and opened from below. On
-examination traces of blood were to be seen upon the windowsill,
-and several scattered drops were visible upon the wooden floor of
-the bedroom. Thrust away behind a curtain in the front room were
-all the clothes of Mr. Neville St. Clair, with the exception of
-his coat. His boots, his socks, his hat, and his watch--all were
-there. There were no signs of violence upon any of these
-garments, and there were no other traces of Mr. Neville St.
-Clair. Out of the window he must apparently have gone for no
-other exit could be discovered, and the ominous bloodstains upon
-the sill gave little promise that he could save himself by
-swimming, for the tide was at its very highest at the moment of
-the tragedy.
-
-"And now as to the villains who seemed to be immediately
-implicated in the matter. The Lascar was known to be a man of the
-vilest antecedents, but as, by Mrs. St. Clair's story, he was
-known to have been at the foot of the stair within a very few
-seconds of her husband's appearance at the window, he could
-hardly have been more than an accessory to the crime. His defence
-was one of absolute ignorance, and he protested that he had no
-knowledge as to the doings of Hugh Boone, his lodger, and that he
-could not account in any way for the presence of the missing
-gentleman's clothes.
-
-"So much for the Lascar manager. Now for the sinister cripple who
-lives upon the second floor of the opium den, and who was
-certainly the last human being whose eyes rested upon Neville St.
-Clair. His name is Hugh Boone, and his hideous face is one which
-is familiar to every man who goes much to the City. He is a
-professional beggar, though in order to avoid the police
-regulations he pretends to a small trade in wax vestas. Some
-little distance down Threadneedle Street, upon the left-hand
-side, there is, as you may have remarked, a small angle in the
-wall. Here it is that this creature takes his daily seat,
-cross-legged with his tiny stock of matches on his lap, and as he
-is a piteous spectacle a small rain of charity descends into the
-greasy leather cap which lies upon the pavement beside him. I
-have watched the fellow more than once before ever I thought of
-making his professional acquaintance, and I have been surprised
-at the harvest which he has reaped in a short time. His
-appearance, you see, is so remarkable that no one can pass him
-without observing him. A shock of orange hair, a pale face
-disfigured by a horrible scar, which, by its contraction, has
-turned up the outer edge of his upper lip, a bulldog chin, and a
-pair of very penetrating dark eyes, which present a singular
-contrast to the colour of his hair, all mark him out from amid
-the common crowd of mendicants and so, too, does his wit, for he
-is ever ready with a reply to any piece of chaff which may be
-thrown at him by the passers-by. This is the man whom we now
-learn to have been the lodger at the opium den, and to have been
-the last man to see the gentleman of whom we are in quest."
-
-"But a cripple!" said I. "What could he have done single-handed
-against a man in the prime of life?"
-
-"He is a cripple in the sense that he walks with a limp; but in
-other respects he appears to be a powerful and well-nurtured man.
-Surely your medical experience would tell you, Watson, that
-weakness in one limb is often compensated for by exceptional
-strength in the others."
-
-"Pray continue your narrative."
-
-"Mrs. St. Clair had fainted at the sight of the blood upon the
-window, and she was escorted home in a cab by the police, as her
-presence could be of no help to them in their investigations.
-Inspector Barton, who had charge of the case, made a very careful
-examination of the premises, but without finding anything which
-threw any light upon the matter. One mistake had been made in not
-arresting Boone instantly, as he was allowed some few minutes
-during which he might have communicated with his friend the
-Lascar, but this fault was soon remedied, and he was seized and
-searched, without anything being found which could incriminate
-him. There were, it is true, some blood-stains upon his right
-shirt-sleeve, but he pointed to his ring-finger, which had been
-cut near the nail, and explained that the bleeding came from
-there, adding that he had been to the window not long before, and
-that the stains which had been observed there came doubtless from
-the same source. He denied strenuously having ever seen Mr.
-Neville St. Clair and swore that the presence of the clothes in
-his room was as much a mystery to him as to the police. As to
-Mrs. St. Clair's assertion that she had actually seen her husband
-at the window, he declared that she must have been either mad or
-dreaming. He was removed, loudly protesting, to the
-police-station, while the inspector remained upon the premises in
-the hope that the ebbing tide might afford some fresh clue.
-
-"And it did, though they hardly found upon the mud-bank what they
-had feared to find. It was Neville St. Clair's coat, and not
-Neville St. Clair, which lay uncovered as the tide receded. And
-what do you think they found in the pockets?"
-
-"I cannot imagine."
-
-"No, I don't think you would guess. Every pocket stuffed with
-pennies and half-pennies--421 pennies and 270 half-pennies. It
-was no wonder that it had not been swept away by the tide. But a
-human body is a different matter. There is a fierce eddy between
-the wharf and the house. It seemed likely enough that the
-weighted coat had remained when the stripped body had been sucked
-away into the river."
-
-"But I understand that all the other clothes were found in the
-room. Would the body be dressed in a coat alone?"
-
-"No, sir, but the facts might be met speciously enough. Suppose
-that this man Boone had thrust Neville St. Clair through the
-window, there is no human eye which could have seen the deed.
-What would he do then? It would of course instantly strike him
-that he must get rid of the tell-tale garments. He would seize
-the coat, then, and be in the act of throwing it out, when it
-would occur to him that it would swim and not sink. He has little
-time, for he has heard the scuffle downstairs when the wife tried
-to force her way up, and perhaps he has already heard from his
-Lascar confederate that the police are hurrying up the street.
-There is not an instant to be lost. He rushes to some secret
-hoard, where he has accumulated the fruits of his beggary, and he
-stuffs all the coins upon which he can lay his hands into the
-pockets to make sure of the coat's sinking. He throws it out, and
-would have done the same with the other garments had not he heard
-the rush of steps below, and only just had time to close the
-window when the police appeared."
-
-"It certainly sounds feasible."
-
-"Well, we will take it as a working hypothesis for want of a
-better. Boone, as I have told you, was arrested and taken to the
-station, but it could not be shown that there had ever before
-been anything against him. He had for years been known as a
-professional beggar, but his life appeared to have been a very
-quiet and innocent one. There the matter stands at present, and
-the questions which have to be solved--what Neville St. Clair was
-doing in the opium den, what happened to him when there, where is
-he now, and what Hugh Boone had to do with his disappearance--are
-all as far from a solution as ever. I confess that I cannot
-recall any case within my experience which looked at the first
-glance so simple and yet which presented such difficulties."
-
-While Sherlock Holmes had been detailing this singular series of
-events, we had been whirling through the outskirts of the great
-town until the last straggling houses had been left behind, and
-we rattled along with a country hedge upon either side of us.
-Just as he finished, however, we drove through two scattered
-villages, where a few lights still glimmered in the windows.
-
-"We are on the outskirts of Lee," said my companion. "We have
-touched on three English counties in our short drive, starting in
-Middlesex, passing over an angle of Surrey, and ending in Kent.
-See that light among the trees? That is The Cedars, and beside
-that lamp sits a woman whose anxious ears have already, I have
-little doubt, caught the clink of our horse's feet."
-
-"But why are you not conducting the case from Baker Street?" I
-asked.
-
-"Because there are many inquiries which must be made out here.
-Mrs. St. Clair has most kindly put two rooms at my disposal, and
-you may rest assured that she will have nothing but a welcome for
-my friend and colleague. I hate to meet her, Watson, when I have
-no news of her husband. Here we are. Whoa, there, whoa!"
-
-We had pulled up in front of a large villa which stood within its
-own grounds. A stable-boy had run out to the horse's head, and
-springing down, I followed Holmes up the small, winding
-gravel-drive which led to the house. As we approached, the door
-flew open, and a little blonde woman stood in the opening, clad
-in some sort of light mousseline de soie, with a touch of fluffy
-pink chiffon at her neck and wrists. She stood with her figure
-outlined against the flood of light, one hand upon the door, one
-half-raised in her eagerness, her body slightly bent, her head
-and face protruded, with eager eyes and parted lips, a standing
-question.
-
-"Well?" she cried, "well?" And then, seeing that there were two
-of us, she gave a cry of hope which sank into a groan as she saw
-that my companion shook his head and shrugged his shoulders.
-
-"No good news?"
-
-"None."
-
-"No bad?"
-
-"No."
-
-"Thank God for that. But come in. You must be weary, for you have
-had a long day."
-
-"This is my friend, Dr. Watson. He has been of most vital use to
-me in several of my cases, and a lucky chance has made it
-possible for me to bring him out and associate him with this
-investigation."
-
-"I am delighted to see you," said she, pressing my hand warmly.
-"You will, I am sure, forgive anything that may be wanting in our
-arrangements, when you consider the blow which has come so
-suddenly upon us."
-
-"My dear madam," said I, "I am an old campaigner, and if I were
-not I can very well see that no apology is needed. If I can be of
-any assistance, either to you or to my friend here, I shall be
-indeed happy."
-
-"Now, Mr. Sherlock Holmes," said the lady as we entered a
-well-lit dining-room, upon the table of which a cold supper had
-been laid out, "I should very much like to ask you one or two
-plain questions, to which I beg that you will give a plain
-answer."
-
-"Certainly, madam."
-
-"Do not trouble about my feelings. I am not hysterical, nor given
-to fainting. I simply wish to hear your real, real opinion."
-
-"Upon what point?"
-
-"In your heart of hearts, do you think that Neville is alive?"
-
-Sherlock Holmes seemed to be embarrassed by the question.
-"Frankly, now!" she repeated, standing upon the rug and looking
-keenly down at him as he leaned back in a basket-chair.
-
-"Frankly, then, madam, I do not."
-
-"You think that he is dead?"
-
-"I do."
-
-"Murdered?"
-
-"I don't say that. Perhaps."
-
-"And on what day did he meet his death?"
-
-"On Monday."
-
-"Then perhaps, Mr. Holmes, you will be good enough to explain how
-it is that I have received a letter from him to-day."
-
-Sherlock Holmes sprang out of his chair as if he had been
-galvanised.
-
-"What!" he roared.
-
-"Yes, to-day." She stood smiling, holding up a little slip of
-paper in the air.
-
-"May I see it?"
-
-"Certainly."
-
-He snatched it from her in his eagerness, and smoothing it out
-upon the table he drew over the lamp and examined it intently. I
-had left my chair and was gazing at it over his shoulder. The
-envelope was a very coarse one and was stamped with the Gravesend
-postmark and with the date of that very day, or rather of the day
-before, for it was considerably after midnight.
-
-"Coarse writing," murmured Holmes. "Surely this is not your
-husband's writing, madam."
-
-"No, but the enclosure is."
-
-"I perceive also that whoever addressed the envelope had to go
-and inquire as to the address."
-
-"How can you tell that?"
-
-"The name, you see, is in perfectly black ink, which has dried
-itself. The rest is of the greyish colour, which shows that
-blotting-paper has been used. If it had been written straight
-off, and then blotted, none would be of a deep black shade. This
-man has written the name, and there has then been a pause before
-he wrote the address, which can only mean that he was not
-familiar with it. It is, of course, a trifle, but there is
-nothing so important as trifles. Let us now see the letter. Ha!
-there has been an enclosure here!"
-
-"Yes, there was a ring. His signet-ring."
-
-"And you are sure that this is your husband's hand?"
-
-"One of his hands."
-
-"One?"
-
-"His hand when he wrote hurriedly. It is very unlike his usual
-writing, and yet I know it well."
-
-"'Dearest do not be frightened. All will come well. There is a
-huge error which it may take some little time to rectify.
-Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf
-of a book, octavo size, no water-mark. Hum! Posted to-day in
-Gravesend by a man with a dirty thumb. Ha! And the flap has been
-gummed, if I am not very much in error, by a person who had been
-chewing tobacco. And you have no doubt that it is your husband's
-hand, madam?"
-
-"None. Neville wrote those words."
-
-"And they were posted to-day at Gravesend. Well, Mrs. St. Clair,
-the clouds lighten, though I should not venture to say that the
-danger is over."
-
-"But he must be alive, Mr. Holmes."
-
-"Unless this is a clever forgery to put us on the wrong scent.
-The ring, after all, proves nothing. It may have been taken from
-him."
-
-"No, no; it is, it is his very own writing!"
-
-"Very well. It may, however, have been written on Monday and only
-posted to-day."
-
-"That is possible."
-
-"If so, much may have happened between."
-
-"Oh, you must not discourage me, Mr. Holmes. I know that all is
-well with him. There is so keen a sympathy between us that I
-should know if evil came upon him. On the very day that I saw him
-last he cut himself in the bedroom, and yet I in the dining-room
-rushed upstairs instantly with the utmost certainty that
-something had happened. Do you think that I would respond to such
-a trifle and yet be ignorant of his death?"
-
-"I have seen too much not to know that the impression of a woman
-may be more valuable than the conclusion of an analytical
-reasoner. And in this letter you certainly have a very strong
-piece of evidence to corroborate your view. But if your husband
-is alive and able to write letters, why should he remain away
-from you?"
-
-"I cannot imagine. It is unthinkable."
-
-"And on Monday he made no remarks before leaving you?"
-
-"No."
-
-"And you were surprised to see him in Swandam Lane?"
-
-"Very much so."
-
-"Was the window open?"
-
-"Yes."
-
-"Then he might have called to you?"
-
-"He might."
-
-"He only, as I understand, gave an inarticulate cry?"
-
-"Yes."
-
-"A call for help, you thought?"
-
-"Yes. He waved his hands."
-
-"But it might have been a cry of surprise. Astonishment at the
-unexpected sight of you might cause him to throw up his hands?"
-
-"It is possible."
-
-"And you thought he was pulled back?"
-
-"He disappeared so suddenly."
-
-"He might have leaped back. You did not see anyone else in the
-room?"
-
-"No, but this horrible man confessed to having been there, and
-the Lascar was at the foot of the stairs."
-
-"Quite so. Your husband, as far as you could see, had his
-ordinary clothes on?"
-
-"But without his collar or tie. I distinctly saw his bare
-throat."
-
-"Had he ever spoken of Swandam Lane?"
-
-"Never."
-
-"Had he ever showed any signs of having taken opium?"
-
-"Never."
-
-"Thank you, Mrs. St. Clair. Those are the principal points about
-which I wished to be absolutely clear. We shall now have a little
-supper and then retire, for we may have a very busy day
-to-morrow."
-
-A large and comfortable double-bedded room had been placed at our
-disposal, and I was quickly between the sheets, for I was weary
-after my night of adventure. Sherlock Holmes was a man, however,
-who, when he had an unsolved problem upon his mind, would go for
-days, and even for a week, without rest, turning it over,
-rearranging his facts, looking at it from every point of view
-until he had either fathomed it or convinced himself that his
-data were insufficient. It was soon evident to me that he was now
-preparing for an all-night sitting. He took off his coat and
-waistcoat, put on a large blue dressing-gown, and then wandered
-about the room collecting pillows from his bed and cushions from
-the sofa and armchairs. With these he constructed a sort of
-Eastern divan, upon which he perched himself cross-legged, with
-an ounce of shag tobacco and a box of matches laid out in front
-of him. In the dim light of the lamp I saw him sitting there, an
-old briar pipe between his lips, his eyes fixed vacantly upon the
-corner of the ceiling, the blue smoke curling up from him,
-silent, motionless, with the light shining upon his strong-set
-aquiline features. So he sat as I dropped off to sleep, and so he
-sat when a sudden ejaculation caused me to wake up, and I found
-the summer sun shining into the apartment. The pipe was still
-between his lips, the smoke still curled upward, and the room was
-full of a dense tobacco haze, but nothing remained of the heap of
-shag which I had seen upon the previous night.
-
-"Awake, Watson?" he asked.
-
-"Yes."
-
-"Game for a morning drive?"
-
-"Certainly."
-
-"Then dress. No one is stirring yet, but I know where the
-stable-boy sleeps, and we shall soon have the trap out." He
-chuckled to himself as he spoke, his eyes twinkled, and he seemed
-a different man to the sombre thinker of the previous night.
-
-As I dressed I glanced at my watch. It was no wonder that no one
-was stirring. It was twenty-five minutes past four. I had hardly
-finished when Holmes returned with the news that the boy was
-putting in the horse.
-
-"I want to test a little theory of mine," said he, pulling on his
-boots. "I think, Watson, that you are now standing in the
-presence of one of the most absolute fools in Europe. I deserve
-to be kicked from here to Charing Cross. But I think I have the
-key of the affair now."
-
-"And where is it?" I asked, smiling.
-
-"In the bathroom," he answered. "Oh, yes, I am not joking," he
-continued, seeing my look of incredulity. "I have just been
-there, and I have taken it out, and I have got it in this
-Gladstone bag. Come on, my boy, and we shall see whether it will
-not fit the lock."
-
-We made our way downstairs as quietly as possible, and out into
-the bright morning sunshine. In the road stood our horse and
-trap, with the half-clad stable-boy waiting at the head. We both
-sprang in, and away we dashed down the London Road. A few country
-carts were stirring, bearing in vegetables to the metropolis, but
-the lines of villas on either side were as silent and lifeless as
-some city in a dream.
-
-"It has been in some points a singular case," said Holmes,
-flicking the horse on into a gallop. "I confess that I have been
-as blind as a mole, but it is better to learn wisdom late than
-never to learn it at all."
-
-In town the earliest risers were just beginning to look sleepily
-from their windows as we drove through the streets of the Surrey
-side. Passing down the Waterloo Bridge Road we crossed over the
-river, and dashing up Wellington Street wheeled sharply to the
-right and found ourselves in Bow Street. Sherlock Holmes was well
-known to the force, and the two constables at the door saluted
-him. One of them held the horse's head while the other led us in.
-
-"Who is on duty?" asked Holmes.
-
-"Inspector Bradstreet, sir."
-
-"Ah, Bradstreet, how are you?" A tall, stout official had come
-down the stone-flagged passage, in a peaked cap and frogged
-jacket. "I wish to have a quiet word with you, Bradstreet."
-"Certainly, Mr. Holmes. Step into my room here." It was a small,
-office-like room, with a huge ledger upon the table, and a
-telephone projecting from the wall. The inspector sat down at his
-desk.
-
-"What can I do for you, Mr. Holmes?"
-
-"I called about that beggarman, Boone--the one who was charged
-with being concerned in the disappearance of Mr. Neville St.
-Clair, of Lee."
-
-"Yes. He was brought up and remanded for further inquiries."
-
-"So I heard. You have him here?"
-
-"In the cells."
-
-"Is he quiet?"
-
-"Oh, he gives no trouble. But he is a dirty scoundrel."
-
-"Dirty?"
-
-"Yes, it is all we can do to make him wash his hands, and his
-face is as black as a tinker's. Well, when once his case has been
-settled, he will have a regular prison bath; and I think, if you
-saw him, you would agree with me that he needed it."
-
-"I should like to see him very much."
-
-"Would you? That is easily done. Come this way. You can leave
-your bag."
-
-"No, I think that I'll take it."
-
-"Very good. Come this way, if you please." He led us down a
-passage, opened a barred door, passed down a winding stair, and
-brought us to a whitewashed corridor with a line of doors on each
-side.
-
-"The third on the right is his," said the inspector. "Here it
-is!" He quietly shot back a panel in the upper part of the door
-and glanced through.
-
-"He is asleep," said he. "You can see him very well."
-
-We both put our eyes to the grating. The prisoner lay with his
-face towards us, in a very deep sleep, breathing slowly and
-heavily. He was a middle-sized man, coarsely clad as became his
-calling, with a coloured shirt protruding through the rent in his
-tattered coat. He was, as the inspector had said, extremely
-dirty, but the grime which covered his face could not conceal its
-repulsive ugliness. A broad wheal from an old scar ran right
-across it from eye to chin, and by its contraction had turned up
-one side of the upper lip, so that three teeth were exposed in a
-perpetual snarl. A shock of very bright red hair grew low over
-his eyes and forehead.
-
-"He's a beauty, isn't he?" said the inspector.
-
-"He certainly needs a wash," remarked Holmes. "I had an idea that
-he might, and I took the liberty of bringing the tools with me."
-He opened the Gladstone bag as he spoke, and took out, to my
-astonishment, a very large bath-sponge.
-
-"He! he! You are a funny one," chuckled the inspector.
-
-"Now, if you will have the great goodness to open that door very
-quietly, we will soon make him cut a much more respectable
-figure."
-
-"Well, I don't know why not," said the inspector. "He doesn't
-look a credit to the Bow Street cells, does he?" He slipped his
-key into the lock, and we all very quietly entered the cell. The
-sleeper half turned, and then settled down once more into a deep
-slumber. Holmes stooped to the water-jug, moistened his sponge,
-and then rubbed it twice vigorously across and down the
-prisoner's face.
-
-"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of
-Lee, in the county of Kent."
-
-Never in my life have I seen such a sight. The man's face peeled
-off under the sponge like the bark from a tree. Gone was the
-coarse brown tint! Gone, too, was the horrid scar which had
-seamed it across, and the twisted lip which had given the
-repulsive sneer to the face! A twitch brought away the tangled
-red hair, and there, sitting up in his bed, was a pale,
-sad-faced, refined-looking man, black-haired and smooth-skinned,
-rubbing his eyes and staring about him with sleepy bewilderment.
-Then suddenly realising the exposure, he broke into a scream and
-threw himself down with his face to the pillow.
-
-"Great heavens!" cried the inspector, "it is, indeed, the missing
-man. I know him from the photograph."
-
-The prisoner turned with the reckless air of a man who abandons
-himself to his destiny. "Be it so," said he. "And pray what am I
-charged with?"
-
-"With making away with Mr. Neville St.-- Oh, come, you can't be
-charged with that unless they make a case of attempted suicide of
-it," said the inspector with a grin. "Well, I have been
-twenty-seven years in the force, but this really takes the cake."
-
-"If I am Mr. Neville St. Clair, then it is obvious that no crime
-has been committed, and that, therefore, I am illegally
-detained."
-
-"No crime, but a very great error has been committed," said
-Holmes. "You would have done better to have trusted your wife."
-
-"It was not the wife; it was the children," groaned the prisoner.
-"God help me, I would not have them ashamed of their father. My
-God! What an exposure! What can I do?"
-
-Sherlock Holmes sat down beside him on the couch and patted him
-kindly on the shoulder.
-
-"If you leave it to a court of law to clear the matter up," said
-he, "of course you can hardly avoid publicity. On the other hand,
-if you convince the police authorities that there is no possible
-case against you, I do not know that there is any reason that the
-details should find their way into the papers. Inspector
-Bradstreet would, I am sure, make notes upon anything which you
-might tell us and submit it to the proper authorities. The case
-would then never go into court at all."
-
-"God bless you!" cried the prisoner passionately. "I would have
-endured imprisonment, ay, even execution, rather than have left
-my miserable secret as a family blot to my children.
-
-"You are the first who have ever heard my story. My father was a
-schoolmaster in Chesterfield, where I received an excellent
-education. I travelled in my youth, took to the stage, and
-finally became a reporter on an evening paper in London. One day
-my editor wished to have a series of articles upon begging in the
-metropolis, and I volunteered to supply them. There was the point
-from which all my adventures started. It was only by trying
-begging as an amateur that I could get the facts upon which to
-base my articles. When an actor I had, of course, learned all the
-secrets of making up, and had been famous in the green-room for
-my skill. I took advantage now of my attainments. I painted my
-face, and to make myself as pitiable as possible I made a good
-scar and fixed one side of my lip in a twist by the aid of a
-small slip of flesh-coloured plaster. Then with a red head of
-hair, and an appropriate dress, I took my station in the business
-part of the city, ostensibly as a match-seller but really as a
-beggar. For seven hours I plied my trade, and when I returned
-home in the evening I found to my surprise that I had received no
-less than 26s. 4d.
-
-"I wrote my articles and thought little more of the matter until,
-some time later, I backed a bill for a friend and had a writ
-served upon me for 25 pounds. I was at my wit's end where to get
-the money, but a sudden idea came to me. I begged a fortnight's
-grace from the creditor, asked for a holiday from my employers,
-and spent the time in begging in the City under my disguise. In
-ten days I had the money and had paid the debt.
-
-"Well, you can imagine how hard it was to settle down to arduous
-work at 2 pounds a week when I knew that I could earn as much in
-a day by smearing my face with a little paint, laying my cap on
-the ground, and sitting still. It was a long fight between my
-pride and the money, but the dollars won at last, and I threw up
-reporting and sat day after day in the corner which I had first
-chosen, inspiring pity by my ghastly face and filling my pockets
-with coppers. Only one man knew my secret. He was the keeper of a
-low den in which I used to lodge in Swandam Lane, where I could
-every morning emerge as a squalid beggar and in the evenings
-transform myself into a well-dressed man about town. This fellow,
-a Lascar, was well paid by me for his rooms, so that I knew that
-my secret was safe in his possession.
-
-"Well, very soon I found that I was saving considerable sums of
-money. I do not mean that any beggar in the streets of London
-could earn 700 pounds a year--which is less than my average
-takings--but I had exceptional advantages in my power of making
-up, and also in a facility of repartee, which improved by
-practice and made me quite a recognised character in the City.
-All day a stream of pennies, varied by silver, poured in upon me,
-and it was a very bad day in which I failed to take 2 pounds.
-
-"As I grew richer I grew more ambitious, took a house in the
-country, and eventually married, without anyone having a
-suspicion as to my real occupation. My dear wife knew that I had
-business in the City. She little knew what.
-
-"Last Monday I had finished for the day and was dressing in my
-room above the opium den when I looked out of my window and saw,
-to my horror and astonishment, that my wife was standing in the
-street, with her eyes fixed full upon me. I gave a cry of
-surprise, threw up my arms to cover my face, and, rushing to my
-confidant, the Lascar, entreated him to prevent anyone from
-coming up to me. I heard her voice downstairs, but I knew that
-she could not ascend. Swiftly I threw off my clothes, pulled on
-those of a beggar, and put on my pigments and wig. Even a wife's
-eyes could not pierce so complete a disguise. But then it
-occurred to me that there might be a search in the room, and that
-the clothes might betray me. I threw open the window, reopening
-by my violence a small cut which I had inflicted upon myself in
-the bedroom that morning. Then I seized my coat, which was
-weighted by the coppers which I had just transferred to it from
-the leather bag in which I carried my takings. I hurled it out of
-the window, and it disappeared into the Thames. The other clothes
-would have followed, but at that moment there was a rush of
-constables up the stair, and a few minutes after I found, rather,
-I confess, to my relief, that instead of being identified as Mr.
-Neville St. Clair, I was arrested as his murderer.
-
-"I do not know that there is anything else for me to explain. I
-was determined to preserve my disguise as long as possible, and
-hence my preference for a dirty face. Knowing that my wife would
-be terribly anxious, I slipped off my ring and confided it to the
-Lascar at a moment when no constable was watching me, together
-with a hurried scrawl, telling her that she had no cause to
-fear."
-
-"That note only reached her yesterday," said Holmes.
-
-"Good God! What a week she must have spent!"
-
-"The police have watched this Lascar," said Inspector Bradstreet,
-"and I can quite understand that he might find it difficult to
-post a letter unobserved. Probably he handed it to some sailor
-customer of his, who forgot all about it for some days."
-
-"That was it," said Holmes, nodding approvingly; "I have no doubt
-of it. But have you never been prosecuted for begging?"
-
-"Many times; but what was a fine to me?"
-
-"It must stop here, however," said Bradstreet. "If the police are
-to hush this thing up, there must be no more of Hugh Boone."
-
-"I have sworn it by the most solemn oaths which a man can take."
-
-"In that case I think that it is probable that no further steps
-may be taken. But if you are found again, then all must come out.
-I am sure, Mr. Holmes, that we are very much indebted to you for
-having cleared the matter up. I wish I knew how you reach your
-results."
-
-"I reached this one," said my friend, "by sitting upon five
-pillows and consuming an ounce of shag. I think, Watson, that if
-we drive to Baker Street we shall just be in time for breakfast."
-
-
-
-VII. THE ADVENTURE OF THE BLUE CARBUNCLE
-
-I had called upon my friend Sherlock Holmes upon the second
-morning after Christmas, with the intention of wishing him the
-compliments of the season. He was lounging upon the sofa in a
-purple dressing-gown, a pipe-rack within his reach upon the
-right, and a pile of crumpled morning papers, evidently newly
-studied, near at hand. Beside the couch was a wooden chair, and
-on the angle of the back hung a very seedy and disreputable
-hard-felt hat, much the worse for wear, and cracked in several
-places. A lens and a forceps lying upon the seat of the chair
-suggested that the hat had been suspended in this manner for the
-purpose of examination.
-
-"You are engaged," said I; "perhaps I interrupt you."
-
-"Not at all. I am glad to have a friend with whom I can discuss
-my results. The matter is a perfectly trivial one"--he jerked his
-thumb in the direction of the old hat--"but there are points in
-connection with it which are not entirely devoid of interest and
-even of instruction."
-
-I seated myself in his armchair and warmed my hands before his
-crackling fire, for a sharp frost had set in, and the windows
-were thick with the ice crystals. "I suppose," I remarked, "that,
-homely as it looks, this thing has some deadly story linked on to
-it--that it is the clue which will guide you in the solution of
-some mystery and the punishment of some crime."
-
-"No, no. No crime," said Sherlock Holmes, laughing. "Only one of
-those whimsical little incidents which will happen when you have
-four million human beings all jostling each other within the
-space of a few square miles. Amid the action and reaction of so
-dense a swarm of humanity, every possible combination of events
-may be expected to take place, and many a little problem will be
-presented which may be striking and bizarre without being
-criminal. We have already had experience of such."
-
-"So much so," I remarked, "that of the last six cases which I
-have added to my notes, three have been entirely free of any
-legal crime."
-
-"Precisely. You allude to my attempt to recover the Irene Adler
-papers, to the singular case of Miss Mary Sutherland, and to the
-adventure of the man with the twisted lip. Well, I have no doubt
-that this small matter will fall into the same innocent category.
-You know Peterson, the commissionaire?"
-
-"Yes."
-
-"It is to him that this trophy belongs."
-
-"It is his hat."
-
-"No, no, he found it. Its owner is unknown. I beg that you will
-look upon it not as a battered billycock but as an intellectual
-problem. And, first, as to how it came here. It arrived upon
-Christmas morning, in company with a good fat goose, which is, I
-have no doubt, roasting at this moment in front of Peterson's
-fire. The facts are these: about four o'clock on Christmas
-morning, Peterson, who, as you know, is a very honest fellow, was
-returning from some small jollification and was making his way
-homeward down Tottenham Court Road. In front of him he saw, in
-the gaslight, a tallish man, walking with a slight stagger, and
-carrying a white goose slung over his shoulder. As he reached the
-corner of Goodge Street, a row broke out between this stranger
-and a little knot of roughs. One of the latter knocked off the
-man's hat, on which he raised his stick to defend himself and,
-swinging it over his head, smashed the shop window behind him.
-Peterson had rushed forward to protect the stranger from his
-assailants; but the man, shocked at having broken the window, and
-seeing an official-looking person in uniform rushing towards him,
-dropped his goose, took to his heels, and vanished amid the
-labyrinth of small streets which lie at the back of Tottenham
-Court Road. The roughs had also fled at the appearance of
-Peterson, so that he was left in possession of the field of
-battle, and also of the spoils of victory in the shape of this
-battered hat and a most unimpeachable Christmas goose."
-
-"Which surely he restored to their owner?"
-
-"My dear fellow, there lies the problem. It is true that 'For
-Mrs. Henry Baker' was printed upon a small card which was tied to
-the bird's left leg, and it is also true that the initials 'H.
-B.' are legible upon the lining of this hat, but as there are
-some thousands of Bakers, and some hundreds of Henry Bakers in
-this city of ours, it is not easy to restore lost property to any
-one of them."
-
-"What, then, did Peterson do?"
-
-"He brought round both hat and goose to me on Christmas morning,
-knowing that even the smallest problems are of interest to me.
-The goose we retained until this morning, when there were signs
-that, in spite of the slight frost, it would be well that it
-should be eaten without unnecessary delay. Its finder has carried
-it off, therefore, to fulfil the ultimate destiny of a goose,
-while I continue to retain the hat of the unknown gentleman who
-lost his Christmas dinner."
-
-"Did he not advertise?"
-
-"No."
-
-"Then, what clue could you have as to his identity?"
-
-"Only as much as we can deduce."
-
-"From his hat?"
-
-"Precisely."
-
-"But you are joking. What can you gather from this old battered
-felt?"
-
-"Here is my lens. You know my methods. What can you gather
-yourself as to the individuality of the man who has worn this
-article?"
-
-I took the tattered object in my hands and turned it over rather
-ruefully. It was a very ordinary black hat of the usual round
-shape, hard and much the worse for wear. The lining had been of
-red silk, but was a good deal discoloured. There was no maker's
-name; but, as Holmes had remarked, the initials "H. B." were
-scrawled upon one side. It was pierced in the brim for a
-hat-securer, but the elastic was missing. For the rest, it was
-cracked, exceedingly dusty, and spotted in several places,
-although there seemed to have been some attempt to hide the
-discoloured patches by smearing them with ink.
-
-"I can see nothing," said I, handing it back to my friend.
-
-"On the contrary, Watson, you can see everything. You fail,
-however, to reason from what you see. You are too timid in
-drawing your inferences."
-
-"Then, pray tell me what it is that you can infer from this hat?"
-
-He picked it up and gazed at it in the peculiar introspective
-fashion which was characteristic of him. "It is perhaps less
-suggestive than it might have been," he remarked, "and yet there
-are a few inferences which are very distinct, and a few others
-which represent at least a strong balance of probability. That
-the man was highly intellectual is of course obvious upon the
-face of it, and also that he was fairly well-to-do within the
-last three years, although he has now fallen upon evil days. He
-had foresight, but has less now than formerly, pointing to a
-moral retrogression, which, when taken with the decline of his
-fortunes, seems to indicate some evil influence, probably drink,
-at work upon him. This may account also for the obvious fact that
-his wife has ceased to love him."
-
-"My dear Holmes!"
-
-"He has, however, retained some degree of self-respect," he
-continued, disregarding my remonstrance. "He is a man who leads a
-sedentary life, goes out little, is out of training entirely, is
-middle-aged, has grizzled hair which he has had cut within the
-last few days, and which he anoints with lime-cream. These are
-the more patent facts which are to be deduced from his hat. Also,
-by the way, that it is extremely improbable that he has gas laid
-on in his house."
-
-"You are certainly joking, Holmes."
-
-"Not in the least. Is it possible that even now, when I give you
-these results, you are unable to see how they are attained?"
-
-"I have no doubt that I am very stupid, but I must confess that I
-am unable to follow you. For example, how did you deduce that
-this man was intellectual?"
-
-For answer Holmes clapped the hat upon his head. It came right
-over the forehead and settled upon the bridge of his nose. "It is
-a question of cubic capacity," said he; "a man with so large a
-brain must have something in it."
-
-"The decline of his fortunes, then?"
-
-"This hat is three years old. These flat brims curled at the edge
-came in then. It is a hat of the very best quality. Look at the
-band of ribbed silk and the excellent lining. If this man could
-afford to buy so expensive a hat three years ago, and has had no
-hat since, then he has assuredly gone down in the world."
-
-"Well, that is clear enough, certainly. But how about the
-foresight and the moral retrogression?"
-
-Sherlock Holmes laughed. "Here is the foresight," said he putting
-his finger upon the little disc and loop of the hat-securer.
-"They are never sold upon hats. If this man ordered one, it is a
-sign of a certain amount of foresight, since he went out of his
-way to take this precaution against the wind. But since we see
-that he has broken the elastic and has not troubled to replace
-it, it is obvious that he has less foresight now than formerly,
-which is a distinct proof of a weakening nature. On the other
-hand, he has endeavoured to conceal some of these stains upon the
-felt by daubing them with ink, which is a sign that he has not
-entirely lost his self-respect."
-
-"Your reasoning is certainly plausible."
-
-"The further points, that he is middle-aged, that his hair is
-grizzled, that it has been recently cut, and that he uses
-lime-cream, are all to be gathered from a close examination of the
-lower part of the lining. The lens discloses a large number of
-hair-ends, clean cut by the scissors of the barber. They all
-appear to be adhesive, and there is a distinct odour of
-lime-cream. This dust, you will observe, is not the gritty, grey
-dust of the street but the fluffy brown dust of the house,
-showing that it has been hung up indoors most of the time, while
-the marks of moisture upon the inside are proof positive that the
-wearer perspired very freely, and could therefore, hardly be in
-the best of training."
-
-"But his wife--you said that she had ceased to love him."
-
-"This hat has not been brushed for weeks. When I see you, my dear
-Watson, with a week's accumulation of dust upon your hat, and
-when your wife allows you to go out in such a state, I shall fear
-that you also have been unfortunate enough to lose your wife's
-affection."
-
-"But he might be a bachelor."
-
-"Nay, he was bringing home the goose as a peace-offering to his
-wife. Remember the card upon the bird's leg."
-
-"You have an answer to everything. But how on earth do you deduce
-that the gas is not laid on in his house?"
-
-"One tallow stain, or even two, might come by chance; but when I
-see no less than five, I think that there can be little doubt
-that the individual must be brought into frequent contact with
-burning tallow--walks upstairs at night probably with his hat in
-one hand and a guttering candle in the other. Anyhow, he never
-got tallow-stains from a gas-jet. Are you satisfied?"
-
-"Well, it is very ingenious," said I, laughing; "but since, as
-you said just now, there has been no crime committed, and no harm
-done save the loss of a goose, all this seems to be rather a
-waste of energy."
-
-Sherlock Holmes had opened his mouth to reply, when the door flew
-open, and Peterson, the commissionaire, rushed into the apartment
-with flushed cheeks and the face of a man who is dazed with
-astonishment.
-
-"The goose, Mr. Holmes! The goose, sir!" he gasped.
-
-"Eh? What of it, then? Has it returned to life and flapped off
-through the kitchen window?" Holmes twisted himself round upon
-the sofa to get a fairer view of the man's excited face.
-
-"See here, sir! See what my wife found in its crop!" He held out
-his hand and displayed upon the centre of the palm a brilliantly
-scintillating blue stone, rather smaller than a bean in size, but
-of such purity and radiance that it twinkled like an electric
-point in the dark hollow of his hand.
-
-Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said
-he, "this is treasure trove indeed. I suppose you know what you
-have got?"
-
-"A diamond, sir? A precious stone. It cuts into glass as though
-it were putty."
-
-"It's more than a precious stone. It is the precious stone."
-
-"Not the Countess of Morcar's blue carbuncle!" I ejaculated.
-
-"Precisely so. I ought to know its size and shape, seeing that I
-have read the advertisement about it in The Times every day
-lately. It is absolutely unique, and its value can only be
-conjectured, but the reward offered of 1000 pounds is certainly
-not within a twentieth part of the market price."
-
-"A thousand pounds! Great Lord of mercy!" The commissionaire
-plumped down into a chair and stared from one to the other of us.
-
-"That is the reward, and I have reason to know that there are
-sentimental considerations in the background which would induce
-the Countess to part with half her fortune if she could but
-recover the gem."
-
-"It was lost, if I remember aright, at the Hotel Cosmopolitan," I
-remarked.
-
-"Precisely so, on December 22nd, just five days ago. John Horner,
-a plumber, was accused of having abstracted it from the lady's
-jewel-case. The evidence against him was so strong that the case
-has been referred to the Assizes. I have some account of the
-matter here, I believe." He rummaged amid his newspapers,
-glancing over the dates, until at last he smoothed one out,
-doubled it over, and read the following paragraph:
-
-"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was
-brought up upon the charge of having upon the 22nd inst.,
-abstracted from the jewel-case of the Countess of Morcar the
-valuable gem known as the blue carbuncle. James Ryder,
-upper-attendant at the hotel, gave his evidence to the effect
-that he had shown Horner up to the dressing-room of the Countess
-of Morcar upon the day of the robbery in order that he might
-solder the second bar of the grate, which was loose. He had
-remained with Horner some little time, but had finally been
-called away. On returning, he found that Horner had disappeared,
-that the bureau had been forced open, and that the small morocco
-casket in which, as it afterwards transpired, the Countess was
-accustomed to keep her jewel, was lying empty upon the
-dressing-table. Ryder instantly gave the alarm, and Horner was
-arrested the same evening; but the stone could not be found
-either upon his person or in his rooms. Catherine Cusack, maid to
-the Countess, deposed to having heard Ryder's cry of dismay on
-discovering the robbery, and to having rushed into the room,
-where she found matters as described by the last witness.
-Inspector Bradstreet, B division, gave evidence as to the arrest
-of Horner, who struggled frantically, and protested his innocence
-in the strongest terms. Evidence of a previous conviction for
-robbery having been given against the prisoner, the magistrate
-refused to deal summarily with the offence, but referred it to
-the Assizes. Horner, who had shown signs of intense emotion
-during the proceedings, fainted away at the conclusion and was
-carried out of court."
-
-"Hum! So much for the police-court," said Holmes thoughtfully,
-tossing aside the paper. "The question for us now to solve is the
-sequence of events leading from a rifled jewel-case at one end to
-the crop of a goose in Tottenham Court Road at the other. You
-see, Watson, our little deductions have suddenly assumed a much
-more important and less innocent aspect. Here is the stone; the
-stone came from the goose, and the goose came from Mr. Henry
-Baker, the gentleman with the bad hat and all the other
-characteristics with which I have bored you. So now we must set
-ourselves very seriously to finding this gentleman and
-ascertaining what part he has played in this little mystery. To
-do this, we must try the simplest means first, and these lie
-undoubtedly in an advertisement in all the evening papers. If
-this fail, I shall have recourse to other methods."
-
-"What will you say?"
-
-"Give me a pencil and that slip of paper. Now, then: 'Found at
-the corner of Goodge Street, a goose and a black felt hat. Mr.
-Henry Baker can have the same by applying at 6:30 this evening at
-221B, Baker Street.' That is clear and concise."
-
-"Very. But will he see it?"
-
-"Well, he is sure to keep an eye on the papers, since, to a poor
-man, the loss was a heavy one. He was clearly so scared by his
-mischance in breaking the window and by the approach of Peterson
-that he thought of nothing but flight, but since then he must
-have bitterly regretted the impulse which caused him to drop his
-bird. Then, again, the introduction of his name will cause him to
-see it, for everyone who knows him will direct his attention to
-it. Here you are, Peterson, run down to the advertising agency
-and have this put in the evening papers."
-
-"In which, sir?"
-
-"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News,
-Standard, Echo, and any others that occur to you."
-
-"Very well, sir. And this stone?"
-
-"Ah, yes, I shall keep the stone. Thank you. And, I say,
-Peterson, just buy a goose on your way back and leave it here
-with me, for we must have one to give to this gentleman in place
-of the one which your family is now devouring."
-
-When the commissionaire had gone, Holmes took up the stone and
-held it against the light. "It's a bonny thing," said he. "Just
-see how it glints and sparkles. Of course it is a nucleus and
-focus of crime. Every good stone is. They are the devil's pet
-baits. In the larger and older jewels every facet may stand for a
-bloody deed. This stone is not yet twenty years old. It was found
-in the banks of the Amoy River in southern China and is remarkable
-in having every characteristic of the carbuncle, save that it is
-blue in shade instead of ruby red. In spite of its youth, it has
-already a sinister history. There have been two murders, a
-vitriol-throwing, a suicide, and several robberies brought about
-for the sake of this forty-grain weight of crystallised charcoal.
-Who would think that so pretty a toy would be a purveyor to the
-gallows and the prison? I'll lock it up in my strong box now and
-drop a line to the Countess to say that we have it."
-
-"Do you think that this man Horner is innocent?"
-
-"I cannot tell."
-
-"Well, then, do you imagine that this other one, Henry Baker, had
-anything to do with the matter?"
-
-"It is, I think, much more likely that Henry Baker is an
-absolutely innocent man, who had no idea that the bird which he
-was carrying was of considerably more value than if it were made
-of solid gold. That, however, I shall determine by a very simple
-test if we have an answer to our advertisement."
-
-"And you can do nothing until then?"
-
-"Nothing."
-
-"In that case I shall continue my professional round. But I shall
-come back in the evening at the hour you have mentioned, for I
-should like to see the solution of so tangled a business."
-
-"Very glad to see you. I dine at seven. There is a woodcock, I
-believe. By the way, in view of recent occurrences, perhaps I
-ought to ask Mrs. Hudson to examine its crop."
-
-I had been delayed at a case, and it was a little after half-past
-six when I found myself in Baker Street once more. As I
-approached the house I saw a tall man in a Scotch bonnet with a
-coat which was buttoned up to his chin waiting outside in the
-bright semicircle which was thrown from the fanlight. Just as I
-arrived the door was opened, and we were shown up together to
-Holmes' room.
-
-"Mr. Henry Baker, I believe," said he, rising from his armchair
-and greeting his visitor with the easy air of geniality which he
-could so readily assume. "Pray take this chair by the fire, Mr.
-Baker. It is a cold night, and I observe that your circulation is
-more adapted for summer than for winter. Ah, Watson, you have
-just come at the right time. Is that your hat, Mr. Baker?"
-
-"Yes, sir, that is undoubtedly my hat."
-
-He was a large man with rounded shoulders, a massive head, and a
-broad, intelligent face, sloping down to a pointed beard of
-grizzled brown. A touch of red in nose and cheeks, with a slight
-tremor of his extended hand, recalled Holmes' surmise as to his
-habits. His rusty black frock-coat was buttoned right up in
-front, with the collar turned up, and his lank wrists protruded
-from his sleeves without a sign of cuff or shirt. He spoke in a
-slow staccato fashion, choosing his words with care, and gave the
-impression generally of a man of learning and letters who had had
-ill-usage at the hands of fortune.
-
-"We have retained these things for some days," said Holmes,
-"because we expected to see an advertisement from you giving your
-address. I am at a loss to know now why you did not advertise."
-
-Our visitor gave a rather shamefaced laugh. "Shillings have not
-been so plentiful with me as they once were," he remarked. "I had
-no doubt that the gang of roughs who assaulted me had carried off
-both my hat and the bird. I did not care to spend more money in a
-hopeless attempt at recovering them."
-
-"Very naturally. By the way, about the bird, we were compelled to
-eat it."
-
-"To eat it!" Our visitor half rose from his chair in his
-excitement.
-
-"Yes, it would have been of no use to anyone had we not done so.
-But I presume that this other goose upon the sideboard, which is
-about the same weight and perfectly fresh, will answer your
-purpose equally well?"
-
-"Oh, certainly, certainly," answered Mr. Baker with a sigh of
-relief.
-
-"Of course, we still have the feathers, legs, crop, and so on of
-your own bird, so if you wish--"
-
-The man burst into a hearty laugh. "They might be useful to me as
-relics of my adventure," said he, "but beyond that I can hardly
-see what use the disjecta membra of my late acquaintance are
-going to be to me. No, sir, I think that, with your permission, I
-will confine my attentions to the excellent bird which I perceive
-upon the sideboard."
-
-Sherlock Holmes glanced sharply across at me with a slight shrug
-of his shoulders.
-
-"There is your hat, then, and there your bird," said he. "By the
-way, would it bore you to tell me where you got the other one
-from? I am somewhat of a fowl fancier, and I have seldom seen a
-better grown goose."
-
-"Certainly, sir," said Baker, who had risen and tucked his newly
-gained property under his arm. "There are a few of us who
-frequent the Alpha Inn, near the Museum--we are to be found in
-the Museum itself during the day, you understand. This year our
-good host, Windigate by name, instituted a goose club, by which,
-on consideration of some few pence every week, we were each to
-receive a bird at Christmas. My pence were duly paid, and the
-rest is familiar to you. I am much indebted to you, sir, for a
-Scotch bonnet is fitted neither to my years nor my gravity." With
-a comical pomposity of manner he bowed solemnly to both of us and
-strode off upon his way.
-
-"So much for Mr. Henry Baker," said Holmes when he had closed the
-door behind him. "It is quite certain that he knows nothing
-whatever about the matter. Are you hungry, Watson?"
-
-"Not particularly."
-
-"Then I suggest that we turn our dinner into a supper and follow
-up this clue while it is still hot."
-
-"By all means."
-
-It was a bitter night, so we drew on our ulsters and wrapped
-cravats about our throats. Outside, the stars were shining coldly
-in a cloudless sky, and the breath of the passers-by blew out
-into smoke like so many pistol shots. Our footfalls rang out
-crisply and loudly as we swung through the doctors' quarter,
-Wimpole Street, Harley Street, and so through Wigmore Street into
-Oxford Street. In a quarter of an hour we were in Bloomsbury at
-the Alpha Inn, which is a small public-house at the corner of one
-of the streets which runs down into Holborn. Holmes pushed open
-the door of the private bar and ordered two glasses of beer from
-the ruddy-faced, white-aproned landlord.
-
-"Your beer should be excellent if it is as good as your geese,"
-said he.
-
-"My geese!" The man seemed surprised.
-
-"Yes. I was speaking only half an hour ago to Mr. Henry Baker,
-who was a member of your goose club."
-
-"Ah! yes, I see. But you see, sir, them's not our geese."
-
-"Indeed! Whose, then?"
-
-"Well, I got the two dozen from a salesman in Covent Garden."
-
-"Indeed? I know some of them. Which was it?"
-
-"Breckinridge is his name."
-
-"Ah! I don't know him. Well, here's your good health landlord,
-and prosperity to your house. Good-night."
-
-"Now for Mr. Breckinridge," he continued, buttoning up his coat
-as we came out into the frosty air. "Remember, Watson that though
-we have so homely a thing as a goose at one end of this chain, we
-have at the other a man who will certainly get seven years' penal
-servitude unless we can establish his innocence. It is possible
-that our inquiry may but confirm his guilt; but, in any case, we
-have a line of investigation which has been missed by the police,
-and which a singular chance has placed in our hands. Let us
-follow it out to the bitter end. Faces to the south, then, and
-quick march!"
-
-We passed across Holborn, down Endell Street, and so through a
-zigzag of slums to Covent Garden Market. One of the largest
-stalls bore the name of Breckinridge upon it, and the proprietor
-a horsey-looking man, with a sharp face and trim side-whiskers was
-helping a boy to put up the shutters.
-
-"Good-evening. It's a cold night," said Holmes.
-
-The salesman nodded and shot a questioning glance at my
-companion.
-
-"Sold out of geese, I see," continued Holmes, pointing at the
-bare slabs of marble.
-
-"Let you have five hundred to-morrow morning."
-
-"That's no good."
-
-"Well, there are some on the stall with the gas-flare."
-
-"Ah, but I was recommended to you."
-
-"Who by?"
-
-"The landlord of the Alpha."
-
-"Oh, yes; I sent him a couple of dozen."
-
-"Fine birds they were, too. Now where did you get them from?"
-
-To my surprise the question provoked a burst of anger from the
-salesman.
-
-"Now, then, mister," said he, with his head cocked and his arms
-akimbo, "what are you driving at? Let's have it straight, now."
-
-"It is straight enough. I should like to know who sold you the
-geese which you supplied to the Alpha."
-
-"Well then, I shan't tell you. So now!"
-
-"Oh, it is a matter of no importance; but I don't know why you
-should be so warm over such a trifle."
-
-"Warm! You'd be as warm, maybe, if you were as pestered as I am.
-When I pay good money for a good article there should be an end
-of the business; but it's 'Where are the geese?' and 'Who did you
-sell the geese to?' and 'What will you take for the geese?' One
-would think they were the only geese in the world, to hear the
-fuss that is made over them."
-
-"Well, I have no connection with any other people who have been
-making inquiries," said Holmes carelessly. "If you won't tell us
-the bet is off, that is all. But I'm always ready to back my
-opinion on a matter of fowls, and I have a fiver on it that the
-bird I ate is country bred."
-
-"Well, then, you've lost your fiver, for it's town bred," snapped
-the salesman.
-
-"It's nothing of the kind."
-
-"I say it is."
-
-"I don't believe it."
-
-"D'you think you know more about fowls than I, who have handled
-them ever since I was a nipper? I tell you, all those birds that
-went to the Alpha were town bred."
-
-"You'll never persuade me to believe that."
-
-"Will you bet, then?"
-
-"It's merely taking your money, for I know that I am right. But
-I'll have a sovereign on with you, just to teach you not to be
-obstinate."
-
-The salesman chuckled grimly. "Bring me the books, Bill," said
-he.
-
-The small boy brought round a small thin volume and a great
-greasy-backed one, laying them out together beneath the hanging
-lamp.
-
-"Now then, Mr. Cocksure," said the salesman, "I thought that I
-was out of geese, but before I finish you'll find that there is
-still one left in my shop. You see this little book?"
-
-"Well?"
-
-"That's the list of the folk from whom I buy. D'you see? Well,
-then, here on this page are the country folk, and the numbers
-after their names are where their accounts are in the big ledger.
-Now, then! You see this other page in red ink? Well, that is a
-list of my town suppliers. Now, look at that third name. Just
-read it out to me."
-
-"Mrs. Oakshott, 117, Brixton Road--249," read Holmes.
-
-"Quite so. Now turn that up in the ledger."
-
-Holmes turned to the page indicated. "Here you are, 'Mrs.
-Oakshott, 117, Brixton Road, egg and poultry supplier.'"
-
-"Now, then, what's the last entry?"
-
-"'December 22nd. Twenty-four geese at 7s. 6d.'"
-
-"Quite so. There you are. And underneath?"
-
-"'Sold to Mr. Windigate of the Alpha, at 12s.'"
-
-"What have you to say now?"
-
-Sherlock Holmes looked deeply chagrined. He drew a sovereign from
-his pocket and threw it down upon the slab, turning away with the
-air of a man whose disgust is too deep for words. A few yards off
-he stopped under a lamp-post and laughed in the hearty, noiseless
-fashion which was peculiar to him.
-
-"When you see a man with whiskers of that cut and the 'Pink 'un'
-protruding out of his pocket, you can always draw him by a bet,"
-said he. "I daresay that if I had put 100 pounds down in front of
-him, that man would not have given me such complete information
-as was drawn from him by the idea that he was doing me on a
-wager. Well, Watson, we are, I fancy, nearing the end of our
-quest, and the only point which remains to be determined is
-whether we should go on to this Mrs. Oakshott to-night, or
-whether we should reserve it for to-morrow. It is clear from what
-that surly fellow said that there are others besides ourselves
-who are anxious about the matter, and I should--"
-
-His remarks were suddenly cut short by a loud hubbub which broke
-out from the stall which we had just left. Turning round we saw a
-little rat-faced fellow standing in the centre of the circle of
-yellow light which was thrown by the swinging lamp, while
-Breckinridge, the salesman, framed in the door of his stall, was
-shaking his fists fiercely at the cringing figure.
-
-"I've had enough of you and your geese," he shouted. "I wish you
-were all at the devil together. If you come pestering me any more
-with your silly talk I'll set the dog at you. You bring Mrs.
-Oakshott here and I'll answer her, but what have you to do with
-it? Did I buy the geese off you?"
-
-"No; but one of them was mine all the same," whined the little
-man.
-
-"Well, then, ask Mrs. Oakshott for it."
-
-"She told me to ask you."
-
-"Well, you can ask the King of Proosia, for all I care. I've had
-enough of it. Get out of this!" He rushed fiercely forward, and
-the inquirer flitted away into the darkness.
-
-"Ha! this may save us a visit to Brixton Road," whispered Holmes.
-"Come with me, and we will see what is to be made of this
-fellow." Striding through the scattered knots of people who
-lounged round the flaring stalls, my companion speedily overtook
-the little man and touched him upon the shoulder. He sprang
-round, and I could see in the gas-light that every vestige of
-colour had been driven from his face.
-
-"Who are you, then? What do you want?" he asked in a quavering
-voice.
-
-"You will excuse me," said Holmes blandly, "but I could not help
-overhearing the questions which you put to the salesman just now.
-I think that I could be of assistance to you."
-
-"You? Who are you? How could you know anything of the matter?"
-
-"My name is Sherlock Holmes. It is my business to know what other
-people don't know."
-
-"But you can know nothing of this?"
-
-"Excuse me, I know everything of it. You are endeavouring to
-trace some geese which were sold by Mrs. Oakshott, of Brixton
-Road, to a salesman named Breckinridge, by him in turn to Mr.
-Windigate, of the Alpha, and by him to his club, of which Mr.
-Henry Baker is a member."
-
-"Oh, sir, you are the very man whom I have longed to meet," cried
-the little fellow with outstretched hands and quivering fingers.
-"I can hardly explain to you how interested I am in this matter."
-
-Sherlock Holmes hailed a four-wheeler which was passing. "In that
-case we had better discuss it in a cosy room rather than in this
-wind-swept market-place," said he. "But pray tell me, before we
-go farther, who it is that I have the pleasure of assisting."
-
-The man hesitated for an instant. "My name is John Robinson," he
-answered with a sidelong glance.
-
-"No, no; the real name," said Holmes sweetly. "It is always
-awkward doing business with an alias."
-
-A flush sprang to the white cheeks of the stranger. "Well then,"
-said he, "my real name is James Ryder."
-
-"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray
-step into the cab, and I shall soon be able to tell you
-everything which you would wish to know."
-
-The little man stood glancing from one to the other of us with
-half-frightened, half-hopeful eyes, as one who is not sure
-whether he is on the verge of a windfall or of a catastrophe.
-Then he stepped into the cab, and in half an hour we were back in
-the sitting-room at Baker Street. Nothing had been said during
-our drive, but the high, thin breathing of our new companion, and
-the claspings and unclaspings of his hands, spoke of the nervous
-tension within him.
-
-"Here we are!" said Holmes cheerily as we filed into the room.
-"The fire looks very seasonable in this weather. You look cold,
-Mr. Ryder. Pray take the basket-chair. I will just put on my
-slippers before we settle this little matter of yours. Now, then!
-You want to know what became of those geese?"
-
-"Yes, sir."
-
-"Or rather, I fancy, of that goose. It was one bird, I imagine in
-which you were interested--white, with a black bar across the
-tail."
-
-Ryder quivered with emotion. "Oh, sir," he cried, "can you tell
-me where it went to?"
-
-"It came here."
-
-"Here?"
-
-"Yes, and a most remarkable bird it proved. I don't wonder that
-you should take an interest in it. It laid an egg after it was
-dead--the bonniest, brightest little blue egg that ever was seen.
-I have it here in my museum."
-
-Our visitor staggered to his feet and clutched the mantelpiece
-with his right hand. Holmes unlocked his strong-box and held up
-the blue carbuncle, which shone out like a star, with a cold,
-brilliant, many-pointed radiance. Ryder stood glaring with a
-drawn face, uncertain whether to claim or to disown it.
-
-"The game's up, Ryder," said Holmes quietly. "Hold up, man, or
-you'll be into the fire! Give him an arm back into his chair,
-Watson. He's not got blood enough to go in for felony with
-impunity. Give him a dash of brandy. So! Now he looks a little
-more human. What a shrimp it is, to be sure!"
-
-For a moment he had staggered and nearly fallen, but the brandy
-brought a tinge of colour into his cheeks, and he sat staring
-with frightened eyes at his accuser.
-
-"I have almost every link in my hands, and all the proofs which I
-could possibly need, so there is little which you need tell me.
-Still, that little may as well be cleared up to make the case
-complete. You had heard, Ryder, of this blue stone of the
-Countess of Morcar's?"
-
-"It was Catherine Cusack who told me of it," said he in a
-crackling voice.
-
-"I see--her ladyship's waiting-maid. Well, the temptation of
-sudden wealth so easily acquired was too much for you, as it has
-been for better men before you; but you were not very scrupulous
-in the means you used. It seems to me, Ryder, that there is the
-making of a very pretty villain in you. You knew that this man
-Horner, the plumber, had been concerned in some such matter
-before, and that suspicion would rest the more readily upon him.
-What did you do, then? You made some small job in my lady's
-room--you and your confederate Cusack--and you managed that he
-should be the man sent for. Then, when he had left, you rifled
-the jewel-case, raised the alarm, and had this unfortunate man
-arrested. You then--"
-
-Ryder threw himself down suddenly upon the rug and clutched at my
-companion's knees. "For God's sake, have mercy!" he shrieked.
-"Think of my father! Of my mother! It would break their hearts. I
-never went wrong before! I never will again. I swear it. I'll
-swear it on a Bible. Oh, don't bring it into court! For Christ's
-sake, don't!"
-
-"Get back into your chair!" said Holmes sternly. "It is very well
-to cringe and crawl now, but you thought little enough of this
-poor Horner in the dock for a crime of which he knew nothing."
-
-"I will fly, Mr. Holmes. I will leave the country, sir. Then the
-charge against him will break down."
-
-"Hum! We will talk about that. And now let us hear a true account
-of the next act. How came the stone into the goose, and how came
-the goose into the open market? Tell us the truth, for there lies
-your only hope of safety."
-
-Ryder passed his tongue over his parched lips. "I will tell you
-it just as it happened, sir," said he. "When Horner had been
-arrested, it seemed to me that it would be best for me to get
-away with the stone at once, for I did not know at what moment
-the police might not take it into their heads to search me and my
-room. There was no place about the hotel where it would be safe.
-I went out, as if on some commission, and I made for my sister's
-house. She had married a man named Oakshott, and lived in Brixton
-Road, where she fattened fowls for the market. All the way there
-every man I met seemed to me to be a policeman or a detective;
-and, for all that it was a cold night, the sweat was pouring down
-my face before I came to the Brixton Road. My sister asked me
-what was the matter, and why I was so pale; but I told her that I
-had been upset by the jewel robbery at the hotel. Then I went
-into the back yard and smoked a pipe and wondered what it would
-be best to do.
-
-"I had a friend once called Maudsley, who went to the bad, and
-has just been serving his time in Pentonville. One day he had met
-me, and fell into talk about the ways of thieves, and how they
-could get rid of what they stole. I knew that he would be true to
-me, for I knew one or two things about him; so I made up my mind
-to go right on to Kilburn, where he lived, and take him into my
-confidence. He would show me how to turn the stone into money.
-But how to get to him in safety? I thought of the agonies I had
-gone through in coming from the hotel. I might at any moment be
-seized and searched, and there would be the stone in my waistcoat
-pocket. I was leaning against the wall at the time and looking at
-the geese which were waddling about round my feet, and suddenly
-an idea came into my head which showed me how I could beat the
-best detective that ever lived.
-
-"My sister had told me some weeks before that I might have the
-pick of her geese for a Christmas present, and I knew that she
-was always as good as her word. I would take my goose now, and in
-it I would carry my stone to Kilburn. There was a little shed in
-the yard, and behind this I drove one of the birds--a fine big
-one, white, with a barred tail. I caught it, and prying its bill
-open, I thrust the stone down its throat as far as my finger
-could reach. The bird gave a gulp, and I felt the stone pass
-along its gullet and down into its crop. But the creature flapped
-and struggled, and out came my sister to know what was the
-matter. As I turned to speak to her the brute broke loose and
-fluttered off among the others.
-
-"'Whatever were you doing with that bird, Jem?' says she.
-
-"'Well,' said I, 'you said you'd give me one for Christmas, and I
-was feeling which was the fattest.'
-
-"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we
-call it. It's the big white one over yonder. There's twenty-six
-of them, which makes one for you, and one for us, and two dozen
-for the market.'
-
-"'Thank you, Maggie,' says I; 'but if it is all the same to you,
-I'd rather have that one I was handling just now.'
-
-"'The other is a good three pound heavier,' said she, 'and we
-fattened it expressly for you.'
-
-"'Never mind. I'll have the other, and I'll take it now,' said I.
-
-"'Oh, just as you like,' said she, a little huffed. 'Which is it
-you want, then?'
-
-"'That white one with the barred tail, right in the middle of the
-flock.'
-
-"'Oh, very well. Kill it and take it with you.'
-
-"Well, I did what she said, Mr. Holmes, and I carried the bird
-all the way to Kilburn. I told my pal what I had done, for he was
-a man that it was easy to tell a thing like that to. He laughed
-until he choked, and we got a knife and opened the goose. My
-heart turned to water, for there was no sign of the stone, and I
-knew that some terrible mistake had occurred. I left the bird,
-rushed back to my sister's, and hurried into the back yard. There
-was not a bird to be seen there.
-
-"'Where are they all, Maggie?' I cried.
-
-"'Gone to the dealer's, Jem.'
-
-"'Which dealer's?'
-
-"'Breckinridge, of Covent Garden.'
-
-"'But was there another with a barred tail?' I asked, 'the same
-as the one I chose?'
-
-"'Yes, Jem; there were two barred-tailed ones, and I could never
-tell them apart.'
-
-"Well, then, of course I saw it all, and I ran off as hard as my
-feet would carry me to this man Breckinridge; but he had sold the
-lot at once, and not one word would he tell me as to where they
-had gone. You heard him yourselves to-night. Well, he has always
-answered me like that. My sister thinks that I am going mad.
-Sometimes I think that I am myself. And now--and now I am myself
-a branded thief, without ever having touched the wealth for which
-I sold my character. God help me! God help me!" He burst into
-convulsive sobbing, with his face buried in his hands.
-
-There was a long silence, broken only by his heavy breathing and
-by the measured tapping of Sherlock Holmes' finger-tips upon the
-edge of the table. Then my friend rose and threw open the door.
-
-"Get out!" said he.
-
-"What, sir! Oh, Heaven bless you!"
-
-"No more words. Get out!"
-
-And no more words were needed. There was a rush, a clatter upon
-the stairs, the bang of a door, and the crisp rattle of running
-footfalls from the street.
-
-"After all, Watson," said Holmes, reaching up his hand for his
-clay pipe, "I am not retained by the police to supply their
-deficiencies. If Horner were in danger it would be another thing;
-but this fellow will not appear against him, and the case must
-collapse. I suppose that I am commuting a felony, but it is just
-possible that I am saving a soul. This fellow will not go wrong
-again; he is too terribly frightened. Send him to gaol now, and
-you make him a gaol-bird for life. Besides, it is the season of
-forgiveness. Chance has put in our way a most singular and
-whimsical problem, and its solution is its own reward. If you
-will have the goodness to touch the bell, Doctor, we will begin
-another investigation, in which, also a bird will be the chief
-feature."
-
-
-
-VIII. THE ADVENTURE OF THE SPECKLED BAND
-
-On glancing over my notes of the seventy odd cases in which I
-have during the last eight years studied the methods of my friend
-Sherlock Holmes, I find many tragic, some comic, a large number
-merely strange, but none commonplace; for, working as he did
-rather for the love of his art than for the acquirement of
-wealth, he refused to associate himself with any investigation
-which did not tend towards the unusual, and even the fantastic.
-Of all these varied cases, however, I cannot recall any which
-presented more singular features than that which was associated
-with the well-known Surrey family of the Roylotts of Stoke Moran.
-The events in question occurred in the early days of my
-association with Holmes, when we were sharing rooms as bachelors
-in Baker Street. It is possible that I might have placed them
-upon record before, but a promise of secrecy was made at the
-time, from which I have only been freed during the last month by
-the untimely death of the lady to whom the pledge was given. It
-is perhaps as well that the facts should now come to light, for I
-have reasons to know that there are widespread rumours as to the
-death of Dr. Grimesby Roylott which tend to make the matter even
-more terrible than the truth.
-
-It was early in April in the year '83 that I woke one morning to
-find Sherlock Holmes standing, fully dressed, by the side of my
-bed. He was a late riser, as a rule, and as the clock on the
-mantelpiece showed me that it was only a quarter-past seven, I
-blinked up at him in some surprise, and perhaps just a little
-resentment, for I was myself regular in my habits.
-
-"Very sorry to knock you up, Watson," said he, "but it's the
-common lot this morning. Mrs. Hudson has been knocked up, she
-retorted upon me, and I on you."
-
-"What is it, then--a fire?"
-
-"No; a client. It seems that a young lady has arrived in a
-considerable state of excitement, who insists upon seeing me. She
-is waiting now in the sitting-room. Now, when young ladies wander
-about the metropolis at this hour of the morning, and knock
-sleepy people up out of their beds, I presume that it is
-something very pressing which they have to communicate. Should it
-prove to be an interesting case, you would, I am sure, wish to
-follow it from the outset. I thought, at any rate, that I should
-call you and give you the chance."
-
-"My dear fellow, I would not miss it for anything."
-
-I had no keener pleasure than in following Holmes in his
-professional investigations, and in admiring the rapid
-deductions, as swift as intuitions, and yet always founded on a
-logical basis with which he unravelled the problems which were
-submitted to him. I rapidly threw on my clothes and was ready in
-a few minutes to accompany my friend down to the sitting-room. A
-lady dressed in black and heavily veiled, who had been sitting in
-the window, rose as we entered.
-
-"Good-morning, madam," said Holmes cheerily. "My name is Sherlock
-Holmes. This is my intimate friend and associate, Dr. Watson,
-before whom you can speak as freely as before myself. Ha! I am
-glad to see that Mrs. Hudson has had the good sense to light the
-fire. Pray draw up to it, and I shall order you a cup of hot
-coffee, for I observe that you are shivering."
-
-"It is not cold which makes me shiver," said the woman in a low
-voice, changing her seat as requested.
-
-"What, then?"
-
-"It is fear, Mr. Holmes. It is terror." She raised her veil as
-she spoke, and we could see that she was indeed in a pitiable
-state of agitation, her face all drawn and grey, with restless
-frightened eyes, like those of some hunted animal. Her features
-and figure were those of a woman of thirty, but her hair was shot
-with premature grey, and her expression was weary and haggard.
-Sherlock Holmes ran her over with one of his quick,
-all-comprehensive glances.
-
-"You must not fear," said he soothingly, bending forward and
-patting her forearm. "We shall soon set matters right, I have no
-doubt. You have come in by train this morning, I see."
-
-"You know me, then?"
-
-"No, but I observe the second half of a return ticket in the palm
-of your left glove. You must have started early, and yet you had
-a good drive in a dog-cart, along heavy roads, before you reached
-the station."
-
-The lady gave a violent start and stared in bewilderment at my
-companion.
-
-"There is no mystery, my dear madam," said he, smiling. "The left
-arm of your jacket is spattered with mud in no less than seven
-places. The marks are perfectly fresh. There is no vehicle save a
-dog-cart which throws up mud in that way, and then only when you
-sit on the left-hand side of the driver."
-
-"Whatever your reasons may be, you are perfectly correct," said
-she. "I started from home before six, reached Leatherhead at
-twenty past, and came in by the first train to Waterloo. Sir, I
-can stand this strain no longer; I shall go mad if it continues.
-I have no one to turn to--none, save only one, who cares for me,
-and he, poor fellow, can be of little aid. I have heard of you,
-Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you
-helped in the hour of her sore need. It was from her that I had
-your address. Oh, sir, do you not think that you could help me,
-too, and at least throw a little light through the dense darkness
-which surrounds me? At present it is out of my power to reward
-you for your services, but in a month or six weeks I shall be
-married, with the control of my own income, and then at least you
-shall not find me ungrateful."
-
-Holmes turned to his desk and, unlocking it, drew out a small
-case-book, which he consulted.
-
-"Farintosh," said he. "Ah yes, I recall the case; it was
-concerned with an opal tiara. I think it was before your time,
-Watson. I can only say, madam, that I shall be happy to devote
-the same care to your case as I did to that of your friend. As to
-reward, my profession is its own reward; but you are at liberty
-to defray whatever expenses I may be put to, at the time which
-suits you best. And now I beg that you will lay before us
-everything that may help us in forming an opinion upon the
-matter."
-
-"Alas!" replied our visitor, "the very horror of my situation
-lies in the fact that my fears are so vague, and my suspicions
-depend so entirely upon small points, which might seem trivial to
-another, that even he to whom of all others I have a right to
-look for help and advice looks upon all that I tell him about it
-as the fancies of a nervous woman. He does not say so, but I can
-read it from his soothing answers and averted eyes. But I have
-heard, Mr. Holmes, that you can see deeply into the manifold
-wickedness of the human heart. You may advise me how to walk amid
-the dangers which encompass me."
-
-"I am all attention, madam."
-
-"My name is Helen Stoner, and I am living with my stepfather, who
-is the last survivor of one of the oldest Saxon families in
-England, the Roylotts of Stoke Moran, on the western border of
-Surrey."
-
-Holmes nodded his head. "The name is familiar to me," said he.
-
-"The family was at one time among the richest in England, and the
-estates extended over the borders into Berkshire in the north,
-and Hampshire in the west. In the last century, however, four
-successive heirs were of a dissolute and wasteful disposition,
-and the family ruin was eventually completed by a gambler in the
-days of the Regency. Nothing was left save a few acres of ground,
-and the two-hundred-year-old house, which is itself crushed under
-a heavy mortgage. The last squire dragged out his existence
-there, living the horrible life of an aristocratic pauper; but
-his only son, my stepfather, seeing that he must adapt himself to
-the new conditions, obtained an advance from a relative, which
-enabled him to take a medical degree and went out to Calcutta,
-where, by his professional skill and his force of character, he
-established a large practice. In a fit of anger, however, caused
-by some robberies which had been perpetrated in the house, he
-beat his native butler to death and narrowly escaped a capital
-sentence. As it was, he suffered a long term of imprisonment and
-afterwards returned to England a morose and disappointed man.
-
-"When Dr. Roylott was in India he married my mother, Mrs. Stoner,
-the young widow of Major-General Stoner, of the Bengal Artillery.
-My sister Julia and I were twins, and we were only two years old
-at the time of my mother's re-marriage. She had a considerable
-sum of money--not less than 1000 pounds a year--and this she
-bequeathed to Dr. Roylott entirely while we resided with him,
-with a provision that a certain annual sum should be allowed to
-each of us in the event of our marriage. Shortly after our return
-to England my mother died--she was killed eight years ago in a
-railway accident near Crewe. Dr. Roylott then abandoned his
-attempts to establish himself in practice in London and took us
-to live with him in the old ancestral house at Stoke Moran. The
-money which my mother had left was enough for all our wants, and
-there seemed to be no obstacle to our happiness.
-
-"But a terrible change came over our stepfather about this time.
-Instead of making friends and exchanging visits with our
-neighbours, who had at first been overjoyed to see a Roylott of
-Stoke Moran back in the old family seat, he shut himself up in
-his house and seldom came out save to indulge in ferocious
-quarrels with whoever might cross his path. Violence of temper
-approaching to mania has been hereditary in the men of the
-family, and in my stepfather's case it had, I believe, been
-intensified by his long residence in the tropics. A series of
-disgraceful brawls took place, two of which ended in the
-police-court, until at last he became the terror of the village,
-and the folks would fly at his approach, for he is a man of
-immense strength, and absolutely uncontrollable in his anger.
-
-"Last week he hurled the local blacksmith over a parapet into a
-stream, and it was only by paying over all the money which I
-could gather together that I was able to avert another public
-exposure. He had no friends at all save the wandering gipsies,
-and he would give these vagabonds leave to encamp upon the few
-acres of bramble-covered land which represent the family estate,
-and would accept in return the hospitality of their tents,
-wandering away with them sometimes for weeks on end. He has a
-passion also for Indian animals, which are sent over to him by a
-correspondent, and he has at this moment a cheetah and a baboon,
-which wander freely over his grounds and are feared by the
-villagers almost as much as their master.
-
-"You can imagine from what I say that my poor sister Julia and I
-had no great pleasure in our lives. No servant would stay with
-us, and for a long time we did all the work of the house. She was
-but thirty at the time of her death, and yet her hair had already
-begun to whiten, even as mine has."
-
-"Your sister is dead, then?"
-
-"She died just two years ago, and it is of her death that I wish
-to speak to you. You can understand that, living the life which I
-have described, we were little likely to see anyone of our own
-age and position. We had, however, an aunt, my mother's maiden
-sister, Miss Honoria Westphail, who lives near Harrow, and we
-were occasionally allowed to pay short visits at this lady's
-house. Julia went there at Christmas two years ago, and met there
-a half-pay major of marines, to whom she became engaged. My
-stepfather learned of the engagement when my sister returned and
-offered no objection to the marriage; but within a fortnight of
-the day which had been fixed for the wedding, the terrible event
-occurred which has deprived me of my only companion."
-
-Sherlock Holmes had been leaning back in his chair with his eyes
-closed and his head sunk in a cushion, but he half opened his
-lids now and glanced across at his visitor.
-
-"Pray be precise as to details," said he.
-
-"It is easy for me to be so, for every event of that dreadful
-time is seared into my memory. The manor-house is, as I have
-already said, very old, and only one wing is now inhabited. The
-bedrooms in this wing are on the ground floor, the sitting-rooms
-being in the central block of the buildings. Of these bedrooms
-the first is Dr. Roylott's, the second my sister's, and the third
-my own. There is no communication between them, but they all open
-out into the same corridor. Do I make myself plain?"
-
-"Perfectly so."
-
-"The windows of the three rooms open out upon the lawn. That
-fatal night Dr. Roylott had gone to his room early, though we
-knew that he had not retired to rest, for my sister was troubled
-by the smell of the strong Indian cigars which it was his custom
-to smoke. She left her room, therefore, and came into mine, where
-she sat for some time, chatting about her approaching wedding. At
-eleven o'clock she rose to leave me, but she paused at the door
-and looked back.
-
-"'Tell me, Helen,' said she, 'have you ever heard anyone whistle
-in the dead of the night?'
-
-"'Never,' said I.
-
-"'I suppose that you could not possibly whistle, yourself, in
-your sleep?'
-
-"'Certainly not. But why?'
-
-"'Because during the last few nights I have always, about three
-in the morning, heard a low, clear whistle. I am a light sleeper,
-and it has awakened me. I cannot tell where it came from--perhaps
-from the next room, perhaps from the lawn. I thought that I would
-just ask you whether you had heard it.'
-
-"'No, I have not. It must be those wretched gipsies in the
-plantation.'
-
-"'Very likely. And yet if it were on the lawn, I wonder that you
-did not hear it also.'
-
-"'Ah, but I sleep more heavily than you.'
-
-"'Well, it is of no great consequence, at any rate.' She smiled
-back at me, closed my door, and a few moments later I heard her
-key turn in the lock."
-
-"Indeed," said Holmes. "Was it your custom always to lock
-yourselves in at night?"
-
-"Always."
-
-"And why?"
-
-"I think that I mentioned to you that the doctor kept a cheetah
-and a baboon. We had no feeling of security unless our doors were
-locked."
-
-"Quite so. Pray proceed with your statement."
-
-"I could not sleep that night. A vague feeling of impending
-misfortune impressed me. My sister and I, you will recollect,
-were twins, and you know how subtle are the links which bind two
-souls which are so closely allied. It was a wild night. The wind
-was howling outside, and the rain was beating and splashing
-against the windows. Suddenly, amid all the hubbub of the gale,
-there burst forth the wild scream of a terrified woman. I knew
-that it was my sister's voice. I sprang from my bed, wrapped a
-shawl round me, and rushed into the corridor. As I opened my door
-I seemed to hear a low whistle, such as my sister described, and
-a few moments later a clanging sound, as if a mass of metal had
-fallen. As I ran down the passage, my sister's door was unlocked,
-and revolved slowly upon its hinges. I stared at it
-horror-stricken, not knowing what was about to issue from it. By
-the light of the corridor-lamp I saw my sister appear at the
-opening, her face blanched with terror, her hands groping for
-help, her whole figure swaying to and fro like that of a
-drunkard. I ran to her and threw my arms round her, but at that
-moment her knees seemed to give way and she fell to the ground.
-She writhed as one who is in terrible pain, and her limbs were
-dreadfully convulsed. At first I thought that she had not
-recognised me, but as I bent over her she suddenly shrieked out
-in a voice which I shall never forget, 'Oh, my God! Helen! It was
-the band! The speckled band!' There was something else which she
-would fain have said, and she stabbed with her finger into the
-air in the direction of the doctor's room, but a fresh convulsion
-seized her and choked her words. I rushed out, calling loudly for
-my stepfather, and I met him hastening from his room in his
-dressing-gown. When he reached my sister's side she was
-unconscious, and though he poured brandy down her throat and sent
-for medical aid from the village, all efforts were in vain, for
-she slowly sank and died without having recovered her
-consciousness. Such was the dreadful end of my beloved sister."
-
-"One moment," said Holmes, "are you sure about this whistle and
-metallic sound? Could you swear to it?"
-
-"That was what the county coroner asked me at the inquiry. It is
-my strong impression that I heard it, and yet, among the crash of
-the gale and the creaking of an old house, I may possibly have
-been deceived."
-
-"Was your sister dressed?"
-
-"No, she was in her night-dress. In her right hand was found the
-charred stump of a match, and in her left a match-box."
-
-"Showing that she had struck a light and looked about her when
-the alarm took place. That is important. And what conclusions did
-the coroner come to?"
-
-"He investigated the case with great care, for Dr. Roylott's
-conduct had long been notorious in the county, but he was unable
-to find any satisfactory cause of death. My evidence showed that
-the door had been fastened upon the inner side, and the windows
-were blocked by old-fashioned shutters with broad iron bars,
-which were secured every night. The walls were carefully sounded,
-and were shown to be quite solid all round, and the flooring was
-also thoroughly examined, with the same result. The chimney is
-wide, but is barred up by four large staples. It is certain,
-therefore, that my sister was quite alone when she met her end.
-Besides, there were no marks of any violence upon her."
-
-"How about poison?"
-
-"The doctors examined her for it, but without success."
-
-"What do you think that this unfortunate lady died of, then?"
-
-"It is my belief that she died of pure fear and nervous shock,
-though what it was that frightened her I cannot imagine."
-
-"Were there gipsies in the plantation at the time?"
-
-"Yes, there are nearly always some there."
-
-"Ah, and what did you gather from this allusion to a band--a
-speckled band?"
-
-"Sometimes I have thought that it was merely the wild talk of
-delirium, sometimes that it may have referred to some band of
-people, perhaps to these very gipsies in the plantation. I do not
-know whether the spotted handkerchiefs which so many of them wear
-over their heads might have suggested the strange adjective which
-she used."
-
-Holmes shook his head like a man who is far from being satisfied.
-
-"These are very deep waters," said he; "pray go on with your
-narrative."
-
-"Two years have passed since then, and my life has been until
-lately lonelier than ever. A month ago, however, a dear friend,
-whom I have known for many years, has done me the honour to ask
-my hand in marriage. His name is Armitage--Percy Armitage--the
-second son of Mr. Armitage, of Crane Water, near Reading. My
-stepfather has offered no opposition to the match, and we are to
-be married in the course of the spring. Two days ago some repairs
-were started in the west wing of the building, and my bedroom
-wall has been pierced, so that I have had to move into the
-chamber in which my sister died, and to sleep in the very bed in
-which she slept. Imagine, then, my thrill of terror when last
-night, as I lay awake, thinking over her terrible fate, I
-suddenly heard in the silence of the night the low whistle which
-had been the herald of her own death. I sprang up and lit the
-lamp, but nothing was to be seen in the room. I was too shaken to
-go to bed again, however, so I dressed, and as soon as it was
-daylight I slipped down, got a dog-cart at the Crown Inn, which
-is opposite, and drove to Leatherhead, from whence I have come on
-this morning with the one object of seeing you and asking your
-advice."
-
-"You have done wisely," said my friend. "But have you told me
-all?"
-
-"Yes, all."
-
-"Miss Roylott, you have not. You are screening your stepfather."
-
-"Why, what do you mean?"
-
-For answer Holmes pushed back the frill of black lace which
-fringed the hand that lay upon our visitor's knee. Five little
-livid spots, the marks of four fingers and a thumb, were printed
-upon the white wrist.
-
-"You have been cruelly used," said Holmes.
-
-The lady coloured deeply and covered over her injured wrist. "He
-is a hard man," she said, "and perhaps he hardly knows his own
-strength."
-
-There was a long silence, during which Holmes leaned his chin
-upon his hands and stared into the crackling fire.
-
-"This is a very deep business," he said at last. "There are a
-thousand details which I should desire to know before I decide
-upon our course of action. Yet we have not a moment to lose. If
-we were to come to Stoke Moran to-day, would it be possible for
-us to see over these rooms without the knowledge of your
-stepfather?"
-
-"As it happens, he spoke of coming into town to-day upon some
-most important business. It is probable that he will be away all
-day, and that there would be nothing to disturb you. We have a
-housekeeper now, but she is old and foolish, and I could easily
-get her out of the way."
-
-"Excellent. You are not averse to this trip, Watson?"
-
-"By no means."
-
-"Then we shall both come. What are you going to do yourself?"
-
-"I have one or two things which I would wish to do now that I am
-in town. But I shall return by the twelve o'clock train, so as to
-be there in time for your coming."
-
-"And you may expect us early in the afternoon. I have myself some
-small business matters to attend to. Will you not wait and
-breakfast?"
-
-"No, I must go. My heart is lightened already since I have
-confided my trouble to you. I shall look forward to seeing you
-again this afternoon." She dropped her thick black veil over her
-face and glided from the room.
-
-"And what do you think of it all, Watson?" asked Sherlock Holmes,
-leaning back in his chair.
-
-"It seems to me to be a most dark and sinister business."
-
-"Dark enough and sinister enough."
-
-"Yet if the lady is correct in saying that the flooring and walls
-are sound, and that the door, window, and chimney are impassable,
-then her sister must have been undoubtedly alone when she met her
-mysterious end."
-
-"What becomes, then, of these nocturnal whistles, and what of the
-very peculiar words of the dying woman?"
-
-"I cannot think."
-
-"When you combine the ideas of whistles at night, the presence of
-a band of gipsies who are on intimate terms with this old doctor,
-the fact that we have every reason to believe that the doctor has
-an interest in preventing his stepdaughter's marriage, the dying
-allusion to a band, and, finally, the fact that Miss Helen Stoner
-heard a metallic clang, which might have been caused by one of
-those metal bars that secured the shutters falling back into its
-place, I think that there is good ground to think that the
-mystery may be cleared along those lines."
-
-"But what, then, did the gipsies do?"
-
-"I cannot imagine."
-
-"I see many objections to any such theory."
-
-"And so do I. It is precisely for that reason that we are going
-to Stoke Moran this day. I want to see whether the objections are
-fatal, or if they may be explained away. But what in the name of
-the devil!"
-
-The ejaculation had been drawn from my companion by the fact that
-our door had been suddenly dashed open, and that a huge man had
-framed himself in the aperture. His costume was a peculiar
-mixture of the professional and of the agricultural, having a
-black top-hat, a long frock-coat, and a pair of high gaiters,
-with a hunting-crop swinging in his hand. So tall was he that his
-hat actually brushed the cross bar of the doorway, and his
-breadth seemed to span it across from side to side. A large face,
-seared with a thousand wrinkles, burned yellow with the sun, and
-marked with every evil passion, was turned from one to the other
-of us, while his deep-set, bile-shot eyes, and his high, thin,
-fleshless nose, gave him somewhat the resemblance to a fierce old
-bird of prey.
-
-"Which of you is Holmes?" asked this apparition.
-
-"My name, sir; but you have the advantage of me," said my
-companion quietly.
-
-"I am Dr. Grimesby Roylott, of Stoke Moran."
-
-"Indeed, Doctor," said Holmes blandly. "Pray take a seat."
-
-"I will do nothing of the kind. My stepdaughter has been here. I
-have traced her. What has she been saying to you?"
-
-"It is a little cold for the time of the year," said Holmes.
-
-"What has she been saying to you?" screamed the old man
-furiously.
-
-"But I have heard that the crocuses promise well," continued my
-companion imperturbably.
-
-"Ha! You put me off, do you?" said our new visitor, taking a step
-forward and shaking his hunting-crop. "I know you, you scoundrel!
-I have heard of you before. You are Holmes, the meddler."
-
-My friend smiled.
-
-"Holmes, the busybody!"
-
-His smile broadened.
-
-"Holmes, the Scotland Yard Jack-in-office!"
-
-Holmes chuckled heartily. "Your conversation is most
-entertaining," said he. "When you go out close the door, for
-there is a decided draught."
-
-"I will go when I have said my say. Don't you dare to meddle with
-my affairs. I know that Miss Stoner has been here. I traced her!
-I am a dangerous man to fall foul of! See here." He stepped
-swiftly forward, seized the poker, and bent it into a curve with
-his huge brown hands.
-
-"See that you keep yourself out of my grip," he snarled, and
-hurling the twisted poker into the fireplace he strode out of the
-room.
-
-"He seems a very amiable person," said Holmes, laughing. "I am
-not quite so bulky, but if he had remained I might have shown him
-that my grip was not much more feeble than his own." As he spoke
-he picked up the steel poker and, with a sudden effort,
-straightened it out again.
-
-"Fancy his having the insolence to confound me with the official
-detective force! This incident gives zest to our investigation,
-however, and I only trust that our little friend will not suffer
-from her imprudence in allowing this brute to trace her. And now,
-Watson, we shall order breakfast, and afterwards I shall walk
-down to Doctors' Commons, where I hope to get some data which may
-help us in this matter."
-
-
-It was nearly one o'clock when Sherlock Holmes returned from his
-excursion. He held in his hand a sheet of blue paper, scrawled
-over with notes and figures.
-
-"I have seen the will of the deceased wife," said he. "To
-determine its exact meaning I have been obliged to work out the
-present prices of the investments with which it is concerned. The
-total income, which at the time of the wife's death was little
-short of 1100 pounds, is now, through the fall in agricultural
-prices, not more than 750 pounds. Each daughter can claim an
-income of 250 pounds, in case of marriage. It is evident,
-therefore, that if both girls had married, this beauty would have
-had a mere pittance, while even one of them would cripple him to
-a very serious extent. My morning's work has not been wasted,
-since it has proved that he has the very strongest motives for
-standing in the way of anything of the sort. And now, Watson,
-this is too serious for dawdling, especially as the old man is
-aware that we are interesting ourselves in his affairs; so if you
-are ready, we shall call a cab and drive to Waterloo. I should be
-very much obliged if you would slip your revolver into your
-pocket. An Eley's No. 2 is an excellent argument with gentlemen
-who can twist steel pokers into knots. That and a tooth-brush
-are, I think, all that we need."
-
-At Waterloo we were fortunate in catching a train for
-Leatherhead, where we hired a trap at the station inn and drove
-for four or five miles through the lovely Surrey lanes. It was a
-perfect day, with a bright sun and a few fleecy clouds in the
-heavens. The trees and wayside hedges were just throwing out
-their first green shoots, and the air was full of the pleasant
-smell of the moist earth. To me at least there was a strange
-contrast between the sweet promise of the spring and this
-sinister quest upon which we were engaged. My companion sat in
-the front of the trap, his arms folded, his hat pulled down over
-his eyes, and his chin sunk upon his breast, buried in the
-deepest thought. Suddenly, however, he started, tapped me on the
-shoulder, and pointed over the meadows.
-
-"Look there!" said he.
-
-A heavily timbered park stretched up in a gentle slope,
-thickening into a grove at the highest point. From amid the
-branches there jutted out the grey gables and high roof-tree of a
-very old mansion.
-
-"Stoke Moran?" said he.
-
-"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked
-the driver.
-
-"There is some building going on there," said Holmes; "that is
-where we are going."
-
-"There's the village," said the driver, pointing to a cluster of
-roofs some distance to the left; "but if you want to get to the
-house, you'll find it shorter to get over this stile, and so by
-the foot-path over the fields. There it is, where the lady is
-walking."
-
-"And the lady, I fancy, is Miss Stoner," observed Holmes, shading
-his eyes. "Yes, I think we had better do as you suggest."
-
-We got off, paid our fare, and the trap rattled back on its way
-to Leatherhead.
-
-"I thought it as well," said Holmes as we climbed the stile,
-"that this fellow should think we had come here as architects, or
-on some definite business. It may stop his gossip.
-Good-afternoon, Miss Stoner. You see that we have been as good as
-our word."
-
-Our client of the morning had hurried forward to meet us with a
-face which spoke her joy. "I have been waiting so eagerly for
-you," she cried, shaking hands with us warmly. "All has turned
-out splendidly. Dr. Roylott has gone to town, and it is unlikely
-that he will be back before evening."
-
-"We have had the pleasure of making the doctor's acquaintance,"
-said Holmes, and in a few words he sketched out what had
-occurred. Miss Stoner turned white to the lips as she listened.
-
-"Good heavens!" she cried, "he has followed me, then."
-
-"So it appears."
-
-"He is so cunning that I never know when I am safe from him. What
-will he say when he returns?"
-
-"He must guard himself, for he may find that there is someone
-more cunning than himself upon his track. You must lock yourself
-up from him to-night. If he is violent, we shall take you away to
-your aunt's at Harrow. Now, we must make the best use of our
-time, so kindly take us at once to the rooms which we are to
-examine."
-
-The building was of grey, lichen-blotched stone, with a high
-central portion and two curving wings, like the claws of a crab,
-thrown out on each side. In one of these wings the windows were
-broken and blocked with wooden boards, while the roof was partly
-caved in, a picture of ruin. The central portion was in little
-better repair, but the right-hand block was comparatively modern,
-and the blinds in the windows, with the blue smoke curling up
-from the chimneys, showed that this was where the family resided.
-Some scaffolding had been erected against the end wall, and the
-stone-work had been broken into, but there were no signs of any
-workmen at the moment of our visit. Holmes walked slowly up and
-down the ill-trimmed lawn and examined with deep attention the
-outsides of the windows.
-
-"This, I take it, belongs to the room in which you used to sleep,
-the centre one to your sister's, and the one next to the main
-building to Dr. Roylott's chamber?"
-
-"Exactly so. But I am now sleeping in the middle one."
-
-"Pending the alterations, as I understand. By the way, there does
-not seem to be any very pressing need for repairs at that end
-wall."
-
-"There were none. I believe that it was an excuse to move me from
-my room."
-
-"Ah! that is suggestive. Now, on the other side of this narrow
-wing runs the corridor from which these three rooms open. There
-are windows in it, of course?"
-
-"Yes, but very small ones. Too narrow for anyone to pass
-through."
-
-"As you both locked your doors at night, your rooms were
-unapproachable from that side. Now, would you have the kindness
-to go into your room and bar your shutters?"
-
-Miss Stoner did so, and Holmes, after a careful examination
-through the open window, endeavoured in every way to force the
-shutter open, but without success. There was no slit through
-which a knife could be passed to raise the bar. Then with his
-lens he tested the hinges, but they were of solid iron, built
-firmly into the massive masonry. "Hum!" said he, scratching his
-chin in some perplexity, "my theory certainly presents some
-difficulties. No one could pass these shutters if they were
-bolted. Well, we shall see if the inside throws any light upon
-the matter."
-
-A small side door led into the whitewashed corridor from which
-the three bedrooms opened. Holmes refused to examine the third
-chamber, so we passed at once to the second, that in which Miss
-Stoner was now sleeping, and in which her sister had met with her
-fate. It was a homely little room, with a low ceiling and a
-gaping fireplace, after the fashion of old country-houses. A
-brown chest of drawers stood in one corner, a narrow
-white-counterpaned bed in another, and a dressing-table on the
-left-hand side of the window. These articles, with two small
-wicker-work chairs, made up all the furniture in the room save
-for a square of Wilton carpet in the centre. The boards round and
-the panelling of the walls were of brown, worm-eaten oak, so old
-and discoloured that it may have dated from the original building
-of the house. Holmes drew one of the chairs into a corner and sat
-silent, while his eyes travelled round and round and up and down,
-taking in every detail of the apartment.
-
-"Where does that bell communicate with?" he asked at last
-pointing to a thick bell-rope which hung down beside the bed, the
-tassel actually lying upon the pillow.
-
-"It goes to the housekeeper's room."
-
-"It looks newer than the other things?"
-
-"Yes, it was only put there a couple of years ago."
-
-"Your sister asked for it, I suppose?"
-
-"No, I never heard of her using it. We used always to get what we
-wanted for ourselves."
-
-"Indeed, it seemed unnecessary to put so nice a bell-pull there.
-You will excuse me for a few minutes while I satisfy myself as to
-this floor." He threw himself down upon his face with his lens in
-his hand and crawled swiftly backward and forward, examining
-minutely the cracks between the boards. Then he did the same with
-the wood-work with which the chamber was panelled. Finally he
-walked over to the bed and spent some time in staring at it and
-in running his eye up and down the wall. Finally he took the
-bell-rope in his hand and gave it a brisk tug.
-
-"Why, it's a dummy," said he.
-
-"Won't it ring?"
-
-"No, it is not even attached to a wire. This is very interesting.
-You can see now that it is fastened to a hook just above where
-the little opening for the ventilator is."
-
-"How very absurd! I never noticed that before."
-
-"Very strange!" muttered Holmes, pulling at the rope. "There are
-one or two very singular points about this room. For example,
-what a fool a builder must be to open a ventilator into another
-room, when, with the same trouble, he might have communicated
-with the outside air!"
-
-"That is also quite modern," said the lady.
-
-"Done about the same time as the bell-rope?" remarked Holmes.
-
-"Yes, there were several little changes carried out about that
-time."
-
-"They seem to have been of a most interesting character--dummy
-bell-ropes, and ventilators which do not ventilate. With your
-permission, Miss Stoner, we shall now carry our researches into
-the inner apartment."
-
-Dr. Grimesby Roylott's chamber was larger than that of his
-step-daughter, but was as plainly furnished. A camp-bed, a small
-wooden shelf full of books, mostly of a technical character, an
-armchair beside the bed, a plain wooden chair against the wall, a
-round table, and a large iron safe were the principal things
-which met the eye. Holmes walked slowly round and examined each
-and all of them with the keenest interest.
-
-"What's in here?" he asked, tapping the safe.
-
-"My stepfather's business papers."
-
-"Oh! you have seen inside, then?"
-
-"Only once, some years ago. I remember that it was full of
-papers."
-
-"There isn't a cat in it, for example?"
-
-"No. What a strange idea!"
-
-"Well, look at this!" He took up a small saucer of milk which
-stood on the top of it.
-
-"No; we don't keep a cat. But there is a cheetah and a baboon."
-
-"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a
-saucer of milk does not go very far in satisfying its wants, I
-daresay. There is one point which I should wish to determine." He
-squatted down in front of the wooden chair and examined the seat
-of it with the greatest attention.
-
-"Thank you. That is quite settled," said he, rising and putting
-his lens in his pocket. "Hullo! Here is something interesting!"
-
-The object which had caught his eye was a small dog lash hung on
-one corner of the bed. The lash, however, was curled upon itself
-and tied so as to make a loop of whipcord.
-
-"What do you make of that, Watson?"
-
-"It's a common enough lash. But I don't know why it should be
-tied."
-
-"That is not quite so common, is it? Ah, me! it's a wicked world,
-and when a clever man turns his brains to crime it is the worst
-of all. I think that I have seen enough now, Miss Stoner, and
-with your permission we shall walk out upon the lawn."
-
-I had never seen my friend's face so grim or his brow so dark as
-it was when we turned from the scene of this investigation. We
-had walked several times up and down the lawn, neither Miss
-Stoner nor myself liking to break in upon his thoughts before he
-roused himself from his reverie.
-
-"It is very essential, Miss Stoner," said he, "that you should
-absolutely follow my advice in every respect."
-
-"I shall most certainly do so."
-
-"The matter is too serious for any hesitation. Your life may
-depend upon your compliance."
-
-"I assure you that I am in your hands."
-
-"In the first place, both my friend and I must spend the night in
-your room."
-
-Both Miss Stoner and I gazed at him in astonishment.
-
-"Yes, it must be so. Let me explain. I believe that that is the
-village inn over there?"
-
-"Yes, that is the Crown."
-
-"Very good. Your windows would be visible from there?"
-
-"Certainly."
-
-"You must confine yourself to your room, on pretence of a
-headache, when your stepfather comes back. Then when you hear him
-retire for the night, you must open the shutters of your window,
-undo the hasp, put your lamp there as a signal to us, and then
-withdraw quietly with everything which you are likely to want
-into the room which you used to occupy. I have no doubt that, in
-spite of the repairs, you could manage there for one night."
-
-"Oh, yes, easily."
-
-"The rest you will leave in our hands."
-
-"But what will you do?"
-
-"We shall spend the night in your room, and we shall investigate
-the cause of this noise which has disturbed you."
-
-"I believe, Mr. Holmes, that you have already made up your mind,"
-said Miss Stoner, laying her hand upon my companion's sleeve.
-
-"Perhaps I have."
-
-"Then, for pity's sake, tell me what was the cause of my sister's
-death."
-
-"I should prefer to have clearer proofs before I speak."
-
-"You can at least tell me whether my own thought is correct, and
-if she died from some sudden fright."
-
-"No, I do not think so. I think that there was probably some more
-tangible cause. And now, Miss Stoner, we must leave you for if
-Dr. Roylott returned and saw us our journey would be in vain.
-Good-bye, and be brave, for if you will do what I have told you,
-you may rest assured that we shall soon drive away the dangers
-that threaten you."
-
-Sherlock Holmes and I had no difficulty in engaging a bedroom and
-sitting-room at the Crown Inn. They were on the upper floor, and
-from our window we could command a view of the avenue gate, and
-of the inhabited wing of Stoke Moran Manor House. At dusk we saw
-Dr. Grimesby Roylott drive past, his huge form looming up beside
-the little figure of the lad who drove him. The boy had some
-slight difficulty in undoing the heavy iron gates, and we heard
-the hoarse roar of the doctor's voice and saw the fury with which
-he shook his clinched fists at him. The trap drove on, and a few
-minutes later we saw a sudden light spring up among the trees as
-the lamp was lit in one of the sitting-rooms.
-
-"Do you know, Watson," said Holmes as we sat together in the
-gathering darkness, "I have really some scruples as to taking you
-to-night. There is a distinct element of danger."
-
-"Can I be of assistance?"
-
-"Your presence might be invaluable."
-
-"Then I shall certainly come."
-
-"It is very kind of you."
-
-"You speak of danger. You have evidently seen more in these rooms
-than was visible to me."
-
-"No, but I fancy that I may have deduced a little more. I imagine
-that you saw all that I did."
-
-"I saw nothing remarkable save the bell-rope, and what purpose
-that could answer I confess is more than I can imagine."
-
-"You saw the ventilator, too?"
-
-"Yes, but I do not think that it is such a very unusual thing to
-have a small opening between two rooms. It was so small that a
-rat could hardly pass through."
-
-"I knew that we should find a ventilator before ever we came to
-Stoke Moran."
-
-"My dear Holmes!"
-
-"Oh, yes, I did. You remember in her statement she said that her
-sister could smell Dr. Roylott's cigar. Now, of course that
-suggested at once that there must be a communication between the
-two rooms. It could only be a small one, or it would have been
-remarked upon at the coroner's inquiry. I deduced a ventilator."
-
-"But what harm can there be in that?"
-
-"Well, there is at least a curious coincidence of dates. A
-ventilator is made, a cord is hung, and a lady who sleeps in the
-bed dies. Does not that strike you?"
-
-"I cannot as yet see any connection."
-
-"Did you observe anything very peculiar about that bed?"
-
-"No."
-
-"It was clamped to the floor. Did you ever see a bed fastened
-like that before?"
-
-"I cannot say that I have."
-
-"The lady could not move her bed. It must always be in the same
-relative position to the ventilator and to the rope--or so we may
-call it, since it was clearly never meant for a bell-pull."
-
-"Holmes," I cried, "I seem to see dimly what you are hinting at.
-We are only just in time to prevent some subtle and horrible
-crime."
-
-"Subtle enough and horrible enough. When a doctor does go wrong
-he is the first of criminals. He has nerve and he has knowledge.
-Palmer and Pritchard were among the heads of their profession.
-This man strikes even deeper, but I think, Watson, that we shall
-be able to strike deeper still. But we shall have horrors enough
-before the night is over; for goodness' sake let us have a quiet
-pipe and turn our minds for a few hours to something more
-cheerful."
-
-
-About nine o'clock the light among the trees was extinguished,
-and all was dark in the direction of the Manor House. Two hours
-passed slowly away, and then, suddenly, just at the stroke of
-eleven, a single bright light shone out right in front of us.
-
-"That is our signal," said Holmes, springing to his feet; "it
-comes from the middle window."
-
-As we passed out he exchanged a few words with the landlord,
-explaining that we were going on a late visit to an acquaintance,
-and that it was possible that we might spend the night there. A
-moment later we were out on the dark road, a chill wind blowing
-in our faces, and one yellow light twinkling in front of us
-through the gloom to guide us on our sombre errand.
-
-There was little difficulty in entering the grounds, for
-unrepaired breaches gaped in the old park wall. Making our way
-among the trees, we reached the lawn, crossed it, and were about
-to enter through the window when out from a clump of laurel
-bushes there darted what seemed to be a hideous and distorted
-child, who threw itself upon the grass with writhing limbs and
-then ran swiftly across the lawn into the darkness.
-
-"My God!" I whispered; "did you see it?"
-
-Holmes was for the moment as startled as I. His hand closed like
-a vice upon my wrist in his agitation. Then he broke into a low
-laugh and put his lips to my ear.
-
-"It is a nice household," he murmured. "That is the baboon."
-
-I had forgotten the strange pets which the doctor affected. There
-was a cheetah, too; perhaps we might find it upon our shoulders
-at any moment. I confess that I felt easier in my mind when,
-after following Holmes' example and slipping off my shoes, I
-found myself inside the bedroom. My companion noiselessly closed
-the shutters, moved the lamp onto the table, and cast his eyes
-round the room. All was as we had seen it in the daytime. Then
-creeping up to me and making a trumpet of his hand, he whispered
-into my ear again so gently that it was all that I could do to
-distinguish the words:
-
-"The least sound would be fatal to our plans."
-
-I nodded to show that I had heard.
-
-"We must sit without light. He would see it through the
-ventilator."
-
-I nodded again.
-
-"Do not go asleep; your very life may depend upon it. Have your
-pistol ready in case we should need it. I will sit on the side of
-the bed, and you in that chair."
-
-I took out my revolver and laid it on the corner of the table.
-
-Holmes had brought up a long thin cane, and this he placed upon
-the bed beside him. By it he laid the box of matches and the
-stump of a candle. Then he turned down the lamp, and we were left
-in darkness.
-
-How shall I ever forget that dreadful vigil? I could not hear a
-sound, not even the drawing of a breath, and yet I knew that my
-companion sat open-eyed, within a few feet of me, in the same
-state of nervous tension in which I was myself. The shutters cut
-off the least ray of light, and we waited in absolute darkness.
-
-From outside came the occasional cry of a night-bird, and once at
-our very window a long drawn catlike whine, which told us that
-the cheetah was indeed at liberty. Far away we could hear the
-deep tones of the parish clock, which boomed out every quarter of
-an hour. How long they seemed, those quarters! Twelve struck, and
-one and two and three, and still we sat waiting silently for
-whatever might befall.
-
-Suddenly there was the momentary gleam of a light up in the
-direction of the ventilator, which vanished immediately, but was
-succeeded by a strong smell of burning oil and heated metal.
-Someone in the next room had lit a dark-lantern. I heard a gentle
-sound of movement, and then all was silent once more, though the
-smell grew stronger. For half an hour I sat with straining ears.
-Then suddenly another sound became audible--a very gentle,
-soothing sound, like that of a small jet of steam escaping
-continually from a kettle. The instant that we heard it, Holmes
-sprang from the bed, struck a match, and lashed furiously with
-his cane at the bell-pull.
-
-"You see it, Watson?" he yelled. "You see it?"
-
-But I saw nothing. At the moment when Holmes struck the light I
-heard a low, clear whistle, but the sudden glare flashing into my
-weary eyes made it impossible for me to tell what it was at which
-my friend lashed so savagely. I could, however, see that his face
-was deadly pale and filled with horror and loathing. He had
-ceased to strike and was gazing up at the ventilator when
-suddenly there broke from the silence of the night the most
-horrible cry to which I have ever listened. It swelled up louder
-and louder, a hoarse yell of pain and fear and anger all mingled
-in the one dreadful shriek. They say that away down in the
-village, and even in the distant parsonage, that cry raised the
-sleepers from their beds. It struck cold to our hearts, and I
-stood gazing at Holmes, and he at me, until the last echoes of it
-had died away into the silence from which it rose.
-
-"What can it mean?" I gasped.
-
-"It means that it is all over," Holmes answered. "And perhaps,
-after all, it is for the best. Take your pistol, and we will
-enter Dr. Roylott's room."
-
-With a grave face he lit the lamp and led the way down the
-corridor. Twice he struck at the chamber door without any reply
-from within. Then he turned the handle and entered, I at his
-heels, with the cocked pistol in my hand.
-
-It was a singular sight which met our eyes. On the table stood a
-dark-lantern with the shutter half open, throwing a brilliant
-beam of light upon the iron safe, the door of which was ajar.
-Beside this table, on the wooden chair, sat Dr. Grimesby Roylott
-clad in a long grey dressing-gown, his bare ankles protruding
-beneath, and his feet thrust into red heelless Turkish slippers.
-Across his lap lay the short stock with the long lash which we
-had noticed during the day. His chin was cocked upward and his
-eyes were fixed in a dreadful, rigid stare at the corner of the
-ceiling. Round his brow he had a peculiar yellow band, with
-brownish speckles, which seemed to be bound tightly round his
-head. As we entered he made neither sound nor motion.
-
-"The band! the speckled band!" whispered Holmes.
-
-I took a step forward. In an instant his strange headgear began
-to move, and there reared itself from among his hair the squat
-diamond-shaped head and puffed neck of a loathsome serpent.
-
-"It is a swamp adder!" cried Holmes; "the deadliest snake in
-India. He has died within ten seconds of being bitten. Violence
-does, in truth, recoil upon the violent, and the schemer falls
-into the pit which he digs for another. Let us thrust this
-creature back into its den, and we can then remove Miss Stoner to
-some place of shelter and let the county police know what has
-happened."
-
-As he spoke he drew the dog-whip swiftly from the dead man's lap,
-and throwing the noose round the reptile's neck he drew it from
-its horrid perch and, carrying it at arm's length, threw it into
-the iron safe, which he closed upon it.
-
-Such are the true facts of the death of Dr. Grimesby Roylott, of
-Stoke Moran. It is not necessary that I should prolong a
-narrative which has already run to too great a length by telling
-how we broke the sad news to the terrified girl, how we conveyed
-her by the morning train to the care of her good aunt at Harrow,
-of how the slow process of official inquiry came to the
-conclusion that the doctor met his fate while indiscreetly
-playing with a dangerous pet. The little which I had yet to learn
-of the case was told me by Sherlock Holmes as we travelled back
-next day.
-
-"I had," said he, "come to an entirely erroneous conclusion which
-shows, my dear Watson, how dangerous it always is to reason from
-insufficient data. The presence of the gipsies, and the use of
-the word 'band,' which was used by the poor girl, no doubt, to
-explain the appearance which she had caught a hurried glimpse of
-by the light of her match, were sufficient to put me upon an
-entirely wrong scent. I can only claim the merit that I instantly
-reconsidered my position when, however, it became clear to me
-that whatever danger threatened an occupant of the room could not
-come either from the window or the door. My attention was
-speedily drawn, as I have already remarked to you, to this
-ventilator, and to the bell-rope which hung down to the bed. The
-discovery that this was a dummy, and that the bed was clamped to
-the floor, instantly gave rise to the suspicion that the rope was
-there as a bridge for something passing through the hole and
-coming to the bed. The idea of a snake instantly occurred to me,
-and when I coupled it with my knowledge that the doctor was
-furnished with a supply of creatures from India, I felt that I
-was probably on the right track. The idea of using a form of
-poison which could not possibly be discovered by any chemical
-test was just such a one as would occur to a clever and ruthless
-man who had had an Eastern training. The rapidity with which such
-a poison would take effect would also, from his point of view, be
-an advantage. It would be a sharp-eyed coroner, indeed, who could
-distinguish the two little dark punctures which would show where
-the poison fangs had done their work. Then I thought of the
-whistle. Of course he must recall the snake before the morning
-light revealed it to the victim. He had trained it, probably by
-the use of the milk which we saw, to return to him when summoned.
-He would put it through this ventilator at the hour that he
-thought best, with the certainty that it would crawl down the
-rope and land on the bed. It might or might not bite the
-occupant, perhaps she might escape every night for a week, but
-sooner or later she must fall a victim.
-
-"I had come to these conclusions before ever I had entered his
-room. An inspection of his chair showed me that he had been in
-the habit of standing on it, which of course would be necessary
-in order that he should reach the ventilator. The sight of the
-safe, the saucer of milk, and the loop of whipcord were enough to
-finally dispel any doubts which may have remained. The metallic
-clang heard by Miss Stoner was obviously caused by her stepfather
-hastily closing the door of his safe upon its terrible occupant.
-Having once made up my mind, you know the steps which I took in
-order to put the matter to the proof. I heard the creature hiss
-as I have no doubt that you did also, and I instantly lit the
-light and attacked it."
-
-"With the result of driving it through the ventilator."
-
-"And also with the result of causing it to turn upon its master
-at the other side. Some of the blows of my cane came home and
-roused its snakish temper, so that it flew upon the first person
-it saw. In this way I am no doubt indirectly responsible for Dr.
-Grimesby Roylott's death, and I cannot say that it is likely to
-weigh very heavily upon my conscience."
-
-
-
-IX. THE ADVENTURE OF THE ENGINEER'S THUMB
-
-Of all the problems which have been submitted to my friend, Mr.
-Sherlock Holmes, for solution during the years of our intimacy,
-there were only two which I was the means of introducing to his
-notice--that of Mr. Hatherley's thumb, and that of Colonel
-Warburton's madness. Of these the latter may have afforded a
-finer field for an acute and original observer, but the other was
-so strange in its inception and so dramatic in its details that
-it may be the more worthy of being placed upon record, even if it
-gave my friend fewer openings for those deductive methods of
-reasoning by which he achieved such remarkable results. The story
-has, I believe, been told more than once in the newspapers, but,
-like all such narratives, its effect is much less striking when
-set forth en bloc in a single half-column of print than when the
-facts slowly evolve before your own eyes, and the mystery clears
-gradually away as each new discovery furnishes a step which leads
-on to the complete truth. At the time the circumstances made a
-deep impression upon me, and the lapse of two years has hardly
-served to weaken the effect.
-
-It was in the summer of '89, not long after my marriage, that the
-events occurred which I am now about to summarise. I had returned
-to civil practice and had finally abandoned Holmes in his Baker
-Street rooms, although I continually visited him and occasionally
-even persuaded him to forgo his Bohemian habits so far as to come
-and visit us. My practice had steadily increased, and as I
-happened to live at no very great distance from Paddington
-Station, I got a few patients from among the officials. One of
-these, whom I had cured of a painful and lingering disease, was
-never weary of advertising my virtues and of endeavouring to send
-me on every sufferer over whom he might have any influence.
-
-One morning, at a little before seven o'clock, I was awakened by
-the maid tapping at the door to announce that two men had come
-from Paddington and were waiting in the consulting-room. I
-dressed hurriedly, for I knew by experience that railway cases
-were seldom trivial, and hastened downstairs. As I descended, my
-old ally, the guard, came out of the room and closed the door
-tightly behind him.
-
-"I've got him here," he whispered, jerking his thumb over his
-shoulder; "he's all right."
-
-"What is it, then?" I asked, for his manner suggested that it was
-some strange creature which he had caged up in my room.
-
-"It's a new patient," he whispered. "I thought I'd bring him
-round myself; then he couldn't slip away. There he is, all safe
-and sound. I must go now, Doctor; I have my dooties, just the
-same as you." And off he went, this trusty tout, without even
-giving me time to thank him.
-
-I entered my consulting-room and found a gentleman seated by the
-table. He was quietly dressed in a suit of heather tweed with a
-soft cloth cap which he had laid down upon my books. Round one of
-his hands he had a handkerchief wrapped, which was mottled all
-over with bloodstains. He was young, not more than
-five-and-twenty, I should say, with a strong, masculine face; but
-he was exceedingly pale and gave me the impression of a man who
-was suffering from some strong agitation, which it took all his
-strength of mind to control.
-
-"I am sorry to knock you up so early, Doctor," said he, "but I
-have had a very serious accident during the night. I came in by
-train this morning, and on inquiring at Paddington as to where I
-might find a doctor, a worthy fellow very kindly escorted me
-here. I gave the maid a card, but I see that she has left it upon
-the side-table."
-
-I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic
-engineer, 16A, Victoria Street (3rd floor)." That was the name,
-style, and abode of my morning visitor. "I regret that I have
-kept you waiting," said I, sitting down in my library-chair. "You
-are fresh from a night journey, I understand, which is in itself
-a monotonous occupation."
-
-"Oh, my night could not be called monotonous," said he, and
-laughed. He laughed very heartily, with a high, ringing note,
-leaning back in his chair and shaking his sides. All my medical
-instincts rose up against that laugh.
-
-"Stop it!" I cried; "pull yourself together!" and I poured out
-some water from a caraffe.
-
-It was useless, however. He was off in one of those hysterical
-outbursts which come upon a strong nature when some great crisis
-is over and gone. Presently he came to himself once more, very
-weary and pale-looking.
-
-"I have been making a fool of myself," he gasped.
-
-"Not at all. Drink this." I dashed some brandy into the water,
-and the colour began to come back to his bloodless cheeks.
-
-"That's better!" said he. "And now, Doctor, perhaps you would
-kindly attend to my thumb, or rather to the place where my thumb
-used to be."
-
-He unwound the handkerchief and held out his hand. It gave even
-my hardened nerves a shudder to look at it. There were four
-protruding fingers and a horrid red, spongy surface where the
-thumb should have been. It had been hacked or torn right out from
-the roots.
-
-"Good heavens!" I cried, "this is a terrible injury. It must have
-bled considerably."
-
-"Yes, it did. I fainted when it was done, and I think that I must
-have been senseless for a long time. When I came to I found that
-it was still bleeding, so I tied one end of my handkerchief very
-tightly round the wrist and braced it up with a twig."
-
-"Excellent! You should have been a surgeon."
-
-"It is a question of hydraulics, you see, and came within my own
-province."
-
-"This has been done," said I, examining the wound, "by a very
-heavy and sharp instrument."
-
-"A thing like a cleaver," said he.
-
-"An accident, I presume?"
-
-"By no means."
-
-"What! a murderous attack?"
-
-"Very murderous indeed."
-
-"You horrify me."
-
-I sponged the wound, cleaned it, dressed it, and finally covered
-it over with cotton wadding and carbolised bandages. He lay back
-without wincing, though he bit his lip from time to time.
-
-"How is that?" I asked when I had finished.
-
-"Capital! Between your brandy and your bandage, I feel a new man.
-I was very weak, but I have had a good deal to go through."
-
-"Perhaps you had better not speak of the matter. It is evidently
-trying to your nerves."
-
-"Oh, no, not now. I shall have to tell my tale to the police;
-but, between ourselves, if it were not for the convincing
-evidence of this wound of mine, I should be surprised if they
-believed my statement, for it is a very extraordinary one, and I
-have not much in the way of proof with which to back it up; and,
-even if they believe me, the clues which I can give them are so
-vague that it is a question whether justice will be done."
-
-"Ha!" cried I, "if it is anything in the nature of a problem
-which you desire to see solved, I should strongly recommend you
-to come to my friend, Mr. Sherlock Holmes, before you go to the
-official police."
-
-"Oh, I have heard of that fellow," answered my visitor, "and I
-should be very glad if he would take the matter up, though of
-course I must use the official police as well. Would you give me
-an introduction to him?"
-
-"I'll do better. I'll take you round to him myself."
-
-"I should be immensely obliged to you."
-
-"We'll call a cab and go together. We shall just be in time to
-have a little breakfast with him. Do you feel equal to it?"
-
-"Yes; I shall not feel easy until I have told my story."
-
-"Then my servant will call a cab, and I shall be with you in an
-instant." I rushed upstairs, explained the matter shortly to my
-wife, and in five minutes was inside a hansom, driving with my
-new acquaintance to Baker Street.
-
-Sherlock Holmes was, as I expected, lounging about his
-sitting-room in his dressing-gown, reading the agony column of The
-Times and smoking his before-breakfast pipe, which was composed
-of all the plugs and dottles left from his smokes of the day
-before, all carefully dried and collected on the corner of the
-mantelpiece. He received us in his quietly genial fashion,
-ordered fresh rashers and eggs, and joined us in a hearty meal.
-When it was concluded he settled our new acquaintance upon the
-sofa, placed a pillow beneath his head, and laid a glass of
-brandy and water within his reach.
-
-"It is easy to see that your experience has been no common one,
-Mr. Hatherley," said he. "Pray, lie down there and make yourself
-absolutely at home. Tell us what you can, but stop when you are
-tired and keep up your strength with a little stimulant."
-
-"Thank you," said my patient, "but I have felt another man since
-the doctor bandaged me, and I think that your breakfast has
-completed the cure. I shall take up as little of your valuable
-time as possible, so I shall start at once upon my peculiar
-experiences."
-
-Holmes sat in his big armchair with the weary, heavy-lidded
-expression which veiled his keen and eager nature, while I sat
-opposite to him, and we listened in silence to the strange story
-which our visitor detailed to us.
-
-"You must know," said he, "that I am an orphan and a bachelor,
-residing alone in lodgings in London. By profession I am a
-hydraulic engineer, and I have had considerable experience of my
-work during the seven years that I was apprenticed to Venner &
-Matheson, the well-known firm, of Greenwich. Two years ago,
-having served my time, and having also come into a fair sum of
-money through my poor father's death, I determined to start in
-business for myself and took professional chambers in Victoria
-Street.
-
-"I suppose that everyone finds his first independent start in
-business a dreary experience. To me it has been exceptionally so.
-During two years I have had three consultations and one small
-job, and that is absolutely all that my profession has brought
-me. My gross takings amount to 27 pounds 10s. Every day, from
-nine in the morning until four in the afternoon, I waited in my
-little den, until at last my heart began to sink, and I came to
-believe that I should never have any practice at all.
-
-"Yesterday, however, just as I was thinking of leaving the
-office, my clerk entered to say there was a gentleman waiting who
-wished to see me upon business. He brought up a card, too, with
-the name of 'Colonel Lysander Stark' engraved upon it. Close at
-his heels came the colonel himself, a man rather over the middle
-size, but of an exceeding thinness. I do not think that I have
-ever seen so thin a man. His whole face sharpened away into nose
-and chin, and the skin of his cheeks was drawn quite tense over
-his outstanding bones. Yet this emaciation seemed to be his
-natural habit, and due to no disease, for his eye was bright, his
-step brisk, and his bearing assured. He was plainly but neatly
-dressed, and his age, I should judge, would be nearer forty than
-thirty.
-
-"'Mr. Hatherley?' said he, with something of a German accent.
-'You have been recommended to me, Mr. Hatherley, as being a man
-who is not only proficient in his profession but is also discreet
-and capable of preserving a secret.'
-
-"I bowed, feeling as flattered as any young man would at such an
-address. 'May I ask who it was who gave me so good a character?'
-
-"'Well, perhaps it is better that I should not tell you that just
-at this moment. I have it from the same source that you are both
-an orphan and a bachelor and are residing alone in London.'
-
-"'That is quite correct,' I answered; 'but you will excuse me if
-I say that I cannot see how all this bears upon my professional
-qualifications. I understand that it was on a professional matter
-that you wished to speak to me?'
-
-"'Undoubtedly so. But you will find that all I say is really to
-the point. I have a professional commission for you, but absolute
-secrecy is quite essential--absolute secrecy, you understand, and
-of course we may expect that more from a man who is alone than
-from one who lives in the bosom of his family.'
-
-"'If I promise to keep a secret,' said I, 'you may absolutely
-depend upon my doing so.'
-
-"He looked very hard at me as I spoke, and it seemed to me that I
-had never seen so suspicious and questioning an eye.
-
-"'Do you promise, then?' said he at last.
-
-"'Yes, I promise.'
-
-"'Absolute and complete silence before, during, and after? No
-reference to the matter at all, either in word or writing?'
-
-"'I have already given you my word.'
-
-"'Very good.' He suddenly sprang up, and darting like lightning
-across the room he flung open the door. The passage outside was
-empty.
-
-"'That's all right,' said he, coming back. 'I know that clerks are
-sometimes curious as to their master's affairs. Now we can talk
-in safety.' He drew up his chair very close to mine and began to
-stare at me again with the same questioning and thoughtful look.
-
-"A feeling of repulsion, and of something akin to fear had begun
-to rise within me at the strange antics of this fleshless man.
-Even my dread of losing a client could not restrain me from
-showing my impatience.
-
-"'I beg that you will state your business, sir,' said I; 'my time
-is of value.' Heaven forgive me for that last sentence, but the
-words came to my lips.
-
-"'How would fifty guineas for a night's work suit you?' he asked.
-
-"'Most admirably.'
-
-"'I say a night's work, but an hour's would be nearer the mark. I
-simply want your opinion about a hydraulic stamping machine which
-has got out of gear. If you show us what is wrong we shall soon
-set it right ourselves. What do you think of such a commission as
-that?'
-
-"'The work appears to be light and the pay munificent.'
-
-"'Precisely so. We shall want you to come to-night by the last
-train.'
-
-"'Where to?'
-
-"'To Eyford, in Berkshire. It is a little place near the borders
-of Oxfordshire, and within seven miles of Reading. There is a
-train from Paddington which would bring you there at about
-11:15.'
-
-"'Very good.'
-
-"'I shall come down in a carriage to meet you.'
-
-"'There is a drive, then?'
-
-"'Yes, our little place is quite out in the country. It is a good
-seven miles from Eyford Station.'
-
-"'Then we can hardly get there before midnight. I suppose there
-would be no chance of a train back. I should be compelled to stop
-the night.'
-
-"'Yes, we could easily give you a shake-down.'
-
-"'That is very awkward. Could I not come at some more convenient
-hour?'
-
-"'We have judged it best that you should come late. It is to
-recompense you for any inconvenience that we are paying to you, a
-young and unknown man, a fee which would buy an opinion from the
-very heads of your profession. Still, of course, if you would
-like to draw out of the business, there is plenty of time to do
-so.'
-
-"I thought of the fifty guineas, and of how very useful they
-would be to me. 'Not at all,' said I, 'I shall be very happy to
-accommodate myself to your wishes. I should like, however, to
-understand a little more clearly what it is that you wish me to
-do.'
-
-"'Quite so. It is very natural that the pledge of secrecy which
-we have exacted from you should have aroused your curiosity. I
-have no wish to commit you to anything without your having it all
-laid before you. I suppose that we are absolutely safe from
-eavesdroppers?'
-
-"'Entirely.'
-
-"'Then the matter stands thus. You are probably aware that
-fuller's-earth is a valuable product, and that it is only found
-in one or two places in England?'
-
-"'I have heard so.'
-
-"'Some little time ago I bought a small place--a very small
-place--within ten miles of Reading. I was fortunate enough to
-discover that there was a deposit of fuller's-earth in one of my
-fields. On examining it, however, I found that this deposit was a
-comparatively small one, and that it formed a link between two
-very much larger ones upon the right and left--both of them,
-however, in the grounds of my neighbours. These good people were
-absolutely ignorant that their land contained that which was
-quite as valuable as a gold-mine. Naturally, it was to my
-interest to buy their land before they discovered its true value,
-but unfortunately I had no capital by which I could do this. I
-took a few of my friends into the secret, however, and they
-suggested that we should quietly and secretly work our own little
-deposit and that in this way we should earn the money which would
-enable us to buy the neighbouring fields. This we have now been
-doing for some time, and in order to help us in our operations we
-erected a hydraulic press. This press, as I have already
-explained, has got out of order, and we wish your advice upon the
-subject. We guard our secret very jealously, however, and if it
-once became known that we had hydraulic engineers coming to our
-little house, it would soon rouse inquiry, and then, if the facts
-came out, it would be good-bye to any chance of getting these
-fields and carrying out our plans. That is why I have made you
-promise me that you will not tell a human being that you are
-going to Eyford to-night. I hope that I make it all plain?'
-
-"'I quite follow you,' said I. 'The only point which I could not
-quite understand was what use you could make of a hydraulic press
-in excavating fuller's-earth, which, as I understand, is dug out
-like gravel from a pit.'
-
-"'Ah!' said he carelessly, 'we have our own process. We compress
-the earth into bricks, so as to remove them without revealing
-what they are. But that is a mere detail. I have taken you fully
-into my confidence now, Mr. Hatherley, and I have shown you how I
-trust you.' He rose as he spoke. 'I shall expect you, then, at
-Eyford at 11:15.'
-
-"'I shall certainly be there.'
-
-"'And not a word to a soul.' He looked at me with a last long,
-questioning gaze, and then, pressing my hand in a cold, dank
-grasp, he hurried from the room.
-
-"Well, when I came to think it all over in cool blood I was very
-much astonished, as you may both think, at this sudden commission
-which had been intrusted to me. On the one hand, of course, I was
-glad, for the fee was at least tenfold what I should have asked
-had I set a price upon my own services, and it was possible that
-this order might lead to other ones. On the other hand, the face
-and manner of my patron had made an unpleasant impression upon
-me, and I could not think that his explanation of the
-fuller's-earth was sufficient to explain the necessity for my
-coming at midnight, and his extreme anxiety lest I should tell
-anyone of my errand. However, I threw all fears to the winds, ate
-a hearty supper, drove to Paddington, and started off, having
-obeyed to the letter the injunction as to holding my tongue.
-
-"At Reading I had to change not only my carriage but my station.
-However, I was in time for the last train to Eyford, and I
-reached the little dim-lit station after eleven o'clock. I was the
-only passenger who got out there, and there was no one upon the
-platform save a single sleepy porter with a lantern. As I passed
-out through the wicket gate, however, I found my acquaintance of
-the morning waiting in the shadow upon the other side. Without a
-word he grasped my arm and hurried me into a carriage, the door
-of which was standing open. He drew up the windows on either
-side, tapped on the wood-work, and away we went as fast as the
-horse could go."
-
-"One horse?" interjected Holmes.
-
-"Yes, only one."
-
-"Did you observe the colour?"
-
-"Yes, I saw it by the side-lights when I was stepping into the
-carriage. It was a chestnut."
-
-"Tired-looking or fresh?"
-
-"Oh, fresh and glossy."
-
-"Thank you. I am sorry to have interrupted you. Pray continue
-your most interesting statement."
-
-"Away we went then, and we drove for at least an hour. Colonel
-Lysander Stark had said that it was only seven miles, but I
-should think, from the rate that we seemed to go, and from the
-time that we took, that it must have been nearer twelve. He sat
-at my side in silence all the time, and I was aware, more than
-once when I glanced in his direction, that he was looking at me
-with great intensity. The country roads seem to be not very good
-in that part of the world, for we lurched and jolted terribly. I
-tried to look out of the windows to see something of where we
-were, but they were made of frosted glass, and I could make out
-nothing save the occasional bright blur of a passing light. Now
-and then I hazarded some remark to break the monotony of the
-journey, but the colonel answered only in monosyllables, and the
-conversation soon flagged. At last, however, the bumping of the
-road was exchanged for the crisp smoothness of a gravel-drive,
-and the carriage came to a stand. Colonel Lysander Stark sprang
-out, and, as I followed after him, pulled me swiftly into a porch
-which gaped in front of us. We stepped, as it were, right out of
-the carriage and into the hall, so that I failed to catch the
-most fleeting glance of the front of the house. The instant that
-I had crossed the threshold the door slammed heavily behind us,
-and I heard faintly the rattle of the wheels as the carriage
-drove away.
-
-"It was pitch dark inside the house, and the colonel fumbled
-about looking for matches and muttering under his breath.
-Suddenly a door opened at the other end of the passage, and a
-long, golden bar of light shot out in our direction. It grew
-broader, and a woman appeared with a lamp in her hand, which she
-held above her head, pushing her face forward and peering at us.
-I could see that she was pretty, and from the gloss with which
-the light shone upon her dark dress I knew that it was a rich
-material. She spoke a few words in a foreign tongue in a tone as
-though asking a question, and when my companion answered in a
-gruff monosyllable she gave such a start that the lamp nearly
-fell from her hand. Colonel Stark went up to her, whispered
-something in her ear, and then, pushing her back into the room
-from whence she had come, he walked towards me again with the
-lamp in his hand.
-
-"'Perhaps you will have the kindness to wait in this room for a
-few minutes,' said he, throwing open another door. It was a
-quiet, little, plainly furnished room, with a round table in the
-centre, on which several German books were scattered. Colonel
-Stark laid down the lamp on the top of a harmonium beside the
-door. 'I shall not keep you waiting an instant,' said he, and
-vanished into the darkness.
-
-"I glanced at the books upon the table, and in spite of my
-ignorance of German I could see that two of them were treatises
-on science, the others being volumes of poetry. Then I walked
-across to the window, hoping that I might catch some glimpse of
-the country-side, but an oak shutter, heavily barred, was folded
-across it. It was a wonderfully silent house. There was an old
-clock ticking loudly somewhere in the passage, but otherwise
-everything was deadly still. A vague feeling of uneasiness began
-to steal over me. Who were these German people, and what were
-they doing living in this strange, out-of-the-way place? And
-where was the place? I was ten miles or so from Eyford, that was
-all I knew, but whether north, south, east, or west I had no
-idea. For that matter, Reading, and possibly other large towns,
-were within that radius, so the place might not be so secluded,
-after all. Yet it was quite certain, from the absolute stillness,
-that we were in the country. I paced up and down the room,
-humming a tune under my breath to keep up my spirits and feeling
-that I was thoroughly earning my fifty-guinea fee.
-
-"Suddenly, without any preliminary sound in the midst of the
-utter stillness, the door of my room swung slowly open. The woman
-was standing in the aperture, the darkness of the hall behind
-her, the yellow light from my lamp beating upon her eager and
-beautiful face. I could see at a glance that she was sick with
-fear, and the sight sent a chill to my own heart. She held up one
-shaking finger to warn me to be silent, and she shot a few
-whispered words of broken English at me, her eyes glancing back,
-like those of a frightened horse, into the gloom behind her.
-
-"'I would go,' said she, trying hard, as it seemed to me, to
-speak calmly; 'I would go. I should not stay here. There is no
-good for you to do.'
-
-"'But, madam,' said I, 'I have not yet done what I came for. I
-cannot possibly leave until I have seen the machine.'
-
-"'It is not worth your while to wait,' she went on. 'You can pass
-through the door; no one hinders.' And then, seeing that I smiled
-and shook my head, she suddenly threw aside her constraint and
-made a step forward, with her hands wrung together. 'For the love
-of Heaven!' she whispered, 'get away from here before it is too
-late!'
-
-"But I am somewhat headstrong by nature, and the more ready to
-engage in an affair when there is some obstacle in the way. I
-thought of my fifty-guinea fee, of my wearisome journey, and of
-the unpleasant night which seemed to be before me. Was it all to
-go for nothing? Why should I slink away without having carried
-out my commission, and without the payment which was my due? This
-woman might, for all I knew, be a monomaniac. With a stout
-bearing, therefore, though her manner had shaken me more than I
-cared to confess, I still shook my head and declared my intention
-of remaining where I was. She was about to renew her entreaties
-when a door slammed overhead, and the sound of several footsteps
-was heard upon the stairs. She listened for an instant, threw up
-her hands with a despairing gesture, and vanished as suddenly and
-as noiselessly as she had come.
-
-"The newcomers were Colonel Lysander Stark and a short thick man
-with a chinchilla beard growing out of the creases of his double
-chin, who was introduced to me as Mr. Ferguson.
-
-"'This is my secretary and manager,' said the colonel. 'By the
-way, I was under the impression that I left this door shut just
-now. I fear that you have felt the draught.'
-
-"'On the contrary,' said I, 'I opened the door myself because I
-felt the room to be a little close.'
-
-"He shot one of his suspicious looks at me. 'Perhaps we had
-better proceed to business, then,' said he. 'Mr. Ferguson and I
-will take you up to see the machine.'
-
-"'I had better put my hat on, I suppose.'
-
-"'Oh, no, it is in the house.'
-
-"'What, you dig fuller's-earth in the house?'
-
-"'No, no. This is only where we compress it. But never mind that.
-All we wish you to do is to examine the machine and to let us
-know what is wrong with it.'
-
-"We went upstairs together, the colonel first with the lamp, the
-fat manager and I behind him. It was a labyrinth of an old house,
-with corridors, passages, narrow winding staircases, and little
-low doors, the thresholds of which were hollowed out by the
-generations who had crossed them. There were no carpets and no
-signs of any furniture above the ground floor, while the plaster
-was peeling off the walls, and the damp was breaking through in
-green, unhealthy blotches. I tried to put on as unconcerned an
-air as possible, but I had not forgotten the warnings of the
-lady, even though I disregarded them, and I kept a keen eye upon
-my two companions. Ferguson appeared to be a morose and silent
-man, but I could see from the little that he said that he was at
-least a fellow-countryman.
-
-"Colonel Lysander Stark stopped at last before a low door, which
-he unlocked. Within was a small, square room, in which the three
-of us could hardly get at one time. Ferguson remained outside,
-and the colonel ushered me in.
-
-"'We are now,' said he, 'actually within the hydraulic press, and
-it would be a particularly unpleasant thing for us if anyone were
-to turn it on. The ceiling of this small chamber is really the
-end of the descending piston, and it comes down with the force of
-many tons upon this metal floor. There are small lateral columns
-of water outside which receive the force, and which transmit and
-multiply it in the manner which is familiar to you. The machine
-goes readily enough, but there is some stiffness in the working
-of it, and it has lost a little of its force. Perhaps you will
-have the goodness to look it over and to show us how we can set
-it right.'
-
-"I took the lamp from him, and I examined the machine very
-thoroughly. It was indeed a gigantic one, and capable of
-exercising enormous pressure. When I passed outside, however, and
-pressed down the levers which controlled it, I knew at once by
-the whishing sound that there was a slight leakage, which allowed
-a regurgitation of water through one of the side cylinders. An
-examination showed that one of the india-rubber bands which was
-round the head of a driving-rod had shrunk so as not quite to
-fill the socket along which it worked. This was clearly the cause
-of the loss of power, and I pointed it out to my companions, who
-followed my remarks very carefully and asked several practical
-questions as to how they should proceed to set it right. When I
-had made it clear to them, I returned to the main chamber of the
-machine and took a good look at it to satisfy my own curiosity.
-It was obvious at a glance that the story of the fuller's-earth
-was the merest fabrication, for it would be absurd to suppose
-that so powerful an engine could be designed for so inadequate a
-purpose. The walls were of wood, but the floor consisted of a
-large iron trough, and when I came to examine it I could see a
-crust of metallic deposit all over it. I had stooped and was
-scraping at this to see exactly what it was when I heard a
-muttered exclamation in German and saw the cadaverous face of the
-colonel looking down at me.
-
-"'What are you doing there?' he asked.
-
-"I felt angry at having been tricked by so elaborate a story as
-that which he had told me. 'I was admiring your fuller's-earth,'
-said I; 'I think that I should be better able to advise you as to
-your machine if I knew what the exact purpose was for which it
-was used.'
-
-"The instant that I uttered the words I regretted the rashness of
-my speech. His face set hard, and a baleful light sprang up in
-his grey eyes.
-
-"'Very well,' said he, 'you shall know all about the machine.' He
-took a step backward, slammed the little door, and turned the key
-in the lock. I rushed towards it and pulled at the handle, but it
-was quite secure, and did not give in the least to my kicks and
-shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!'
-
-"And then suddenly in the silence I heard a sound which sent my
-heart into my mouth. It was the clank of the levers and the swish
-of the leaking cylinder. He had set the engine at work. The lamp
-still stood upon the floor where I had placed it when examining
-the trough. By its light I saw that the black ceiling was coming
-down upon me, slowly, jerkily, but, as none knew better than
-myself, with a force which must within a minute grind me to a
-shapeless pulp. I threw myself, screaming, against the door, and
-dragged with my nails at the lock. I implored the colonel to let
-me out, but the remorseless clanking of the levers drowned my
-cries. The ceiling was only a foot or two above my head, and with
-my hand upraised I could feel its hard, rough surface. Then it
-flashed through my mind that the pain of my death would depend
-very much upon the position in which I met it. If I lay on my
-face the weight would come upon my spine, and I shuddered to
-think of that dreadful snap. Easier the other way, perhaps; and
-yet, had I the nerve to lie and look up at that deadly black
-shadow wavering down upon me? Already I was unable to stand
-erect, when my eye caught something which brought a gush of hope
-back to my heart.
-
-"I have said that though the floor and ceiling were of iron, the
-walls were of wood. As I gave a last hurried glance around, I saw
-a thin line of yellow light between two of the boards, which
-broadened and broadened as a small panel was pushed backward. For
-an instant I could hardly believe that here was indeed a door
-which led away from death. The next instant I threw myself
-through, and lay half-fainting upon the other side. The panel had
-closed again behind me, but the crash of the lamp, and a few
-moments afterwards the clang of the two slabs of metal, told me
-how narrow had been my escape.
-
-"I was recalled to myself by a frantic plucking at my wrist, and
-I found myself lying upon the stone floor of a narrow corridor,
-while a woman bent over me and tugged at me with her left hand,
-while she held a candle in her right. It was the same good friend
-whose warning I had so foolishly rejected.
-
-"'Come! come!' she cried breathlessly. 'They will be here in a
-moment. They will see that you are not there. Oh, do not waste
-the so-precious time, but come!'
-
-"This time, at least, I did not scorn her advice. I staggered to
-my feet and ran with her along the corridor and down a winding
-stair. The latter led to another broad passage, and just as we
-reached it we heard the sound of running feet and the shouting of
-two voices, one answering the other from the floor on which we
-were and from the one beneath. My guide stopped and looked about
-her like one who is at her wit's end. Then she threw open a door
-which led into a bedroom, through the window of which the moon
-was shining brightly.
-
-"'It is your only chance,' said she. 'It is high, but it may be
-that you can jump it.'
-
-"As she spoke a light sprang into view at the further end of the
-passage, and I saw the lean figure of Colonel Lysander Stark
-rushing forward with a lantern in one hand and a weapon like a
-butcher's cleaver in the other. I rushed across the bedroom,
-flung open the window, and looked out. How quiet and sweet and
-wholesome the garden looked in the moonlight, and it could not be
-more than thirty feet down. I clambered out upon the sill, but I
-hesitated to jump until I should have heard what passed between
-my saviour and the ruffian who pursued me. If she were ill-used,
-then at any risks I was determined to go back to her assistance.
-The thought had hardly flashed through my mind before he was at
-the door, pushing his way past her; but she threw her arms round
-him and tried to hold him back.
-
-"'Fritz! Fritz!' she cried in English, 'remember your promise
-after the last time. You said it should not be again. He will be
-silent! Oh, he will be silent!'
-
-"'You are mad, Elise!' he shouted, struggling to break away from
-her. 'You will be the ruin of us. He has seen too much. Let me
-pass, I say!' He dashed her to one side, and, rushing to the
-window, cut at me with his heavy weapon. I had let myself go, and
-was hanging by the hands to the sill, when his blow fell. I was
-conscious of a dull pain, my grip loosened, and I fell into the
-garden below.
-
-"I was shaken but not hurt by the fall; so I picked myself up and
-rushed off among the bushes as hard as I could run, for I
-understood that I was far from being out of danger yet. Suddenly,
-however, as I ran, a deadly dizziness and sickness came over me.
-I glanced down at my hand, which was throbbing painfully, and
-then, for the first time, saw that my thumb had been cut off and
-that the blood was pouring from my wound. I endeavoured to tie my
-handkerchief round it, but there came a sudden buzzing in my
-ears, and next moment I fell in a dead faint among the
-rose-bushes.
-
-"How long I remained unconscious I cannot tell. It must have been
-a very long time, for the moon had sunk, and a bright morning was
-breaking when I came to myself. My clothes were all sodden with
-dew, and my coat-sleeve was drenched with blood from my wounded
-thumb. The smarting of it recalled in an instant all the
-particulars of my night's adventure, and I sprang to my feet with
-the feeling that I might hardly yet be safe from my pursuers. But
-to my astonishment, when I came to look round me, neither house
-nor garden were to be seen. I had been lying in an angle of the
-hedge close by the highroad, and just a little lower down was a
-long building, which proved, upon my approaching it, to be the
-very station at which I had arrived upon the previous night. Were
-it not for the ugly wound upon my hand, all that had passed
-during those dreadful hours might have been an evil dream.
-
-"Half dazed, I went into the station and asked about the morning
-train. There would be one to Reading in less than an hour. The
-same porter was on duty, I found, as had been there when I
-arrived. I inquired of him whether he had ever heard of Colonel
-Lysander Stark. The name was strange to him. Had he observed a
-carriage the night before waiting for me? No, he had not. Was
-there a police-station anywhere near? There was one about three
-miles off.
-
-"It was too far for me to go, weak and ill as I was. I determined
-to wait until I got back to town before telling my story to the
-police. It was a little past six when I arrived, so I went first
-to have my wound dressed, and then the doctor was kind enough to
-bring me along here. I put the case into your hands and shall do
-exactly what you advise."
-
-We both sat in silence for some little time after listening to
-this extraordinary narrative. Then Sherlock Holmes pulled down
-from the shelf one of the ponderous commonplace books in which he
-placed his cuttings.
-
-"Here is an advertisement which will interest you," said he. "It
-appeared in all the papers about a year ago. Listen to this:
-'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged
-twenty-six, a hydraulic engineer. Left his lodgings at ten
-o'clock at night, and has not been heard of since. Was
-dressed in,' etc., etc. Ha! That represents the last time that
-the colonel needed to have his machine overhauled, I fancy."
-
-"Good heavens!" cried my patient. "Then that explains what the
-girl said."
-
-"Undoubtedly. It is quite clear that the colonel was a cool and
-desperate man, who was absolutely determined that nothing should
-stand in the way of his little game, like those out-and-out
-pirates who will leave no survivor from a captured ship. Well,
-every moment now is precious, so if you feel equal to it we shall
-go down to Scotland Yard at once as a preliminary to starting for
-Eyford."
-
-Some three hours or so afterwards we were all in the train
-together, bound from Reading to the little Berkshire village.
-There were Sherlock Holmes, the hydraulic engineer, Inspector
-Bradstreet, of Scotland Yard, a plain-clothes man, and myself.
-Bradstreet had spread an ordnance map of the county out upon the
-seat and was busy with his compasses drawing a circle with Eyford
-for its centre.
-
-"There you are," said he. "That circle is drawn at a radius of
-ten miles from the village. The place we want must be somewhere
-near that line. You said ten miles, I think, sir."
-
-"It was an hour's good drive."
-
-"And you think that they brought you back all that way when you
-were unconscious?"
-
-"They must have done so. I have a confused memory, too, of having
-been lifted and conveyed somewhere."
-
-"What I cannot understand," said I, "is why they should have
-spared you when they found you lying fainting in the garden.
-Perhaps the villain was softened by the woman's entreaties."
-
-"I hardly think that likely. I never saw a more inexorable face
-in my life."
-
-"Oh, we shall soon clear up all that," said Bradstreet. "Well, I
-have drawn my circle, and I only wish I knew at what point upon
-it the folk that we are in search of are to be found."
-
-"I think I could lay my finger on it," said Holmes quietly.
-
-"Really, now!" cried the inspector, "you have formed your
-opinion! Come, now, we shall see who agrees with you. I say it is
-south, for the country is more deserted there."
-
-"And I say east," said my patient.
-
-"I am for west," remarked the plain-clothes man. "There are
-several quiet little villages up there."
-
-"And I am for north," said I, "because there are no hills there,
-and our friend says that he did not notice the carriage go up
-any."
-
-"Come," cried the inspector, laughing; "it's a very pretty
-diversity of opinion. We have boxed the compass among us. Who do
-you give your casting vote to?"
-
-"You are all wrong."
-
-"But we can't all be."
-
-"Oh, yes, you can. This is my point." He placed his finger in the
-centre of the circle. "This is where we shall find them."
-
-"But the twelve-mile drive?" gasped Hatherley.
-
-"Six out and six back. Nothing simpler. You say yourself that the
-horse was fresh and glossy when you got in. How could it be that
-if it had gone twelve miles over heavy roads?"
-
-"Indeed, it is a likely ruse enough," observed Bradstreet
-thoughtfully. "Of course there can be no doubt as to the nature
-of this gang."
-
-"None at all," said Holmes. "They are coiners on a large scale,
-and have used the machine to form the amalgam which has taken the
-place of silver."
-
-"We have known for some time that a clever gang was at work,"
-said the inspector. "They have been turning out half-crowns by
-the thousand. We even traced them as far as Reading, but could
-get no farther, for they had covered their traces in a way that
-showed that they were very old hands. But now, thanks to this
-lucky chance, I think that we have got them right enough."
-
-But the inspector was mistaken, for those criminals were not
-destined to fall into the hands of justice. As we rolled into
-Eyford Station we saw a gigantic column of smoke which streamed
-up from behind a small clump of trees in the neighbourhood and
-hung like an immense ostrich feather over the landscape.
-
-"A house on fire?" asked Bradstreet as the train steamed off
-again on its way.
-
-"Yes, sir!" said the station-master.
-
-"When did it break out?"
-
-"I hear that it was during the night, sir, but it has got worse,
-and the whole place is in a blaze."
-
-"Whose house is it?"
-
-"Dr. Becher's."
-
-"Tell me," broke in the engineer, "is Dr. Becher a German, very
-thin, with a long, sharp nose?"
-
-The station-master laughed heartily. "No, sir, Dr. Becher is an
-Englishman, and there isn't a man in the parish who has a
-better-lined waistcoat. But he has a gentleman staying with him,
-a patient, as I understand, who is a foreigner, and he looks as
-if a little good Berkshire beef would do him no harm."
-
-The station-master had not finished his speech before we were all
-hastening in the direction of the fire. The road topped a low
-hill, and there was a great widespread whitewashed building in
-front of us, spouting fire at every chink and window, while in
-the garden in front three fire-engines were vainly striving to
-keep the flames under.
-
-"That's it!" cried Hatherley, in intense excitement. "There is
-the gravel-drive, and there are the rose-bushes where I lay. That
-second window is the one that I jumped from."
-
-"Well, at least," said Holmes, "you have had your revenge upon
-them. There can be no question that it was your oil-lamp which,
-when it was crushed in the press, set fire to the wooden walls,
-though no doubt they were too excited in the chase after you to
-observe it at the time. Now keep your eyes open in this crowd for
-your friends of last night, though I very much fear that they are
-a good hundred miles off by now."
-
-And Holmes' fears came to be realised, for from that day to this
-no word has ever been heard either of the beautiful woman, the
-sinister German, or the morose Englishman. Early that morning a
-peasant had met a cart containing several people and some very
-bulky boxes driving rapidly in the direction of Reading, but
-there all traces of the fugitives disappeared, and even Holmes'
-ingenuity failed ever to discover the least clue as to their
-whereabouts.
-
-The firemen had been much perturbed at the strange arrangements
-which they had found within, and still more so by discovering a
-newly severed human thumb upon a window-sill of the second floor.
-About sunset, however, their efforts were at last successful, and
-they subdued the flames, but not before the roof had fallen in,
-and the whole place been reduced to such absolute ruin that, save
-some twisted cylinders and iron piping, not a trace remained of
-the machinery which had cost our unfortunate acquaintance so
-dearly. Large masses of nickel and of tin were discovered stored
-in an out-house, but no coins were to be found, which may have
-explained the presence of those bulky boxes which have been
-already referred to.
-
-How our hydraulic engineer had been conveyed from the garden to
-the spot where he recovered his senses might have remained
-forever a mystery were it not for the soft mould, which told us a
-very plain tale. He had evidently been carried down by two
-persons, one of whom had remarkably small feet and the other
-unusually large ones. On the whole, it was most probable that the
-silent Englishman, being less bold or less murderous than his
-companion, had assisted the woman to bear the unconscious man out
-of the way of danger.
-
-"Well," said our engineer ruefully as we took our seats to return
-once more to London, "it has been a pretty business for me! I
-have lost my thumb and I have lost a fifty-guinea fee, and what
-have I gained?"
-
-"Experience," said Holmes, laughing. "Indirectly it may be of
-value, you know; you have only to put it into words to gain the
-reputation of being excellent company for the remainder of your
-existence."
-
-
-
-X. THE ADVENTURE OF THE NOBLE BACHELOR
-
-The Lord St. Simon marriage, and its curious termination, have
-long ceased to be a subject of interest in those exalted circles
-in which the unfortunate bridegroom moves. Fresh scandals have
-eclipsed it, and their more piquant details have drawn the
-gossips away from this four-year-old drama. As I have reason to
-believe, however, that the full facts have never been revealed to
-the general public, and as my friend Sherlock Holmes had a
-considerable share in clearing the matter up, I feel that no
-memoir of him would be complete without some little sketch of
-this remarkable episode.
-
-It was a few weeks before my own marriage, during the days when I
-was still sharing rooms with Holmes in Baker Street, that he came
-home from an afternoon stroll to find a letter on the table
-waiting for him. I had remained indoors all day, for the weather
-had taken a sudden turn to rain, with high autumnal winds, and
-the Jezail bullet which I had brought back in one of my limbs as
-a relic of my Afghan campaign throbbed with dull persistence.
-With my body in one easy-chair and my legs upon another, I had
-surrounded myself with a cloud of newspapers until at last,
-saturated with the news of the day, I tossed them all aside and
-lay listless, watching the huge crest and monogram upon the
-envelope upon the table and wondering lazily who my friend's
-noble correspondent could be.
-
-"Here is a very fashionable epistle," I remarked as he entered.
-"Your morning letters, if I remember right, were from a
-fish-monger and a tide-waiter."
-
-"Yes, my correspondence has certainly the charm of variety," he
-answered, smiling, "and the humbler are usually the more
-interesting. This looks like one of those unwelcome social
-summonses which call upon a man either to be bored or to lie."
-
-He broke the seal and glanced over the contents.
-
-"Oh, come, it may prove to be something of interest, after all."
-
-"Not social, then?"
-
-"No, distinctly professional."
-
-"And from a noble client?"
-
-"One of the highest in England."
-
-"My dear fellow, I congratulate you."
-
-"I assure you, Watson, without affectation, that the status of my
-client is a matter of less moment to me than the interest of his
-case. It is just possible, however, that that also may not be
-wanting in this new investigation. You have been reading the
-papers diligently of late, have you not?"
-
-"It looks like it," said I ruefully, pointing to a huge bundle in
-the corner. "I have had nothing else to do."
-
-"It is fortunate, for you will perhaps be able to post me up. I
-read nothing except the criminal news and the agony column. The
-latter is always instructive. But if you have followed recent
-events so closely you must have read about Lord St. Simon and his
-wedding?"
-
-"Oh, yes, with the deepest interest."
-
-"That is well. The letter which I hold in my hand is from Lord
-St. Simon. I will read it to you, and in return you must turn
-over these papers and let me have whatever bears upon the matter.
-This is what he says:
-
-"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I
-may place implicit reliance upon your judgment and discretion. I
-have determined, therefore, to call upon you and to consult you
-in reference to the very painful event which has occurred in
-connection with my wedding. Mr. Lestrade, of Scotland Yard, is
-acting already in the matter, but he assures me that he sees no
-objection to your co-operation, and that he even thinks that
-it might be of some assistance. I will call at four o'clock in
-the afternoon, and, should you have any other engagement at that
-time, I hope that you will postpone it, as this matter is of
-paramount importance. Yours faithfully, ST. SIMON.'
-
-"It is dated from Grosvenor Mansions, written with a quill pen,
-and the noble lord has had the misfortune to get a smear of ink
-upon the outer side of his right little finger," remarked Holmes
-as he folded up the epistle.
-
-"He says four o'clock. It is three now. He will be here in an
-hour."
-
-"Then I have just time, with your assistance, to get clear upon
-the subject. Turn over those papers and arrange the extracts in
-their order of time, while I take a glance as to who our client
-is." He picked a red-covered volume from a line of books of
-reference beside the mantelpiece. "Here he is," said he, sitting
-down and flattening it out upon his knee. "'Lord Robert Walsingham
-de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms:
-Azure, three caltrops in chief over a fess sable. Born in 1846.'
-He's forty-one years of age, which is mature for marriage. Was
-Under-Secretary for the colonies in a late administration. The
-Duke, his father, was at one time Secretary for Foreign Affairs.
-They inherit Plantagenet blood by direct descent, and Tudor on
-the distaff side. Ha! Well, there is nothing very instructive in
-all this. I think that I must turn to you Watson, for something
-more solid."
-
-"I have very little difficulty in finding what I want," said I,
-"for the facts are quite recent, and the matter struck me as
-remarkable. I feared to refer them to you, however, as I knew
-that you had an inquiry on hand and that you disliked the
-intrusion of other matters."
-
-"Oh, you mean the little problem of the Grosvenor Square
-furniture van. That is quite cleared up now--though, indeed, it
-was obvious from the first. Pray give me the results of your
-newspaper selections."
-
-"Here is the first notice which I can find. It is in the personal
-column of the Morning Post, and dates, as you see, some weeks
-back: 'A marriage has been arranged,' it says, 'and will, if
-rumour is correct, very shortly take place, between Lord Robert
-St. Simon, second son of the Duke of Balmoral, and Miss Hatty
-Doran, the only daughter of Aloysius Doran. Esq., of San
-Francisco, Cal., U.S.A.' That is all."
-
-"Terse and to the point," remarked Holmes, stretching his long,
-thin legs towards the fire.
-
-"There was a paragraph amplifying this in one of the society
-papers of the same week. Ah, here it is: 'There will soon be a
-call for protection in the marriage market, for the present
-free-trade principle appears to tell heavily against our home
-product. One by one the management of the noble houses of Great
-Britain is passing into the hands of our fair cousins from across
-the Atlantic. An important addition has been made during the last
-week to the list of the prizes which have been borne away by
-these charming invaders. Lord St. Simon, who has shown himself
-for over twenty years proof against the little god's arrows, has
-now definitely announced his approaching marriage with Miss Hatty
-Doran, the fascinating daughter of a California millionaire. Miss
-Doran, whose graceful figure and striking face attracted much
-attention at the Westbury House festivities, is an only child,
-and it is currently reported that her dowry will run to
-considerably over the six figures, with expectancies for the
-future. As it is an open secret that the Duke of Balmoral has
-been compelled to sell his pictures within the last few years,
-and as Lord St. Simon has no property of his own save the small
-estate of Birchmoor, it is obvious that the Californian heiress
-is not the only gainer by an alliance which will enable her to
-make the easy and common transition from a Republican lady to a
-British peeress.'"
-
-"Anything else?" asked Holmes, yawning.
-
-"Oh, yes; plenty. Then there is another note in the Morning Post
-to say that the marriage would be an absolutely quiet one, that it
-would be at St. George's, Hanover Square, that only half a dozen
-intimate friends would be invited, and that the party would
-return to the furnished house at Lancaster Gate which has been
-taken by Mr. Aloysius Doran. Two days later--that is, on
-Wednesday last--there is a curt announcement that the wedding had
-taken place, and that the honeymoon would be passed at Lord
-Backwater's place, near Petersfield. Those are all the notices
-which appeared before the disappearance of the bride."
-
-"Before the what?" asked Holmes with a start.
-
-"The vanishing of the lady."
-
-"When did she vanish, then?"
-
-"At the wedding breakfast."
-
-"Indeed. This is more interesting than it promised to be; quite
-dramatic, in fact."
-
-"Yes; it struck me as being a little out of the common."
-
-"They often vanish before the ceremony, and occasionally during
-the honeymoon; but I cannot call to mind anything quite so prompt
-as this. Pray let me have the details."
-
-"I warn you that they are very incomplete."
-
-"Perhaps we may make them less so."
-
-"Such as they are, they are set forth in a single article of a
-morning paper of yesterday, which I will read to you. It is
-headed, 'Singular Occurrence at a Fashionable Wedding':
-
-"'The family of Lord Robert St. Simon has been thrown into the
-greatest consternation by the strange and painful episodes which
-have taken place in connection with his wedding. The ceremony, as
-shortly announced in the papers of yesterday, occurred on the
-previous morning; but it is only now that it has been possible to
-confirm the strange rumours which have been so persistently
-floating about. In spite of the attempts of the friends to hush
-the matter up, so much public attention has now been drawn to it
-that no good purpose can be served by affecting to disregard what
-is a common subject for conversation.
-
-"'The ceremony, which was performed at St. George's, Hanover
-Square, was a very quiet one, no one being present save the
-father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral,
-Lord Backwater, Lord Eustace and Lady Clara St. Simon (the
-younger brother and sister of the bridegroom), and Lady Alicia
-Whittington. The whole party proceeded afterwards to the house of
-Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been
-prepared. It appears that some little trouble was caused by a
-woman, whose name has not been ascertained, who endeavoured to
-force her way into the house after the bridal party, alleging
-that she had some claim upon Lord St. Simon. It was only after a
-painful and prolonged scene that she was ejected by the butler
-and the footman. The bride, who had fortunately entered the house
-before this unpleasant interruption, had sat down to breakfast
-with the rest, when she complained of a sudden indisposition and
-retired to her room. Her prolonged absence having caused some
-comment, her father followed her, but learned from her maid that
-she had only come up to her chamber for an instant, caught up an
-ulster and bonnet, and hurried down to the passage. One of the
-footmen declared that he had seen a lady leave the house thus
-apparelled, but had refused to credit that it was his mistress,
-believing her to be with the company. On ascertaining that his
-daughter had disappeared, Mr. Aloysius Doran, in conjunction with
-the bridegroom, instantly put themselves in communication with
-the police, and very energetic inquiries are being made, which
-will probably result in a speedy clearing up of this very
-singular business. Up to a late hour last night, however, nothing
-had transpired as to the whereabouts of the missing lady. There
-are rumours of foul play in the matter, and it is said that the
-police have caused the arrest of the woman who had caused the
-original disturbance, in the belief that, from jealousy or some
-other motive, she may have been concerned in the strange
-disappearance of the bride.'"
-
-"And is that all?"
-
-"Only one little item in another of the morning papers, but it is
-a suggestive one."
-
-"And it is--"
-
-"That Miss Flora Millar, the lady who had caused the disturbance,
-has actually been arrested. It appears that she was formerly a
-danseuse at the Allegro, and that she has known the bridegroom
-for some years. There are no further particulars, and the whole
-case is in your hands now--so far as it has been set forth in the
-public press."
-
-"And an exceedingly interesting case it appears to be. I would
-not have missed it for worlds. But there is a ring at the bell,
-Watson, and as the clock makes it a few minutes after four, I
-have no doubt that this will prove to be our noble client. Do not
-dream of going, Watson, for I very much prefer having a witness,
-if only as a check to my own memory."
-
-"Lord Robert St. Simon," announced our page-boy, throwing open
-the door. A gentleman entered, with a pleasant, cultured face,
-high-nosed and pale, with something perhaps of petulance about
-the mouth, and with the steady, well-opened eye of a man whose
-pleasant lot it had ever been to command and to be obeyed. His
-manner was brisk, and yet his general appearance gave an undue
-impression of age, for he had a slight forward stoop and a little
-bend of the knees as he walked. His hair, too, as he swept off
-his very curly-brimmed hat, was grizzled round the edges and thin
-upon the top. As to his dress, it was careful to the verge of
-foppishness, with high collar, black frock-coat, white waistcoat,
-yellow gloves, patent-leather shoes, and light-coloured gaiters.
-He advanced slowly into the room, turning his head from left to
-right, and swinging in his right hand the cord which held his
-golden eyeglasses.
-
-"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray
-take the basket-chair. This is my friend and colleague, Dr.
-Watson. Draw up a little to the fire, and we will talk this
-matter over."
-
-"A most painful matter to me, as you can most readily imagine,
-Mr. Holmes. I have been cut to the quick. I understand that you
-have already managed several delicate cases of this sort, sir,
-though I presume that they were hardly from the same class of
-society."
-
-"No, I am descending."
-
-"I beg pardon."
-
-"My last client of the sort was a king."
-
-"Oh, really! I had no idea. And which king?"
-
-"The King of Scandinavia."
-
-"What! Had he lost his wife?"
-
-"You can understand," said Holmes suavely, "that I extend to the
-affairs of my other clients the same secrecy which I promise to
-you in yours."
-
-"Of course! Very right! very right! I'm sure I beg pardon. As to
-my own case, I am ready to give you any information which may
-assist you in forming an opinion."
-
-"Thank you. I have already learned all that is in the public
-prints, nothing more. I presume that I may take it as correct--this
-article, for example, as to the disappearance of the bride."
-
-Lord St. Simon glanced over it. "Yes, it is correct, as far as it
-goes."
-
-"But it needs a great deal of supplementing before anyone could
-offer an opinion. I think that I may arrive at my facts most
-directly by questioning you."
-
-"Pray do so."
-
-"When did you first meet Miss Hatty Doran?"
-
-"In San Francisco, a year ago."
-
-"You were travelling in the States?"
-
-"Yes."
-
-"Did you become engaged then?"
-
-"No."
-
-"But you were on a friendly footing?"
-
-"I was amused by her society, and she could see that I was
-amused."
-
-"Her father is very rich?"
-
-"He is said to be the richest man on the Pacific slope."
-
-"And how did he make his money?"
-
-"In mining. He had nothing a few years ago. Then he struck gold,
-invested it, and came up by leaps and bounds."
-
-"Now, what is your own impression as to the young lady's--your
-wife's character?"
-
-The nobleman swung his glasses a little faster and stared down
-into the fire. "You see, Mr. Holmes," said he, "my wife was
-twenty before her father became a rich man. During that time she
-ran free in a mining camp and wandered through woods or
-mountains, so that her education has come from Nature rather than
-from the schoolmaster. She is what we call in England a tomboy,
-with a strong nature, wild and free, unfettered by any sort of
-traditions. She is impetuous--volcanic, I was about to say. She
-is swift in making up her mind and fearless in carrying out her
-resolutions. On the other hand, I would not have given her the
-name which I have the honour to bear"--he gave a little stately
-cough--"had not I thought her to be at bottom a noble woman. I
-believe that she is capable of heroic self-sacrifice and that
-anything dishonourable would be repugnant to her."
-
-"Have you her photograph?"
-
-"I brought this with me." He opened a locket and showed us the
-full face of a very lovely woman. It was not a photograph but an
-ivory miniature, and the artist had brought out the full effect
-of the lustrous black hair, the large dark eyes, and the
-exquisite mouth. Holmes gazed long and earnestly at it. Then he
-closed the locket and handed it back to Lord St. Simon.
-
-"The young lady came to London, then, and you renewed your
-acquaintance?"
-
-"Yes, her father brought her over for this last London season. I
-met her several times, became engaged to her, and have now
-married her."
-
-"She brought, I understand, a considerable dowry?"
-
-"A fair dowry. Not more than is usual in my family."
-
-"And this, of course, remains to you, since the marriage is a
-fait accompli?"
-
-"I really have made no inquiries on the subject."
-
-"Very naturally not. Did you see Miss Doran on the day before the
-wedding?"
-
-"Yes."
-
-"Was she in good spirits?"
-
-"Never better. She kept talking of what we should do in our
-future lives."
-
-"Indeed! That is very interesting. And on the morning of the
-wedding?"
-
-"She was as bright as possible--at least until after the
-ceremony."
-
-"And did you observe any change in her then?"
-
-"Well, to tell the truth, I saw then the first signs that I had
-ever seen that her temper was just a little sharp. The incident
-however, was too trivial to relate and can have no possible
-bearing upon the case."
-
-"Pray let us have it, for all that."
-
-"Oh, it is childish. She dropped her bouquet as we went towards
-the vestry. She was passing the front pew at the time, and it
-fell over into the pew. There was a moment's delay, but the
-gentleman in the pew handed it up to her again, and it did not
-appear to be the worse for the fall. Yet when I spoke to her of
-the matter, she answered me abruptly; and in the carriage, on our
-way home, she seemed absurdly agitated over this trifling cause."
-
-"Indeed! You say that there was a gentleman in the pew. Some of
-the general public were present, then?"
-
-"Oh, yes. It is impossible to exclude them when the church is
-open."
-
-"This gentleman was not one of your wife's friends?"
-
-"No, no; I call him a gentleman by courtesy, but he was quite a
-common-looking person. I hardly noticed his appearance. But
-really I think that we are wandering rather far from the point."
-
-"Lady St. Simon, then, returned from the wedding in a less
-cheerful frame of mind than she had gone to it. What did she do
-on re-entering her father's house?"
-
-"I saw her in conversation with her maid."
-
-"And who is her maid?"
-
-"Alice is her name. She is an American and came from California
-with her."
-
-"A confidential servant?"
-
-"A little too much so. It seemed to me that her mistress allowed
-her to take great liberties. Still, of course, in America they
-look upon these things in a different way."
-
-"How long did she speak to this Alice?"
-
-"Oh, a few minutes. I had something else to think of."
-
-"You did not overhear what they said?"
-
-"Lady St. Simon said something about 'jumping a claim.' She was
-accustomed to use slang of the kind. I have no idea what she
-meant."
-
-"American slang is very expressive sometimes. And what did your
-wife do when she finished speaking to her maid?"
-
-"She walked into the breakfast-room."
-
-"On your arm?"
-
-"No, alone. She was very independent in little matters like that.
-Then, after we had sat down for ten minutes or so, she rose
-hurriedly, muttered some words of apology, and left the room. She
-never came back."
-
-"But this maid, Alice, as I understand, deposes that she went to
-her room, covered her bride's dress with a long ulster, put on a
-bonnet, and went out."
-
-"Quite so. And she was afterwards seen walking into Hyde Park in
-company with Flora Millar, a woman who is now in custody, and who
-had already made a disturbance at Mr. Doran's house that
-morning."
-
-"Ah, yes. I should like a few particulars as to this young lady,
-and your relations to her."
-
-Lord St. Simon shrugged his shoulders and raised his eyebrows.
-"We have been on a friendly footing for some years--I may say on
-a very friendly footing. She used to be at the Allegro. I have
-not treated her ungenerously, and she had no just cause of
-complaint against me, but you know what women are, Mr. Holmes.
-Flora was a dear little thing, but exceedingly hot-headed and
-devotedly attached to me. She wrote me dreadful letters when she
-heard that I was about to be married, and, to tell the truth, the
-reason why I had the marriage celebrated so quietly was that I
-feared lest there might be a scandal in the church. She came to
-Mr. Doran's door just after we returned, and she endeavoured to
-push her way in, uttering very abusive expressions towards my
-wife, and even threatening her, but I had foreseen the
-possibility of something of the sort, and I had two police
-fellows there in private clothes, who soon pushed her out again.
-She was quiet when she saw that there was no good in making a
-row."
-
-"Did your wife hear all this?"
-
-"No, thank goodness, she did not."
-
-"And she was seen walking with this very woman afterwards?"
-
-"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as
-so serious. It is thought that Flora decoyed my wife out and laid
-some terrible trap for her."
-
-"Well, it is a possible supposition."
-
-"You think so, too?"
-
-"I did not say a probable one. But you do not yourself look upon
-this as likely?"
-
-"I do not think Flora would hurt a fly."
-
-"Still, jealousy is a strange transformer of characters. Pray
-what is your own theory as to what took place?"
-
-"Well, really, I came to seek a theory, not to propound one. I
-have given you all the facts. Since you ask me, however, I may
-say that it has occurred to me as possible that the excitement of
-this affair, the consciousness that she had made so immense a
-social stride, had the effect of causing some little nervous
-disturbance in my wife."
-
-"In short, that she had become suddenly deranged?"
-
-"Well, really, when I consider that she has turned her back--I
-will not say upon me, but upon so much that many have aspired to
-without success--I can hardly explain it in any other fashion."
-
-"Well, certainly that is also a conceivable hypothesis," said
-Holmes, smiling. "And now, Lord St. Simon, I think that I have
-nearly all my data. May I ask whether you were seated at the
-breakfast-table so that you could see out of the window?"
-
-"We could see the other side of the road and the Park."
-
-"Quite so. Then I do not think that I need to detain you longer.
-I shall communicate with you."
-
-"Should you be fortunate enough to solve this problem," said our
-client, rising.
-
-"I have solved it."
-
-"Eh? What was that?"
-
-"I say that I have solved it."
-
-"Where, then, is my wife?"
-
-"That is a detail which I shall speedily supply."
-
-Lord St. Simon shook his head. "I am afraid that it will take
-wiser heads than yours or mine," he remarked, and bowing in a
-stately, old-fashioned manner he departed.
-
-"It is very good of Lord St. Simon to honour my head by putting
-it on a level with his own," said Sherlock Holmes, laughing. "I
-think that I shall have a whisky and soda and a cigar after all
-this cross-questioning. I had formed my conclusions as to the
-case before our client came into the room."
-
-"My dear Holmes!"
-
-"I have notes of several similar cases, though none, as I
-remarked before, which were quite as prompt. My whole examination
-served to turn my conjecture into a certainty. Circumstantial
-evidence is occasionally very convincing, as when you find a
-trout in the milk, to quote Thoreau's example."
-
-"But I have heard all that you have heard."
-
-"Without, however, the knowledge of pre-existing cases which
-serves me so well. There was a parallel instance in Aberdeen some
-years back, and something on very much the same lines at Munich
-the year after the Franco-Prussian War. It is one of these
-cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade!
-You will find an extra tumbler upon the sideboard, and there are
-cigars in the box."
-
-The official detective was attired in a pea-jacket and cravat,
-which gave him a decidedly nautical appearance, and he carried a
-black canvas bag in his hand. With a short greeting he seated
-himself and lit the cigar which had been offered to him.
-
-"What's up, then?" asked Holmes with a twinkle in his eye. "You
-look dissatisfied."
-
-"And I feel dissatisfied. It is this infernal St. Simon marriage
-case. I can make neither head nor tail of the business."
-
-"Really! You surprise me."
-
-"Who ever heard of such a mixed affair? Every clue seems to slip
-through my fingers. I have been at work upon it all day."
-
-"And very wet it seems to have made you," said Holmes laying his
-hand upon the arm of the pea-jacket.
-
-"Yes, I have been dragging the Serpentine."
-
-"In heaven's name, what for?"
-
-"In search of the body of Lady St. Simon."
-
-Sherlock Holmes leaned back in his chair and laughed heartily.
-
-"Have you dragged the basin of Trafalgar Square fountain?" he
-asked.
-
-"Why? What do you mean?"
-
-"Because you have just as good a chance of finding this lady in
-the one as in the other."
-
-Lestrade shot an angry glance at my companion. "I suppose you
-know all about it," he snarled.
-
-"Well, I have only just heard the facts, but my mind is made up."
-
-"Oh, indeed! Then you think that the Serpentine plays no part in
-the matter?"
-
-"I think it very unlikely."
-
-"Then perhaps you will kindly explain how it is that we found
-this in it?" He opened his bag as he spoke, and tumbled onto the
-floor a wedding-dress of watered silk, a pair of white satin
-shoes and a bride's wreath and veil, all discoloured and soaked
-in water. "There," said he, putting a new wedding-ring upon the
-top of the pile. "There is a little nut for you to crack, Master
-Holmes."
-
-"Oh, indeed!" said my friend, blowing blue rings into the air.
-"You dragged them from the Serpentine?"
-
-"No. They were found floating near the margin by a park-keeper.
-They have been identified as her clothes, and it seemed to me
-that if the clothes were there the body would not be far off."
-
-"By the same brilliant reasoning, every man's body is to be found
-in the neighbourhood of his wardrobe. And pray what did you hope
-to arrive at through this?"
-
-"At some evidence implicating Flora Millar in the disappearance."
-
-"I am afraid that you will find it difficult."
-
-"Are you, indeed, now?" cried Lestrade with some bitterness. "I
-am afraid, Holmes, that you are not very practical with your
-deductions and your inferences. You have made two blunders in as
-many minutes. This dress does implicate Miss Flora Millar."
-
-"And how?"
-
-"In the dress is a pocket. In the pocket is a card-case. In the
-card-case is a note. And here is the very note." He slapped it
-down upon the table in front of him. "Listen to this: 'You will
-see me when all is ready. Come at once. F.H.M.' Now my theory all
-along has been that Lady St. Simon was decoyed away by Flora
-Millar, and that she, with confederates, no doubt, was
-responsible for her disappearance. Here, signed with her
-initials, is the very note which was no doubt quietly slipped
-into her hand at the door and which lured her within their
-reach."
-
-"Very good, Lestrade," said Holmes, laughing. "You really are
-very fine indeed. Let me see it." He took up the paper in a
-listless way, but his attention instantly became riveted, and he
-gave a little cry of satisfaction. "This is indeed important,"
-said he.
-
-"Ha! you find it so?"
-
-"Extremely so. I congratulate you warmly."
-
-Lestrade rose in his triumph and bent his head to look. "Why," he
-shrieked, "you're looking at the wrong side!"
-
-"On the contrary, this is the right side."
-
-"The right side? You're mad! Here is the note written in pencil
-over here."
-
-"And over here is what appears to be the fragment of a hotel
-bill, which interests me deeply."
-
-"There's nothing in it. I looked at it before," said Lestrade.
-"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s.
-6d., glass sherry, 8d.' I see nothing in that."
-
-"Very likely not. It is most important, all the same. As to the
-note, it is important also, or at least the initials are, so I
-congratulate you again."
-
-"I've wasted time enough," said Lestrade, rising. "I believe in
-hard work and not in sitting by the fire spinning fine theories.
-Good-day, Mr. Holmes, and we shall see which gets to the bottom
-of the matter first." He gathered up the garments, thrust them
-into the bag, and made for the door.
-
-"Just one hint to you, Lestrade," drawled Holmes before his rival
-vanished; "I will tell you the true solution of the matter. Lady
-St. Simon is a myth. There is not, and there never has been, any
-such person."
-
-Lestrade looked sadly at my companion. Then he turned to me,
-tapped his forehead three times, shook his head solemnly, and
-hurried away.
-
-He had hardly shut the door behind him when Holmes rose to put on
-his overcoat. "There is something in what the fellow says about
-outdoor work," he remarked, "so I think, Watson, that I must
-leave you to your papers for a little."
-
-It was after five o'clock when Sherlock Holmes left me, but I had
-no time to be lonely, for within an hour there arrived a
-confectioner's man with a very large flat box. This he unpacked
-with the help of a youth whom he had brought with him, and
-presently, to my very great astonishment, a quite epicurean
-little cold supper began to be laid out upon our humble
-lodging-house mahogany. There were a couple of brace of cold
-woodcock, a pheasant, a pâté de foie gras pie with a group of
-ancient and cobwebby bottles. Having laid out all these luxuries,
-my two visitors vanished away, like the genii of the Arabian
-Nights, with no explanation save that the things had been paid
-for and were ordered to this address.
-
-Just before nine o'clock Sherlock Holmes stepped briskly into the
-room. His features were gravely set, but there was a light in his
-eye which made me think that he had not been disappointed in his
-conclusions.
-
-"They have laid the supper, then," he said, rubbing his hands.
-
-"You seem to expect company. They have laid for five."
-
-"Yes, I fancy we may have some company dropping in," said he. "I
-am surprised that Lord St. Simon has not already arrived. Ha! I
-fancy that I hear his step now upon the stairs."
-
-It was indeed our visitor of the afternoon who came bustling in,
-dangling his glasses more vigorously than ever, and with a very
-perturbed expression upon his aristocratic features.
-
-"My messenger reached you, then?" asked Holmes.
-
-"Yes, and I confess that the contents startled me beyond measure.
-Have you good authority for what you say?"
-
-"The best possible."
-
-Lord St. Simon sank into a chair and passed his hand over his
-forehead.
-
-"What will the Duke say," he murmured, "when he hears that one of
-the family has been subjected to such humiliation?"
-
-"It is the purest accident. I cannot allow that there is any
-humiliation."
-
-"Ah, you look on these things from another standpoint."
-
-"I fail to see that anyone is to blame. I can hardly see how the
-lady could have acted otherwise, though her abrupt method of
-doing it was undoubtedly to be regretted. Having no mother, she
-had no one to advise her at such a crisis."
-
-"It was a slight, sir, a public slight," said Lord St. Simon,
-tapping his fingers upon the table.
-
-"You must make allowance for this poor girl, placed in so
-unprecedented a position."
-
-"I will make no allowance. I am very angry indeed, and I have
-been shamefully used."
-
-"I think that I heard a ring," said Holmes. "Yes, there are steps
-on the landing. If I cannot persuade you to take a lenient view
-of the matter, Lord St. Simon, I have brought an advocate here
-who may be more successful." He opened the door and ushered in a
-lady and gentleman. "Lord St. Simon," said he "allow me to
-introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I
-think, you have already met."
-
-At the sight of these newcomers our client had sprung from his
-seat and stood very erect, with his eyes cast down and his hand
-thrust into the breast of his frock-coat, a picture of offended
-dignity. The lady had taken a quick step forward and had held out
-her hand to him, but he still refused to raise his eyes. It was
-as well for his resolution, perhaps, for her pleading face was
-one which it was hard to resist.
-
-"You're angry, Robert," said she. "Well, I guess you have every
-cause to be."
-
-"Pray make no apology to me," said Lord St. Simon bitterly.
-
-"Oh, yes, I know that I have treated you real bad and that I
-should have spoken to you before I went; but I was kind of
-rattled, and from the time when I saw Frank here again I just
-didn't know what I was doing or saying. I only wonder I didn't
-fall down and do a faint right there before the altar."
-
-"Perhaps, Mrs. Moulton, you would like my friend and me to leave
-the room while you explain this matter?"
-
-"If I may give an opinion," remarked the strange gentleman,
-"we've had just a little too much secrecy over this business
-already. For my part, I should like all Europe and America to
-hear the rights of it." He was a small, wiry, sunburnt man,
-clean-shaven, with a sharp face and alert manner.
-
-"Then I'll tell our story right away," said the lady. "Frank here
-and I met in '84, in McQuire's camp, near the Rockies, where pa
-was working a claim. We were engaged to each other, Frank and I;
-but then one day father struck a rich pocket and made a pile,
-while poor Frank here had a claim that petered out and came to
-nothing. The richer pa grew the poorer was Frank; so at last pa
-wouldn't hear of our engagement lasting any longer, and he took
-me away to 'Frisco. Frank wouldn't throw up his hand, though; so
-he followed me there, and he saw me without pa knowing anything
-about it. It would only have made him mad to know, so we just
-fixed it all up for ourselves. Frank said that he would go and
-make his pile, too, and never come back to claim me until he had
-as much as pa. So then I promised to wait for him to the end of
-time and pledged myself not to marry anyone else while he lived.
-'Why shouldn't we be married right away, then,' said he, 'and
-then I will feel sure of you; and I won't claim to be your
-husband until I come back?' Well, we talked it over, and he had
-fixed it all up so nicely, with a clergyman all ready in waiting,
-that we just did it right there; and then Frank went off to seek
-his fortune, and I went back to pa.
-
-"The next I heard of Frank was that he was in Montana, and then
-he went prospecting in Arizona, and then I heard of him from New
-Mexico. After that came a long newspaper story about how a
-miners' camp had been attacked by Apache Indians, and there was
-my Frank's name among the killed. I fainted dead away, and I was
-very sick for months after. Pa thought I had a decline and took
-me to half the doctors in 'Frisco. Not a word of news came for a
-year and more, so that I never doubted that Frank was really
-dead. Then Lord St. Simon came to 'Frisco, and we came to London,
-and a marriage was arranged, and pa was very pleased, but I felt
-all the time that no man on this earth would ever take the place
-in my heart that had been given to my poor Frank.
-
-"Still, if I had married Lord St. Simon, of course I'd have done
-my duty by him. We can't command our love, but we can our
-actions. I went to the altar with him with the intention to make
-him just as good a wife as it was in me to be. But you may
-imagine what I felt when, just as I came to the altar rails, I
-glanced back and saw Frank standing and looking at me out of the
-first pew. I thought it was his ghost at first; but when I looked
-again there he was still, with a kind of question in his eyes, as
-if to ask me whether I were glad or sorry to see him. I wonder I
-didn't drop. I know that everything was turning round, and the
-words of the clergyman were just like the buzz of a bee in my
-ear. I didn't know what to do. Should I stop the service and make
-a scene in the church? I glanced at him again, and he seemed to
-know what I was thinking, for he raised his finger to his lips to
-tell me to be still. Then I saw him scribble on a piece of paper,
-and I knew that he was writing me a note. As I passed his pew on
-the way out I dropped my bouquet over to him, and he slipped the
-note into my hand when he returned me the flowers. It was only a
-line asking me to join him when he made the sign to me to do so.
-Of course I never doubted for a moment that my first duty was now
-to him, and I determined to do just whatever he might direct.
-
-"When I got back I told my maid, who had known him in California,
-and had always been his friend. I ordered her to say nothing, but
-to get a few things packed and my ulster ready. I know I ought to
-have spoken to Lord St. Simon, but it was dreadful hard before
-his mother and all those great people. I just made up my mind to
-run away and explain afterwards. I hadn't been at the table ten
-minutes before I saw Frank out of the window at the other side of
-the road. He beckoned to me and then began walking into the Park.
-I slipped out, put on my things, and followed him. Some woman
-came talking something or other about Lord St. Simon to
-me--seemed to me from the little I heard as if he had a little
-secret of his own before marriage also--but I managed to get away
-from her and soon overtook Frank. We got into a cab together, and
-away we drove to some lodgings he had taken in Gordon Square, and
-that was my true wedding after all those years of waiting. Frank
-had been a prisoner among the Apaches, had escaped, came on to
-'Frisco, found that I had given him up for dead and had gone to
-England, followed me there, and had come upon me at last on the
-very morning of my second wedding."
-
-"I saw it in a paper," explained the American. "It gave the name
-and the church but not where the lady lived."
-
-"Then we had a talk as to what we should do, and Frank was all
-for openness, but I was so ashamed of it all that I felt as if I
-should like to vanish away and never see any of them again--just
-sending a line to pa, perhaps, to show him that I was alive. It
-was awful to me to think of all those lords and ladies sitting
-round that breakfast-table and waiting for me to come back. So
-Frank took my wedding-clothes and things and made a bundle of
-them, so that I should not be traced, and dropped them away
-somewhere where no one could find them. It is likely that we
-should have gone on to Paris to-morrow, only that this good
-gentleman, Mr. Holmes, came round to us this evening, though how
-he found us is more than I can think, and he showed us very
-clearly and kindly that I was wrong and that Frank was right, and
-that we should be putting ourselves in the wrong if we were so
-secret. Then he offered to give us a chance of talking to Lord
-St. Simon alone, and so we came right away round to his rooms at
-once. Now, Robert, you have heard it all, and I am very sorry if
-I have given you pain, and I hope that you do not think very
-meanly of me."
-
-Lord St. Simon had by no means relaxed his rigid attitude, but
-had listened with a frowning brow and a compressed lip to this
-long narrative.
-
-"Excuse me," he said, "but it is not my custom to discuss my most
-intimate personal affairs in this public manner."
-
-"Then you won't forgive me? You won't shake hands before I go?"
-
-"Oh, certainly, if it would give you any pleasure." He put out
-his hand and coldly grasped that which she extended to him.
-
-"I had hoped," suggested Holmes, "that you would have joined us
-in a friendly supper."
-
-"I think that there you ask a little too much," responded his
-Lordship. "I may be forced to acquiesce in these recent
-developments, but I can hardly be expected to make merry over
-them. I think that with your permission I will now wish you all a
-very good-night." He included us all in a sweeping bow and
-stalked out of the room.
-
-"Then I trust that you at least will honour me with your
-company," said Sherlock Holmes. "It is always a joy to meet an
-American, Mr. Moulton, for I am one of those who believe that the
-folly of a monarch and the blundering of a minister in far-gone
-years will not prevent our children from being some day citizens
-of the same world-wide country under a flag which shall be a
-quartering of the Union Jack with the Stars and Stripes."
-
-"The case has been an interesting one," remarked Holmes when our
-visitors had left us, "because it serves to show very clearly how
-simple the explanation may be of an affair which at first sight
-seems to be almost inexplicable. Nothing could be more natural
-than the sequence of events as narrated by this lady, and nothing
-stranger than the result when viewed, for instance, by Mr.
-Lestrade of Scotland Yard."
-
-"You were not yourself at fault at all, then?"
-
-"From the first, two facts were very obvious to me, the one that
-the lady had been quite willing to undergo the wedding ceremony,
-the other that she had repented of it within a few minutes of
-returning home. Obviously something had occurred during the
-morning, then, to cause her to change her mind. What could that
-something be? She could not have spoken to anyone when she was
-out, for she had been in the company of the bridegroom. Had she
-seen someone, then? If she had, it must be someone from America
-because she had spent so short a time in this country that she
-could hardly have allowed anyone to acquire so deep an influence
-over her that the mere sight of him would induce her to change
-her plans so completely. You see we have already arrived, by a
-process of exclusion, at the idea that she might have seen an
-American. Then who could this American be, and why should he
-possess so much influence over her? It might be a lover; it might
-be a husband. Her young womanhood had, I knew, been spent in
-rough scenes and under strange conditions. So far I had got
-before I ever heard Lord St. Simon's narrative. When he told us
-of a man in a pew, of the change in the bride's manner, of so
-transparent a device for obtaining a note as the dropping of a
-bouquet, of her resort to her confidential maid, and of her very
-significant allusion to claim-jumping--which in miners' parlance
-means taking possession of that which another person has a prior
-claim to--the whole situation became absolutely clear. She had
-gone off with a man, and the man was either a lover or was a
-previous husband--the chances being in favour of the latter."
-
-"And how in the world did you find them?"
-
-"It might have been difficult, but friend Lestrade held
-information in his hands the value of which he did not himself
-know. The initials were, of course, of the highest importance,
-but more valuable still was it to know that within a week he had
-settled his bill at one of the most select London hotels."
-
-"How did you deduce the select?"
-
-"By the select prices. Eight shillings for a bed and eightpence
-for a glass of sherry pointed to one of the most expensive
-hotels. There are not many in London which charge at that rate.
-In the second one which I visited in Northumberland Avenue, I
-learned by an inspection of the book that Francis H. Moulton, an
-American gentleman, had left only the day before, and on looking
-over the entries against him, I came upon the very items which I
-had seen in the duplicate bill. His letters were to be forwarded
-to 226 Gordon Square; so thither I travelled, and being fortunate
-enough to find the loving couple at home, I ventured to give them
-some paternal advice and to point out to them that it would be
-better in every way that they should make their position a little
-clearer both to the general public and to Lord St. Simon in
-particular. I invited them to meet him here, and, as you see, I
-made him keep the appointment."
-
-"But with no very good result," I remarked. "His conduct was
-certainly not very gracious."
-
-"Ah, Watson," said Holmes, smiling, "perhaps you would not be
-very gracious either, if, after all the trouble of wooing and
-wedding, you found yourself deprived in an instant of wife and of
-fortune. I think that we may judge Lord St. Simon very mercifully
-and thank our stars that we are never likely to find ourselves in
-the same position. Draw your chair up and hand me my violin, for
-the only problem we have still to solve is how to while away
-these bleak autumnal evenings."
-
-
-
-XI. THE ADVENTURE OF THE BERYL CORONET
-
-"Holmes," said I as I stood one morning in our bow-window looking
-down the street, "here is a madman coming along. It seems rather
-sad that his relatives should allow him to come out alone."
-
-My friend rose lazily from his armchair and stood with his hands
-in the pockets of his dressing-gown, looking over my shoulder. It
-was a bright, crisp February morning, and the snow of the day
-before still lay deep upon the ground, shimmering brightly in the
-wintry sun. Down the centre of Baker Street it had been ploughed
-into a brown crumbly band by the traffic, but at either side and
-on the heaped-up edges of the foot-paths it still lay as white as
-when it fell. The grey pavement had been cleaned and scraped, but
-was still dangerously slippery, so that there were fewer
-passengers than usual. Indeed, from the direction of the
-Metropolitan Station no one was coming save the single gentleman
-whose eccentric conduct had drawn my attention.
-
-He was a man of about fifty, tall, portly, and imposing, with a
-massive, strongly marked face and a commanding figure. He was
-dressed in a sombre yet rich style, in black frock-coat, shining
-hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet
-his actions were in absurd contrast to the dignity of his dress
-and features, for he was running hard, with occasional little
-springs, such as a weary man gives who is little accustomed to
-set any tax upon his legs. As he ran he jerked his hands up and
-down, waggled his head, and writhed his face into the most
-extraordinary contortions.
-
-"What on earth can be the matter with him?" I asked. "He is
-looking up at the numbers of the houses."
-
-"I believe that he is coming here," said Holmes, rubbing his
-hands.
-
-"Here?"
-
-"Yes; I rather think he is coming to consult me professionally. I
-think that I recognise the symptoms. Ha! did I not tell you?" As
-he spoke, the man, puffing and blowing, rushed at our door and
-pulled at our bell until the whole house resounded with the
-clanging.
-
-A few moments later he was in our room, still puffing, still
-gesticulating, but with so fixed a look of grief and despair in
-his eyes that our smiles were turned in an instant to horror and
-pity. For a while he could not get his words out, but swayed his
-body and plucked at his hair like one who has been driven to the
-extreme limits of his reason. Then, suddenly springing to his
-feet, he beat his head against the wall with such force that we
-both rushed upon him and tore him away to the centre of the room.
-Sherlock Holmes pushed him down into the easy-chair and, sitting
-beside him, patted his hand and chatted with him in the easy,
-soothing tones which he knew so well how to employ.
-
-"You have come to me to tell your story, have you not?" said he.
-"You are fatigued with your haste. Pray wait until you have
-recovered yourself, and then I shall be most happy to look into
-any little problem which you may submit to me."
-
-The man sat for a minute or more with a heaving chest, fighting
-against his emotion. Then he passed his handkerchief over his
-brow, set his lips tight, and turned his face towards us.
-
-"No doubt you think me mad?" said he.
-
-"I see that you have had some great trouble," responded Holmes.
-
-"God knows I have!--a trouble which is enough to unseat my
-reason, so sudden and so terrible is it. Public disgrace I might
-have faced, although I am a man whose character has never yet
-borne a stain. Private affliction also is the lot of every man;
-but the two coming together, and in so frightful a form, have
-been enough to shake my very soul. Besides, it is not I alone.
-The very noblest in the land may suffer unless some way be found
-out of this horrible affair."
-
-"Pray compose yourself, sir," said Holmes, "and let me have a
-clear account of who you are and what it is that has befallen
-you."
-
-"My name," answered our visitor, "is probably familiar to your
-ears. I am Alexander Holder, of the banking firm of Holder &
-Stevenson, of Threadneedle Street."
-
-The name was indeed well known to us as belonging to the senior
-partner in the second largest private banking concern in the City
-of London. What could have happened, then, to bring one of the
-foremost citizens of London to this most pitiable pass? We
-waited, all curiosity, until with another effort he braced
-himself to tell his story.
-
-"I feel that time is of value," said he; "that is why I hastened
-here when the police inspector suggested that I should secure
-your co-operation. I came to Baker Street by the Underground and
-hurried from there on foot, for the cabs go slowly through this
-snow. That is why I was so out of breath, for I am a man who
-takes very little exercise. I feel better now, and I will put the
-facts before you as shortly and yet as clearly as I can.
-
-"It is, of course, well known to you that in a successful banking
-business as much depends upon our being able to find remunerative
-investments for our funds as upon our increasing our connection
-and the number of our depositors. One of our most lucrative means
-of laying out money is in the shape of loans, where the security
-is unimpeachable. We have done a good deal in this direction
-during the last few years, and there are many noble families to
-whom we have advanced large sums upon the security of their
-pictures, libraries, or plate.
-
-"Yesterday morning I was seated in my office at the bank when a
-card was brought in to me by one of the clerks. I started when I
-saw the name, for it was that of none other than--well, perhaps
-even to you I had better say no more than that it was a name
-which is a household word all over the earth--one of the highest,
-noblest, most exalted names in England. I was overwhelmed by the
-honour and attempted, when he entered, to say so, but he plunged
-at once into business with the air of a man who wishes to hurry
-quickly through a disagreeable task.
-
-"'Mr. Holder,' said he, 'I have been informed that you are in the
-habit of advancing money.'
-
-"'The firm does so when the security is good.' I answered.
-
-"'It is absolutely essential to me,' said he, 'that I should have
-50,000 pounds at once. I could, of course, borrow so trifling a
-sum ten times over from my friends, but I much prefer to make it
-a matter of business and to carry out that business myself. In my
-position you can readily understand that it is unwise to place
-one's self under obligations.'
-
-"'For how long, may I ask, do you want this sum?' I asked.
-
-"'Next Monday I have a large sum due to me, and I shall then most
-certainly repay what you advance, with whatever interest you
-think it right to charge. But it is very essential to me that the
-money should be paid at once.'
-
-"'I should be happy to advance it without further parley from my
-own private purse,' said I, 'were it not that the strain would be
-rather more than it could bear. If, on the other hand, I am to do
-it in the name of the firm, then in justice to my partner I must
-insist that, even in your case, every businesslike precaution
-should be taken.'
-
-"'I should much prefer to have it so,' said he, raising up a
-square, black morocco case which he had laid beside his chair.
-'You have doubtless heard of the Beryl Coronet?'
-
-"'One of the most precious public possessions of the empire,'
-said I.
-
-"'Precisely.' He opened the case, and there, imbedded in soft,
-flesh-coloured velvet, lay the magnificent piece of jewellery
-which he had named. 'There are thirty-nine enormous beryls,' said
-he, 'and the price of the gold chasing is incalculable. The
-lowest estimate would put the worth of the coronet at double the
-sum which I have asked. I am prepared to leave it with you as my
-security.'
-
-"I took the precious case into my hands and looked in some
-perplexity from it to my illustrious client.
-
-"'You doubt its value?' he asked.
-
-"'Not at all. I only doubt--'
-
-"'The propriety of my leaving it. You may set your mind at rest
-about that. I should not dream of doing so were it not absolutely
-certain that I should be able in four days to reclaim it. It is a
-pure matter of form. Is the security sufficient?'
-
-"'Ample.'
-
-"'You understand, Mr. Holder, that I am giving you a strong proof
-of the confidence which I have in you, founded upon all that I
-have heard of you. I rely upon you not only to be discreet and to
-refrain from all gossip upon the matter but, above all, to
-preserve this coronet with every possible precaution because I
-need not say that a great public scandal would be caused if any
-harm were to befall it. Any injury to it would be almost as
-serious as its complete loss, for there are no beryls in the
-world to match these, and it would be impossible to replace them.
-I leave it with you, however, with every confidence, and I shall
-call for it in person on Monday morning.'
-
-"Seeing that my client was anxious to leave, I said no more but,
-calling for my cashier, I ordered him to pay over fifty 1000
-pound notes. When I was alone once more, however, with the
-precious case lying upon the table in front of me, I could not
-but think with some misgivings of the immense responsibility
-which it entailed upon me. There could be no doubt that, as it
-was a national possession, a horrible scandal would ensue if any
-misfortune should occur to it. I already regretted having ever
-consented to take charge of it. However, it was too late to alter
-the matter now, so I locked it up in my private safe and turned
-once more to my work.
-
-"When evening came I felt that it would be an imprudence to leave
-so precious a thing in the office behind me. Bankers' safes had
-been forced before now, and why should not mine be? If so, how
-terrible would be the position in which I should find myself! I
-determined, therefore, that for the next few days I would always
-carry the case backward and forward with me, so that it might
-never be really out of my reach. With this intention, I called a
-cab and drove out to my house at Streatham, carrying the jewel
-with me. I did not breathe freely until I had taken it upstairs
-and locked it in the bureau of my dressing-room.
-
-"And now a word as to my household, Mr. Holmes, for I wish you to
-thoroughly understand the situation. My groom and my page sleep
-out of the house, and may be set aside altogether. I have three
-maid-servants who have been with me a number of years and whose
-absolute reliability is quite above suspicion. Another, Lucy
-Parr, the second waiting-maid, has only been in my service a few
-months. She came with an excellent character, however, and has
-always given me satisfaction. She is a very pretty girl and has
-attracted admirers who have occasionally hung about the place.
-That is the only drawback which we have found to her, but we
-believe her to be a thoroughly good girl in every way.
-
-"So much for the servants. My family itself is so small that it
-will not take me long to describe it. I am a widower and have an
-only son, Arthur. He has been a disappointment to me, Mr.
-Holmes--a grievous disappointment. I have no doubt that I am
-myself to blame. People tell me that I have spoiled him. Very
-likely I have. When my dear wife died I felt that he was all I
-had to love. I could not bear to see the smile fade even for a
-moment from his face. I have never denied him a wish. Perhaps it
-would have been better for both of us had I been sterner, but I
-meant it for the best.
-
-"It was naturally my intention that he should succeed me in my
-business, but he was not of a business turn. He was wild,
-wayward, and, to speak the truth, I could not trust him in the
-handling of large sums of money. When he was young he became a
-member of an aristocratic club, and there, having charming
-manners, he was soon the intimate of a number of men with long
-purses and expensive habits. He learned to play heavily at cards
-and to squander money on the turf, until he had again and again
-to come to me and implore me to give him an advance upon his
-allowance, that he might settle his debts of honour. He tried
-more than once to break away from the dangerous company which he
-was keeping, but each time the influence of his friend, Sir
-George Burnwell, was enough to draw him back again.
-
-"And, indeed, I could not wonder that such a man as Sir George
-Burnwell should gain an influence over him, for he has frequently
-brought him to my house, and I have found myself that I could
-hardly resist the fascination of his manner. He is older than
-Arthur, a man of the world to his finger-tips, one who had been
-everywhere, seen everything, a brilliant talker, and a man of
-great personal beauty. Yet when I think of him in cold blood, far
-away from the glamour of his presence, I am convinced from his
-cynical speech and the look which I have caught in his eyes that
-he is one who should be deeply distrusted. So I think, and so,
-too, thinks my little Mary, who has a woman's quick insight into
-character.
-
-"And now there is only she to be described. She is my niece; but
-when my brother died five years ago and left her alone in the
-world I adopted her, and have looked upon her ever since as my
-daughter. She is a sunbeam in my house--sweet, loving, beautiful,
-a wonderful manager and housekeeper, yet as tender and quiet and
-gentle as a woman could be. She is my right hand. I do not know
-what I could do without her. In only one matter has she ever gone
-against my wishes. Twice my boy has asked her to marry him, for
-he loves her devotedly, but each time she has refused him. I
-think that if anyone could have drawn him into the right path it
-would have been she, and that his marriage might have changed his
-whole life; but now, alas! it is too late--forever too late!
-
-"Now, Mr. Holmes, you know the people who live under my roof, and
-I shall continue with my miserable story.
-
-"When we were taking coffee in the drawing-room that night after
-dinner, I told Arthur and Mary my experience, and of the precious
-treasure which we had under our roof, suppressing only the name
-of my client. Lucy Parr, who had brought in the coffee, had, I am
-sure, left the room; but I cannot swear that the door was closed.
-Mary and Arthur were much interested and wished to see the famous
-coronet, but I thought it better not to disturb it.
-
-"'Where have you put it?' asked Arthur.
-
-"'In my own bureau.'
-
-"'Well, I hope to goodness the house won't be burgled during the
-night.' said he.
-
-"'It is locked up,' I answered.
-
-"'Oh, any old key will fit that bureau. When I was a youngster I
-have opened it myself with the key of the box-room cupboard.'
-
-"He often had a wild way of talking, so that I thought little of
-what he said. He followed me to my room, however, that night with
-a very grave face.
-
-"'Look here, dad,' said he with his eyes cast down, 'can you let
-me have 200 pounds?'
-
-"'No, I cannot!' I answered sharply. 'I have been far too
-generous with you in money matters.'
-
-"'You have been very kind,' said he, 'but I must have this money,
-or else I can never show my face inside the club again.'
-
-"'And a very good thing, too!' I cried.
-
-"'Yes, but you would not have me leave it a dishonoured man,'
-said he. 'I could not bear the disgrace. I must raise the money
-in some way, and if you will not let me have it, then I must try
-other means.'
-
-"I was very angry, for this was the third demand during the
-month. 'You shall not have a farthing from me,' I cried, on which
-he bowed and left the room without another word.
-
-"When he was gone I unlocked my bureau, made sure that my
-treasure was safe, and locked it again. Then I started to go
-round the house to see that all was secure--a duty which I
-usually leave to Mary but which I thought it well to perform
-myself that night. As I came down the stairs I saw Mary herself
-at the side window of the hall, which she closed and fastened as
-I approached.
-
-"'Tell me, dad,' said she, looking, I thought, a little
-disturbed, 'did you give Lucy, the maid, leave to go out
-to-night?'
-
-"'Certainly not.'
-
-"'She came in just now by the back door. I have no doubt that she
-has only been to the side gate to see someone, but I think that
-it is hardly safe and should be stopped.'
-
-"'You must speak to her in the morning, or I will if you prefer
-it. Are you sure that everything is fastened?'
-
-"'Quite sure, dad.'
-
-"'Then, good-night.' I kissed her and went up to my bedroom
-again, where I was soon asleep.
-
-"I am endeavouring to tell you everything, Mr. Holmes, which may
-have any bearing upon the case, but I beg that you will question
-me upon any point which I do not make clear."
-
-"On the contrary, your statement is singularly lucid."
-
-"I come to a part of my story now in which I should wish to be
-particularly so. I am not a very heavy sleeper, and the anxiety
-in my mind tended, no doubt, to make me even less so than usual.
-About two in the morning, then, I was awakened by some sound in
-the house. It had ceased ere I was wide awake, but it had left an
-impression behind it as though a window had gently closed
-somewhere. I lay listening with all my ears. Suddenly, to my
-horror, there was a distinct sound of footsteps moving softly in
-the next room. I slipped out of bed, all palpitating with fear,
-and peeped round the corner of my dressing-room door.
-
-"'Arthur!' I screamed, 'you villain! you thief! How dare you
-touch that coronet?'
-
-"The gas was half up, as I had left it, and my unhappy boy,
-dressed only in his shirt and trousers, was standing beside the
-light, holding the coronet in his hands. He appeared to be
-wrenching at it, or bending it with all his strength. At my cry
-he dropped it from his grasp and turned as pale as death. I
-snatched it up and examined it. One of the gold corners, with
-three of the beryls in it, was missing.
-
-"'You blackguard!' I shouted, beside myself with rage. 'You have
-destroyed it! You have dishonoured me forever! Where are the
-jewels which you have stolen?'
-
-"'Stolen!' he cried.
-
-"'Yes, thief!' I roared, shaking him by the shoulder.
-
-"'There are none missing. There cannot be any missing,' said he.
-
-"'There are three missing. And you know where they are. Must I
-call you a liar as well as a thief? Did I not see you trying to
-tear off another piece?'
-
-"'You have called me names enough,' said he, 'I will not stand it
-any longer. I shall not say another word about this business,
-since you have chosen to insult me. I will leave your house in
-the morning and make my own way in the world.'
-
-"'You shall leave it in the hands of the police!' I cried
-half-mad with grief and rage. 'I shall have this matter probed to
-the bottom.'
-
-"'You shall learn nothing from me,' said he with a passion such
-as I should not have thought was in his nature. 'If you choose to
-call the police, let the police find what they can.'
-
-"By this time the whole house was astir, for I had raised my
-voice in my anger. Mary was the first to rush into my room, and,
-at the sight of the coronet and of Arthur's face, she read the
-whole story and, with a scream, fell down senseless on the
-ground. I sent the house-maid for the police and put the
-investigation into their hands at once. When the inspector and a
-constable entered the house, Arthur, who had stood sullenly with
-his arms folded, asked me whether it was my intention to charge
-him with theft. I answered that it had ceased to be a private
-matter, but had become a public one, since the ruined coronet was
-national property. I was determined that the law should have its
-way in everything.
-
-"'At least,' said he, 'you will not have me arrested at once. It
-would be to your advantage as well as mine if I might leave the
-house for five minutes.'
-
-"'That you may get away, or perhaps that you may conceal what you
-have stolen,' said I. And then, realising the dreadful position
-in which I was placed, I implored him to remember that not only
-my honour but that of one who was far greater than I was at
-stake; and that he threatened to raise a scandal which would
-convulse the nation. He might avert it all if he would but tell
-me what he had done with the three missing stones.
-
-"'You may as well face the matter,' said I; 'you have been caught
-in the act, and no confession could make your guilt more heinous.
-If you but make such reparation as is in your power, by telling
-us where the beryls are, all shall be forgiven and forgotten.'
-
-"'Keep your forgiveness for those who ask for it,' he answered,
-turning away from me with a sneer. I saw that he was too hardened
-for any words of mine to influence him. There was but one way for
-it. I called in the inspector and gave him into custody. A search
-was made at once not only of his person but of his room and of
-every portion of the house where he could possibly have concealed
-the gems; but no trace of them could be found, nor would the
-wretched boy open his mouth for all our persuasions and our
-threats. This morning he was removed to a cell, and I, after
-going through all the police formalities, have hurried round to
-you to implore you to use your skill in unravelling the matter.
-The police have openly confessed that they can at present make
-nothing of it. You may go to any expense which you think
-necessary. I have already offered a reward of 1000 pounds. My
-God, what shall I do! I have lost my honour, my gems, and my son
-in one night. Oh, what shall I do!"
-
-He put a hand on either side of his head and rocked himself to
-and fro, droning to himself like a child whose grief has got
-beyond words.
-
-Sherlock Holmes sat silent for some few minutes, with his brows
-knitted and his eyes fixed upon the fire.
-
-"Do you receive much company?" he asked.
-
-"None save my partner with his family and an occasional friend of
-Arthur's. Sir George Burnwell has been several times lately. No
-one else, I think."
-
-"Do you go out much in society?"
-
-"Arthur does. Mary and I stay at home. We neither of us care for
-it."
-
-"That is unusual in a young girl."
-
-"She is of a quiet nature. Besides, she is not so very young. She
-is four-and-twenty."
-
-"This matter, from what you say, seems to have been a shock to
-her also."
-
-"Terrible! She is even more affected than I."
-
-"You have neither of you any doubt as to your son's guilt?"
-
-"How can we have when I saw him with my own eyes with the coronet
-in his hands."
-
-"I hardly consider that a conclusive proof. Was the remainder of
-the coronet at all injured?"
-
-"Yes, it was twisted."
-
-"Do you not think, then, that he might have been trying to
-straighten it?"
-
-"God bless you! You are doing what you can for him and for me.
-But it is too heavy a task. What was he doing there at all? If
-his purpose were innocent, why did he not say so?"
-
-"Precisely. And if it were guilty, why did he not invent a lie?
-His silence appears to me to cut both ways. There are several
-singular points about the case. What did the police think of the
-noise which awoke you from your sleep?"
-
-"They considered that it might be caused by Arthur's closing his
-bedroom door."
-
-"A likely story! As if a man bent on felony would slam his door
-so as to wake a household. What did they say, then, of the
-disappearance of these gems?"
-
-"They are still sounding the planking and probing the furniture
-in the hope of finding them."
-
-"Have they thought of looking outside the house?"
-
-"Yes, they have shown extraordinary energy. The whole garden has
-already been minutely examined."
-
-"Now, my dear sir," said Holmes, "is it not obvious to you now
-that this matter really strikes very much deeper than either you
-or the police were at first inclined to think? It appeared to you
-to be a simple case; to me it seems exceedingly complex. Consider
-what is involved by your theory. You suppose that your son came
-down from his bed, went, at great risk, to your dressing-room,
-opened your bureau, took out your coronet, broke off by main
-force a small portion of it, went off to some other place,
-concealed three gems out of the thirty-nine, with such skill that
-nobody can find them, and then returned with the other thirty-six
-into the room in which he exposed himself to the greatest danger
-of being discovered. I ask you now, is such a theory tenable?"
-
-"But what other is there?" cried the banker with a gesture of
-despair. "If his motives were innocent, why does he not explain
-them?"
-
-"It is our task to find that out," replied Holmes; "so now, if
-you please, Mr. Holder, we will set off for Streatham together,
-and devote an hour to glancing a little more closely into
-details."
-
-My friend insisted upon my accompanying them in their expedition,
-which I was eager enough to do, for my curiosity and sympathy
-were deeply stirred by the story to which we had listened. I
-confess that the guilt of the banker's son appeared to me to be
-as obvious as it did to his unhappy father, but still I had such
-faith in Holmes' judgment that I felt that there must be some
-grounds for hope as long as he was dissatisfied with the accepted
-explanation. He hardly spoke a word the whole way out to the
-southern suburb, but sat with his chin upon his breast and his
-hat drawn over his eyes, sunk in the deepest thought. Our client
-appeared to have taken fresh heart at the little glimpse of hope
-which had been presented to him, and he even broke into a
-desultory chat with me over his business affairs. A short railway
-journey and a shorter walk brought us to Fairbank, the modest
-residence of the great financier.
-
-Fairbank was a good-sized square house of white stone, standing
-back a little from the road. A double carriage-sweep, with a
-snow-clad lawn, stretched down in front to two large iron gates
-which closed the entrance. On the right side was a small wooden
-thicket, which led into a narrow path between two neat hedges
-stretching from the road to the kitchen door, and forming the
-tradesmen's entrance. On the left ran a lane which led to the
-stables, and was not itself within the grounds at all, being a
-public, though little used, thoroughfare. Holmes left us standing
-at the door and walked slowly all round the house, across the
-front, down the tradesmen's path, and so round by the garden
-behind into the stable lane. So long was he that Mr. Holder and I
-went into the dining-room and waited by the fire until he should
-return. We were sitting there in silence when the door opened and
-a young lady came in. She was rather above the middle height,
-slim, with dark hair and eyes, which seemed the darker against
-the absolute pallor of her skin. I do not think that I have ever
-seen such deadly paleness in a woman's face. Her lips, too, were
-bloodless, but her eyes were flushed with crying. As she swept
-silently into the room she impressed me with a greater sense of
-grief than the banker had done in the morning, and it was the
-more striking in her as she was evidently a woman of strong
-character, with immense capacity for self-restraint. Disregarding
-my presence, she went straight to her uncle and passed her hand
-over his head with a sweet womanly caress.
-
-"You have given orders that Arthur should be liberated, have you
-not, dad?" she asked.
-
-"No, no, my girl, the matter must be probed to the bottom."
-
-"But I am so sure that he is innocent. You know what woman's
-instincts are. I know that he has done no harm and that you will
-be sorry for having acted so harshly."
-
-"Why is he silent, then, if he is innocent?"
-
-"Who knows? Perhaps because he was so angry that you should
-suspect him."
-
-"How could I help suspecting him, when I actually saw him with
-the coronet in his hand?"
-
-"Oh, but he had only picked it up to look at it. Oh, do, do take
-my word for it that he is innocent. Let the matter drop and say
-no more. It is so dreadful to think of our dear Arthur in
-prison!"
-
-"I shall never let it drop until the gems are found--never, Mary!
-Your affection for Arthur blinds you as to the awful consequences
-to me. Far from hushing the thing up, I have brought a gentleman
-down from London to inquire more deeply into it."
-
-"This gentleman?" she asked, facing round to me.
-
-"No, his friend. He wished us to leave him alone. He is round in
-the stable lane now."
-
-"The stable lane?" She raised her dark eyebrows. "What can he
-hope to find there? Ah! this, I suppose, is he. I trust, sir,
-that you will succeed in proving, what I feel sure is the truth,
-that my cousin Arthur is innocent of this crime."
-
-"I fully share your opinion, and I trust, with you, that we may
-prove it," returned Holmes, going back to the mat to knock the
-snow from his shoes. "I believe I have the honour of addressing
-Miss Mary Holder. Might I ask you a question or two?"
-
-"Pray do, sir, if it may help to clear this horrible affair up."
-
-"You heard nothing yourself last night?"
-
-"Nothing, until my uncle here began to speak loudly. I heard
-that, and I came down."
-
-"You shut up the windows and doors the night before. Did you
-fasten all the windows?"
-
-"Yes."
-
-"Were they all fastened this morning?"
-
-"Yes."
-
-"You have a maid who has a sweetheart? I think that you remarked
-to your uncle last night that she had been out to see him?"
-
-"Yes, and she was the girl who waited in the drawing-room, and
-who may have heard uncle's remarks about the coronet."
-
-"I see. You infer that she may have gone out to tell her
-sweetheart, and that the two may have planned the robbery."
-
-"But what is the good of all these vague theories," cried the
-banker impatiently, "when I have told you that I saw Arthur with
-the coronet in his hands?"
-
-"Wait a little, Mr. Holder. We must come back to that. About this
-girl, Miss Holder. You saw her return by the kitchen door, I
-presume?"
-
-"Yes; when I went to see if the door was fastened for the night I
-met her slipping in. I saw the man, too, in the gloom."
-
-"Do you know him?"
-
-"Oh, yes! he is the green-grocer who brings our vegetables round.
-His name is Francis Prosper."
-
-"He stood," said Holmes, "to the left of the door--that is to
-say, farther up the path than is necessary to reach the door?"
-
-"Yes, he did."
-
-"And he is a man with a wooden leg?"
-
-Something like fear sprang up in the young lady's expressive
-black eyes. "Why, you are like a magician," said she. "How do you
-know that?" She smiled, but there was no answering smile in
-Holmes' thin, eager face.
-
-"I should be very glad now to go upstairs," said he. "I shall
-probably wish to go over the outside of the house again. Perhaps
-I had better take a look at the lower windows before I go up."
-
-He walked swiftly round from one to the other, pausing only at
-the large one which looked from the hall onto the stable lane.
-This he opened and made a very careful examination of the sill
-with his powerful magnifying lens. "Now we shall go upstairs,"
-said he at last.
-
-The banker's dressing-room was a plainly furnished little
-chamber, with a grey carpet, a large bureau, and a long mirror.
-Holmes went to the bureau first and looked hard at the lock.
-
-"Which key was used to open it?" he asked.
-
-"That which my son himself indicated--that of the cupboard of the
-lumber-room."
-
-"Have you it here?"
-
-"That is it on the dressing-table."
-
-Sherlock Holmes took it up and opened the bureau.
-
-"It is a noiseless lock," said he. "It is no wonder that it did
-not wake you. This case, I presume, contains the coronet. We must
-have a look at it." He opened the case, and taking out the diadem
-he laid it upon the table. It was a magnificent specimen of the
-jeweller's art, and the thirty-six stones were the finest that I
-have ever seen. At one side of the coronet was a cracked edge,
-where a corner holding three gems had been torn away.
-
-"Now, Mr. Holder," said Holmes, "here is the corner which
-corresponds to that which has been so unfortunately lost. Might I
-beg that you will break it off."
-
-The banker recoiled in horror. "I should not dream of trying,"
-said he.
-
-"Then I will." Holmes suddenly bent his strength upon it, but
-without result. "I feel it give a little," said he; "but, though
-I am exceptionally strong in the fingers, it would take me all my
-time to break it. An ordinary man could not do it. Now, what do
-you think would happen if I did break it, Mr. Holder? There would
-be a noise like a pistol shot. Do you tell me that all this
-happened within a few yards of your bed and that you heard
-nothing of it?"
-
-"I do not know what to think. It is all dark to me."
-
-"But perhaps it may grow lighter as we go. What do you think,
-Miss Holder?"
-
-"I confess that I still share my uncle's perplexity."
-
-"Your son had no shoes or slippers on when you saw him?"
-
-"He had nothing on save only his trousers and shirt."
-
-"Thank you. We have certainly been favoured with extraordinary
-luck during this inquiry, and it will be entirely our own fault
-if we do not succeed in clearing the matter up. With your
-permission, Mr. Holder, I shall now continue my investigations
-outside."
-
-He went alone, at his own request, for he explained that any
-unnecessary footmarks might make his task more difficult. For an
-hour or more he was at work, returning at last with his feet
-heavy with snow and his features as inscrutable as ever.
-
-"I think that I have seen now all that there is to see, Mr.
-Holder," said he; "I can serve you best by returning to my
-rooms."
-
-"But the gems, Mr. Holmes. Where are they?"
-
-"I cannot tell."
-
-The banker wrung his hands. "I shall never see them again!" he
-cried. "And my son? You give me hopes?"
-
-"My opinion is in no way altered."
-
-"Then, for God's sake, what was this dark business which was
-acted in my house last night?"
-
-"If you can call upon me at my Baker Street rooms to-morrow
-morning between nine and ten I shall be happy to do what I can to
-make it clearer. I understand that you give me carte blanche to
-act for you, provided only that I get back the gems, and that you
-place no limit on the sum I may draw."
-
-"I would give my fortune to have them back."
-
-"Very good. I shall look into the matter between this and then.
-Good-bye; it is just possible that I may have to come over here
-again before evening."
-
-It was obvious to me that my companion's mind was now made up
-about the case, although what his conclusions were was more than
-I could even dimly imagine. Several times during our homeward
-journey I endeavoured to sound him upon the point, but he always
-glided away to some other topic, until at last I gave it over in
-despair. It was not yet three when we found ourselves in our
-rooms once more. He hurried to his chamber and was down again in
-a few minutes dressed as a common loafer. With his collar turned
-up, his shiny, seedy coat, his red cravat, and his worn boots, he
-was a perfect sample of the class.
-
-"I think that this should do," said he, glancing into the glass
-above the fireplace. "I only wish that you could come with me,
-Watson, but I fear that it won't do. I may be on the trail in
-this matter, or I may be following a will-o'-the-wisp, but I
-shall soon know which it is. I hope that I may be back in a few
-hours." He cut a slice of beef from the joint upon the sideboard,
-sandwiched it between two rounds of bread, and thrusting this
-rude meal into his pocket he started off upon his expedition.
-
-I had just finished my tea when he returned, evidently in
-excellent spirits, swinging an old elastic-sided boot in his
-hand. He chucked it down into a corner and helped himself to a
-cup of tea.
-
-"I only looked in as I passed," said he. "I am going right on."
-
-"Where to?"
-
-"Oh, to the other side of the West End. It may be some time
-before I get back. Don't wait up for me in case I should be
-late."
-
-"How are you getting on?"
-
-"Oh, so so. Nothing to complain of. I have been out to Streatham
-since I saw you last, but I did not call at the house. It is a
-very sweet little problem, and I would not have missed it for a
-good deal. However, I must not sit gossiping here, but must get
-these disreputable clothes off and return to my highly
-respectable self."
-
-I could see by his manner that he had stronger reasons for
-satisfaction than his words alone would imply. His eyes twinkled,
-and there was even a touch of colour upon his sallow cheeks. He
-hastened upstairs, and a few minutes later I heard the slam of
-the hall door, which told me that he was off once more upon his
-congenial hunt.
-
-I waited until midnight, but there was no sign of his return, so
-I retired to my room. It was no uncommon thing for him to be away
-for days and nights on end when he was hot upon a scent, so that
-his lateness caused me no surprise. I do not know at what hour he
-came in, but when I came down to breakfast in the morning there
-he was with a cup of coffee in one hand and the paper in the
-other, as fresh and trim as possible.
-
-"You will excuse my beginning without you, Watson," said he, "but
-you remember that our client has rather an early appointment this
-morning."
-
-"Why, it is after nine now," I answered. "I should not be
-surprised if that were he. I thought I heard a ring."
-
-It was, indeed, our friend the financier. I was shocked by the
-change which had come over him, for his face which was naturally
-of a broad and massive mould, was now pinched and fallen in,
-while his hair seemed to me at least a shade whiter. He entered
-with a weariness and lethargy which was even more painful than
-his violence of the morning before, and he dropped heavily into
-the armchair which I pushed forward for him.
-
-"I do not know what I have done to be so severely tried," said
-he. "Only two days ago I was a happy and prosperous man, without
-a care in the world. Now I am left to a lonely and dishonoured
-age. One sorrow comes close upon the heels of another. My niece,
-Mary, has deserted me."
-
-"Deserted you?"
-
-"Yes. Her bed this morning had not been slept in, her room was
-empty, and a note for me lay upon the hall table. I had said to
-her last night, in sorrow and not in anger, that if she had
-married my boy all might have been well with him. Perhaps it was
-thoughtless of me to say so. It is to that remark that she refers
-in this note:
-
-"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you,
-and that if I had acted differently this terrible misfortune
-might never have occurred. I cannot, with this thought in my
-mind, ever again be happy under your roof, and I feel that I must
-leave you forever. Do not worry about my future, for that is
-provided for; and, above all, do not search for me, for it will
-be fruitless labour and an ill-service to me. In life or in
-death, I am ever your loving,--MARY.'
-
-"What could she mean by that note, Mr. Holmes? Do you think it
-points to suicide?"
-
-"No, no, nothing of the kind. It is perhaps the best possible
-solution. I trust, Mr. Holder, that you are nearing the end of
-your troubles."
-
-"Ha! You say so! You have heard something, Mr. Holmes; you have
-learned something! Where are the gems?"
-
-"You would not think 1000 pounds apiece an excessive sum for
-them?"
-
-"I would pay ten."
-
-"That would be unnecessary. Three thousand will cover the matter.
-And there is a little reward, I fancy. Have you your check-book?
-Here is a pen. Better make it out for 4000 pounds."
-
-With a dazed face the banker made out the required check. Holmes
-walked over to his desk, took out a little triangular piece of
-gold with three gems in it, and threw it down upon the table.
-
-With a shriek of joy our client clutched it up.
-
-"You have it!" he gasped. "I am saved! I am saved!"
-
-The reaction of joy was as passionate as his grief had been, and
-he hugged his recovered gems to his bosom.
-
-"There is one other thing you owe, Mr. Holder," said Sherlock
-Holmes rather sternly.
-
-"Owe!" He caught up a pen. "Name the sum, and I will pay it."
-
-"No, the debt is not to me. You owe a very humble apology to that
-noble lad, your son, who has carried himself in this matter as I
-should be proud to see my own son do, should I ever chance to
-have one."
-
-"Then it was not Arthur who took them?"
-
-"I told you yesterday, and I repeat to-day, that it was not."
-
-"You are sure of it! Then let us hurry to him at once to let him
-know that the truth is known."
-
-"He knows it already. When I had cleared it all up I had an
-interview with him, and finding that he would not tell me the
-story, I told it to him, on which he had to confess that I was
-right and to add the very few details which were not yet quite
-clear to me. Your news of this morning, however, may open his
-lips."
-
-"For heaven's sake, tell me, then, what is this extraordinary
-mystery!"
-
-"I will do so, and I will show you the steps by which I reached
-it. And let me say to you, first, that which it is hardest for me
-to say and for you to hear: there has been an understanding
-between Sir George Burnwell and your niece Mary. They have now
-fled together."
-
-"My Mary? Impossible!"
-
-"It is unfortunately more than possible; it is certain. Neither
-you nor your son knew the true character of this man when you
-admitted him into your family circle. He is one of the most
-dangerous men in England--a ruined gambler, an absolutely
-desperate villain, a man without heart or conscience. Your niece
-knew nothing of such men. When he breathed his vows to her, as he
-had done to a hundred before her, she flattered herself that she
-alone had touched his heart. The devil knows best what he said,
-but at least she became his tool and was in the habit of seeing
-him nearly every evening."
-
-"I cannot, and I will not, believe it!" cried the banker with an
-ashen face.
-
-"I will tell you, then, what occurred in your house last night.
-Your niece, when you had, as she thought, gone to your room,
-slipped down and talked to her lover through the window which
-leads into the stable lane. His footmarks had pressed right
-through the snow, so long had he stood there. She told him of the
-coronet. His wicked lust for gold kindled at the news, and he
-bent her to his will. I have no doubt that she loved you, but
-there are women in whom the love of a lover extinguishes all
-other loves, and I think that she must have been one. She had
-hardly listened to his instructions when she saw you coming
-downstairs, on which she closed the window rapidly and told you
-about one of the servants' escapade with her wooden-legged lover,
-which was all perfectly true.
-
-"Your boy, Arthur, went to bed after his interview with you but
-he slept badly on account of his uneasiness about his club debts.
-In the middle of the night he heard a soft tread pass his door,
-so he rose and, looking out, was surprised to see his cousin
-walking very stealthily along the passage until she disappeared
-into your dressing-room. Petrified with astonishment, the lad
-slipped on some clothes and waited there in the dark to see what
-would come of this strange affair. Presently she emerged from the
-room again, and in the light of the passage-lamp your son saw
-that she carried the precious coronet in her hands. She passed
-down the stairs, and he, thrilling with horror, ran along and
-slipped behind the curtain near your door, whence he could see
-what passed in the hall beneath. He saw her stealthily open the
-window, hand out the coronet to someone in the gloom, and then
-closing it once more hurry back to her room, passing quite close
-to where he stood hid behind the curtain.
-
-"As long as she was on the scene he could not take any action
-without a horrible exposure of the woman whom he loved. But the
-instant that she was gone he realised how crushing a misfortune
-this would be for you, and how all-important it was to set it
-right. He rushed down, just as he was, in his bare feet, opened
-the window, sprang out into the snow, and ran down the lane,
-where he could see a dark figure in the moonlight. Sir George
-Burnwell tried to get away, but Arthur caught him, and there was
-a struggle between them, your lad tugging at one side of the
-coronet, and his opponent at the other. In the scuffle, your son
-struck Sir George and cut him over the eye. Then something
-suddenly snapped, and your son, finding that he had the coronet
-in his hands, rushed back, closed the window, ascended to your
-room, and had just observed that the coronet had been twisted in
-the struggle and was endeavouring to straighten it when you
-appeared upon the scene."
-
-"Is it possible?" gasped the banker.
-
-"You then roused his anger by calling him names at a moment when
-he felt that he had deserved your warmest thanks. He could not
-explain the true state of affairs without betraying one who
-certainly deserved little enough consideration at his hands. He
-took the more chivalrous view, however, and preserved her
-secret."
-
-"And that was why she shrieked and fainted when she saw the
-coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have
-been! And his asking to be allowed to go out for five minutes!
-The dear fellow wanted to see if the missing piece were at the
-scene of the struggle. How cruelly I have misjudged him!"
-
-"When I arrived at the house," continued Holmes, "I at once went
-very carefully round it to observe if there were any traces in
-the snow which might help me. I knew that none had fallen since
-the evening before, and also that there had been a strong frost
-to preserve impressions. I passed along the tradesmen's path, but
-found it all trampled down and indistinguishable. Just beyond it,
-however, at the far side of the kitchen door, a woman had stood
-and talked with a man, whose round impressions on one side showed
-that he had a wooden leg. I could even tell that they had been
-disturbed, for the woman had run back swiftly to the door, as was
-shown by the deep toe and light heel marks, while Wooden-leg had
-waited a little, and then had gone away. I thought at the time
-that this might be the maid and her sweetheart, of whom you had
-already spoken to me, and inquiry showed it was so. I passed
-round the garden without seeing anything more than random tracks,
-which I took to be the police; but when I got into the stable
-lane a very long and complex story was written in the snow in
-front of me.
-
-"There was a double line of tracks of a booted man, and a second
-double line which I saw with delight belonged to a man with naked
-feet. I was at once convinced from what you had told me that the
-latter was your son. The first had walked both ways, but the
-other had run swiftly, and as his tread was marked in places over
-the depression of the boot, it was obvious that he had passed
-after the other. I followed them up and found they led to the
-hall window, where Boots had worn all the snow away while
-waiting. Then I walked to the other end, which was a hundred
-yards or more down the lane. I saw where Boots had faced round,
-where the snow was cut up as though there had been a struggle,
-and, finally, where a few drops of blood had fallen, to show me
-that I was not mistaken. Boots had then run down the lane, and
-another little smudge of blood showed that it was he who had been
-hurt. When he came to the highroad at the other end, I found that
-the pavement had been cleared, so there was an end to that clue.
-
-"On entering the house, however, I examined, as you remember, the
-sill and framework of the hall window with my lens, and I could
-at once see that someone had passed out. I could distinguish the
-outline of an instep where the wet foot had been placed in coming
-in. I was then beginning to be able to form an opinion as to what
-had occurred. A man had waited outside the window; someone had
-brought the gems; the deed had been overseen by your son; he had
-pursued the thief; had struggled with him; they had each tugged
-at the coronet, their united strength causing injuries which
-neither alone could have effected. He had returned with the
-prize, but had left a fragment in the grasp of his opponent. So
-far I was clear. The question now was, who was the man and who
-was it brought him the coronet?
-
-"It is an old maxim of mine that when you have excluded the
-impossible, whatever remains, however improbable, must be the
-truth. Now, I knew that it was not you who had brought it down,
-so there only remained your niece and the maids. But if it were
-the maids, why should your son allow himself to be accused in
-their place? There could be no possible reason. As he loved his
-cousin, however, there was an excellent explanation why he should
-retain her secret--the more so as the secret was a disgraceful
-one. When I remembered that you had seen her at that window, and
-how she had fainted on seeing the coronet again, my conjecture
-became a certainty.
-
-"And who could it be who was her confederate? A lover evidently,
-for who else could outweigh the love and gratitude which she must
-feel to you? I knew that you went out little, and that your
-circle of friends was a very limited one. But among them was Sir
-George Burnwell. I had heard of him before as being a man of evil
-reputation among women. It must have been he who wore those boots
-and retained the missing gems. Even though he knew that Arthur
-had discovered him, he might still flatter himself that he was
-safe, for the lad could not say a word without compromising his
-own family.
-
-"Well, your own good sense will suggest what measures I took
-next. I went in the shape of a loafer to Sir George's house,
-managed to pick up an acquaintance with his valet, learned that
-his master had cut his head the night before, and, finally, at
-the expense of six shillings, made all sure by buying a pair of
-his cast-off shoes. With these I journeyed down to Streatham and
-saw that they exactly fitted the tracks."
-
-"I saw an ill-dressed vagabond in the lane yesterday evening,"
-said Mr. Holder.
-
-"Precisely. It was I. I found that I had my man, so I came home
-and changed my clothes. It was a delicate part which I had to
-play then, for I saw that a prosecution must be avoided to avert
-scandal, and I knew that so astute a villain would see that our
-hands were tied in the matter. I went and saw him. At first, of
-course, he denied everything. But when I gave him every
-particular that had occurred, he tried to bluster and took down a
-life-preserver from the wall. I knew my man, however, and I
-clapped a pistol to his head before he could strike. Then he
-became a little more reasonable. I told him that we would give
-him a price for the stones he held--1000 pounds apiece. That
-brought out the first signs of grief that he had shown. 'Why,
-dash it all!' said he, 'I've let them go at six hundred for the
-three!' I soon managed to get the address of the receiver who had
-them, on promising him that there would be no prosecution. Off I
-set to him, and after much chaffering I got our stones at 1000
-pounds apiece. Then I looked in upon your son, told him that all
-was right, and eventually got to my bed about two o'clock, after
-what I may call a really hard day's work."
-
-"A day which has saved England from a great public scandal," said
-the banker, rising. "Sir, I cannot find words to thank you, but
-you shall not find me ungrateful for what you have done. Your
-skill has indeed exceeded all that I have heard of it. And now I
-must fly to my dear boy to apologise to him for the wrong which I
-have done him. As to what you tell me of poor Mary, it goes to my
-very heart. Not even your skill can inform me where she is now."
-
-"I think that we may safely say," returned Holmes, "that she is
-wherever Sir George Burnwell is. It is equally certain, too, that
-whatever her sins are, they will soon receive a more than
-sufficient punishment."
-
-
-
-XII. THE ADVENTURE OF THE COPPER BEECHES
-
-"To the man who loves art for its own sake," remarked Sherlock
-Holmes, tossing aside the advertisement sheet of the Daily
-Telegraph, "it is frequently in its least important and lowliest
-manifestations that the keenest pleasure is to be derived. It is
-pleasant to me to observe, Watson, that you have so far grasped
-this truth that in these little records of our cases which you
-have been good enough to draw up, and, I am bound to say,
-occasionally to embellish, you have given prominence not so much
-to the many causes célèbres and sensational trials in which I
-have figured but rather to those incidents which may have been
-trivial in themselves, but which have given room for those
-faculties of deduction and of logical synthesis which I have made
-my special province."
-
-"And yet," said I, smiling, "I cannot quite hold myself absolved
-from the charge of sensationalism which has been urged against my
-records."
-
-"You have erred, perhaps," he observed, taking up a glowing
-cinder with the tongs and lighting with it the long cherry-wood
-pipe which was wont to replace his clay when he was in a
-disputatious rather than a meditative mood--"you have erred
-perhaps in attempting to put colour and life into each of your
-statements instead of confining yourself to the task of placing
-upon record that severe reasoning from cause to effect which is
-really the only notable feature about the thing."
-
-"It seems to me that I have done you full justice in the matter,"
-I remarked with some coldness, for I was repelled by the egotism
-which I had more than once observed to be a strong factor in my
-friend's singular character.
-
-"No, it is not selfishness or conceit," said he, answering, as
-was his wont, my thoughts rather than my words. "If I claim full
-justice for my art, it is because it is an impersonal thing--a
-thing beyond myself. Crime is common. Logic is rare. Therefore it
-is upon the logic rather than upon the crime that you should
-dwell. You have degraded what should have been a course of
-lectures into a series of tales."
-
-It was a cold morning of the early spring, and we sat after
-breakfast on either side of a cheery fire in the old room at
-Baker Street. A thick fog rolled down between the lines of
-dun-coloured houses, and the opposing windows loomed like dark,
-shapeless blurs through the heavy yellow wreaths. Our gas was lit
-and shone on the white cloth and glimmer of china and metal, for
-the table had not been cleared yet. Sherlock Holmes had been
-silent all the morning, dipping continuously into the
-advertisement columns of a succession of papers until at last,
-having apparently given up his search, he had emerged in no very
-sweet temper to lecture me upon my literary shortcomings.
-
-"At the same time," he remarked after a pause, during which he
-had sat puffing at his long pipe and gazing down into the fire,
-"you can hardly be open to a charge of sensationalism, for out of
-these cases which you have been so kind as to interest yourself
-in, a fair proportion do not treat of crime, in its legal sense,
-at all. The small matter in which I endeavoured to help the King
-of Bohemia, the singular experience of Miss Mary Sutherland, the
-problem connected with the man with the twisted lip, and the
-incident of the noble bachelor, were all matters which are
-outside the pale of the law. But in avoiding the sensational, I
-fear that you may have bordered on the trivial."
-
-"The end may have been so," I answered, "but the methods I hold
-to have been novel and of interest."
-
-"Pshaw, my dear fellow, what do the public, the great unobservant
-public, who could hardly tell a weaver by his tooth or a
-compositor by his left thumb, care about the finer shades of
-analysis and deduction! But, indeed, if you are trivial, I cannot
-blame you, for the days of the great cases are past. Man, or at
-least criminal man, has lost all enterprise and originality. As
-to my own little practice, it seems to be degenerating into an
-agency for recovering lost lead pencils and giving advice to
-young ladies from boarding-schools. I think that I have touched
-bottom at last, however. This note I had this morning marks my
-zero-point, I fancy. Read it!" He tossed a crumpled letter across
-to me.
-
-It was dated from Montague Place upon the preceding evening, and
-ran thus:
-
-"DEAR MR. HOLMES:--I am very anxious to consult you as to whether
-I should or should not accept a situation which has been offered
-to me as governess. I shall call at half-past ten to-morrow if I
-do not inconvenience you. Yours faithfully,
- "VIOLET HUNTER."
-
-"Do you know the young lady?" I asked.
-
-"Not I."
-
-"It is half-past ten now."
-
-"Yes, and I have no doubt that is her ring."
-
-"It may turn out to be of more interest than you think. You
-remember that the affair of the blue carbuncle, which appeared to
-be a mere whim at first, developed into a serious investigation.
-It may be so in this case, also."
-
-"Well, let us hope so. But our doubts will very soon be solved,
-for here, unless I am much mistaken, is the person in question."
-
-As he spoke the door opened and a young lady entered the room.
-She was plainly but neatly dressed, with a bright, quick face,
-freckled like a plover's egg, and with the brisk manner of a
-woman who has had her own way to make in the world.
-
-"You will excuse my troubling you, I am sure," said she, as my
-companion rose to greet her, "but I have had a very strange
-experience, and as I have no parents or relations of any sort
-from whom I could ask advice, I thought that perhaps you would be
-kind enough to tell me what I should do."
-
-"Pray take a seat, Miss Hunter. I shall be happy to do anything
-that I can to serve you."
-
-I could see that Holmes was favourably impressed by the manner
-and speech of his new client. He looked her over in his searching
-fashion, and then composed himself, with his lids drooping and
-his finger-tips together, to listen to her story.
-
-"I have been a governess for five years," said she, "in the
-family of Colonel Spence Munro, but two months ago the colonel
-received an appointment at Halifax, in Nova Scotia, and took his
-children over to America with him, so that I found myself without
-a situation. I advertised, and I answered advertisements, but
-without success. At last the little money which I had saved began
-to run short, and I was at my wit's end as to what I should do.
-
-"There is a well-known agency for governesses in the West End
-called Westaway's, and there I used to call about once a week in
-order to see whether anything had turned up which might suit me.
-Westaway was the name of the founder of the business, but it is
-really managed by Miss Stoper. She sits in her own little office,
-and the ladies who are seeking employment wait in an anteroom,
-and are then shown in one by one, when she consults her ledgers
-and sees whether she has anything which would suit them.
-
-"Well, when I called last week I was shown into the little office
-as usual, but I found that Miss Stoper was not alone. A
-prodigiously stout man with a very smiling face and a great heavy
-chin which rolled down in fold upon fold over his throat sat at
-her elbow with a pair of glasses on his nose, looking very
-earnestly at the ladies who entered. As I came in he gave quite a
-jump in his chair and turned quickly to Miss Stoper.
-
-"'That will do,' said he; 'I could not ask for anything better.
-Capital! capital!' He seemed quite enthusiastic and rubbed his
-hands together in the most genial fashion. He was such a
-comfortable-looking man that it was quite a pleasure to look at
-him.
-
-"'You are looking for a situation, miss?' he asked.
-
-"'Yes, sir.'
-
-"'As governess?'
-
-"'Yes, sir.'
-
-"'And what salary do you ask?'
-
-"'I had 4 pounds a month in my last place with Colonel Spence
-Munro.'
-
-"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his
-fat hands out into the air like a man who is in a boiling
-passion. 'How could anyone offer so pitiful a sum to a lady with
-such attractions and accomplishments?'
-
-"'My accomplishments, sir, may be less than you imagine,' said I.
-'A little French, a little German, music, and drawing--'
-
-"'Tut, tut!' he cried. 'This is all quite beside the question.
-The point is, have you or have you not the bearing and deportment
-of a lady? There it is in a nutshell. If you have not, you are
-not fitted for the rearing of a child who may some day play a
-considerable part in the history of the country. But if you have
-why, then, how could any gentleman ask you to condescend to
-accept anything under the three figures? Your salary with me,
-madam, would commence at 100 pounds a year.'
-
-"You may imagine, Mr. Holmes, that to me, destitute as I was,
-such an offer seemed almost too good to be true. The gentleman,
-however, seeing perhaps the look of incredulity upon my face,
-opened a pocket-book and took out a note.
-
-"'It is also my custom,' said he, smiling in the most pleasant
-fashion until his eyes were just two little shining slits amid
-the white creases of his face, 'to advance to my young ladies
-half their salary beforehand, so that they may meet any little
-expenses of their journey and their wardrobe.'
-
-"It seemed to me that I had never met so fascinating and so
-thoughtful a man. As I was already in debt to my tradesmen, the
-advance was a great convenience, and yet there was something
-unnatural about the whole transaction which made me wish to know
-a little more before I quite committed myself.
-
-"'May I ask where you live, sir?' said I.
-
-"'Hampshire. Charming rural place. The Copper Beeches, five miles
-on the far side of Winchester. It is the most lovely country, my
-dear young lady, and the dearest old country-house.'
-
-"'And my duties, sir? I should be glad to know what they would
-be.'
-
-"'One child--one dear little romper just six years old. Oh, if
-you could see him killing cockroaches with a slipper! Smack!
-smack! smack! Three gone before you could wink!' He leaned back
-in his chair and laughed his eyes into his head again.
-
-"I was a little startled at the nature of the child's amusement,
-but the father's laughter made me think that perhaps he was
-joking.
-
-"'My sole duties, then,' I asked, 'are to take charge of a single
-child?'
-
-"'No, no, not the sole, not the sole, my dear young lady,' he
-cried. 'Your duty would be, as I am sure your good sense would
-suggest, to obey any little commands my wife might give, provided
-always that they were such commands as a lady might with
-propriety obey. You see no difficulty, heh?'
-
-"'I should be happy to make myself useful.'
-
-"'Quite so. In dress now, for example. We are faddy people, you
-know--faddy but kind-hearted. If you were asked to wear any dress
-which we might give you, you would not object to our little whim.
-Heh?'
-
-"'No,' said I, considerably astonished at his words.
-
-"'Or to sit here, or sit there, that would not be offensive to
-you?'
-
-"'Oh, no.'
-
-"'Or to cut your hair quite short before you come to us?'
-
-"I could hardly believe my ears. As you may observe, Mr. Holmes,
-my hair is somewhat luxuriant, and of a rather peculiar tint of
-chestnut. It has been considered artistic. I could not dream of
-sacrificing it in this offhand fashion.
-
-"'I am afraid that that is quite impossible,' said I. He had been
-watching me eagerly out of his small eyes, and I could see a
-shadow pass over his face as I spoke.
-
-"'I am afraid that it is quite essential,' said he. 'It is a
-little fancy of my wife's, and ladies' fancies, you know, madam,
-ladies' fancies must be consulted. And so you won't cut your
-hair?'
-
-"'No, sir, I really could not,' I answered firmly.
-
-"'Ah, very well; then that quite settles the matter. It is a
-pity, because in other respects you would really have done very
-nicely. In that case, Miss Stoper, I had best inspect a few more
-of your young ladies.'
-
-"The manageress had sat all this while busy with her papers
-without a word to either of us, but she glanced at me now with so
-much annoyance upon her face that I could not help suspecting
-that she had lost a handsome commission through my refusal.
-
-"'Do you desire your name to be kept upon the books?' she asked.
-
-"'If you please, Miss Stoper.'
-
-"'Well, really, it seems rather useless, since you refuse the
-most excellent offers in this fashion,' said she sharply. 'You
-can hardly expect us to exert ourselves to find another such
-opening for you. Good-day to you, Miss Hunter.' She struck a gong
-upon the table, and I was shown out by the page.
-
-"Well, Mr. Holmes, when I got back to my lodgings and found
-little enough in the cupboard, and two or three bills upon the
-table, I began to ask myself whether I had not done a very
-foolish thing. After all, if these people had strange fads and
-expected obedience on the most extraordinary matters, they were
-at least ready to pay for their eccentricity. Very few
-governesses in England are getting 100 pounds a year. Besides,
-what use was my hair to me? Many people are improved by wearing
-it short and perhaps I should be among the number. Next day I was
-inclined to think that I had made a mistake, and by the day after
-I was sure of it. I had almost overcome my pride so far as to go
-back to the agency and inquire whether the place was still open
-when I received this letter from the gentleman himself. I have it
-here and I will read it to you:
-
- "'The Copper Beeches, near Winchester.
-"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your
-address, and I write from here to ask you whether you have
-reconsidered your decision. My wife is very anxious that you
-should come, for she has been much attracted by my description of
-you. We are willing to give 30 pounds a quarter, or 120 pounds a
-year, so as to recompense you for any little inconvenience which
-our fads may cause you. They are not very exacting, after all. My
-wife is fond of a particular shade of electric blue and would
-like you to wear such a dress indoors in the morning. You need
-not, however, go to the expense of purchasing one, as we have one
-belonging to my dear daughter Alice (now in Philadelphia), which
-would, I should think, fit you very well. Then, as to sitting
-here or there, or amusing yourself in any manner indicated, that
-need cause you no inconvenience. As regards your hair, it is no
-doubt a pity, especially as I could not help remarking its beauty
-during our short interview, but I am afraid that I must remain
-firm upon this point, and I only hope that the increased salary
-may recompense you for the loss. Your duties, as far as the child
-is concerned, are very light. Now do try to come, and I shall
-meet you with the dog-cart at Winchester. Let me know your train.
-Yours faithfully, JEPHRO RUCASTLE.'
-
-"That is the letter which I have just received, Mr. Holmes, and
-my mind is made up that I will accept it. I thought, however,
-that before taking the final step I should like to submit the
-whole matter to your consideration."
-
-"Well, Miss Hunter, if your mind is made up, that settles the
-question," said Holmes, smiling.
-
-"But you would not advise me to refuse?"
-
-"I confess that it is not the situation which I should like to
-see a sister of mine apply for."
-
-"What is the meaning of it all, Mr. Holmes?"
-
-"Ah, I have no data. I cannot tell. Perhaps you have yourself
-formed some opinion?"
-
-"Well, there seems to me to be only one possible solution. Mr.
-Rucastle seemed to be a very kind, good-natured man. Is it not
-possible that his wife is a lunatic, that he desires to keep the
-matter quiet for fear she should be taken to an asylum, and that
-he humours her fancies in every way in order to prevent an
-outbreak?"
-
-"That is a possible solution--in fact, as matters stand, it is
-the most probable one. But in any case it does not seem to be a
-nice household for a young lady."
-
-"But the money, Mr. Holmes, the money!"
-
-"Well, yes, of course the pay is good--too good. That is what
-makes me uneasy. Why should they give you 120 pounds a year, when
-they could have their pick for 40 pounds? There must be some
-strong reason behind."
-
-"I thought that if I told you the circumstances you would
-understand afterwards if I wanted your help. I should feel so
-much stronger if I felt that you were at the back of me."
-
-"Oh, you may carry that feeling away with you. I assure you that
-your little problem promises to be the most interesting which has
-come my way for some months. There is something distinctly novel
-about some of the features. If you should find yourself in doubt
-or in danger--"
-
-"Danger! What danger do you foresee?"
-
-Holmes shook his head gravely. "It would cease to be a danger if
-we could define it," said he. "But at any time, day or night, a
-telegram would bring me down to your help."
-
-"That is enough." She rose briskly from her chair with the
-anxiety all swept from her face. "I shall go down to Hampshire
-quite easy in my mind now. I shall write to Mr. Rucastle at once,
-sacrifice my poor hair to-night, and start for Winchester
-to-morrow." With a few grateful words to Holmes she bade us both
-good-night and bustled off upon her way.
-
-"At least," said I as we heard her quick, firm steps descending
-the stairs, "she seems to be a young lady who is very well able
-to take care of herself."
-
-"And she would need to be," said Holmes gravely. "I am much
-mistaken if we do not hear from her before many days are past."
-
-It was not very long before my friend's prediction was fulfilled.
-A fortnight went by, during which I frequently found my thoughts
-turning in her direction and wondering what strange side-alley of
-human experience this lonely woman had strayed into. The unusual
-salary, the curious conditions, the light duties, all pointed to
-something abnormal, though whether a fad or a plot, or whether
-the man were a philanthropist or a villain, it was quite beyond
-my powers to determine. As to Holmes, I observed that he sat
-frequently for half an hour on end, with knitted brows and an
-abstracted air, but he swept the matter away with a wave of his
-hand when I mentioned it. "Data! data! data!" he cried
-impatiently. "I can't make bricks without clay." And yet he would
-always wind up by muttering that no sister of his should ever
-have accepted such a situation.
-
-The telegram which we eventually received came late one night
-just as I was thinking of turning in and Holmes was settling down
-to one of those all-night chemical researches which he frequently
-indulged in, when I would leave him stooping over a retort and a
-test-tube at night and find him in the same position when I came
-down to breakfast in the morning. He opened the yellow envelope,
-and then, glancing at the message, threw it across to me.
-
-"Just look up the trains in Bradshaw," said he, and turned back
-to his chemical studies.
-
-The summons was a brief and urgent one.
-
-"Please be at the Black Swan Hotel at Winchester at midday
-to-morrow," it said. "Do come! I am at my wit's end. HUNTER."
-
-"Will you come with me?" asked Holmes, glancing up.
-
-"I should wish to."
-
-"Just look it up, then."
-
-"There is a train at half-past nine," said I, glancing over my
-Bradshaw. "It is due at Winchester at 11:30."
-
-"That will do very nicely. Then perhaps I had better postpone my
-analysis of the acetones, as we may need to be at our best in the
-morning."
-
-By eleven o'clock the next day we were well upon our way to the
-old English capital. Holmes had been buried in the morning papers
-all the way down, but after we had passed the Hampshire border he
-threw them down and began to admire the scenery. It was an ideal
-spring day, a light blue sky, flecked with little fleecy white
-clouds drifting across from west to east. The sun was shining
-very brightly, and yet there was an exhilarating nip in the air,
-which set an edge to a man's energy. All over the countryside,
-away to the rolling hills around Aldershot, the little red and
-grey roofs of the farm-steadings peeped out from amid the light
-green of the new foliage.
-
-"Are they not fresh and beautiful?" I cried with all the
-enthusiasm of a man fresh from the fogs of Baker Street.
-
-But Holmes shook his head gravely.
-
-"Do you know, Watson," said he, "that it is one of the curses of
-a mind with a turn like mine that I must look at everything with
-reference to my own special subject. You look at these scattered
-houses, and you are impressed by their beauty. I look at them,
-and the only thought which comes to me is a feeling of their
-isolation and of the impunity with which crime may be committed
-there."
-
-"Good heavens!" I cried. "Who would associate crime with these
-dear old homesteads?"
-
-"They always fill me with a certain horror. It is my belief,
-Watson, founded upon my experience, that the lowest and vilest
-alleys in London do not present a more dreadful record of sin
-than does the smiling and beautiful countryside."
-
-"You horrify me!"
-
-"But the reason is very obvious. The pressure of public opinion
-can do in the town what the law cannot accomplish. There is no
-lane so vile that the scream of a tortured child, or the thud of
-a drunkard's blow, does not beget sympathy and indignation among
-the neighbours, and then the whole machinery of justice is ever
-so close that a word of complaint can set it going, and there is
-but a step between the crime and the dock. But look at these
-lonely houses, each in its own fields, filled for the most part
-with poor ignorant folk who know little of the law. Think of the
-deeds of hellish cruelty, the hidden wickedness which may go on,
-year in, year out, in such places, and none the wiser. Had this
-lady who appeals to us for help gone to live in Winchester, I
-should never have had a fear for her. It is the five miles of
-country which makes the danger. Still, it is clear that she is
-not personally threatened."
-
-"No. If she can come to Winchester to meet us she can get away."
-
-"Quite so. She has her freedom."
-
-"What CAN be the matter, then? Can you suggest no explanation?"
-
-"I have devised seven separate explanations, each of which would
-cover the facts as far as we know them. But which of these is
-correct can only be determined by the fresh information which we
-shall no doubt find waiting for us. Well, there is the tower of
-the cathedral, and we shall soon learn all that Miss Hunter has
-to tell."
-
-The Black Swan is an inn of repute in the High Street, at no
-distance from the station, and there we found the young lady
-waiting for us. She had engaged a sitting-room, and our lunch
-awaited us upon the table.
-
-"I am so delighted that you have come," she said earnestly. "It
-is so very kind of you both; but indeed I do not know what I
-should do. Your advice will be altogether invaluable to me."
-
-"Pray tell us what has happened to you."
-
-"I will do so, and I must be quick, for I have promised Mr.
-Rucastle to be back before three. I got his leave to come into
-town this morning, though he little knew for what purpose."
-
-"Let us have everything in its due order." Holmes thrust his long
-thin legs out towards the fire and composed himself to listen.
-
-"In the first place, I may say that I have met, on the whole,
-with no actual ill-treatment from Mr. and Mrs. Rucastle. It is
-only fair to them to say that. But I cannot understand them, and
-I am not easy in my mind about them."
-
-"What can you not understand?"
-
-"Their reasons for their conduct. But you shall have it all just
-as it occurred. When I came down, Mr. Rucastle met me here and
-drove me in his dog-cart to the Copper Beeches. It is, as he
-said, beautifully situated, but it is not beautiful in itself,
-for it is a large square block of a house, whitewashed, but all
-stained and streaked with damp and bad weather. There are grounds
-round it, woods on three sides, and on the fourth a field which
-slopes down to the Southampton highroad, which curves past about
-a hundred yards from the front door. This ground in front belongs
-to the house, but the woods all round are part of Lord
-Southerton's preserves. A clump of copper beeches immediately in
-front of the hall door has given its name to the place.
-
-"I was driven over by my employer, who was as amiable as ever,
-and was introduced by him that evening to his wife and the child.
-There was no truth, Mr. Holmes, in the conjecture which seemed to
-us to be probable in your rooms at Baker Street. Mrs. Rucastle is
-not mad. I found her to be a silent, pale-faced woman, much
-younger than her husband, not more than thirty, I should think,
-while he can hardly be less than forty-five. From their
-conversation I have gathered that they have been married about
-seven years, that he was a widower, and that his only child by
-the first wife was the daughter who has gone to Philadelphia. Mr.
-Rucastle told me in private that the reason why she had left them
-was that she had an unreasoning aversion to her stepmother. As
-the daughter could not have been less than twenty, I can quite
-imagine that her position must have been uncomfortable with her
-father's young wife.
-
-"Mrs. Rucastle seemed to me to be colourless in mind as well as
-in feature. She impressed me neither favourably nor the reverse.
-She was a nonentity. It was easy to see that she was passionately
-devoted both to her husband and to her little son. Her light grey
-eyes wandered continually from one to the other, noting every
-little want and forestalling it if possible. He was kind to her
-also in his bluff, boisterous fashion, and on the whole they
-seemed to be a happy couple. And yet she had some secret sorrow,
-this woman. She would often be lost in deep thought, with the
-saddest look upon her face. More than once I have surprised her
-in tears. I have thought sometimes that it was the disposition of
-her child which weighed upon her mind, for I have never met so
-utterly spoiled and so ill-natured a little creature. He is small
-for his age, with a head which is quite disproportionately large.
-His whole life appears to be spent in an alternation between
-savage fits of passion and gloomy intervals of sulking. Giving
-pain to any creature weaker than himself seems to be his one idea
-of amusement, and he shows quite remarkable talent in planning
-the capture of mice, little birds, and insects. But I would
-rather not talk about the creature, Mr. Holmes, and, indeed, he
-has little to do with my story."
-
-"I am glad of all details," remarked my friend, "whether they
-seem to you to be relevant or not."
-
-"I shall try not to miss anything of importance. The one
-unpleasant thing about the house, which struck me at once, was
-the appearance and conduct of the servants. There are only two, a
-man and his wife. Toller, for that is his name, is a rough,
-uncouth man, with grizzled hair and whiskers, and a perpetual
-smell of drink. Twice since I have been with them he has been
-quite drunk, and yet Mr. Rucastle seemed to take no notice of it.
-His wife is a very tall and strong woman with a sour face, as
-silent as Mrs. Rucastle and much less amiable. They are a most
-unpleasant couple, but fortunately I spend most of my time in the
-nursery and my own room, which are next to each other in one
-corner of the building.
-
-"For two days after my arrival at the Copper Beeches my life was
-very quiet; on the third, Mrs. Rucastle came down just after
-breakfast and whispered something to her husband.
-
-"'Oh, yes,' said he, turning to me, 'we are very much obliged to
-you, Miss Hunter, for falling in with our whims so far as to cut
-your hair. I assure you that it has not detracted in the tiniest
-iota from your appearance. We shall now see how the electric-blue
-dress will become you. You will find it laid out upon the bed in
-your room, and if you would be so good as to put it on we should
-both be extremely obliged.'
-
-"The dress which I found waiting for me was of a peculiar shade
-of blue. It was of excellent material, a sort of beige, but it
-bore unmistakable signs of having been worn before. It could not
-have been a better fit if I had been measured for it. Both Mr.
-and Mrs. Rucastle expressed a delight at the look of it, which
-seemed quite exaggerated in its vehemence. They were waiting for
-me in the drawing-room, which is a very large room, stretching
-along the entire front of the house, with three long windows
-reaching down to the floor. A chair had been placed close to the
-central window, with its back turned towards it. In this I was
-asked to sit, and then Mr. Rucastle, walking up and down on the
-other side of the room, began to tell me a series of the funniest
-stories that I have ever listened to. You cannot imagine how
-comical he was, and I laughed until I was quite weary. Mrs.
-Rucastle, however, who has evidently no sense of humour, never so
-much as smiled, but sat with her hands in her lap, and a sad,
-anxious look upon her face. After an hour or so, Mr. Rucastle
-suddenly remarked that it was time to commence the duties of the
-day, and that I might change my dress and go to little Edward in
-the nursery.
-
-"Two days later this same performance was gone through under
-exactly similar circumstances. Again I changed my dress, again I
-sat in the window, and again I laughed very heartily at the funny
-stories of which my employer had an immense répertoire, and which
-he told inimitably. Then he handed me a yellow-backed novel, and
-moving my chair a little sideways, that my own shadow might not
-fall upon the page, he begged me to read aloud to him. I read for
-about ten minutes, beginning in the heart of a chapter, and then
-suddenly, in the middle of a sentence, he ordered me to cease and
-to change my dress.
-
-"You can easily imagine, Mr. Holmes, how curious I became as to
-what the meaning of this extraordinary performance could possibly
-be. They were always very careful, I observed, to turn my face
-away from the window, so that I became consumed with the desire
-to see what was going on behind my back. At first it seemed to be
-impossible, but I soon devised a means. My hand-mirror had been
-broken, so a happy thought seized me, and I concealed a piece of
-the glass in my handkerchief. On the next occasion, in the midst
-of my laughter, I put my handkerchief up to my eyes, and was able
-with a little management to see all that there was behind me. I
-confess that I was disappointed. There was nothing. At least that
-was my first impression. At the second glance, however, I
-perceived that there was a man standing in the Southampton Road,
-a small bearded man in a grey suit, who seemed to be looking in
-my direction. The road is an important highway, and there are
-usually people there. This man, however, was leaning against the
-railings which bordered our field and was looking earnestly up. I
-lowered my handkerchief and glanced at Mrs. Rucastle to find her
-eyes fixed upon me with a most searching gaze. She said nothing,
-but I am convinced that she had divined that I had a mirror in my
-hand and had seen what was behind me. She rose at once.
-
-"'Jephro,' said she, 'there is an impertinent fellow upon the
-road there who stares up at Miss Hunter.'
-
-"'No friend of yours, Miss Hunter?' he asked.
-
-"'No, I know no one in these parts.'
-
-"'Dear me! How very impertinent! Kindly turn round and motion to
-him to go away.'
-
-"'Surely it would be better to take no notice.'
-
-"'No, no, we should have him loitering here always. Kindly turn
-round and wave him away like that.'
-
-"I did as I was told, and at the same instant Mrs. Rucastle drew
-down the blind. That was a week ago, and from that time I have
-not sat again in the window, nor have I worn the blue dress, nor
-seen the man in the road."
-
-"Pray continue," said Holmes. "Your narrative promises to be a
-most interesting one."
-
-"You will find it rather disconnected, I fear, and there may
-prove to be little relation between the different incidents of
-which I speak. On the very first day that I was at the Copper
-Beeches, Mr. Rucastle took me to a small outhouse which stands
-near the kitchen door. As we approached it I heard the sharp
-rattling of a chain, and the sound as of a large animal moving
-about.
-
-"'Look in here!' said Mr. Rucastle, showing me a slit between two
-planks. 'Is he not a beauty?'
-
-"I looked through and was conscious of two glowing eyes, and of a
-vague figure huddled up in the darkness.
-
-"'Don't be frightened,' said my employer, laughing at the start
-which I had given. 'It's only Carlo, my mastiff. I call him mine,
-but really old Toller, my groom, is the only man who can do
-anything with him. We feed him once a day, and not too much then,
-so that he is always as keen as mustard. Toller lets him loose
-every night, and God help the trespasser whom he lays his fangs
-upon. For goodness' sake don't you ever on any pretext set your
-foot over the threshold at night, for it's as much as your life
-is worth.'
-
-"The warning was no idle one, for two nights later I happened to
-look out of my bedroom window about two o'clock in the morning.
-It was a beautiful moonlight night, and the lawn in front of the
-house was silvered over and almost as bright as day. I was
-standing, rapt in the peaceful beauty of the scene, when I was
-aware that something was moving under the shadow of the copper
-beeches. As it emerged into the moonshine I saw what it was. It
-was a giant dog, as large as a calf, tawny tinted, with hanging
-jowl, black muzzle, and huge projecting bones. It walked slowly
-across the lawn and vanished into the shadow upon the other side.
-That dreadful sentinel sent a chill to my heart which I do not
-think that any burglar could have done.
-
-"And now I have a very strange experience to tell you. I had, as
-you know, cut off my hair in London, and I had placed it in a
-great coil at the bottom of my trunk. One evening, after the
-child was in bed, I began to amuse myself by examining the
-furniture of my room and by rearranging my own little things.
-There was an old chest of drawers in the room, the two upper ones
-empty and open, the lower one locked. I had filled the first two
-with my linen, and as I had still much to pack away I was
-naturally annoyed at not having the use of the third drawer. It
-struck me that it might have been fastened by a mere oversight,
-so I took out my bunch of keys and tried to open it. The very
-first key fitted to perfection, and I drew the drawer open. There
-was only one thing in it, but I am sure that you would never
-guess what it was. It was my coil of hair.
-
-"I took it up and examined it. It was of the same peculiar tint,
-and the same thickness. But then the impossibility of the thing
-obtruded itself upon me. How could my hair have been locked in
-the drawer? With trembling hands I undid my trunk, turned out the
-contents, and drew from the bottom my own hair. I laid the two
-tresses together, and I assure you that they were identical. Was
-it not extraordinary? Puzzle as I would, I could make nothing at
-all of what it meant. I returned the strange hair to the drawer,
-and I said nothing of the matter to the Rucastles as I felt that
-I had put myself in the wrong by opening a drawer which they had
-locked.
-
-"I am naturally observant, as you may have remarked, Mr. Holmes,
-and I soon had a pretty good plan of the whole house in my head.
-There was one wing, however, which appeared not to be inhabited
-at all. A door which faced that which led into the quarters of
-the Tollers opened into this suite, but it was invariably locked.
-One day, however, as I ascended the stair, I met Mr. Rucastle
-coming out through this door, his keys in his hand, and a look on
-his face which made him a very different person to the round,
-jovial man to whom I was accustomed. His cheeks were red, his
-brow was all crinkled with anger, and the veins stood out at his
-temples with passion. He locked the door and hurried past me
-without a word or a look.
-
-"This aroused my curiosity, so when I went out for a walk in the
-grounds with my charge, I strolled round to the side from which I
-could see the windows of this part of the house. There were four
-of them in a row, three of which were simply dirty, while the
-fourth was shuttered up. They were evidently all deserted. As I
-strolled up and down, glancing at them occasionally, Mr. Rucastle
-came out to me, looking as merry and jovial as ever.
-
-"'Ah!' said he, 'you must not think me rude if I passed you
-without a word, my dear young lady. I was preoccupied with
-business matters.'
-
-"I assured him that I was not offended. 'By the way,' said I,
-'you seem to have quite a suite of spare rooms up there, and one
-of them has the shutters up.'
-
-"He looked surprised and, as it seemed to me, a little startled
-at my remark.
-
-"'Photography is one of my hobbies,' said he. 'I have made my
-dark room up there. But, dear me! what an observant young lady we
-have come upon. Who would have believed it? Who would have ever
-believed it?' He spoke in a jesting tone, but there was no jest
-in his eyes as he looked at me. I read suspicion there and
-annoyance, but no jest.
-
-"Well, Mr. Holmes, from the moment that I understood that there
-was something about that suite of rooms which I was not to know,
-I was all on fire to go over them. It was not mere curiosity,
-though I have my share of that. It was more a feeling of duty--a
-feeling that some good might come from my penetrating to this
-place. They talk of woman's instinct; perhaps it was woman's
-instinct which gave me that feeling. At any rate, it was there,
-and I was keenly on the lookout for any chance to pass the
-forbidden door.
-
-"It was only yesterday that the chance came. I may tell you that,
-besides Mr. Rucastle, both Toller and his wife find something to
-do in these deserted rooms, and I once saw him carrying a large
-black linen bag with him through the door. Recently he has been
-drinking hard, and yesterday evening he was very drunk; and when
-I came upstairs there was the key in the door. I have no doubt at
-all that he had left it there. Mr. and Mrs. Rucastle were both
-downstairs, and the child was with them, so that I had an
-admirable opportunity. I turned the key gently in the lock,
-opened the door, and slipped through.
-
-"There was a little passage in front of me, unpapered and
-uncarpeted, which turned at a right angle at the farther end.
-Round this corner were three doors in a line, the first and third
-of which were open. They each led into an empty room, dusty and
-cheerless, with two windows in the one and one in the other, so
-thick with dirt that the evening light glimmered dimly through
-them. The centre door was closed, and across the outside of it
-had been fastened one of the broad bars of an iron bed, padlocked
-at one end to a ring in the wall, and fastened at the other with
-stout cord. The door itself was locked as well, and the key was
-not there. This barricaded door corresponded clearly with the
-shuttered window outside, and yet I could see by the glimmer from
-beneath it that the room was not in darkness. Evidently there was
-a skylight which let in light from above. As I stood in the
-passage gazing at the sinister door and wondering what secret it
-might veil, I suddenly heard the sound of steps within the room
-and saw a shadow pass backward and forward against the little
-slit of dim light which shone out from under the door. A mad,
-unreasoning terror rose up in me at the sight, Mr. Holmes. My
-overstrung nerves failed me suddenly, and I turned and ran--ran
-as though some dreadful hand were behind me clutching at the
-skirt of my dress. I rushed down the passage, through the door,
-and straight into the arms of Mr. Rucastle, who was waiting
-outside.
-
-"'So,' said he, smiling, 'it was you, then. I thought that it
-must be when I saw the door open.'
-
-"'Oh, I am so frightened!' I panted.
-
-"'My dear young lady! my dear young lady!'--you cannot think how
-caressing and soothing his manner was--'and what has frightened
-you, my dear young lady?'
-
-"But his voice was just a little too coaxing. He overdid it. I
-was keenly on my guard against him.
-
-"'I was foolish enough to go into the empty wing,' I answered.
-'But it is so lonely and eerie in this dim light that I was
-frightened and ran out again. Oh, it is so dreadfully still in
-there!'
-
-"'Only that?' said he, looking at me keenly.
-
-"'Why, what did you think?' I asked.
-
-"'Why do you think that I lock this door?'
-
-"'I am sure that I do not know.'
-
-"'It is to keep people out who have no business there. Do you
-see?' He was still smiling in the most amiable manner.
-
-"'I am sure if I had known--'
-
-"'Well, then, you know now. And if you ever put your foot over
-that threshold again'--here in an instant the smile hardened into
-a grin of rage, and he glared down at me with the face of a
-demon--'I'll throw you to the mastiff.'
-
-"I was so terrified that I do not know what I did. I suppose that
-I must have rushed past him into my room. I remember nothing
-until I found myself lying on my bed trembling all over. Then I
-thought of you, Mr. Holmes. I could not live there longer without
-some advice. I was frightened of the house, of the man, of the
-woman, of the servants, even of the child. They were all horrible
-to me. If I could only bring you down all would be well. Of
-course I might have fled from the house, but my curiosity was
-almost as strong as my fears. My mind was soon made up. I would
-send you a wire. I put on my hat and cloak, went down to the
-office, which is about half a mile from the house, and then
-returned, feeling very much easier. A horrible doubt came into my
-mind as I approached the door lest the dog might be loose, but I
-remembered that Toller had drunk himself into a state of
-insensibility that evening, and I knew that he was the only one
-in the household who had any influence with the savage creature,
-or who would venture to set him free. I slipped in in safety and
-lay awake half the night in my joy at the thought of seeing you.
-I had no difficulty in getting leave to come into Winchester this
-morning, but I must be back before three o'clock, for Mr. and
-Mrs. Rucastle are going on a visit, and will be away all the
-evening, so that I must look after the child. Now I have told you
-all my adventures, Mr. Holmes, and I should be very glad if you
-could tell me what it all means, and, above all, what I should
-do."
-
-Holmes and I had listened spellbound to this extraordinary story.
-My friend rose now and paced up and down the room, his hands in
-his pockets, and an expression of the most profound gravity upon
-his face.
-
-"Is Toller still drunk?" he asked.
-
-"Yes. I heard his wife tell Mrs. Rucastle that she could do
-nothing with him."
-
-"That is well. And the Rucastles go out to-night?"
-
-"Yes."
-
-"Is there a cellar with a good strong lock?"
-
-"Yes, the wine-cellar."
-
-"You seem to me to have acted all through this matter like a very
-brave and sensible girl, Miss Hunter. Do you think that you could
-perform one more feat? I should not ask it of you if I did not
-think you a quite exceptional woman."
-
-"I will try. What is it?"
-
-"We shall be at the Copper Beeches by seven o'clock, my friend
-and I. The Rucastles will be gone by that time, and Toller will,
-we hope, be incapable. There only remains Mrs. Toller, who might
-give the alarm. If you could send her into the cellar on some
-errand, and then turn the key upon her, you would facilitate
-matters immensely."
-
-"I will do it."
-
-"Excellent! We shall then look thoroughly into the affair. Of
-course there is only one feasible explanation. You have been
-brought there to personate someone, and the real person is
-imprisoned in this chamber. That is obvious. As to who this
-prisoner is, I have no doubt that it is the daughter, Miss Alice
-Rucastle, if I remember right, who was said to have gone to
-America. You were chosen, doubtless, as resembling her in height,
-figure, and the colour of your hair. Hers had been cut off, very
-possibly in some illness through which she has passed, and so, of
-course, yours had to be sacrificed also. By a curious chance you
-came upon her tresses. The man in the road was undoubtedly some
-friend of hers--possibly her fiancé--and no doubt, as you wore
-the girl's dress and were so like her, he was convinced from your
-laughter, whenever he saw you, and afterwards from your gesture,
-that Miss Rucastle was perfectly happy, and that she no longer
-desired his attentions. The dog is let loose at night to prevent
-him from endeavouring to communicate with her. So much is fairly
-clear. The most serious point in the case is the disposition of
-the child."
-
-"What on earth has that to do with it?" I ejaculated.
-
-"My dear Watson, you as a medical man are continually gaining
-light as to the tendencies of a child by the study of the
-parents. Don't you see that the converse is equally valid. I have
-frequently gained my first real insight into the character of
-parents by studying their children. This child's disposition is
-abnormally cruel, merely for cruelty's sake, and whether he
-derives this from his smiling father, as I should suspect, or
-from his mother, it bodes evil for the poor girl who is in their
-power."
-
-"I am sure that you are right, Mr. Holmes," cried our client. "A
-thousand things come back to me which make me certain that you
-have hit it. Oh, let us lose not an instant in bringing help to
-this poor creature."
-
-"We must be circumspect, for we are dealing with a very cunning
-man. We can do nothing until seven o'clock. At that hour we shall
-be with you, and it will not be long before we solve the
-mystery."
-
-We were as good as our word, for it was just seven when we
-reached the Copper Beeches, having put up our trap at a wayside
-public-house. The group of trees, with their dark leaves shining
-like burnished metal in the light of the setting sun, were
-sufficient to mark the house even had Miss Hunter not been
-standing smiling on the door-step.
-
-"Have you managed it?" asked Holmes.
-
-A loud thudding noise came from somewhere downstairs. "That is
-Mrs. Toller in the cellar," said she. "Her husband lies snoring
-on the kitchen rug. Here are his keys, which are the duplicates
-of Mr. Rucastle's."
-
-"You have done well indeed!" cried Holmes with enthusiasm. "Now
-lead the way, and we shall soon see the end of this black
-business."
-
-We passed up the stair, unlocked the door, followed on down a
-passage, and found ourselves in front of the barricade which Miss
-Hunter had described. Holmes cut the cord and removed the
-transverse bar. Then he tried the various keys in the lock, but
-without success. No sound came from within, and at the silence
-Holmes' face clouded over.
-
-"I trust that we are not too late," said he. "I think, Miss
-Hunter, that we had better go in without you. Now, Watson, put
-your shoulder to it, and we shall see whether we cannot make our
-way in."
-
-It was an old rickety door and gave at once before our united
-strength. Together we rushed into the room. It was empty. There
-was no furniture save a little pallet bed, a small table, and a
-basketful of linen. The skylight above was open, and the prisoner
-gone.
-
-"There has been some villainy here," said Holmes; "this beauty
-has guessed Miss Hunter's intentions and has carried his victim
-off."
-
-"But how?"
-
-"Through the skylight. We shall soon see how he managed it." He
-swung himself up onto the roof. "Ah, yes," he cried, "here's the
-end of a long light ladder against the eaves. That is how he did
-it."
-
-"But it is impossible," said Miss Hunter; "the ladder was not
-there when the Rucastles went away."
-
-"He has come back and done it. I tell you that he is a clever and
-dangerous man. I should not be very much surprised if this were
-he whose step I hear now upon the stair. I think, Watson, that it
-would be as well for you to have your pistol ready."
-
-The words were hardly out of his mouth before a man appeared at
-the door of the room, a very fat and burly man, with a heavy
-stick in his hand. Miss Hunter screamed and shrunk against the
-wall at the sight of him, but Sherlock Holmes sprang forward and
-confronted him.
-
-"You villain!" said he, "where's your daughter?"
-
-The fat man cast his eyes round, and then up at the open
-skylight.
-
-"It is for me to ask you that," he shrieked, "you thieves! Spies
-and thieves! I have caught you, have I? You are in my power. I'll
-serve you!" He turned and clattered down the stairs as hard as he
-could go.
-
-"He's gone for the dog!" cried Miss Hunter.
-
-"I have my revolver," said I.
-
-"Better close the front door," cried Holmes, and we all rushed
-down the stairs together. We had hardly reached the hall when we
-heard the baying of a hound, and then a scream of agony, with a
-horrible worrying sound which it was dreadful to listen to. An
-elderly man with a red face and shaking limbs came staggering out
-at a side door.
-
-"My God!" he cried. "Someone has loosed the dog. It's not been
-fed for two days. Quick, quick, or it'll be too late!"
-
-Holmes and I rushed out and round the angle of the house, with
-Toller hurrying behind us. There was the huge famished brute, its
-black muzzle buried in Rucastle's throat, while he writhed and
-screamed upon the ground. Running up, I blew its brains out, and
-it fell over with its keen white teeth still meeting in the great
-creases of his neck. With much labour we separated them and
-carried him, living but horribly mangled, into the house. We laid
-him upon the drawing-room sofa, and having dispatched the sobered
-Toller to bear the news to his wife, I did what I could to
-relieve his pain. We were all assembled round him when the door
-opened, and a tall, gaunt woman entered the room.
-
-"Mrs. Toller!" cried Miss Hunter.
-
-"Yes, miss. Mr. Rucastle let me out when he came back before he
-went up to you. Ah, miss, it is a pity you didn't let me know
-what you were planning, for I would have told you that your pains
-were wasted."
-
-"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs.
-Toller knows more about this matter than anyone else."
-
-"Yes, sir, I do, and I am ready enough to tell what I know."
-
-"Then, pray, sit down, and let us hear it for there are several
-points on which I must confess that I am still in the dark."
-
-"I will soon make it clear to you," said she; "and I'd have done
-so before now if I could ha' got out from the cellar. If there's
-police-court business over this, you'll remember that I was the
-one that stood your friend, and that I was Miss Alice's friend
-too.
-
-"She was never happy at home, Miss Alice wasn't, from the time
-that her father married again. She was slighted like and had no
-say in anything, but it never really became bad for her until
-after she met Mr. Fowler at a friend's house. As well as I could
-learn, Miss Alice had rights of her own by will, but she was so
-quiet and patient, she was, that she never said a word about them
-but just left everything in Mr. Rucastle's hands. He knew he was
-safe with her; but when there was a chance of a husband coming
-forward, who would ask for all that the law would give him, then
-her father thought it time to put a stop on it. He wanted her to
-sign a paper, so that whether she married or not, he could use
-her money. When she wouldn't do it, he kept on worrying her until
-she got brain-fever, and for six weeks was at death's door. Then
-she got better at last, all worn to a shadow, and with her
-beautiful hair cut off; but that didn't make no change in her
-young man, and he stuck to her as true as man could be."
-
-"Ah," said Holmes, "I think that what you have been good enough
-to tell us makes the matter fairly clear, and that I can deduce
-all that remains. Mr. Rucastle then, I presume, took to this
-system of imprisonment?"
-
-"Yes, sir."
-
-"And brought Miss Hunter down from London in order to get rid of
-the disagreeable persistence of Mr. Fowler."
-
-"That was it, sir."
-
-"But Mr. Fowler being a persevering man, as a good seaman should
-be, blockaded the house, and having met you succeeded by certain
-arguments, metallic or otherwise, in convincing you that your
-interests were the same as his."
-
-"Mr. Fowler was a very kind-spoken, free-handed gentleman," said
-Mrs. Toller serenely.
-
-"And in this way he managed that your good man should have no
-want of drink, and that a ladder should be ready at the moment
-when your master had gone out."
-
-"You have it, sir, just as it happened."
-
-"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for
-you have certainly cleared up everything which puzzled us. And
-here comes the country surgeon and Mrs. Rucastle, so I think,
-Watson, that we had best escort Miss Hunter back to Winchester,
-as it seems to me that our locus standi now is rather a
-questionable one."
-
-And thus was solved the mystery of the sinister house with the
-copper beeches in front of the door. Mr. Rucastle survived, but
-was always a broken man, kept alive solely through the care of
-his devoted wife. They still live with their old servants, who
-probably know so much of Rucastle's past life that he finds it
-difficult to part from them. Mr. Fowler and Miss Rucastle were
-married, by special license, in Southampton the day after their
-flight, and he is now the holder of a government appointment in
-the island of Mauritius. As to Miss Violet Hunter, my friend
-Holmes, rather to my disappointment, manifested no further
-interest in her when once she had ceased to be the centre of one
-of his problems, and she is now the head of a private school at
-Walsall, where I believe that she has met with considerable success.
-
-
-
-
-
-
-
-
-
-End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by
-Arthur Conan Doyle
-
-*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES ***
-
-***** This file should be named 1661-8.txt or 1661-8.zip *****
-This and all associated files of various formats will be found in:
- http://www.gutenberg.org/1/6/6/1661/
-
-Produced by an anonymous Project Gutenberg volunteer and Jose Menendez
-
-Updated editions will replace the previous one--the old editions
-will be renamed.
-
-Creating the works from public domain print editions means that no
-one owns a United States copyright in these works, so the Foundation
-(and you!) can copy and distribute it in the United States without
-permission and without paying copyright royalties. Special rules,
-set forth in the General Terms of Use part of this license, apply to
-copying and distributing Project Gutenberg-tm electronic works to
-protect the PROJECT GUTENBERG-tm concept and trademark. Project
-Gutenberg is a registered trademark, and may not be used if you
-charge for the eBooks, unless you receive specific permission. If you
-do not charge anything for copies of this eBook, complying with the
-rules is very easy. You may use this eBook for nearly any purpose
-such as creation of derivative works, reports, performances and
-research. They may be modified and printed and given away--you may do
-practically ANYTHING with public domain eBooks. Redistribution is
-subject to the trademark license, especially commercial
-redistribution.
-
-
-
-*** START: FULL LICENSE ***
-
-THE FULL PROJECT GUTENBERG LICENSE
-PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
-
-To protect the Project Gutenberg-tm mission of promoting the free
-distribution of electronic works, by using or distributing this work
-(or any other work associated in any way with the phrase "Project
-Gutenberg"), you agree to comply with all the terms of the Full Project
-Gutenberg-tm License (available with this file or online at
-http://gutenberg.net/license).
-
-
-Section 1. General Terms of Use and Redistributing Project Gutenberg-tm
-electronic works
-
-1.A. By reading or using any part of this Project Gutenberg-tm
-electronic work, you indicate that you have read, understand, agree to
-and accept all the terms of this license and intellectual property
-(trademark/copyright) agreement. If you do not agree to abide by all
-the terms of this agreement, you must cease using and return or destroy
-all copies of Project Gutenberg-tm electronic works in your possession.
-If you paid a fee for obtaining a copy of or access to a Project
-Gutenberg-tm electronic work and you do not agree to be bound by the
-terms of this agreement, you may obtain a refund from the person or
-entity to whom you paid the fee as set forth in paragraph 1.E.8.
-
-1.B. "Project Gutenberg" is a registered trademark. It may only be
-used on or associated in any way with an electronic work by people who
-agree to be bound by the terms of this agreement. There are a few
-things that you can do with most Project Gutenberg-tm electronic works
-even without complying with the full terms of this agreement. See
-paragraph 1.C below. There are a lot of things you can do with Project
-Gutenberg-tm electronic works if you follow the terms of this agreement
-and help preserve free future access to Project Gutenberg-tm electronic
-works. See paragraph 1.E below.
-
-1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation"
-or PGLAF), owns a compilation copyright in the collection of Project
-Gutenberg-tm electronic works. Nearly all the individual works in the
-collection are in the public domain in the United States. If an
-individual work is in the public domain in the United States and you are
-located in the United States, we do not claim a right to prevent you from
-copying, distributing, performing, displaying or creating derivative
-works based on the work as long as all references to Project Gutenberg
-are removed. Of course, we hope that you will support the Project
-Gutenberg-tm mission of promoting free access to electronic works by
-freely sharing Project Gutenberg-tm works in compliance with the terms of
-this agreement for keeping the Project Gutenberg-tm name associated with
-the work. You can easily comply with the terms of this agreement by
-keeping this work in the same format with its attached full Project
-Gutenberg-tm License when you share it without charge with others.
-
-1.D. The copyright laws of the place where you are located also govern
-what you can do with this work. Copyright laws in most countries are in
-a constant state of change. If you are outside the United States, check
-the laws of your country in addition to the terms of this agreement
-before downloading, copying, displaying, performing, distributing or
-creating derivative works based on this work or any other Project
-Gutenberg-tm work. The Foundation makes no representations concerning
-the copyright status of any work in any country outside the United
-States.
-
-1.E. Unless you have removed all references to Project Gutenberg:
-
-1.E.1. The following sentence, with active links to, or other immediate
-access to, the full Project Gutenberg-tm License must appear prominently
-whenever any copy of a Project Gutenberg-tm work (any work on which the
-phrase "Project Gutenberg" appears, or with which the phrase "Project
-Gutenberg" is associated) is accessed, displayed, performed, viewed,
-copied or distributed:
-
-This eBook is for the use of anyone anywhere at no cost and with
-almost no restrictions whatsoever. You may copy it, give it away or
-re-use it under the terms of the Project Gutenberg License included
-with this eBook or online at www.gutenberg.net
-
-1.E.2. If an individual Project Gutenberg-tm electronic work is derived
-from the public domain (does not contain a notice indicating that it is
-posted with permission of the copyright holder), the work can be copied
-and distributed to anyone in the United States without paying any fees
-or charges. If you are redistributing or providing access to a work
-with the phrase "Project Gutenberg" associated with or appearing on the
-work, you must comply either with the requirements of paragraphs 1.E.1
-through 1.E.7 or obtain permission for the use of the work and the
-Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or
-1.E.9.
-
-1.E.3. If an individual Project Gutenberg-tm electronic work is posted
-with the permission of the copyright holder, your use and distribution
-must comply with both paragraphs 1.E.1 through 1.E.7 and any additional
-terms imposed by the copyright holder. Additional terms will be linked
-to the Project Gutenberg-tm License for all works posted with the
-permission of the copyright holder found at the beginning of this work.
-
-1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm
-License terms from this work, or any files containing a part of this
-work or any other work associated with Project Gutenberg-tm.
-
-1.E.5. Do not copy, display, perform, distribute or redistribute this
-electronic work, or any part of this electronic work, without
-prominently displaying the sentence set forth in paragraph 1.E.1 with
-active links or immediate access to the full terms of the Project
-Gutenberg-tm License.
-
-1.E.6. You may convert to and distribute this work in any binary,
-compressed, marked up, nonproprietary or proprietary form, including any
-word processing or hypertext form. However, if you provide access to or
-distribute copies of a Project Gutenberg-tm work in a format other than
-"Plain Vanilla ASCII" or other format used in the official version
-posted on the official Project Gutenberg-tm web site (www.gutenberg.net),
-you must, at no additional cost, fee or expense to the user, provide a
-copy, a means of exporting a copy, or a means of obtaining a copy upon
-request, of the work in its original "Plain Vanilla ASCII" or other
-form. Any alternate format must include the full Project Gutenberg-tm
-License as specified in paragraph 1.E.1.
-
-1.E.7. Do not charge a fee for access to, viewing, displaying,
-performing, copying or distributing any Project Gutenberg-tm works
-unless you comply with paragraph 1.E.8 or 1.E.9.
-
-1.E.8. You may charge a reasonable fee for copies of or providing
-access to or distributing Project Gutenberg-tm electronic works provided
-that
-
-- You pay a royalty fee of 20% of the gross profits you derive from
- the use of Project Gutenberg-tm works calculated using the method
- you already use to calculate your applicable taxes. The fee is
- owed to the owner of the Project Gutenberg-tm trademark, but he
- has agreed to donate royalties under this paragraph to the
- Project Gutenberg Literary Archive Foundation. Royalty payments
- must be paid within 60 days following each date on which you
- prepare (or are legally required to prepare) your periodic tax
- returns. Royalty payments should be clearly marked as such and
- sent to the Project Gutenberg Literary Archive Foundation at the
- address specified in Section 4, "Information about donations to
- the Project Gutenberg Literary Archive Foundation."
-
-- You provide a full refund of any money paid by a user who notifies
- you in writing (or by e-mail) within 30 days of receipt that s/he
- does not agree to the terms of the full Project Gutenberg-tm
- License. You must require such a user to return or
- destroy all copies of the works possessed in a physical medium
- and discontinue all use of and all access to other copies of
- Project Gutenberg-tm works.
-
-- You provide, in accordance with paragraph 1.F.3, a full refund of any
- money paid for a work or a replacement copy, if a defect in the
- electronic work is discovered and reported to you within 90 days
- of receipt of the work.
-
-- You comply with all other terms of this agreement for free
- distribution of Project Gutenberg-tm works.
-
-1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm
-electronic work or group of works on different terms than are set
-forth in this agreement, you must obtain permission in writing from
-both the Project Gutenberg Literary Archive Foundation and Michael
-Hart, the owner of the Project Gutenberg-tm trademark. Contact the
-Foundation as set forth in Section 3 below.
-
-1.F.
-
-1.F.1. Project Gutenberg volunteers and employees expend considerable
-effort to identify, do copyright research on, transcribe and proofread
-public domain works in creating the Project Gutenberg-tm
-collection. Despite these efforts, Project Gutenberg-tm electronic
-works, and the medium on which they may be stored, may contain
-"Defects," such as, but not limited to, incomplete, inaccurate or
-corrupt data, transcription errors, a copyright or other intellectual
-property infringement, a defective or damaged disk or other medium, a
-computer virus, or computer codes that damage or cannot be read by
-your equipment.
-
-1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right
-of Replacement or Refund" described in paragraph 1.F.3, the Project
-Gutenberg Literary Archive Foundation, the owner of the Project
-Gutenberg-tm trademark, and any other party distributing a Project
-Gutenberg-tm electronic work under this agreement, disclaim all
-liability to you for damages, costs and expenses, including legal
-fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
-LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE
-PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE
-TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE
-LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR
-INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH
-DAMAGE.
-
-1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a
-defect in this electronic work within 90 days of receiving it, you can
-receive a refund of the money (if any) you paid for it by sending a
-written explanation to the person you received the work from. If you
-received the work on a physical medium, you must return the medium with
-your written explanation. The person or entity that provided you with
-the defective work may elect to provide a replacement copy in lieu of a
-refund. If you received the work electronically, the person or entity
-providing it to you may choose to give you a second opportunity to
-receive the work electronically in lieu of a refund. If the second copy
-is also defective, you may demand a refund in writing without further
-opportunities to fix the problem.
-
-1.F.4. Except for the limited right of replacement or refund set forth
-in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER
-WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
-WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.
-
-1.F.5. Some states do not allow disclaimers of certain implied
-warranties or the exclusion or limitation of certain types of damages.
-If any disclaimer or limitation set forth in this agreement violates the
-law of the state applicable to this agreement, the agreement shall be
-interpreted to make the maximum disclaimer or limitation permitted by
-the applicable state law. The invalidity or unenforceability of any
-provision of this agreement shall not void the remaining provisions.
-
-1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the
-trademark owner, any agent or employee of the Foundation, anyone
-providing copies of Project Gutenberg-tm electronic works in accordance
-with this agreement, and any volunteers associated with the production,
-promotion and distribution of Project Gutenberg-tm electronic works,
-harmless from all liability, costs and expenses, including legal fees,
-that arise directly or indirectly from any of the following which you do
-or cause to occur: (a) distribution of this or any Project Gutenberg-tm
-work, (b) alteration, modification, or additions or deletions to any
-Project Gutenberg-tm work, and (c) any Defect you cause.
-
-
-Section 2. Information about the Mission of Project Gutenberg-tm
-
-Project Gutenberg-tm is synonymous with the free distribution of
-electronic works in formats readable by the widest variety of computers
-including obsolete, old, middle-aged and new computers. It exists
-because of the efforts of hundreds of volunteers and donations from
-people in all walks of life.
-
-Volunteers and financial support to provide volunteers with the
-assistance they need are critical to reaching Project Gutenberg-tm's
-goals and ensuring that the Project Gutenberg-tm collection will
-remain freely available for generations to come. In 2001, the Project
-Gutenberg Literary Archive Foundation was created to provide a secure
-and permanent future for Project Gutenberg-tm and future generations.
-To learn more about the Project Gutenberg Literary Archive Foundation
-and how your efforts and donations can help, see Sections 3 and 4
-and the Foundation web page at http://www.pglaf.org.
-
-
-Section 3. Information about the Project Gutenberg Literary Archive
-Foundation
-
-The Project Gutenberg Literary Archive Foundation is a non profit
-501(c)(3) educational corporation organized under the laws of the
-state of Mississippi and granted tax exempt status by the Internal
-Revenue Service. The Foundation's EIN or federal tax identification
-number is 64-6221541. Its 501(c)(3) letter is posted at
-http://pglaf.org/fundraising. Contributions to the Project Gutenberg
-Literary Archive Foundation are tax deductible to the full extent
-permitted by U.S. federal laws and your state's laws.
-
-The Foundation's principal office is located at 4557 Melan Dr. S.
-Fairbanks, AK, 99712., but its volunteers and employees are scattered
-throughout numerous locations. Its business office is located at
-809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email
-business@pglaf.org. Email contact links and up to date contact
-information can be found at the Foundation's web site and official
-page at http://pglaf.org
-
-For additional contact information:
- Dr. Gregory B. Newby
- Chief Executive and Director
- gbnewby@pglaf.org
-
-
-Section 4. Information about Donations to the Project Gutenberg
-Literary Archive Foundation
-
-Project Gutenberg-tm depends upon and cannot survive without wide
-spread public support and donations to carry out its mission of
-increasing the number of public domain and licensed works that can be
-freely distributed in machine readable form accessible by the widest
-array of equipment including outdated equipment. Many small donations
-($1 to $5,000) are particularly important to maintaining tax exempt
-status with the IRS.
-
-The Foundation is committed to complying with the laws regulating
-charities and charitable donations in all 50 states of the United
-States. Compliance requirements are not uniform and it takes a
-considerable effort, much paperwork and many fees to meet and keep up
-with these requirements. We do not solicit donations in locations
-where we have not received written confirmation of compliance. To
-SEND DONATIONS or determine the status of compliance for any
-particular state visit http://pglaf.org
-
-While we cannot and do not solicit contributions from states where we
-have not met the solicitation requirements, we know of no prohibition
-against accepting unsolicited donations from donors in such states who
-approach us with offers to donate.
-
-International donations are gratefully accepted, but we cannot make
-any statements concerning tax treatment of donations received from
-outside the United States. U.S. laws alone swamp our small staff.
-
-Please check the Project Gutenberg Web pages for current donation
-methods and addresses. Donations are accepted in a number of other
-ways including including checks, online payments and credit card
-donations. To donate, please visit: http://pglaf.org/donate
-
-
-Section 5. General Information About Project Gutenberg-tm electronic
-works.
-
-Professor Michael S. Hart is the originator of the Project Gutenberg-tm
-concept of a library of electronic works that could be freely shared
-with anyone. For thirty years, he produced and distributed Project
-Gutenberg-tm eBooks with only a loose network of volunteer support.
-
-
-Project Gutenberg-tm eBooks are often created from several printed
-editions, all of which are confirmed as Public Domain in the U.S.
-unless a copyright notice is included. Thus, we do not necessarily
-keep eBooks in compliance with any particular paper edition.
-
-
-Most people start at our Web site which has the main PG search facility:
-
- http://www.gutenberg.net
-
-This Web site includes information about Project Gutenberg-tm,
-including how to make donations to the Project Gutenberg Literary
-Archive Foundation, how to help produce our new eBooks, and how to
-subscribe to our email newsletter to hear about new eBooks.
+Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle
+
+This eBook is for the use of anyone anywhere at no cost and with
+almost no restrictions whatsoever. You may copy it, give it away or
+re-use it under the terms of the Project Gutenberg License included
+with this eBook or online at www.gutenberg.net
+
+
+Title: The Adventures of Sherlock Holmes
+
+Author: Arthur Conan Doyle
+
+Posting Date: April 18, 2011 [EBook #1661]
+First Posted: November 29, 2002
+
+Language: English
+
+
+*** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES ***
+
+
+
+
+Produced by an anonymous Project Gutenberg volunteer and Jose Menendez
+
+
+
+
+
+
+
+
+
+THE ADVENTURES OF SHERLOCK HOLMES
+
+by
+
+SIR ARTHUR CONAN DOYLE
+
+
+
+ I. A Scandal in Bohemia
+ II. The Red-headed League
+ III. A Case of Identity
+ IV. The Boscombe Valley Mystery
+ V. The Five Orange Pips
+ VI. The Man with the Twisted Lip
+ VII. The Adventure of the Blue Carbuncle
+VIII. The Adventure of the Speckled Band
+ IX. The Adventure of the Engineer's Thumb
+ X. The Adventure of the Noble Bachelor
+ XI. The Adventure of the Beryl Coronet
+ XII. The Adventure of the Copper Beeches
+
+
+
+
+ADVENTURE I. A SCANDAL IN BOHEMIA
+
+I.
+
+To Sherlock Holmes she is always THE woman. I have seldom heard
+him mention her under any other name. In his eyes she eclipses
+and predominates the whole of her sex. It was not that he felt
+any emotion akin to love for Irene Adler. All emotions, and that
+one particularly, were abhorrent to his cold, precise but
+admirably balanced mind. He was, I take it, the most perfect
+reasoning and observing machine that the world has seen, but as a
+lover he would have placed himself in a false position. He never
+spoke of the softer passions, save with a gibe and a sneer. They
+were admirable things for the observer--excellent for drawing the
+veil from men's motives and actions. But for the trained reasoner
+to admit such intrusions into his own delicate and finely
+adjusted temperament was to introduce a distracting factor which
+might throw a doubt upon all his mental results. Grit in a
+sensitive instrument, or a crack in one of his own high-power
+lenses, would not be more disturbing than a strong emotion in a
+nature such as his. And yet there was but one woman to him, and
+that woman was the late Irene Adler, of dubious and questionable
+memory.
+
+I had seen little of Holmes lately. My marriage had drifted us
+away from each other. My own complete happiness, and the
+home-centred interests which rise up around the man who first
+finds himself master of his own establishment, were sufficient to
+absorb all my attention, while Holmes, who loathed every form of
+society with his whole Bohemian soul, remained in our lodgings in
+Baker Street, buried among his old books, and alternating from
+week to week between cocaine and ambition, the drowsiness of the
+drug, and the fierce energy of his own keen nature. He was still,
+as ever, deeply attracted by the study of crime, and occupied his
+immense faculties and extraordinary powers of observation in
+following out those clues, and clearing up those mysteries which
+had been abandoned as hopeless by the official police. From time
+to time I heard some vague account of his doings: of his summons
+to Odessa in the case of the Trepoff murder, of his clearing up
+of the singular tragedy of the Atkinson brothers at Trincomalee,
+and finally of the mission which he had accomplished so
+delicately and successfully for the reigning family of Holland.
+Beyond these signs of his activity, however, which I merely
+shared with all the readers of the daily press, I knew little of
+my former friend and companion.
+
+One night--it was on the twentieth of March, 1888--I was
+returning from a journey to a patient (for I had now returned to
+civil practice), when my way led me through Baker Street. As I
+passed the well-remembered door, which must always be associated
+in my mind with my wooing, and with the dark incidents of the
+Study in Scarlet, I was seized with a keen desire to see Holmes
+again, and to know how he was employing his extraordinary powers.
+His rooms were brilliantly lit, and, even as I looked up, I saw
+his tall, spare figure pass twice in a dark silhouette against
+the blind. He was pacing the room swiftly, eagerly, with his head
+sunk upon his chest and his hands clasped behind him. To me, who
+knew his every mood and habit, his attitude and manner told their
+own story. He was at work again. He had risen out of his
+drug-created dreams and was hot upon the scent of some new
+problem. I rang the bell and was shown up to the chamber which
+had formerly been in part my own.
+
+His manner was not effusive. It seldom was; but he was glad, I
+think, to see me. With hardly a word spoken, but with a kindly
+eye, he waved me to an armchair, threw across his case of cigars,
+and indicated a spirit case and a gasogene in the corner. Then he
+stood before the fire and looked me over in his singular
+introspective fashion.
+
+"Wedlock suits you," he remarked. "I think, Watson, that you have
+put on seven and a half pounds since I saw you."
+
+"Seven!" I answered.
+
+"Indeed, I should have thought a little more. Just a trifle more,
+I fancy, Watson. And in practice again, I observe. You did not
+tell me that you intended to go into harness."
+
+"Then, how do you know?"
+
+"I see it, I deduce it. How do I know that you have been getting
+yourself very wet lately, and that you have a most clumsy and
+careless servant girl?"
+
+"My dear Holmes," said I, "this is too much. You would certainly
+have been burned, had you lived a few centuries ago. It is true
+that I had a country walk on Thursday and came home in a dreadful
+mess, but as I have changed my clothes I can't imagine how you
+deduce it. As to Mary Jane, she is incorrigible, and my wife has
+given her notice, but there, again, I fail to see how you work it
+out."
+
+He chuckled to himself and rubbed his long, nervous hands
+together.
+
+"It is simplicity itself," said he; "my eyes tell me that on the
+inside of your left shoe, just where the firelight strikes it,
+the leather is scored by six almost parallel cuts. Obviously they
+have been caused by someone who has very carelessly scraped round
+the edges of the sole in order to remove crusted mud from it.
+Hence, you see, my double deduction that you had been out in vile
+weather, and that you had a particularly malignant boot-slitting
+specimen of the London slavey. As to your practice, if a
+gentleman walks into my rooms smelling of iodoform, with a black
+mark of nitrate of silver upon his right forefinger, and a bulge
+on the right side of his top-hat to show where he has secreted
+his stethoscope, I must be dull, indeed, if I do not pronounce
+him to be an active member of the medical profession."
+
+I could not help laughing at the ease with which he explained his
+process of deduction. "When I hear you give your reasons," I
+remarked, "the thing always appears to me to be so ridiculously
+simple that I could easily do it myself, though at each
+successive instance of your reasoning I am baffled until you
+explain your process. And yet I believe that my eyes are as good
+as yours."
+
+"Quite so," he answered, lighting a cigarette, and throwing
+himself down into an armchair. "You see, but you do not observe.
+The distinction is clear. For example, you have frequently seen
+the steps which lead up from the hall to this room."
+
+"Frequently."
+
+"How often?"
+
+"Well, some hundreds of times."
+
+"Then how many are there?"
+
+"How many? I don't know."
+
+"Quite so! You have not observed. And yet you have seen. That is
+just my point. Now, I know that there are seventeen steps,
+because I have both seen and observed. By-the-way, since you are
+interested in these little problems, and since you are good
+enough to chronicle one or two of my trifling experiences, you
+may be interested in this." He threw over a sheet of thick,
+pink-tinted note-paper which had been lying open upon the table.
+"It came by the last post," said he. "Read it aloud."
+
+The note was undated, and without either signature or address.
+
+"There will call upon you to-night, at a quarter to eight
+o'clock," it said, "a gentleman who desires to consult you upon a
+matter of the very deepest moment. Your recent services to one of
+the royal houses of Europe have shown that you are one who may
+safely be trusted with matters which are of an importance which
+can hardly be exaggerated. This account of you we have from all
+quarters received. Be in your chamber then at that hour, and do
+not take it amiss if your visitor wear a mask."
+
+"This is indeed a mystery," I remarked. "What do you imagine that
+it means?"
+
+"I have no data yet. It is a capital mistake to theorize before
+one has data. Insensibly one begins to twist facts to suit
+theories, instead of theories to suit facts. But the note itself.
+What do you deduce from it?"
+
+I carefully examined the writing, and the paper upon which it was
+written.
+
+"The man who wrote it was presumably well to do," I remarked,
+endeavouring to imitate my companion's processes. "Such paper
+could not be bought under half a crown a packet. It is peculiarly
+strong and stiff."
+
+"Peculiar--that is the very word," said Holmes. "It is not an
+English paper at all. Hold it up to the light."
+
+I did so, and saw a large "E" with a small "g," a "P," and a
+large "G" with a small "t" woven into the texture of the paper.
+
+"What do you make of that?" asked Holmes.
+
+"The name of the maker, no doubt; or his monogram, rather."
+
+"Not at all. The 'G' with the small 't' stands for
+'Gesellschaft,' which is the German for 'Company.' It is a
+customary contraction like our 'Co.' 'P,' of course, stands for
+'Papier.' Now for the 'Eg.' Let us glance at our Continental
+Gazetteer." He took down a heavy brown volume from his shelves.
+"Eglow, Eglonitz--here we are, Egria. It is in a German-speaking
+country--in Bohemia, not far from Carlsbad. 'Remarkable as being
+the scene of the death of Wallenstein, and for its numerous
+glass-factories and paper-mills.' Ha, ha, my boy, what do you
+make of that?" His eyes sparkled, and he sent up a great blue
+triumphant cloud from his cigarette.
+
+"The paper was made in Bohemia," I said.
+
+"Precisely. And the man who wrote the note is a German. Do you
+note the peculiar construction of the sentence--'This account of
+you we have from all quarters received.' A Frenchman or Russian
+could not have written that. It is the German who is so
+uncourteous to his verbs. It only remains, therefore, to discover
+what is wanted by this German who writes upon Bohemian paper and
+prefers wearing a mask to showing his face. And here he comes, if
+I am not mistaken, to resolve all our doubts."
+
+As he spoke there was the sharp sound of horses' hoofs and
+grating wheels against the curb, followed by a sharp pull at the
+bell. Holmes whistled.
+
+"A pair, by the sound," said he. "Yes," he continued, glancing
+out of the window. "A nice little brougham and a pair of
+beauties. A hundred and fifty guineas apiece. There's money in
+this case, Watson, if there is nothing else."
+
+"I think that I had better go, Holmes."
+
+"Not a bit, Doctor. Stay where you are. I am lost without my
+Boswell. And this promises to be interesting. It would be a pity
+to miss it."
+
+"But your client--"
+
+"Never mind him. I may want your help, and so may he. Here he
+comes. Sit down in that armchair, Doctor, and give us your best
+attention."
+
+A slow and heavy step, which had been heard upon the stairs and
+in the passage, paused immediately outside the door. Then there
+was a loud and authoritative tap.
+
+"Come in!" said Holmes.
+
+A man entered who could hardly have been less than six feet six
+inches in height, with the chest and limbs of a Hercules. His
+dress was rich with a richness which would, in England, be looked
+upon as akin to bad taste. Heavy bands of astrakhan were slashed
+across the sleeves and fronts of his double-breasted coat, while
+the deep blue cloak which was thrown over his shoulders was lined
+with flame-coloured silk and secured at the neck with a brooch
+which consisted of a single flaming beryl. Boots which extended
+halfway up his calves, and which were trimmed at the tops with
+rich brown fur, completed the impression of barbaric opulence
+which was suggested by his whole appearance. He carried a
+broad-brimmed hat in his hand, while he wore across the upper
+part of his face, extending down past the cheekbones, a black
+vizard mask, which he had apparently adjusted that very moment,
+for his hand was still raised to it as he entered. From the lower
+part of the face he appeared to be a man of strong character,
+with a thick, hanging lip, and a long, straight chin suggestive
+of resolution pushed to the length of obstinacy.
+
+"You had my note?" he asked with a deep harsh voice and a
+strongly marked German accent. "I told you that I would call." He
+looked from one to the other of us, as if uncertain which to
+address.
+
+"Pray take a seat," said Holmes. "This is my friend and
+colleague, Dr. Watson, who is occasionally good enough to help me
+in my cases. Whom have I the honour to address?"
+
+"You may address me as the Count Von Kramm, a Bohemian nobleman.
+I understand that this gentleman, your friend, is a man of honour
+and discretion, whom I may trust with a matter of the most
+extreme importance. If not, I should much prefer to communicate
+with you alone."
+
+I rose to go, but Holmes caught me by the wrist and pushed me
+back into my chair. "It is both, or none," said he. "You may say
+before this gentleman anything which you may say to me."
+
+The Count shrugged his broad shoulders. "Then I must begin," said
+he, "by binding you both to absolute secrecy for two years; at
+the end of that time the matter will be of no importance. At
+present it is not too much to say that it is of such weight it
+may have an influence upon European history."
+
+"I promise," said Holmes.
+
+"And I."
+
+"You will excuse this mask," continued our strange visitor. "The
+august person who employs me wishes his agent to be unknown to
+you, and I may confess at once that the title by which I have
+just called myself is not exactly my own."
+
+"I was aware of it," said Holmes dryly.
+
+"The circumstances are of great delicacy, and every precaution
+has to be taken to quench what might grow to be an immense
+scandal and seriously compromise one of the reigning families of
+Europe. To speak plainly, the matter implicates the great House
+of Ormstein, hereditary kings of Bohemia."
+
+"I was also aware of that," murmured Holmes, settling himself
+down in his armchair and closing his eyes.
+
+Our visitor glanced with some apparent surprise at the languid,
+lounging figure of the man who had been no doubt depicted to him
+as the most incisive reasoner and most energetic agent in Europe.
+Holmes slowly reopened his eyes and looked impatiently at his
+gigantic client.
+
+"If your Majesty would condescend to state your case," he
+remarked, "I should be better able to advise you."
+
+The man sprang from his chair and paced up and down the room in
+uncontrollable agitation. Then, with a gesture of desperation, he
+tore the mask from his face and hurled it upon the ground. "You
+are right," he cried; "I am the King. Why should I attempt to
+conceal it?"
+
+"Why, indeed?" murmured Holmes. "Your Majesty had not spoken
+before I was aware that I was addressing Wilhelm Gottsreich
+Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and
+hereditary King of Bohemia."
+
+"But you can understand," said our strange visitor, sitting down
+once more and passing his hand over his high white forehead, "you
+can understand that I am not accustomed to doing such business in
+my own person. Yet the matter was so delicate that I could not
+confide it to an agent without putting myself in his power. I
+have come incognito from Prague for the purpose of consulting
+you."
+
+"Then, pray consult," said Holmes, shutting his eyes once more.
+
+"The facts are briefly these: Some five years ago, during a
+lengthy visit to Warsaw, I made the acquaintance of the well-known
+adventuress, Irene Adler. The name is no doubt familiar to you."
+
+"Kindly look her up in my index, Doctor," murmured Holmes without
+opening his eyes. For many years he had adopted a system of
+docketing all paragraphs concerning men and things, so that it
+was difficult to name a subject or a person on which he could not
+at once furnish information. In this case I found her biography
+sandwiched in between that of a Hebrew rabbi and that of a
+staff-commander who had written a monograph upon the deep-sea
+fishes.
+
+"Let me see!" said Holmes. "Hum! Born in New Jersey in the year
+1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera
+of Warsaw--yes! Retired from operatic stage--ha! Living in
+London--quite so! Your Majesty, as I understand, became entangled
+with this young person, wrote her some compromising letters, and
+is now desirous of getting those letters back."
+
+"Precisely so. But how--"
+
+"Was there a secret marriage?"
+
+"None."
+
+"No legal papers or certificates?"
+
+"None."
+
+"Then I fail to follow your Majesty. If this young person should
+produce her letters for blackmailing or other purposes, how is
+she to prove their authenticity?"
+
+"There is the writing."
+
+"Pooh, pooh! Forgery."
+
+"My private note-paper."
+
+"Stolen."
+
+"My own seal."
+
+"Imitated."
+
+"My photograph."
+
+"Bought."
+
+"We were both in the photograph."
+
+"Oh, dear! That is very bad! Your Majesty has indeed committed an
+indiscretion."
+
+"I was mad--insane."
+
+"You have compromised yourself seriously."
+
+"I was only Crown Prince then. I was young. I am but thirty now."
+
+"It must be recovered."
+
+"We have tried and failed."
+
+"Your Majesty must pay. It must be bought."
+
+"She will not sell."
+
+"Stolen, then."
+
+"Five attempts have been made. Twice burglars in my pay ransacked
+her house. Once we diverted her luggage when she travelled. Twice
+she has been waylaid. There has been no result."
+
+"No sign of it?"
+
+"Absolutely none."
+
+Holmes laughed. "It is quite a pretty little problem," said he.
+
+"But a very serious one to me," returned the King reproachfully.
+
+"Very, indeed. And what does she propose to do with the
+photograph?"
+
+"To ruin me."
+
+"But how?"
+
+"I am about to be married."
+
+"So I have heard."
+
+"To Clotilde Lothman von Saxe-Meningen, second daughter of the
+King of Scandinavia. You may know the strict principles of her
+family. She is herself the very soul of delicacy. A shadow of a
+doubt as to my conduct would bring the matter to an end."
+
+"And Irene Adler?"
+
+"Threatens to send them the photograph. And she will do it. I
+know that she will do it. You do not know her, but she has a soul
+of steel. She has the face of the most beautiful of women, and
+the mind of the most resolute of men. Rather than I should marry
+another woman, there are no lengths to which she would not
+go--none."
+
+"You are sure that she has not sent it yet?"
+
+"I am sure."
+
+"And why?"
+
+"Because she has said that she would send it on the day when the
+betrothal was publicly proclaimed. That will be next Monday."
+
+"Oh, then we have three days yet," said Holmes with a yawn. "That
+is very fortunate, as I have one or two matters of importance to
+look into just at present. Your Majesty will, of course, stay in
+London for the present?"
+
+"Certainly. You will find me at the Langham under the name of the
+Count Von Kramm."
+
+"Then I shall drop you a line to let you know how we progress."
+
+"Pray do so. I shall be all anxiety."
+
+"Then, as to money?"
+
+"You have carte blanche."
+
+"Absolutely?"
+
+"I tell you that I would give one of the provinces of my kingdom
+to have that photograph."
+
+"And for present expenses?"
+
+The King took a heavy chamois leather bag from under his cloak
+and laid it on the table.
+
+"There are three hundred pounds in gold and seven hundred in
+notes," he said.
+
+Holmes scribbled a receipt upon a sheet of his note-book and
+handed it to him.
+
+"And Mademoiselle's address?" he asked.
+
+"Is Briony Lodge, Serpentine Avenue, St. John's Wood."
+
+Holmes took a note of it. "One other question," said he. "Was the
+photograph a cabinet?"
+
+"It was."
+
+"Then, good-night, your Majesty, and I trust that we shall soon
+have some good news for you. And good-night, Watson," he added,
+as the wheels of the royal brougham rolled down the street. "If
+you will be good enough to call to-morrow afternoon at three
+o'clock I should like to chat this little matter over with you."
+
+
+II.
+
+At three o'clock precisely I was at Baker Street, but Holmes had
+not yet returned. The landlady informed me that he had left the
+house shortly after eight o'clock in the morning. I sat down
+beside the fire, however, with the intention of awaiting him,
+however long he might be. I was already deeply interested in his
+inquiry, for, though it was surrounded by none of the grim and
+strange features which were associated with the two crimes which
+I have already recorded, still, the nature of the case and the
+exalted station of his client gave it a character of its own.
+Indeed, apart from the nature of the investigation which my
+friend had on hand, there was something in his masterly grasp of
+a situation, and his keen, incisive reasoning, which made it a
+pleasure to me to study his system of work, and to follow the
+quick, subtle methods by which he disentangled the most
+inextricable mysteries. So accustomed was I to his invariable
+success that the very possibility of his failing had ceased to
+enter into my head.
+
+It was close upon four before the door opened, and a
+drunken-looking groom, ill-kempt and side-whiskered, with an
+inflamed face and disreputable clothes, walked into the room.
+Accustomed as I was to my friend's amazing powers in the use of
+disguises, I had to look three times before I was certain that it
+was indeed he. With a nod he vanished into the bedroom, whence he
+emerged in five minutes tweed-suited and respectable, as of old.
+Putting his hands into his pockets, he stretched out his legs in
+front of the fire and laughed heartily for some minutes.
+
+"Well, really!" he cried, and then he choked and laughed again
+until he was obliged to lie back, limp and helpless, in the
+chair.
+
+"What is it?"
+
+"It's quite too funny. I am sure you could never guess how I
+employed my morning, or what I ended by doing."
+
+"I can't imagine. I suppose that you have been watching the
+habits, and perhaps the house, of Miss Irene Adler."
+
+"Quite so; but the sequel was rather unusual. I will tell you,
+however. I left the house a little after eight o'clock this
+morning in the character of a groom out of work. There is a
+wonderful sympathy and freemasonry among horsey men. Be one of
+them, and you will know all that there is to know. I soon found
+Briony Lodge. It is a bijou villa, with a garden at the back, but
+built out in front right up to the road, two stories. Chubb lock
+to the door. Large sitting-room on the right side, well
+furnished, with long windows almost to the floor, and those
+preposterous English window fasteners which a child could open.
+Behind there was nothing remarkable, save that the passage window
+could be reached from the top of the coach-house. I walked round
+it and examined it closely from every point of view, but without
+noting anything else of interest.
+
+"I then lounged down the street and found, as I expected, that
+there was a mews in a lane which runs down by one wall of the
+garden. I lent the ostlers a hand in rubbing down their horses,
+and received in exchange twopence, a glass of half and half, two
+fills of shag tobacco, and as much information as I could desire
+about Miss Adler, to say nothing of half a dozen other people in
+the neighbourhood in whom I was not in the least interested, but
+whose biographies I was compelled to listen to."
+
+"And what of Irene Adler?" I asked.
+
+"Oh, she has turned all the men's heads down in that part. She is
+the daintiest thing under a bonnet on this planet. So say the
+Serpentine-mews, to a man. She lives quietly, sings at concerts,
+drives out at five every day, and returns at seven sharp for
+dinner. Seldom goes out at other times, except when she sings.
+Has only one male visitor, but a good deal of him. He is dark,
+handsome, and dashing, never calls less than once a day, and
+often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See
+the advantages of a cabman as a confidant. They had driven him
+home a dozen times from Serpentine-mews, and knew all about him.
+When I had listened to all they had to tell, I began to walk up
+and down near Briony Lodge once more, and to think over my plan
+of campaign.
+
+"This Godfrey Norton was evidently an important factor in the
+matter. He was a lawyer. That sounded ominous. What was the
+relation between them, and what the object of his repeated
+visits? Was she his client, his friend, or his mistress? If the
+former, she had probably transferred the photograph to his
+keeping. If the latter, it was less likely. On the issue of this
+question depended whether I should continue my work at Briony
+Lodge, or turn my attention to the gentleman's chambers in the
+Temple. It was a delicate point, and it widened the field of my
+inquiry. I fear that I bore you with these details, but I have to
+let you see my little difficulties, if you are to understand the
+situation."
+
+"I am following you closely," I answered.
+
+"I was still balancing the matter in my mind when a hansom cab
+drove up to Briony Lodge, and a gentleman sprang out. He was a
+remarkably handsome man, dark, aquiline, and moustached--evidently
+the man of whom I had heard. He appeared to be in a
+great hurry, shouted to the cabman to wait, and brushed past the
+maid who opened the door with the air of a man who was thoroughly
+at home.
+
+"He was in the house about half an hour, and I could catch
+glimpses of him in the windows of the sitting-room, pacing up and
+down, talking excitedly, and waving his arms. Of her I could see
+nothing. Presently he emerged, looking even more flurried than
+before. As he stepped up to the cab, he pulled a gold watch from
+his pocket and looked at it earnestly, 'Drive like the devil,' he
+shouted, 'first to Gross & Hankey's in Regent Street, and then to
+the Church of St. Monica in the Edgeware Road. Half a guinea if
+you do it in twenty minutes!'
+
+"Away they went, and I was just wondering whether I should not do
+well to follow them when up the lane came a neat little landau,
+the coachman with his coat only half-buttoned, and his tie under
+his ear, while all the tags of his harness were sticking out of
+the buckles. It hadn't pulled up before she shot out of the hall
+door and into it. I only caught a glimpse of her at the moment,
+but she was a lovely woman, with a face that a man might die for.
+
+"'The Church of St. Monica, John,' she cried, 'and half a
+sovereign if you reach it in twenty minutes.'
+
+"This was quite too good to lose, Watson. I was just balancing
+whether I should run for it, or whether I should perch behind her
+landau when a cab came through the street. The driver looked
+twice at such a shabby fare, but I jumped in before he could
+object. 'The Church of St. Monica,' said I, 'and half a sovereign
+if you reach it in twenty minutes.' It was twenty-five minutes to
+twelve, and of course it was clear enough what was in the wind.
+
+"My cabby drove fast. I don't think I ever drove faster, but the
+others were there before us. The cab and the landau with their
+steaming horses were in front of the door when I arrived. I paid
+the man and hurried into the church. There was not a soul there
+save the two whom I had followed and a surpliced clergyman, who
+seemed to be expostulating with them. They were all three
+standing in a knot in front of the altar. I lounged up the side
+aisle like any other idler who has dropped into a church.
+Suddenly, to my surprise, the three at the altar faced round to
+me, and Godfrey Norton came running as hard as he could towards
+me.
+
+"'Thank God,' he cried. 'You'll do. Come! Come!'
+
+"'What then?' I asked.
+
+"'Come, man, come, only three minutes, or it won't be legal.'
+
+"I was half-dragged up to the altar, and before I knew where I was
+I found myself mumbling responses which were whispered in my ear,
+and vouching for things of which I knew nothing, and generally
+assisting in the secure tying up of Irene Adler, spinster, to
+Godfrey Norton, bachelor. It was all done in an instant, and
+there was the gentleman thanking me on the one side and the lady
+on the other, while the clergyman beamed on me in front. It was
+the most preposterous position in which I ever found myself in my
+life, and it was the thought of it that started me laughing just
+now. It seems that there had been some informality about their
+license, that the clergyman absolutely refused to marry them
+without a witness of some sort, and that my lucky appearance
+saved the bridegroom from having to sally out into the streets in
+search of a best man. The bride gave me a sovereign, and I mean
+to wear it on my watch-chain in memory of the occasion."
+
+"This is a very unexpected turn of affairs," said I; "and what
+then?"
+
+"Well, I found my plans very seriously menaced. It looked as if
+the pair might take an immediate departure, and so necessitate
+very prompt and energetic measures on my part. At the church
+door, however, they separated, he driving back to the Temple, and
+she to her own house. 'I shall drive out in the park at five as
+usual,' she said as she left him. I heard no more. They drove
+away in different directions, and I went off to make my own
+arrangements."
+
+"Which are?"
+
+"Some cold beef and a glass of beer," he answered, ringing the
+bell. "I have been too busy to think of food, and I am likely to
+be busier still this evening. By the way, Doctor, I shall want
+your co-operation."
+
+"I shall be delighted."
+
+"You don't mind breaking the law?"
+
+"Not in the least."
+
+"Nor running a chance of arrest?"
+
+"Not in a good cause."
+
+"Oh, the cause is excellent!"
+
+"Then I am your man."
+
+"I was sure that I might rely on you."
+
+"But what is it you wish?"
+
+"When Mrs. Turner has brought in the tray I will make it clear to
+you. Now," he said as he turned hungrily on the simple fare that
+our landlady had provided, "I must discuss it while I eat, for I
+have not much time. It is nearly five now. In two hours we must
+be on the scene of action. Miss Irene, or Madame, rather, returns
+from her drive at seven. We must be at Briony Lodge to meet her."
+
+"And what then?"
+
+"You must leave that to me. I have already arranged what is to
+occur. There is only one point on which I must insist. You must
+not interfere, come what may. You understand?"
+
+"I am to be neutral?"
+
+"To do nothing whatever. There will probably be some small
+unpleasantness. Do not join in it. It will end in my being
+conveyed into the house. Four or five minutes afterwards the
+sitting-room window will open. You are to station yourself close
+to that open window."
+
+"Yes."
+
+"You are to watch me, for I will be visible to you."
+
+"Yes."
+
+"And when I raise my hand--so--you will throw into the room what
+I give you to throw, and will, at the same time, raise the cry of
+fire. You quite follow me?"
+
+"Entirely."
+
+"It is nothing very formidable," he said, taking a long cigar-shaped
+roll from his pocket. "It is an ordinary plumber's smoke-rocket,
+fitted with a cap at either end to make it self-lighting.
+Your task is confined to that. When you raise your cry of fire,
+it will be taken up by quite a number of people. You may then
+walk to the end of the street, and I will rejoin you in ten
+minutes. I hope that I have made myself clear?"
+
+"I am to remain neutral, to get near the window, to watch you,
+and at the signal to throw in this object, then to raise the cry
+of fire, and to wait you at the corner of the street."
+
+"Precisely."
+
+"Then you may entirely rely on me."
+
+"That is excellent. I think, perhaps, it is almost time that I
+prepare for the new role I have to play."
+
+He disappeared into his bedroom and returned in a few minutes in
+the character of an amiable and simple-minded Nonconformist
+clergyman. His broad black hat, his baggy trousers, his white
+tie, his sympathetic smile, and general look of peering and
+benevolent curiosity were such as Mr. John Hare alone could have
+equalled. It was not merely that Holmes changed his costume. His
+expression, his manner, his very soul seemed to vary with every
+fresh part that he assumed. The stage lost a fine actor, even as
+science lost an acute reasoner, when he became a specialist in
+crime.
+
+It was a quarter past six when we left Baker Street, and it still
+wanted ten minutes to the hour when we found ourselves in
+Serpentine Avenue. It was already dusk, and the lamps were just
+being lighted as we paced up and down in front of Briony Lodge,
+waiting for the coming of its occupant. The house was just such
+as I had pictured it from Sherlock Holmes' succinct description,
+but the locality appeared to be less private than I expected. On
+the contrary, for a small street in a quiet neighbourhood, it was
+remarkably animated. There was a group of shabbily dressed men
+smoking and laughing in a corner, a scissors-grinder with his
+wheel, two guardsmen who were flirting with a nurse-girl, and
+several well-dressed young men who were lounging up and down with
+cigars in their mouths.
+
+"You see," remarked Holmes, as we paced to and fro in front of
+the house, "this marriage rather simplifies matters. The
+photograph becomes a double-edged weapon now. The chances are
+that she would be as averse to its being seen by Mr. Godfrey
+Norton, as our client is to its coming to the eyes of his
+princess. Now the question is, Where are we to find the
+photograph?"
+
+"Where, indeed?"
+
+"It is most unlikely that she carries it about with her. It is
+cabinet size. Too large for easy concealment about a woman's
+dress. She knows that the King is capable of having her waylaid
+and searched. Two attempts of the sort have already been made. We
+may take it, then, that she does not carry it about with her."
+
+"Where, then?"
+
+"Her banker or her lawyer. There is that double possibility. But
+I am inclined to think neither. Women are naturally secretive,
+and they like to do their own secreting. Why should she hand it
+over to anyone else? She could trust her own guardianship, but
+she could not tell what indirect or political influence might be
+brought to bear upon a business man. Besides, remember that she
+had resolved to use it within a few days. It must be where she
+can lay her hands upon it. It must be in her own house."
+
+"But it has twice been burgled."
+
+"Pshaw! They did not know how to look."
+
+"But how will you look?"
+
+"I will not look."
+
+"What then?"
+
+"I will get her to show me."
+
+"But she will refuse."
+
+"She will not be able to. But I hear the rumble of wheels. It is
+her carriage. Now carry out my orders to the letter."
+
+As he spoke the gleam of the side-lights of a carriage came round
+the curve of the avenue. It was a smart little landau which
+rattled up to the door of Briony Lodge. As it pulled up, one of
+the loafing men at the corner dashed forward to open the door in
+the hope of earning a copper, but was elbowed away by another
+loafer, who had rushed up with the same intention. A fierce
+quarrel broke out, which was increased by the two guardsmen, who
+took sides with one of the loungers, and by the scissors-grinder,
+who was equally hot upon the other side. A blow was struck, and
+in an instant the lady, who had stepped from her carriage, was
+the centre of a little knot of flushed and struggling men, who
+struck savagely at each other with their fists and sticks. Holmes
+dashed into the crowd to protect the lady; but just as he reached
+her he gave a cry and dropped to the ground, with the blood
+running freely down his face. At his fall the guardsmen took to
+their heels in one direction and the loungers in the other, while
+a number of better-dressed people, who had watched the scuffle
+without taking part in it, crowded in to help the lady and to
+attend to the injured man. Irene Adler, as I will still call her,
+had hurried up the steps; but she stood at the top with her
+superb figure outlined against the lights of the hall, looking
+back into the street.
+
+"Is the poor gentleman much hurt?" she asked.
+
+"He is dead," cried several voices.
+
+"No, no, there's life in him!" shouted another. "But he'll be
+gone before you can get him to hospital."
+
+"He's a brave fellow," said a woman. "They would have had the
+lady's purse and watch if it hadn't been for him. They were a
+gang, and a rough one, too. Ah, he's breathing now."
+
+"He can't lie in the street. May we bring him in, marm?"
+
+"Surely. Bring him into the sitting-room. There is a comfortable
+sofa. This way, please!"
+
+Slowly and solemnly he was borne into Briony Lodge and laid out
+in the principal room, while I still observed the proceedings
+from my post by the window. The lamps had been lit, but the
+blinds had not been drawn, so that I could see Holmes as he lay
+upon the couch. I do not know whether he was seized with
+compunction at that moment for the part he was playing, but I
+know that I never felt more heartily ashamed of myself in my life
+than when I saw the beautiful creature against whom I was
+conspiring, or the grace and kindliness with which she waited
+upon the injured man. And yet it would be the blackest treachery
+to Holmes to draw back now from the part which he had intrusted
+to me. I hardened my heart, and took the smoke-rocket from under
+my ulster. After all, I thought, we are not injuring her. We are
+but preventing her from injuring another.
+
+Holmes had sat up upon the couch, and I saw him motion like a man
+who is in need of air. A maid rushed across and threw open the
+window. At the same instant I saw him raise his hand and at the
+signal I tossed my rocket into the room with a cry of "Fire!" The
+word was no sooner out of my mouth than the whole crowd of
+spectators, well dressed and ill--gentlemen, ostlers, and
+servant-maids--joined in a general shriek of "Fire!" Thick clouds
+of smoke curled through the room and out at the open window. I
+caught a glimpse of rushing figures, and a moment later the voice
+of Holmes from within assuring them that it was a false alarm.
+Slipping through the shouting crowd I made my way to the corner
+of the street, and in ten minutes was rejoiced to find my
+friend's arm in mine, and to get away from the scene of uproar.
+He walked swiftly and in silence for some few minutes until we
+had turned down one of the quiet streets which lead towards the
+Edgeware Road.
+
+"You did it very nicely, Doctor," he remarked. "Nothing could
+have been better. It is all right."
+
+"You have the photograph?"
+
+"I know where it is."
+
+"And how did you find out?"
+
+"She showed me, as I told you she would."
+
+"I am still in the dark."
+
+"I do not wish to make a mystery," said he, laughing. "The matter
+was perfectly simple. You, of course, saw that everyone in the
+street was an accomplice. They were all engaged for the evening."
+
+"I guessed as much."
+
+"Then, when the row broke out, I had a little moist red paint in
+the palm of my hand. I rushed forward, fell down, clapped my hand
+to my face, and became a piteous spectacle. It is an old trick."
+
+"That also I could fathom."
+
+"Then they carried me in. She was bound to have me in. What else
+could she do? And into her sitting-room, which was the very room
+which I suspected. It lay between that and her bedroom, and I was
+determined to see which. They laid me on a couch, I motioned for
+air, they were compelled to open the window, and you had your
+chance."
+
+"How did that help you?"
+
+"It was all-important. When a woman thinks that her house is on
+fire, her instinct is at once to rush to the thing which she
+values most. It is a perfectly overpowering impulse, and I have
+more than once taken advantage of it. In the case of the
+Darlington substitution scandal it was of use to me, and also in
+the Arnsworth Castle business. A married woman grabs at her baby;
+an unmarried one reaches for her jewel-box. Now it was clear to
+me that our lady of to-day had nothing in the house more precious
+to her than what we are in quest of. She would rush to secure it.
+The alarm of fire was admirably done. The smoke and shouting were
+enough to shake nerves of steel. She responded beautifully. The
+photograph is in a recess behind a sliding panel just above the
+right bell-pull. She was there in an instant, and I caught a
+glimpse of it as she half-drew it out. When I cried out that it
+was a false alarm, she replaced it, glanced at the rocket, rushed
+from the room, and I have not seen her since. I rose, and, making
+my excuses, escaped from the house. I hesitated whether to
+attempt to secure the photograph at once; but the coachman had
+come in, and as he was watching me narrowly it seemed safer to
+wait. A little over-precipitance may ruin all."
+
+"And now?" I asked.
+
+"Our quest is practically finished. I shall call with the King
+to-morrow, and with you, if you care to come with us. We will be
+shown into the sitting-room to wait for the lady, but it is
+probable that when she comes she may find neither us nor the
+photograph. It might be a satisfaction to his Majesty to regain
+it with his own hands."
+
+"And when will you call?"
+
+"At eight in the morning. She will not be up, so that we shall
+have a clear field. Besides, we must be prompt, for this marriage
+may mean a complete change in her life and habits. I must wire to
+the King without delay."
+
+We had reached Baker Street and had stopped at the door. He was
+searching his pockets for the key when someone passing said:
+
+"Good-night, Mister Sherlock Holmes."
+
+There were several people on the pavement at the time, but the
+greeting appeared to come from a slim youth in an ulster who had
+hurried by.
+
+"I've heard that voice before," said Holmes, staring down the
+dimly lit street. "Now, I wonder who the deuce that could have
+been."
+
+
+III.
+
+I slept at Baker Street that night, and we were engaged upon our
+toast and coffee in the morning when the King of Bohemia rushed
+into the room.
+
+"You have really got it!" he cried, grasping Sherlock Holmes by
+either shoulder and looking eagerly into his face.
+
+"Not yet."
+
+"But you have hopes?"
+
+"I have hopes."
+
+"Then, come. I am all impatience to be gone."
+
+"We must have a cab."
+
+"No, my brougham is waiting."
+
+"Then that will simplify matters." We descended and started off
+once more for Briony Lodge.
+
+"Irene Adler is married," remarked Holmes.
+
+"Married! When?"
+
+"Yesterday."
+
+"But to whom?"
+
+"To an English lawyer named Norton."
+
+"But she could not love him."
+
+"I am in hopes that she does."
+
+"And why in hopes?"
+
+"Because it would spare your Majesty all fear of future
+annoyance. If the lady loves her husband, she does not love your
+Majesty. If she does not love your Majesty, there is no reason
+why she should interfere with your Majesty's plan."
+
+"It is true. And yet--Well! I wish she had been of my own
+station! What a queen she would have made!" He relapsed into a
+moody silence, which was not broken until we drew up in
+Serpentine Avenue.
+
+The door of Briony Lodge was open, and an elderly woman stood
+upon the steps. She watched us with a sardonic eye as we stepped
+from the brougham.
+
+"Mr. Sherlock Holmes, I believe?" said she.
+
+"I am Mr. Holmes," answered my companion, looking at her with a
+questioning and rather startled gaze.
+
+"Indeed! My mistress told me that you were likely to call. She
+left this morning with her husband by the 5:15 train from Charing
+Cross for the Continent."
+
+"What!" Sherlock Holmes staggered back, white with chagrin and
+surprise. "Do you mean that she has left England?"
+
+"Never to return."
+
+"And the papers?" asked the King hoarsely. "All is lost."
+
+"We shall see." He pushed past the servant and rushed into the
+drawing-room, followed by the King and myself. The furniture was
+scattered about in every direction, with dismantled shelves and
+open drawers, as if the lady had hurriedly ransacked them before
+her flight. Holmes rushed at the bell-pull, tore back a small
+sliding shutter, and, plunging in his hand, pulled out a
+photograph and a letter. The photograph was of Irene Adler
+herself in evening dress, the letter was superscribed to
+"Sherlock Holmes, Esq. To be left till called for." My friend
+tore it open and we all three read it together. It was dated at
+midnight of the preceding night and ran in this way:
+
+"MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You
+took me in completely. Until after the alarm of fire, I had not a
+suspicion. But then, when I found how I had betrayed myself, I
+began to think. I had been warned against you months ago. I had
+been told that if the King employed an agent it would certainly
+be you. And your address had been given me. Yet, with all this,
+you made me reveal what you wanted to know. Even after I became
+suspicious, I found it hard to think evil of such a dear, kind
+old clergyman. But, you know, I have been trained as an actress
+myself. Male costume is nothing new to me. I often take advantage
+of the freedom which it gives. I sent John, the coachman, to
+watch you, ran up stairs, got into my walking-clothes, as I call
+them, and came down just as you departed.
+
+"Well, I followed you to your door, and so made sure that I was
+really an object of interest to the celebrated Mr. Sherlock
+Holmes. Then I, rather imprudently, wished you good-night, and
+started for the Temple to see my husband.
+
+"We both thought the best resource was flight, when pursued by
+so formidable an antagonist; so you will find the nest empty when
+you call to-morrow. As to the photograph, your client may rest in
+peace. I love and am loved by a better man than he. The King may
+do what he will without hindrance from one whom he has cruelly
+wronged. I keep it only to safeguard myself, and to preserve a
+weapon which will always secure me from any steps which he might
+take in the future. I leave a photograph which he might care to
+possess; and I remain, dear Mr. Sherlock Holmes,
+
+ "Very truly yours,
+ "IRENE NORTON, née ADLER."
+
+"What a woman--oh, what a woman!" cried the King of Bohemia, when
+we had all three read this epistle. "Did I not tell you how quick
+and resolute she was? Would she not have made an admirable queen?
+Is it not a pity that she was not on my level?"
+
+"From what I have seen of the lady she seems indeed to be on a
+very different level to your Majesty," said Holmes coldly. "I am
+sorry that I have not been able to bring your Majesty's business
+to a more successful conclusion."
+
+"On the contrary, my dear sir," cried the King; "nothing could be
+more successful. I know that her word is inviolate. The
+photograph is now as safe as if it were in the fire."
+
+"I am glad to hear your Majesty say so."
+
+"I am immensely indebted to you. Pray tell me in what way I can
+reward you. This ring--" He slipped an emerald snake ring from
+his finger and held it out upon the palm of his hand.
+
+"Your Majesty has something which I should value even more
+highly," said Holmes.
+
+"You have but to name it."
+
+"This photograph!"
+
+The King stared at him in amazement.
+
+"Irene's photograph!" he cried. "Certainly, if you wish it."
+
+"I thank your Majesty. Then there is no more to be done in the
+matter. I have the honour to wish you a very good-morning." He
+bowed, and, turning away without observing the hand which the
+King had stretched out to him, he set off in my company for his
+chambers.
+
+And that was how a great scandal threatened to affect the kingdom
+of Bohemia, and how the best plans of Mr. Sherlock Holmes were
+beaten by a woman's wit. He used to make merry over the
+cleverness of women, but I have not heard him do it of late. And
+when he speaks of Irene Adler, or when he refers to her
+photograph, it is always under the honourable title of the woman.
+
+
+
+ADVENTURE II. THE RED-HEADED LEAGUE
+
+I had called upon my friend, Mr. Sherlock Holmes, one day in the
+autumn of last year and found him in deep conversation with a
+very stout, florid-faced, elderly gentleman with fiery red hair.
+With an apology for my intrusion, I was about to withdraw when
+Holmes pulled me abruptly into the room and closed the door
+behind me.
+
+"You could not possibly have come at a better time, my dear
+Watson," he said cordially.
+
+"I was afraid that you were engaged."
+
+"So I am. Very much so."
+
+"Then I can wait in the next room."
+
+"Not at all. This gentleman, Mr. Wilson, has been my partner and
+helper in many of my most successful cases, and I have no
+doubt that he will be of the utmost use to me in yours also."
+
+The stout gentleman half rose from his chair and gave a bob of
+greeting, with a quick little questioning glance from his small
+fat-encircled eyes.
+
+"Try the settee," said Holmes, relapsing into his armchair and
+putting his fingertips together, as was his custom when in
+judicial moods. "I know, my dear Watson, that you share my love
+of all that is bizarre and outside the conventions and humdrum
+routine of everyday life. You have shown your relish for it by
+the enthusiasm which has prompted you to chronicle, and, if you
+will excuse my saying so, somewhat to embellish so many of my own
+little adventures."
+
+"Your cases have indeed been of the greatest interest to me," I
+observed.
+
+"You will remember that I remarked the other day, just before we
+went into the very simple problem presented by Miss Mary
+Sutherland, that for strange effects and extraordinary
+combinations we must go to life itself, which is always far more
+daring than any effort of the imagination."
+
+"A proposition which I took the liberty of doubting."
+
+"You did, Doctor, but none the less you must come round to my
+view, for otherwise I shall keep on piling fact upon fact on you
+until your reason breaks down under them and acknowledges me to
+be right. Now, Mr. Jabez Wilson here has been good enough to call
+upon me this morning, and to begin a narrative which promises to
+be one of the most singular which I have listened to for some
+time. You have heard me remark that the strangest and most unique
+things are very often connected not with the larger but with the
+smaller crimes, and occasionally, indeed, where there is room for
+doubt whether any positive crime has been committed. As far as I
+have heard it is impossible for me to say whether the present
+case is an instance of crime or not, but the course of events is
+certainly among the most singular that I have ever listened to.
+Perhaps, Mr. Wilson, you would have the great kindness to
+recommence your narrative. I ask you not merely because my friend
+Dr. Watson has not heard the opening part but also because the
+peculiar nature of the story makes me anxious to have every
+possible detail from your lips. As a rule, when I have heard some
+slight indication of the course of events, I am able to guide
+myself by the thousands of other similar cases which occur to my
+memory. In the present instance I am forced to admit that the
+facts are, to the best of my belief, unique."
+
+The portly client puffed out his chest with an appearance of some
+little pride and pulled a dirty and wrinkled newspaper from the
+inside pocket of his greatcoat. As he glanced down the
+advertisement column, with his head thrust forward and the paper
+flattened out upon his knee, I took a good look at the man and
+endeavoured, after the fashion of my companion, to read the
+indications which might be presented by his dress or appearance.
+
+I did not gain very much, however, by my inspection. Our visitor
+bore every mark of being an average commonplace British
+tradesman, obese, pompous, and slow. He wore rather baggy grey
+shepherd's check trousers, a not over-clean black frock-coat,
+unbuttoned in the front, and a drab waistcoat with a heavy brassy
+Albert chain, and a square pierced bit of metal dangling down as
+an ornament. A frayed top-hat and a faded brown overcoat with a
+wrinkled velvet collar lay upon a chair beside him. Altogether,
+look as I would, there was nothing remarkable about the man save
+his blazing red head, and the expression of extreme chagrin and
+discontent upon his features.
+
+Sherlock Holmes' quick eye took in my occupation, and he shook
+his head with a smile as he noticed my questioning glances.
+"Beyond the obvious facts that he has at some time done manual
+labour, that he takes snuff, that he is a Freemason, that he has
+been in China, and that he has done a considerable amount of
+writing lately, I can deduce nothing else."
+
+Mr. Jabez Wilson started up in his chair, with his forefinger
+upon the paper, but his eyes upon my companion.
+
+"How, in the name of good-fortune, did you know all that, Mr.
+Holmes?" he asked. "How did you know, for example, that I did
+manual labour. It's as true as gospel, for I began as a ship's
+carpenter."
+
+"Your hands, my dear sir. Your right hand is quite a size larger
+than your left. You have worked with it, and the muscles are more
+developed."
+
+"Well, the snuff, then, and the Freemasonry?"
+
+"I won't insult your intelligence by telling you how I read that,
+especially as, rather against the strict rules of your order, you
+use an arc-and-compass breastpin."
+
+"Ah, of course, I forgot that. But the writing?"
+
+"What else can be indicated by that right cuff so very shiny for
+five inches, and the left one with the smooth patch near the
+elbow where you rest it upon the desk?"
+
+"Well, but China?"
+
+"The fish that you have tattooed immediately above your right
+wrist could only have been done in China. I have made a small
+study of tattoo marks and have even contributed to the literature
+of the subject. That trick of staining the fishes' scales of a
+delicate pink is quite peculiar to China. When, in addition, I
+see a Chinese coin hanging from your watch-chain, the matter
+becomes even more simple."
+
+Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I
+thought at first that you had done something clever, but I see
+that there was nothing in it, after all."
+
+"I begin to think, Watson," said Holmes, "that I make a mistake
+in explaining. 'Omne ignotum pro magnifico,' you know, and my
+poor little reputation, such as it is, will suffer shipwreck if I
+am so candid. Can you not find the advertisement, Mr. Wilson?"
+
+"Yes, I have got it now," he answered with his thick red finger
+planted halfway down the column. "Here it is. This is what began
+it all. You just read it for yourself, sir."
+
+I took the paper from him and read as follows:
+
+"TO THE RED-HEADED LEAGUE: On account of the bequest of the late
+Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now
+another vacancy open which entitles a member of the League to a
+salary of 4 pounds a week for purely nominal services. All
+red-headed men who are sound in body and mind and above the age
+of twenty-one years, are eligible. Apply in person on Monday, at
+eleven o'clock, to Duncan Ross, at the offices of the League, 7
+Pope's Court, Fleet Street."
+
+"What on earth does this mean?" I ejaculated after I had twice
+read over the extraordinary announcement.
+
+Holmes chuckled and wriggled in his chair, as was his habit when
+in high spirits. "It is a little off the beaten track, isn't it?"
+said he. "And now, Mr. Wilson, off you go at scratch and tell us
+all about yourself, your household, and the effect which this
+advertisement had upon your fortunes. You will first make a note,
+Doctor, of the paper and the date."
+
+"It is The Morning Chronicle of April 27, 1890. Just two months
+ago."
+
+"Very good. Now, Mr. Wilson?"
+
+"Well, it is just as I have been telling you, Mr. Sherlock
+Holmes," said Jabez Wilson, mopping his forehead; "I have a small
+pawnbroker's business at Coburg Square, near the City. It's not a
+very large affair, and of late years it has not done more than
+just give me a living. I used to be able to keep two assistants,
+but now I only keep one; and I would have a job to pay him but
+that he is willing to come for half wages so as to learn the
+business."
+
+"What is the name of this obliging youth?" asked Sherlock Holmes.
+
+"His name is Vincent Spaulding, and he's not such a youth,
+either. It's hard to say his age. I should not wish a smarter
+assistant, Mr. Holmes; and I know very well that he could better
+himself and earn twice what I am able to give him. But, after
+all, if he is satisfied, why should I put ideas in his head?"
+
+"Why, indeed? You seem most fortunate in having an employé who
+comes under the full market price. It is not a common experience
+among employers in this age. I don't know that your assistant is
+not as remarkable as your advertisement."
+
+"Oh, he has his faults, too," said Mr. Wilson. "Never was such a
+fellow for photography. Snapping away with a camera when he ought
+to be improving his mind, and then diving down into the cellar
+like a rabbit into its hole to develop his pictures. That is his
+main fault, but on the whole he's a good worker. There's no vice
+in him."
+
+"He is still with you, I presume?"
+
+"Yes, sir. He and a girl of fourteen, who does a bit of simple
+cooking and keeps the place clean--that's all I have in the
+house, for I am a widower and never had any family. We live very
+quietly, sir, the three of us; and we keep a roof over our heads
+and pay our debts, if we do nothing more.
+
+"The first thing that put us out was that advertisement.
+Spaulding, he came down into the office just this day eight
+weeks, with this very paper in his hand, and he says:
+
+"'I wish to the Lord, Mr. Wilson, that I was a red-headed man.'
+
+"'Why that?' I asks.
+
+"'Why,' says he, 'here's another vacancy on the League of the
+Red-headed Men. It's worth quite a little fortune to any man who
+gets it, and I understand that there are more vacancies than
+there are men, so that the trustees are at their wits' end what
+to do with the money. If my hair would only change colour, here's
+a nice little crib all ready for me to step into.'
+
+"'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a
+very stay-at-home man, and as my business came to me instead of
+my having to go to it, I was often weeks on end without putting
+my foot over the door-mat. In that way I didn't know much of what
+was going on outside, and I was always glad of a bit of news.
+
+"'Have you never heard of the League of the Red-headed Men?' he
+asked with his eyes open.
+
+"'Never.'
+
+"'Why, I wonder at that, for you are eligible yourself for one
+of the vacancies.'
+
+"'And what are they worth?' I asked.
+
+"'Oh, merely a couple of hundred a year, but the work is slight,
+and it need not interfere very much with one's other
+occupations.'
+
+"Well, you can easily think that that made me prick up my ears,
+for the business has not been over-good for some years, and an
+extra couple of hundred would have been very handy.
+
+"'Tell me all about it,' said I.
+
+"'Well,' said he, showing me the advertisement, 'you can see for
+yourself that the League has a vacancy, and there is the address
+where you should apply for particulars. As far as I can make out,
+the League was founded by an American millionaire, Ezekiah
+Hopkins, who was very peculiar in his ways. He was himself
+red-headed, and he had a great sympathy for all red-headed men;
+so when he died it was found that he had left his enormous
+fortune in the hands of trustees, with instructions to apply the
+interest to the providing of easy berths to men whose hair is of
+that colour. From all I hear it is splendid pay and very little to
+do.'
+
+"'But,' said I, 'there would be millions of red-headed men who
+would apply.'
+
+"'Not so many as you might think,' he answered. 'You see it is
+really confined to Londoners, and to grown men. This American had
+started from London when he was young, and he wanted to do the
+old town a good turn. Then, again, I have heard it is no use your
+applying if your hair is light red, or dark red, or anything but
+real bright, blazing, fiery red. Now, if you cared to apply, Mr.
+Wilson, you would just walk in; but perhaps it would hardly be
+worth your while to put yourself out of the way for the sake of a
+few hundred pounds.'
+
+"Now, it is a fact, gentlemen, as you may see for yourselves,
+that my hair is of a very full and rich tint, so that it seemed
+to me that if there was to be any competition in the matter I
+stood as good a chance as any man that I had ever met. Vincent
+Spaulding seemed to know so much about it that I thought he might
+prove useful, so I just ordered him to put up the shutters for
+the day and to come right away with me. He was very willing to
+have a holiday, so we shut the business up and started off for
+the address that was given us in the advertisement.
+
+"I never hope to see such a sight as that again, Mr. Holmes. From
+north, south, east, and west every man who had a shade of red in
+his hair had tramped into the city to answer the advertisement.
+Fleet Street was choked with red-headed folk, and Pope's Court
+looked like a coster's orange barrow. I should not have thought
+there were so many in the whole country as were brought together
+by that single advertisement. Every shade of colour they
+were--straw, lemon, orange, brick, Irish-setter, liver, clay;
+but, as Spaulding said, there were not many who had the real
+vivid flame-coloured tint. When I saw how many were waiting, I
+would have given it up in despair; but Spaulding would not hear
+of it. How he did it I could not imagine, but he pushed and
+pulled and butted until he got me through the crowd, and right up
+to the steps which led to the office. There was a double stream
+upon the stair, some going up in hope, and some coming back
+dejected; but we wedged in as well as we could and soon found
+ourselves in the office."
+
+"Your experience has been a most entertaining one," remarked
+Holmes as his client paused and refreshed his memory with a huge
+pinch of snuff. "Pray continue your very interesting statement."
+
+"There was nothing in the office but a couple of wooden chairs
+and a deal table, behind which sat a small man with a head that
+was even redder than mine. He said a few words to each candidate
+as he came up, and then he always managed to find some fault in
+them which would disqualify them. Getting a vacancy did not seem
+to be such a very easy matter, after all. However, when our turn
+came the little man was much more favourable to me than to any of
+the others, and he closed the door as we entered, so that he
+might have a private word with us.
+
+"'This is Mr. Jabez Wilson,' said my assistant, 'and he is
+willing to fill a vacancy in the League.'
+
+"'And he is admirably suited for it,' the other answered. 'He has
+every requirement. I cannot recall when I have seen anything so
+fine.' He took a step backward, cocked his head on one side, and
+gazed at my hair until I felt quite bashful. Then suddenly he
+plunged forward, wrung my hand, and congratulated me warmly on my
+success.
+
+"'It would be injustice to hesitate,' said he. 'You will,
+however, I am sure, excuse me for taking an obvious precaution.'
+With that he seized my hair in both his hands, and tugged until I
+yelled with the pain. 'There is water in your eyes,' said he as
+he released me. 'I perceive that all is as it should be. But we
+have to be careful, for we have twice been deceived by wigs and
+once by paint. I could tell you tales of cobbler's wax which
+would disgust you with human nature.' He stepped over to the
+window and shouted through it at the top of his voice that the
+vacancy was filled. A groan of disappointment came up from below,
+and the folk all trooped away in different directions until there
+was not a red-head to be seen except my own and that of the
+manager.
+
+"'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of
+the pensioners upon the fund left by our noble benefactor. Are
+you a married man, Mr. Wilson? Have you a family?'
+
+"I answered that I had not.
+
+"His face fell immediately.
+
+"'Dear me!' he said gravely, 'that is very serious indeed! I am
+sorry to hear you say that. The fund was, of course, for the
+propagation and spread of the red-heads as well as for their
+maintenance. It is exceedingly unfortunate that you should be a
+bachelor.'
+
+"My face lengthened at this, Mr. Holmes, for I thought that I was
+not to have the vacancy after all; but after thinking it over for
+a few minutes he said that it would be all right.
+
+"'In the case of another,' said he, 'the objection might be
+fatal, but we must stretch a point in favour of a man with such a
+head of hair as yours. When shall you be able to enter upon your
+new duties?'
+
+"'Well, it is a little awkward, for I have a business already,'
+said I.
+
+"'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding.
+'I should be able to look after that for you.'
+
+"'What would be the hours?' I asked.
+
+"'Ten to two.'
+
+"Now a pawnbroker's business is mostly done of an evening, Mr.
+Holmes, especially Thursday and Friday evening, which is just
+before pay-day; so it would suit me very well to earn a little in
+the mornings. Besides, I knew that my assistant was a good man,
+and that he would see to anything that turned up.
+
+"'That would suit me very well,' said I. 'And the pay?'
+
+"'Is 4 pounds a week.'
+
+"'And the work?'
+
+"'Is purely nominal.'
+
+"'What do you call purely nominal?'
+
+"'Well, you have to be in the office, or at least in the
+building, the whole time. If you leave, you forfeit your whole
+position forever. The will is very clear upon that point. You
+don't comply with the conditions if you budge from the office
+during that time.'
+
+"'It's only four hours a day, and I should not think of leaving,'
+said I.
+
+"'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness
+nor business nor anything else. There you must stay, or you lose
+your billet.'
+
+"'And the work?'
+
+"'Is to copy out the "Encyclopaedia Britannica." There is the first
+volume of it in that press. You must find your own ink, pens, and
+blotting-paper, but we provide this table and chair. Will you be
+ready to-morrow?'
+
+"'Certainly,' I answered.
+
+"'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you
+once more on the important position which you have been fortunate
+enough to gain.' He bowed me out of the room and I went home with
+my assistant, hardly knowing what to say or do, I was so pleased
+at my own good fortune.
+
+"Well, I thought over the matter all day, and by evening I was in
+low spirits again; for I had quite persuaded myself that the
+whole affair must be some great hoax or fraud, though what its
+object might be I could not imagine. It seemed altogether past
+belief that anyone could make such a will, or that they would pay
+such a sum for doing anything so simple as copying out the
+'Encyclopaedia Britannica.' Vincent Spaulding did what he could to
+cheer me up, but by bedtime I had reasoned myself out of the
+whole thing. However, in the morning I determined to have a look
+at it anyhow, so I bought a penny bottle of ink, and with a
+quill-pen, and seven sheets of foolscap paper, I started off for
+Pope's Court.
+
+"Well, to my surprise and delight, everything was as right as
+possible. The table was set out ready for me, and Mr. Duncan Ross
+was there to see that I got fairly to work. He started me off
+upon the letter A, and then he left me; but he would drop in from
+time to time to see that all was right with me. At two o'clock he
+bade me good-day, complimented me upon the amount that I had
+written, and locked the door of the office after me.
+
+"This went on day after day, Mr. Holmes, and on Saturday the
+manager came in and planked down four golden sovereigns for my
+week's work. It was the same next week, and the same the week
+after. Every morning I was there at ten, and every afternoon I
+left at two. By degrees Mr. Duncan Ross took to coming in only
+once of a morning, and then, after a time, he did not come in at
+all. Still, of course, I never dared to leave the room for an
+instant, for I was not sure when he might come, and the billet
+was such a good one, and suited me so well, that I would not risk
+the loss of it.
+
+"Eight weeks passed away like this, and I had written about
+Abbots and Archery and Armour and Architecture and Attica, and
+hoped with diligence that I might get on to the B's before very
+long. It cost me something in foolscap, and I had pretty nearly
+filled a shelf with my writings. And then suddenly the whole
+business came to an end."
+
+"To an end?"
+
+"Yes, sir. And no later than this morning. I went to my work as
+usual at ten o'clock, but the door was shut and locked, with a
+little square of cardboard hammered on to the middle of the
+panel with a tack. Here it is, and you can read for yourself."
+
+He held up a piece of white cardboard about the size of a sheet
+of note-paper. It read in this fashion:
+
+ THE RED-HEADED LEAGUE
+
+ IS
+
+ DISSOLVED.
+
+ October 9, 1890.
+
+Sherlock Holmes and I surveyed this curt announcement and the
+rueful face behind it, until the comical side of the affair so
+completely overtopped every other consideration that we both
+burst out into a roar of laughter.
+
+"I cannot see that there is anything very funny," cried our
+client, flushing up to the roots of his flaming head. "If you can
+do nothing better than laugh at me, I can go elsewhere."
+
+"No, no," cried Holmes, shoving him back into the chair from
+which he had half risen. "I really wouldn't miss your case for
+the world. It is most refreshingly unusual. But there is, if you
+will excuse my saying so, something just a little funny about it.
+Pray what steps did you take when you found the card upon the
+door?"
+
+"I was staggered, sir. I did not know what to do. Then I called
+at the offices round, but none of them seemed to know anything
+about it. Finally, I went to the landlord, who is an accountant
+living on the ground-floor, and I asked him if he could tell me
+what had become of the Red-headed League. He said that he had
+never heard of any such body. Then I asked him who Mr. Duncan
+Ross was. He answered that the name was new to him.
+
+"'Well,' said I, 'the gentleman at No. 4.'
+
+"'What, the red-headed man?'
+
+"'Yes.'
+
+"'Oh,' said he, 'his name was William Morris. He was a solicitor
+and was using my room as a temporary convenience until his new
+premises were ready. He moved out yesterday.'
+
+"'Where could I find him?'
+
+"'Oh, at his new offices. He did tell me the address. Yes, 17
+King Edward Street, near St. Paul's.'
+
+"I started off, Mr. Holmes, but when I got to that address it was
+a manufactory of artificial knee-caps, and no one in it had ever
+heard of either Mr. William Morris or Mr. Duncan Ross."
+
+"And what did you do then?" asked Holmes.
+
+"I went home to Saxe-Coburg Square, and I took the advice of my
+assistant. But he could not help me in any way. He could only say
+that if I waited I should hear by post. But that was not quite
+good enough, Mr. Holmes. I did not wish to lose such a place
+without a struggle, so, as I had heard that you were good enough
+to give advice to poor folk who were in need of it, I came right
+away to you."
+
+"And you did very wisely," said Holmes. "Your case is an
+exceedingly remarkable one, and I shall be happy to look into it.
+From what you have told me I think that it is possible that
+graver issues hang from it than might at first sight appear."
+
+"Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four
+pound a week."
+
+"As far as you are personally concerned," remarked Holmes, "I do
+not see that you have any grievance against this extraordinary
+league. On the contrary, you are, as I understand, richer by some
+30 pounds, to say nothing of the minute knowledge which you have
+gained on every subject which comes under the letter A. You have
+lost nothing by them."
+
+"No, sir. But I want to find out about them, and who they are,
+and what their object was in playing this prank--if it was a
+prank--upon me. It was a pretty expensive joke for them, for it
+cost them two and thirty pounds."
+
+"We shall endeavour to clear up these points for you. And, first,
+one or two questions, Mr. Wilson. This assistant of yours who
+first called your attention to the advertisement--how long had he
+been with you?"
+
+"About a month then."
+
+"How did he come?"
+
+"In answer to an advertisement."
+
+"Was he the only applicant?"
+
+"No, I had a dozen."
+
+"Why did you pick him?"
+
+"Because he was handy and would come cheap."
+
+"At half-wages, in fact."
+
+"Yes."
+
+"What is he like, this Vincent Spaulding?"
+
+"Small, stout-built, very quick in his ways, no hair on his face,
+though he's not short of thirty. Has a white splash of acid upon
+his forehead."
+
+Holmes sat up in his chair in considerable excitement. "I thought
+as much," said he. "Have you ever observed that his ears are
+pierced for earrings?"
+
+"Yes, sir. He told me that a gipsy had done it for him when he
+was a lad."
+
+"Hum!" said Holmes, sinking back in deep thought. "He is still
+with you?"
+
+"Oh, yes, sir; I have only just left him."
+
+"And has your business been attended to in your absence?"
+
+"Nothing to complain of, sir. There's never very much to do of a
+morning."
+
+"That will do, Mr. Wilson. I shall be happy to give you an
+opinion upon the subject in the course of a day or two. To-day is
+Saturday, and I hope that by Monday we may come to a conclusion."
+
+"Well, Watson," said Holmes when our visitor had left us, "what
+do you make of it all?"
+
+"I make nothing of it," I answered frankly. "It is a most
+mysterious business."
+
+"As a rule," said Holmes, "the more bizarre a thing is the less
+mysterious it proves to be. It is your commonplace, featureless
+crimes which are really puzzling, just as a commonplace face is
+the most difficult to identify. But I must be prompt over this
+matter."
+
+"What are you going to do, then?" I asked.
+
+"To smoke," he answered. "It is quite a three pipe problem, and I
+beg that you won't speak to me for fifty minutes." He curled
+himself up in his chair, with his thin knees drawn up to his
+hawk-like nose, and there he sat with his eyes closed and his
+black clay pipe thrusting out like the bill of some strange bird.
+I had come to the conclusion that he had dropped asleep, and
+indeed was nodding myself, when he suddenly sprang out of his
+chair with the gesture of a man who has made up his mind and put
+his pipe down upon the mantelpiece.
+
+"Sarasate plays at the St. James's Hall this afternoon," he
+remarked. "What do you think, Watson? Could your patients spare
+you for a few hours?"
+
+"I have nothing to do to-day. My practice is never very
+absorbing."
+
+"Then put on your hat and come. I am going through the City
+first, and we can have some lunch on the way. I observe that
+there is a good deal of German music on the programme, which is
+rather more to my taste than Italian or French. It is
+introspective, and I want to introspect. Come along!"
+
+We travelled by the Underground as far as Aldersgate; and a short
+walk took us to Saxe-Coburg Square, the scene of the singular
+story which we had listened to in the morning. It was a poky,
+little, shabby-genteel place, where four lines of dingy
+two-storied brick houses looked out into a small railed-in
+enclosure, where a lawn of weedy grass and a few clumps of faded
+laurel-bushes made a hard fight against a smoke-laden and
+uncongenial atmosphere. Three gilt balls and a brown board with
+"JABEZ WILSON" in white letters, upon a corner house, announced
+the place where our red-headed client carried on his business.
+Sherlock Holmes stopped in front of it with his head on one side
+and looked it all over, with his eyes shining brightly between
+puckered lids. Then he walked slowly up the street, and then down
+again to the corner, still looking keenly at the houses. Finally
+he returned to the pawnbroker's, and, having thumped vigorously
+upon the pavement with his stick two or three times, he went up
+to the door and knocked. It was instantly opened by a
+bright-looking, clean-shaven young fellow, who asked him to step
+in.
+
+"Thank you," said Holmes, "I only wished to ask you how you would
+go from here to the Strand."
+
+"Third right, fourth left," answered the assistant promptly,
+closing the door.
+
+"Smart fellow, that," observed Holmes as we walked away. "He is,
+in my judgment, the fourth smartest man in London, and for daring
+I am not sure that he has not a claim to be third. I have known
+something of him before."
+
+"Evidently," said I, "Mr. Wilson's assistant counts for a good
+deal in this mystery of the Red-headed League. I am sure that you
+inquired your way merely in order that you might see him."
+
+"Not him."
+
+"What then?"
+
+"The knees of his trousers."
+
+"And what did you see?"
+
+"What I expected to see."
+
+"Why did you beat the pavement?"
+
+"My dear doctor, this is a time for observation, not for talk. We
+are spies in an enemy's country. We know something of Saxe-Coburg
+Square. Let us now explore the parts which lie behind it."
+
+The road in which we found ourselves as we turned round the
+corner from the retired Saxe-Coburg Square presented as great a
+contrast to it as the front of a picture does to the back. It was
+one of the main arteries which conveyed the traffic of the City
+to the north and west. The roadway was blocked with the immense
+stream of commerce flowing in a double tide inward and outward,
+while the footpaths were black with the hurrying swarm of
+pedestrians. It was difficult to realise as we looked at the line
+of fine shops and stately business premises that they really
+abutted on the other side upon the faded and stagnant square
+which we had just quitted.
+
+"Let me see," said Holmes, standing at the corner and glancing
+along the line, "I should like just to remember the order of the
+houses here. It is a hobby of mine to have an exact knowledge of
+London. There is Mortimer's, the tobacconist, the little
+newspaper shop, the Coburg branch of the City and Suburban Bank,
+the Vegetarian Restaurant, and McFarlane's carriage-building
+depot. That carries us right on to the other block. And now,
+Doctor, we've done our work, so it's time we had some play. A
+sandwich and a cup of coffee, and then off to violin-land, where
+all is sweetness and delicacy and harmony, and there are no
+red-headed clients to vex us with their conundrums."
+
+My friend was an enthusiastic musician, being himself not only a
+very capable performer but a composer of no ordinary merit. All
+the afternoon he sat in the stalls wrapped in the most perfect
+happiness, gently waving his long, thin fingers in time to the
+music, while his gently smiling face and his languid, dreamy eyes
+were as unlike those of Holmes the sleuth-hound, Holmes the
+relentless, keen-witted, ready-handed criminal agent, as it was
+possible to conceive. In his singular character the dual nature
+alternately asserted itself, and his extreme exactness and
+astuteness represented, as I have often thought, the reaction
+against the poetic and contemplative mood which occasionally
+predominated in him. The swing of his nature took him from
+extreme languor to devouring energy; and, as I knew well, he was
+never so truly formidable as when, for days on end, he had been
+lounging in his armchair amid his improvisations and his
+black-letter editions. Then it was that the lust of the chase
+would suddenly come upon him, and that his brilliant reasoning
+power would rise to the level of intuition, until those who were
+unacquainted with his methods would look askance at him as on a
+man whose knowledge was not that of other mortals. When I saw him
+that afternoon so enwrapped in the music at St. James's Hall I
+felt that an evil time might be coming upon those whom he had set
+himself to hunt down.
+
+"You want to go home, no doubt, Doctor," he remarked as we
+emerged.
+
+"Yes, it would be as well."
+
+"And I have some business to do which will take some hours. This
+business at Coburg Square is serious."
+
+"Why serious?"
+
+"A considerable crime is in contemplation. I have every reason to
+believe that we shall be in time to stop it. But to-day being
+Saturday rather complicates matters. I shall want your help
+to-night."
+
+"At what time?"
+
+"Ten will be early enough."
+
+"I shall be at Baker Street at ten."
+
+"Very well. And, I say, Doctor, there may be some little danger,
+so kindly put your army revolver in your pocket." He waved his
+hand, turned on his heel, and disappeared in an instant among the
+crowd.
+
+I trust that I am not more dense than my neighbours, but I was
+always oppressed with a sense of my own stupidity in my dealings
+with Sherlock Holmes. Here I had heard what he had heard, I had
+seen what he had seen, and yet from his words it was evident that
+he saw clearly not only what had happened but what was about to
+happen, while to me the whole business was still confused and
+grotesque. As I drove home to my house in Kensington I thought
+over it all, from the extraordinary story of the red-headed
+copier of the "Encyclopaedia" down to the visit to Saxe-Coburg
+Square, and the ominous words with which he had parted from me.
+What was this nocturnal expedition, and why should I go armed?
+Where were we going, and what were we to do? I had the hint from
+Holmes that this smooth-faced pawnbroker's assistant was a
+formidable man--a man who might play a deep game. I tried to
+puzzle it out, but gave it up in despair and set the matter aside
+until night should bring an explanation.
+
+It was a quarter-past nine when I started from home and made my
+way across the Park, and so through Oxford Street to Baker
+Street. Two hansoms were standing at the door, and as I entered
+the passage I heard the sound of voices from above. On entering
+his room I found Holmes in animated conversation with two men,
+one of whom I recognised as Peter Jones, the official police
+agent, while the other was a long, thin, sad-faced man, with a
+very shiny hat and oppressively respectable frock-coat.
+
+"Ha! Our party is complete," said Holmes, buttoning up his
+pea-jacket and taking his heavy hunting crop from the rack.
+"Watson, I think you know Mr. Jones, of Scotland Yard? Let me
+introduce you to Mr. Merryweather, who is to be our companion in
+to-night's adventure."
+
+"We're hunting in couples again, Doctor, you see," said Jones in
+his consequential way. "Our friend here is a wonderful man for
+starting a chase. All he wants is an old dog to help him to do
+the running down."
+
+"I hope a wild goose may not prove to be the end of our chase,"
+observed Mr. Merryweather gloomily.
+
+"You may place considerable confidence in Mr. Holmes, sir," said
+the police agent loftily. "He has his own little methods, which
+are, if he won't mind my saying so, just a little too theoretical
+and fantastic, but he has the makings of a detective in him. It
+is not too much to say that once or twice, as in that business of
+the Sholto murder and the Agra treasure, he has been more nearly
+correct than the official force."
+
+"Oh, if you say so, Mr. Jones, it is all right," said the
+stranger with deference. "Still, I confess that I miss my rubber.
+It is the first Saturday night for seven-and-twenty years that I
+have not had my rubber."
+
+"I think you will find," said Sherlock Holmes, "that you will
+play for a higher stake to-night than you have ever done yet, and
+that the play will be more exciting. For you, Mr. Merryweather,
+the stake will be some 30,000 pounds; and for you, Jones, it will
+be the man upon whom you wish to lay your hands."
+
+"John Clay, the murderer, thief, smasher, and forger. He's a
+young man, Mr. Merryweather, but he is at the head of his
+profession, and I would rather have my bracelets on him than on
+any criminal in London. He's a remarkable man, is young John
+Clay. His grandfather was a royal duke, and he himself has been
+to Eton and Oxford. His brain is as cunning as his fingers, and
+though we meet signs of him at every turn, we never know where to
+find the man himself. He'll crack a crib in Scotland one week,
+and be raising money to build an orphanage in Cornwall the next.
+I've been on his track for years and have never set eyes on him
+yet."
+
+"I hope that I may have the pleasure of introducing you to-night.
+I've had one or two little turns also with Mr. John Clay, and I
+agree with you that he is at the head of his profession. It is
+past ten, however, and quite time that we started. If you two
+will take the first hansom, Watson and I will follow in the
+second."
+
+Sherlock Holmes was not very communicative during the long drive
+and lay back in the cab humming the tunes which he had heard in
+the afternoon. We rattled through an endless labyrinth of gas-lit
+streets until we emerged into Farrington Street.
+
+"We are close there now," my friend remarked. "This fellow
+Merryweather is a bank director, and personally interested in the
+matter. I thought it as well to have Jones with us also. He is
+not a bad fellow, though an absolute imbecile in his profession.
+He has one positive virtue. He is as brave as a bulldog and as
+tenacious as a lobster if he gets his claws upon anyone. Here we
+are, and they are waiting for us."
+
+We had reached the same crowded thoroughfare in which we had
+found ourselves in the morning. Our cabs were dismissed, and,
+following the guidance of Mr. Merryweather, we passed down a
+narrow passage and through a side door, which he opened for us.
+Within there was a small corridor, which ended in a very massive
+iron gate. This also was opened, and led down a flight of winding
+stone steps, which terminated at another formidable gate. Mr.
+Merryweather stopped to light a lantern, and then conducted us
+down a dark, earth-smelling passage, and so, after opening a
+third door, into a huge vault or cellar, which was piled all
+round with crates and massive boxes.
+
+"You are not very vulnerable from above," Holmes remarked as he
+held up the lantern and gazed about him.
+
+"Nor from below," said Mr. Merryweather, striking his stick upon
+the flags which lined the floor. "Why, dear me, it sounds quite
+hollow!" he remarked, looking up in surprise.
+
+"I must really ask you to be a little more quiet!" said Holmes
+severely. "You have already imperilled the whole success of our
+expedition. Might I beg that you would have the goodness to sit
+down upon one of those boxes, and not to interfere?"
+
+The solemn Mr. Merryweather perched himself upon a crate, with a
+very injured expression upon his face, while Holmes fell upon his
+knees upon the floor and, with the lantern and a magnifying lens,
+began to examine minutely the cracks between the stones. A few
+seconds sufficed to satisfy him, for he sprang to his feet again
+and put his glass in his pocket.
+
+"We have at least an hour before us," he remarked, "for they can
+hardly take any steps until the good pawnbroker is safely in bed.
+Then they will not lose a minute, for the sooner they do their
+work the longer time they will have for their escape. We are at
+present, Doctor--as no doubt you have divined--in the cellar of
+the City branch of one of the principal London banks. Mr.
+Merryweather is the chairman of directors, and he will explain to
+you that there are reasons why the more daring criminals of
+London should take a considerable interest in this cellar at
+present."
+
+"It is our French gold," whispered the director. "We have had
+several warnings that an attempt might be made upon it."
+
+"Your French gold?"
+
+"Yes. We had occasion some months ago to strengthen our resources
+and borrowed for that purpose 30,000 napoleons from the Bank of
+France. It has become known that we have never had occasion to
+unpack the money, and that it is still lying in our cellar. The
+crate upon which I sit contains 2,000 napoleons packed between
+layers of lead foil. Our reserve of bullion is much larger at
+present than is usually kept in a single branch office, and the
+directors have had misgivings upon the subject."
+
+"Which were very well justified," observed Holmes. "And now it is
+time that we arranged our little plans. I expect that within an
+hour matters will come to a head. In the meantime Mr.
+Merryweather, we must put the screen over that dark lantern."
+
+"And sit in the dark?"
+
+"I am afraid so. I had brought a pack of cards in my pocket, and
+I thought that, as we were a partie carrée, you might have your
+rubber after all. But I see that the enemy's preparations have
+gone so far that we cannot risk the presence of a light. And,
+first of all, we must choose our positions. These are daring men,
+and though we shall take them at a disadvantage, they may do us
+some harm unless we are careful. I shall stand behind this crate,
+and do you conceal yourselves behind those. Then, when I flash a
+light upon them, close in swiftly. If they fire, Watson, have no
+compunction about shooting them down."
+
+I placed my revolver, cocked, upon the top of the wooden case
+behind which I crouched. Holmes shot the slide across the front
+of his lantern and left us in pitch darkness--such an absolute
+darkness as I have never before experienced. The smell of hot
+metal remained to assure us that the light was still there, ready
+to flash out at a moment's notice. To me, with my nerves worked
+up to a pitch of expectancy, there was something depressing and
+subduing in the sudden gloom, and in the cold dank air of the
+vault.
+
+"They have but one retreat," whispered Holmes. "That is back
+through the house into Saxe-Coburg Square. I hope that you have
+done what I asked you, Jones?"
+
+"I have an inspector and two officers waiting at the front door."
+
+"Then we have stopped all the holes. And now we must be silent
+and wait."
+
+What a time it seemed! From comparing notes afterwards it was but
+an hour and a quarter, yet it appeared to me that the night must
+have almost gone and the dawn be breaking above us. My limbs
+were weary and stiff, for I feared to change my position; yet my
+nerves were worked up to the highest pitch of tension, and my
+hearing was so acute that I could not only hear the gentle
+breathing of my companions, but I could distinguish the deeper,
+heavier in-breath of the bulky Jones from the thin, sighing note
+of the bank director. From my position I could look over the case
+in the direction of the floor. Suddenly my eyes caught the glint
+of a light.
+
+At first it was but a lurid spark upon the stone pavement. Then
+it lengthened out until it became a yellow line, and then,
+without any warning or sound, a gash seemed to open and a hand
+appeared, a white, almost womanly hand, which felt about in the
+centre of the little area of light. For a minute or more the
+hand, with its writhing fingers, protruded out of the floor. Then
+it was withdrawn as suddenly as it appeared, and all was dark
+again save the single lurid spark which marked a chink between
+the stones.
+
+Its disappearance, however, was but momentary. With a rending,
+tearing sound, one of the broad, white stones turned over upon
+its side and left a square, gaping hole, through which streamed
+the light of a lantern. Over the edge there peeped a clean-cut,
+boyish face, which looked keenly about it, and then, with a hand
+on either side of the aperture, drew itself shoulder-high and
+waist-high, until one knee rested upon the edge. In another
+instant he stood at the side of the hole and was hauling after
+him a companion, lithe and small like himself, with a pale face
+and a shock of very red hair.
+
+"It's all clear," he whispered. "Have you the chisel and the
+bags? Great Scott! Jump, Archie, jump, and I'll swing for it!"
+
+Sherlock Holmes had sprung out and seized the intruder by the
+collar. The other dived down the hole, and I heard the sound of
+rending cloth as Jones clutched at his skirts. The light flashed
+upon the barrel of a revolver, but Holmes' hunting crop came
+down on the man's wrist, and the pistol clinked upon the stone
+floor.
+
+"It's no use, John Clay," said Holmes blandly. "You have no
+chance at all."
+
+"So I see," the other answered with the utmost coolness. "I fancy
+that my pal is all right, though I see you have got his
+coat-tails."
+
+"There are three men waiting for him at the door," said Holmes.
+
+"Oh, indeed! You seem to have done the thing very completely. I
+must compliment you."
+
+"And I you," Holmes answered. "Your red-headed idea was very new
+and effective."
+
+"You'll see your pal again presently," said Jones. "He's quicker
+at climbing down holes than I am. Just hold out while I fix the
+derbies."
+
+"I beg that you will not touch me with your filthy hands,"
+remarked our prisoner as the handcuffs clattered upon his wrists.
+"You may not be aware that I have royal blood in my veins. Have
+the goodness, also, when you address me always to say 'sir' and
+'please.'"
+
+"All right," said Jones with a stare and a snigger. "Well, would
+you please, sir, march upstairs, where we can get a cab to carry
+your Highness to the police-station?"
+
+"That is better," said John Clay serenely. He made a sweeping bow
+to the three of us and walked quietly off in the custody of the
+detective.
+
+"Really, Mr. Holmes," said Mr. Merryweather as we followed them
+from the cellar, "I do not know how the bank can thank you or
+repay you. There is no doubt that you have detected and defeated
+in the most complete manner one of the most determined attempts
+at bank robbery that have ever come within my experience."
+
+"I have had one or two little scores of my own to settle with Mr.
+John Clay," said Holmes. "I have been at some small expense over
+this matter, which I shall expect the bank to refund, but beyond
+that I am amply repaid by having had an experience which is in
+many ways unique, and by hearing the very remarkable narrative of
+the Red-headed League."
+
+
+"You see, Watson," he explained in the early hours of the morning
+as we sat over a glass of whisky and soda in Baker Street, "it
+was perfectly obvious from the first that the only possible
+object of this rather fantastic business of the advertisement of
+the League, and the copying of the 'Encyclopaedia,' must be to get
+this not over-bright pawnbroker out of the way for a number of
+hours every day. It was a curious way of managing it, but,
+really, it would be difficult to suggest a better. The method was
+no doubt suggested to Clay's ingenious mind by the colour of his
+accomplice's hair. The 4 pounds a week was a lure which must draw
+him, and what was it to them, who were playing for thousands?
+They put in the advertisement, one rogue has the temporary
+office, the other rogue incites the man to apply for it, and
+together they manage to secure his absence every morning in the
+week. From the time that I heard of the assistant having come for
+half wages, it was obvious to me that he had some strong motive
+for securing the situation."
+
+"But how could you guess what the motive was?"
+
+"Had there been women in the house, I should have suspected a
+mere vulgar intrigue. That, however, was out of the question. The
+man's business was a small one, and there was nothing in his
+house which could account for such elaborate preparations, and
+such an expenditure as they were at. It must, then, be something
+out of the house. What could it be? I thought of the assistant's
+fondness for photography, and his trick of vanishing into the
+cellar. The cellar! There was the end of this tangled clue. Then
+I made inquiries as to this mysterious assistant and found that I
+had to deal with one of the coolest and most daring criminals in
+London. He was doing something in the cellar--something which
+took many hours a day for months on end. What could it be, once
+more? I could think of nothing save that he was running a tunnel
+to some other building.
+
+"So far I had got when we went to visit the scene of action. I
+surprised you by beating upon the pavement with my stick. I was
+ascertaining whether the cellar stretched out in front or behind.
+It was not in front. Then I rang the bell, and, as I hoped, the
+assistant answered it. We have had some skirmishes, but we had
+never set eyes upon each other before. I hardly looked at his
+face. His knees were what I wished to see. You must yourself have
+remarked how worn, wrinkled, and stained they were. They spoke of
+those hours of burrowing. The only remaining point was what they
+were burrowing for. I walked round the corner, saw the City and
+Suburban Bank abutted on our friend's premises, and felt that I
+had solved my problem. When you drove home after the concert I
+called upon Scotland Yard and upon the chairman of the bank
+directors, with the result that you have seen."
+
+"And how could you tell that they would make their attempt
+to-night?" I asked.
+
+"Well, when they closed their League offices that was a sign that
+they cared no longer about Mr. Jabez Wilson's presence--in other
+words, that they had completed their tunnel. But it was essential
+that they should use it soon, as it might be discovered, or the
+bullion might be removed. Saturday would suit them better than
+any other day, as it would give them two days for their escape.
+For all these reasons I expected them to come to-night."
+
+"You reasoned it out beautifully," I exclaimed in unfeigned
+admiration. "It is so long a chain, and yet every link rings
+true."
+
+"It saved me from ennui," he answered, yawning. "Alas! I already
+feel it closing in upon me. My life is spent in one long effort
+to escape from the commonplaces of existence. These little
+problems help me to do so."
+
+"And you are a benefactor of the race," said I.
+
+He shrugged his shoulders. "Well, perhaps, after all, it is of
+some little use," he remarked. "'L'homme c'est rien--l'oeuvre
+c'est tout,' as Gustave Flaubert wrote to George Sand."
+
+
+
+ADVENTURE III. A CASE OF IDENTITY
+
+"My dear fellow," said Sherlock Holmes as we sat on either side
+of the fire in his lodgings at Baker Street, "life is infinitely
+stranger than anything which the mind of man could invent. We
+would not dare to conceive the things which are really mere
+commonplaces of existence. If we could fly out of that window
+hand in hand, hover over this great city, gently remove the
+roofs, and peep in at the queer things which are going on, the
+strange coincidences, the plannings, the cross-purposes, the
+wonderful chains of events, working through generations, and
+leading to the most outré results, it would make all fiction with
+its conventionalities and foreseen conclusions most stale and
+unprofitable."
+
+"And yet I am not convinced of it," I answered. "The cases which
+come to light in the papers are, as a rule, bald enough, and
+vulgar enough. We have in our police reports realism pushed to
+its extreme limits, and yet the result is, it must be confessed,
+neither fascinating nor artistic."
+
+"A certain selection and discretion must be used in producing a
+realistic effect," remarked Holmes. "This is wanting in the
+police report, where more stress is laid, perhaps, upon the
+platitudes of the magistrate than upon the details, which to an
+observer contain the vital essence of the whole matter. Depend
+upon it, there is nothing so unnatural as the commonplace."
+
+I smiled and shook my head. "I can quite understand your thinking
+so," I said. "Of course, in your position of unofficial adviser
+and helper to everybody who is absolutely puzzled, throughout
+three continents, you are brought in contact with all that is
+strange and bizarre. But here"--I picked up the morning paper
+from the ground--"let us put it to a practical test. Here is the
+first heading upon which I come. 'A husband's cruelty to his
+wife.' There is half a column of print, but I know without
+reading it that it is all perfectly familiar to me. There is, of
+course, the other woman, the drink, the push, the blow, the
+bruise, the sympathetic sister or landlady. The crudest of
+writers could invent nothing more crude."
+
+"Indeed, your example is an unfortunate one for your argument,"
+said Holmes, taking the paper and glancing his eye down it. "This
+is the Dundas separation case, and, as it happens, I was engaged
+in clearing up some small points in connection with it. The
+husband was a teetotaler, there was no other woman, and the
+conduct complained of was that he had drifted into the habit of
+winding up every meal by taking out his false teeth and hurling
+them at his wife, which, you will allow, is not an action likely
+to occur to the imagination of the average story-teller. Take a
+pinch of snuff, Doctor, and acknowledge that I have scored over
+you in your example."
+
+He held out his snuffbox of old gold, with a great amethyst in
+the centre of the lid. Its splendour was in such contrast to his
+homely ways and simple life that I could not help commenting upon
+it.
+
+"Ah," said he, "I forgot that I had not seen you for some weeks.
+It is a little souvenir from the King of Bohemia in return for my
+assistance in the case of the Irene Adler papers."
+
+"And the ring?" I asked, glancing at a remarkable brilliant which
+sparkled upon his finger.
+
+"It was from the reigning family of Holland, though the matter in
+which I served them was of such delicacy that I cannot confide it
+even to you, who have been good enough to chronicle one or two of
+my little problems."
+
+"And have you any on hand just now?" I asked with interest.
+
+"Some ten or twelve, but none which present any feature of
+interest. They are important, you understand, without being
+interesting. Indeed, I have found that it is usually in
+unimportant matters that there is a field for the observation,
+and for the quick analysis of cause and effect which gives the
+charm to an investigation. The larger crimes are apt to be the
+simpler, for the bigger the crime the more obvious, as a rule, is
+the motive. In these cases, save for one rather intricate matter
+which has been referred to me from Marseilles, there is nothing
+which presents any features of interest. It is possible, however,
+that I may have something better before very many minutes are
+over, for this is one of my clients, or I am much mistaken."
+
+He had risen from his chair and was standing between the parted
+blinds gazing down into the dull neutral-tinted London street.
+Looking over his shoulder, I saw that on the pavement opposite
+there stood a large woman with a heavy fur boa round her neck,
+and a large curling red feather in a broad-brimmed hat which was
+tilted in a coquettish Duchess of Devonshire fashion over her
+ear. From under this great panoply she peeped up in a nervous,
+hesitating fashion at our windows, while her body oscillated
+backward and forward, and her fingers fidgeted with her glove
+buttons. Suddenly, with a plunge, as of the swimmer who leaves
+the bank, she hurried across the road, and we heard the sharp
+clang of the bell.
+
+"I have seen those symptoms before," said Holmes, throwing his
+cigarette into the fire. "Oscillation upon the pavement always
+means an affaire de coeur. She would like advice, but is not sure
+that the matter is not too delicate for communication. And yet
+even here we may discriminate. When a woman has been seriously
+wronged by a man she no longer oscillates, and the usual symptom
+is a broken bell wire. Here we may take it that there is a love
+matter, but that the maiden is not so much angry as perplexed, or
+grieved. But here she comes in person to resolve our doubts."
+
+As he spoke there was a tap at the door, and the boy in buttons
+entered to announce Miss Mary Sutherland, while the lady herself
+loomed behind his small black figure like a full-sailed
+merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed
+her with the easy courtesy for which he was remarkable, and,
+having closed the door and bowed her into an armchair, he looked
+her over in the minute and yet abstracted fashion which was
+peculiar to him.
+
+"Do you not find," he said, "that with your short sight it is a
+little trying to do so much typewriting?"
+
+"I did at first," she answered, "but now I know where the letters
+are without looking." Then, suddenly realising the full purport
+of his words, she gave a violent start and looked up, with fear
+and astonishment upon her broad, good-humoured face. "You've
+heard about me, Mr. Holmes," she cried, "else how could you know
+all that?"
+
+"Never mind," said Holmes, laughing; "it is my business to know
+things. Perhaps I have trained myself to see what others
+overlook. If not, why should you come to consult me?"
+
+"I came to you, sir, because I heard of you from Mrs. Etherege,
+whose husband you found so easy when the police and everyone had
+given him up for dead. Oh, Mr. Holmes, I wish you would do as
+much for me. I'm not rich, but still I have a hundred a year in
+my own right, besides the little that I make by the machine, and
+I would give it all to know what has become of Mr. Hosmer Angel."
+
+"Why did you come away to consult me in such a hurry?" asked
+Sherlock Holmes, with his finger-tips together and his eyes to
+the ceiling.
+
+Again a startled look came over the somewhat vacuous face of Miss
+Mary Sutherland. "Yes, I did bang out of the house," she said,
+"for it made me angry to see the easy way in which Mr.
+Windibank--that is, my father--took it all. He would not go to
+the police, and he would not go to you, and so at last, as he
+would do nothing and kept on saying that there was no harm done,
+it made me mad, and I just on with my things and came right away
+to you."
+
+"Your father," said Holmes, "your stepfather, surely, since the
+name is different."
+
+"Yes, my stepfather. I call him father, though it sounds funny,
+too, for he is only five years and two months older than myself."
+
+"And your mother is alive?"
+
+"Oh, yes, mother is alive and well. I wasn't best pleased, Mr.
+Holmes, when she married again so soon after father's death, and
+a man who was nearly fifteen years younger than herself. Father
+was a plumber in the Tottenham Court Road, and he left a tidy
+business behind him, which mother carried on with Mr. Hardy, the
+foreman; but when Mr. Windibank came he made her sell the
+business, for he was very superior, being a traveller in wines.
+They got 4700 pounds for the goodwill and interest, which wasn't
+near as much as father could have got if he had been alive."
+
+I had expected to see Sherlock Holmes impatient under this
+rambling and inconsequential narrative, but, on the contrary, he
+had listened with the greatest concentration of attention.
+
+"Your own little income," he asked, "does it come out of the
+business?"
+
+"Oh, no, sir. It is quite separate and was left me by my uncle
+Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per
+cent. Two thousand five hundred pounds was the amount, but I can
+only touch the interest."
+
+"You interest me extremely," said Holmes. "And since you draw so
+large a sum as a hundred a year, with what you earn into the
+bargain, you no doubt travel a little and indulge yourself in
+every way. I believe that a single lady can get on very nicely
+upon an income of about 60 pounds."
+
+"I could do with much less than that, Mr. Holmes, but you
+understand that as long as I live at home I don't wish to be a
+burden to them, and so they have the use of the money just while
+I am staying with them. Of course, that is only just for the
+time. Mr. Windibank draws my interest every quarter and pays it
+over to mother, and I find that I can do pretty well with what I
+earn at typewriting. It brings me twopence a sheet, and I can
+often do from fifteen to twenty sheets in a day."
+
+"You have made your position very clear to me," said Holmes.
+"This is my friend, Dr. Watson, before whom you can speak as
+freely as before myself. Kindly tell us now all about your
+connection with Mr. Hosmer Angel."
+
+A flush stole over Miss Sutherland's face, and she picked
+nervously at the fringe of her jacket. "I met him first at the
+gasfitters' ball," she said. "They used to send father tickets
+when he was alive, and then afterwards they remembered us, and
+sent them to mother. Mr. Windibank did not wish us to go. He
+never did wish us to go anywhere. He would get quite mad if I
+wanted so much as to join a Sunday-school treat. But this time I
+was set on going, and I would go; for what right had he to
+prevent? He said the folk were not fit for us to know, when all
+father's friends were to be there. And he said that I had nothing
+fit to wear, when I had my purple plush that I had never so much
+as taken out of the drawer. At last, when nothing else would do,
+he went off to France upon the business of the firm, but we went,
+mother and I, with Mr. Hardy, who used to be our foreman, and it
+was there I met Mr. Hosmer Angel."
+
+"I suppose," said Holmes, "that when Mr. Windibank came back from
+France he was very annoyed at your having gone to the ball."
+
+"Oh, well, he was very good about it. He laughed, I remember, and
+shrugged his shoulders, and said there was no use denying
+anything to a woman, for she would have her way."
+
+"I see. Then at the gasfitters' ball you met, as I understand, a
+gentleman called Mr. Hosmer Angel."
+
+"Yes, sir. I met him that night, and he called next day to ask if
+we had got home all safe, and after that we met him--that is to
+say, Mr. Holmes, I met him twice for walks, but after that father
+came back again, and Mr. Hosmer Angel could not come to the house
+any more."
+
+"No?"
+
+"Well, you know father didn't like anything of the sort. He
+wouldn't have any visitors if he could help it, and he used to
+say that a woman should be happy in her own family circle. But
+then, as I used to say to mother, a woman wants her own circle to
+begin with, and I had not got mine yet."
+
+"But how about Mr. Hosmer Angel? Did he make no attempt to see
+you?"
+
+"Well, father was going off to France again in a week, and Hosmer
+wrote and said that it would be safer and better not to see each
+other until he had gone. We could write in the meantime, and he
+used to write every day. I took the letters in in the morning, so
+there was no need for father to know."
+
+"Were you engaged to the gentleman at this time?"
+
+"Oh, yes, Mr. Holmes. We were engaged after the first walk that
+we took. Hosmer--Mr. Angel--was a cashier in an office in
+Leadenhall Street--and--"
+
+"What office?"
+
+"That's the worst of it, Mr. Holmes, I don't know."
+
+"Where did he live, then?"
+
+"He slept on the premises."
+
+"And you don't know his address?"
+
+"No--except that it was Leadenhall Street."
+
+"Where did you address your letters, then?"
+
+"To the Leadenhall Street Post Office, to be left till called
+for. He said that if they were sent to the office he would be
+chaffed by all the other clerks about having letters from a lady,
+so I offered to typewrite them, like he did his, but he wouldn't
+have that, for he said that when I wrote them they seemed to come
+from me, but when they were typewritten he always felt that the
+machine had come between us. That will just show you how fond he
+was of me, Mr. Holmes, and the little things that he would think
+of."
+
+"It was most suggestive," said Holmes. "It has long been an axiom
+of mine that the little things are infinitely the most important.
+Can you remember any other little things about Mr. Hosmer Angel?"
+
+"He was a very shy man, Mr. Holmes. He would rather walk with me
+in the evening than in the daylight, for he said that he hated to
+be conspicuous. Very retiring and gentlemanly he was. Even his
+voice was gentle. He'd had the quinsy and swollen glands when he
+was young, he told me, and it had left him with a weak throat,
+and a hesitating, whispering fashion of speech. He was always
+well dressed, very neat and plain, but his eyes were weak, just
+as mine are, and he wore tinted glasses against the glare."
+
+"Well, and what happened when Mr. Windibank, your stepfather,
+returned to France?"
+
+"Mr. Hosmer Angel came to the house again and proposed that we
+should marry before father came back. He was in dreadful earnest
+and made me swear, with my hands on the Testament, that whatever
+happened I would always be true to him. Mother said he was quite
+right to make me swear, and that it was a sign of his passion.
+Mother was all in his favour from the first and was even fonder
+of him than I was. Then, when they talked of marrying within the
+week, I began to ask about father; but they both said never to
+mind about father, but just to tell him afterwards, and mother
+said she would make it all right with him. I didn't quite like
+that, Mr. Holmes. It seemed funny that I should ask his leave, as
+he was only a few years older than me; but I didn't want to do
+anything on the sly, so I wrote to father at Bordeaux, where the
+company has its French offices, but the letter came back to me on
+the very morning of the wedding."
+
+"It missed him, then?"
+
+"Yes, sir; for he had started to England just before it arrived."
+
+"Ha! that was unfortunate. Your wedding was arranged, then, for
+the Friday. Was it to be in church?"
+
+"Yes, sir, but very quietly. It was to be at St. Saviour's, near
+King's Cross, and we were to have breakfast afterwards at the St.
+Pancras Hotel. Hosmer came for us in a hansom, but as there were
+two of us he put us both into it and stepped himself into a
+four-wheeler, which happened to be the only other cab in the
+street. We got to the church first, and when the four-wheeler
+drove up we waited for him to step out, but he never did, and
+when the cabman got down from the box and looked there was no one
+there! The cabman said that he could not imagine what had become
+of him, for he had seen him get in with his own eyes. That was
+last Friday, Mr. Holmes, and I have never seen or heard anything
+since then to throw any light upon what became of him."
+
+"It seems to me that you have been very shamefully treated," said
+Holmes.
+
+"Oh, no, sir! He was too good and kind to leave me so. Why, all
+the morning he was saying to me that, whatever happened, I was to
+be true; and that even if something quite unforeseen occurred to
+separate us, I was always to remember that I was pledged to him,
+and that he would claim his pledge sooner or later. It seemed
+strange talk for a wedding-morning, but what has happened since
+gives a meaning to it."
+
+"Most certainly it does. Your own opinion is, then, that some
+unforeseen catastrophe has occurred to him?"
+
+"Yes, sir. I believe that he foresaw some danger, or else he
+would not have talked so. And then I think that what he foresaw
+happened."
+
+"But you have no notion as to what it could have been?"
+
+"None."
+
+"One more question. How did your mother take the matter?"
+
+"She was angry, and said that I was never to speak of the matter
+again."
+
+"And your father? Did you tell him?"
+
+"Yes; and he seemed to think, with me, that something had
+happened, and that I should hear of Hosmer again. As he said,
+what interest could anyone have in bringing me to the doors of
+the church, and then leaving me? Now, if he had borrowed my
+money, or if he had married me and got my money settled on him,
+there might be some reason, but Hosmer was very independent about
+money and never would look at a shilling of mine. And yet, what
+could have happened? And why could he not write? Oh, it drives me
+half-mad to think of it, and I can't sleep a wink at night." She
+pulled a little handkerchief out of her muff and began to sob
+heavily into it.
+
+"I shall glance into the case for you," said Holmes, rising, "and
+I have no doubt that we shall reach some definite result. Let the
+weight of the matter rest upon me now, and do not let your mind
+dwell upon it further. Above all, try to let Mr. Hosmer Angel
+vanish from your memory, as he has done from your life."
+
+"Then you don't think I'll see him again?"
+
+"I fear not."
+
+"Then what has happened to him?"
+
+"You will leave that question in my hands. I should like an
+accurate description of him and any letters of his which you can
+spare."
+
+"I advertised for him in last Saturday's Chronicle," said she.
+"Here is the slip and here are four letters from him."
+
+"Thank you. And your address?"
+
+"No. 31 Lyon Place, Camberwell."
+
+"Mr. Angel's address you never had, I understand. Where is your
+father's place of business?"
+
+"He travels for Westhouse & Marbank, the great claret importers
+of Fenchurch Street."
+
+"Thank you. You have made your statement very clearly. You will
+leave the papers here, and remember the advice which I have given
+you. Let the whole incident be a sealed book, and do not allow it
+to affect your life."
+
+"You are very kind, Mr. Holmes, but I cannot do that. I shall be
+true to Hosmer. He shall find me ready when he comes back."
+
+For all the preposterous hat and the vacuous face, there was
+something noble in the simple faith of our visitor which
+compelled our respect. She laid her little bundle of papers upon
+the table and went her way, with a promise to come again whenever
+she might be summoned.
+
+Sherlock Holmes sat silent for a few minutes with his fingertips
+still pressed together, his legs stretched out in front of him,
+and his gaze directed upward to the ceiling. Then he took down
+from the rack the old and oily clay pipe, which was to him as a
+counsellor, and, having lit it, he leaned back in his chair, with
+the thick blue cloud-wreaths spinning up from him, and a look of
+infinite languor in his face.
+
+"Quite an interesting study, that maiden," he observed. "I found
+her more interesting than her little problem, which, by the way,
+is rather a trite one. You will find parallel cases, if you
+consult my index, in Andover in '77, and there was something of
+the sort at The Hague last year. Old as is the idea, however,
+there were one or two details which were new to me. But the
+maiden herself was most instructive."
+
+"You appeared to read a good deal upon her which was quite
+invisible to me," I remarked.
+
+"Not invisible but unnoticed, Watson. You did not know where to
+look, and so you missed all that was important. I can never bring
+you to realise the importance of sleeves, the suggestiveness of
+thumb-nails, or the great issues that may hang from a boot-lace.
+Now, what did you gather from that woman's appearance? Describe
+it."
+
+"Well, she had a slate-coloured, broad-brimmed straw hat, with a
+feather of a brickish red. Her jacket was black, with black beads
+sewn upon it, and a fringe of little black jet ornaments. Her
+dress was brown, rather darker than coffee colour, with a little
+purple plush at the neck and sleeves. Her gloves were greyish and
+were worn through at the right forefinger. Her boots I didn't
+observe. She had small round, hanging gold earrings, and a
+general air of being fairly well-to-do in a vulgar, comfortable,
+easy-going way."
+
+Sherlock Holmes clapped his hands softly together and chuckled.
+
+"'Pon my word, Watson, you are coming along wonderfully. You have
+really done very well indeed. It is true that you have missed
+everything of importance, but you have hit upon the method, and
+you have a quick eye for colour. Never trust to general
+impressions, my boy, but concentrate yourself upon details. My
+first glance is always at a woman's sleeve. In a man it is
+perhaps better first to take the knee of the trouser. As you
+observe, this woman had plush upon her sleeves, which is a most
+useful material for showing traces. The double line a little
+above the wrist, where the typewritist presses against the table,
+was beautifully defined. The sewing-machine, of the hand type,
+leaves a similar mark, but only on the left arm, and on the side
+of it farthest from the thumb, instead of being right across the
+broadest part, as this was. I then glanced at her face, and,
+observing the dint of a pince-nez at either side of her nose, I
+ventured a remark upon short sight and typewriting, which seemed
+to surprise her."
+
+"It surprised me."
+
+"But, surely, it was obvious. I was then much surprised and
+interested on glancing down to observe that, though the boots
+which she was wearing were not unlike each other, they were
+really odd ones; the one having a slightly decorated toe-cap, and
+the other a plain one. One was buttoned only in the two lower
+buttons out of five, and the other at the first, third, and
+fifth. Now, when you see that a young lady, otherwise neatly
+dressed, has come away from home with odd boots, half-buttoned,
+it is no great deduction to say that she came away in a hurry."
+
+"And what else?" I asked, keenly interested, as I always was, by
+my friend's incisive reasoning.
+
+"I noted, in passing, that she had written a note before leaving
+home but after being fully dressed. You observed that her right
+glove was torn at the forefinger, but you did not apparently see
+that both glove and finger were stained with violet ink. She had
+written in a hurry and dipped her pen too deep. It must have been
+this morning, or the mark would not remain clear upon the finger.
+All this is amusing, though rather elementary, but I must go back
+to business, Watson. Would you mind reading me the advertised
+description of Mr. Hosmer Angel?"
+
+I held the little printed slip to the light.
+
+"Missing," it said, "on the morning of the fourteenth, a gentleman
+named Hosmer Angel. About five ft. seven in. in height;
+strongly built, sallow complexion, black hair, a little bald in
+the centre, bushy, black side-whiskers and moustache; tinted
+glasses, slight infirmity of speech. Was dressed, when last seen,
+in black frock-coat faced with silk, black waistcoat, gold Albert
+chain, and grey Harris tweed trousers, with brown gaiters over
+elastic-sided boots. Known to have been employed in an office in
+Leadenhall Street. Anybody bringing--"
+
+"That will do," said Holmes. "As to the letters," he continued,
+glancing over them, "they are very commonplace. Absolutely no
+clue in them to Mr. Angel, save that he quotes Balzac once. There
+is one remarkable point, however, which will no doubt strike
+you."
+
+"They are typewritten," I remarked.
+
+"Not only that, but the signature is typewritten. Look at the
+neat little 'Hosmer Angel' at the bottom. There is a date, you
+see, but no superscription except Leadenhall Street, which is
+rather vague. The point about the signature is very suggestive--in
+fact, we may call it conclusive."
+
+"Of what?"
+
+"My dear fellow, is it possible you do not see how strongly it
+bears upon the case?"
+
+"I cannot say that I do unless it were that he wished to be able
+to deny his signature if an action for breach of promise were
+instituted."
+
+"No, that was not the point. However, I shall write two letters,
+which should settle the matter. One is to a firm in the City, the
+other is to the young lady's stepfather, Mr. Windibank, asking
+him whether he could meet us here at six o'clock tomorrow
+evening. It is just as well that we should do business with the
+male relatives. And now, Doctor, we can do nothing until the
+answers to those letters come, so we may put our little problem
+upon the shelf for the interim."
+
+I had had so many reasons to believe in my friend's subtle powers
+of reasoning and extraordinary energy in action that I felt that
+he must have some solid grounds for the assured and easy
+demeanour with which he treated the singular mystery which he had
+been called upon to fathom. Once only had I known him to fail, in
+the case of the King of Bohemia and of the Irene Adler
+photograph; but when I looked back to the weird business of the
+Sign of Four, and the extraordinary circumstances connected with
+the Study in Scarlet, I felt that it would be a strange tangle
+indeed which he could not unravel.
+
+I left him then, still puffing at his black clay pipe, with the
+conviction that when I came again on the next evening I would
+find that he held in his hands all the clues which would lead up
+to the identity of the disappearing bridegroom of Miss Mary
+Sutherland.
+
+A professional case of great gravity was engaging my own
+attention at the time, and the whole of next day I was busy at
+the bedside of the sufferer. It was not until close upon six
+o'clock that I found myself free and was able to spring into a
+hansom and drive to Baker Street, half afraid that I might be too
+late to assist at the dénouement of the little mystery. I found
+Sherlock Holmes alone, however, half asleep, with his long, thin
+form curled up in the recesses of his armchair. A formidable
+array of bottles and test-tubes, with the pungent cleanly smell
+of hydrochloric acid, told me that he had spent his day in the
+chemical work which was so dear to him.
+
+"Well, have you solved it?" I asked as I entered.
+
+"Yes. It was the bisulphate of baryta."
+
+"No, no, the mystery!" I cried.
+
+"Oh, that! I thought of the salt that I have been working upon.
+There was never any mystery in the matter, though, as I said
+yesterday, some of the details are of interest. The only drawback
+is that there is no law, I fear, that can touch the scoundrel."
+
+"Who was he, then, and what was his object in deserting Miss
+Sutherland?"
+
+The question was hardly out of my mouth, and Holmes had not yet
+opened his lips to reply, when we heard a heavy footfall in the
+passage and a tap at the door.
+
+"This is the girl's stepfather, Mr. James Windibank," said
+Holmes. "He has written to me to say that he would be here at
+six. Come in!"
+
+The man who entered was a sturdy, middle-sized fellow, some
+thirty years of age, clean-shaven, and sallow-skinned, with a
+bland, insinuating manner, and a pair of wonderfully sharp and
+penetrating grey eyes. He shot a questioning glance at each of
+us, placed his shiny top-hat upon the sideboard, and with a
+slight bow sidled down into the nearest chair.
+
+"Good-evening, Mr. James Windibank," said Holmes. "I think that
+this typewritten letter is from you, in which you made an
+appointment with me for six o'clock?"
+
+"Yes, sir. I am afraid that I am a little late, but I am not
+quite my own master, you know. I am sorry that Miss Sutherland
+has troubled you about this little matter, for I think it is far
+better not to wash linen of the sort in public. It was quite
+against my wishes that she came, but she is a very excitable,
+impulsive girl, as you may have noticed, and she is not easily
+controlled when she has made up her mind on a point. Of course, I
+did not mind you so much, as you are not connected with the
+official police, but it is not pleasant to have a family
+misfortune like this noised abroad. Besides, it is a useless
+expense, for how could you possibly find this Hosmer Angel?"
+
+"On the contrary," said Holmes quietly; "I have every reason to
+believe that I will succeed in discovering Mr. Hosmer Angel."
+
+Mr. Windibank gave a violent start and dropped his gloves. "I am
+delighted to hear it," he said.
+
+"It is a curious thing," remarked Holmes, "that a typewriter has
+really quite as much individuality as a man's handwriting. Unless
+they are quite new, no two of them write exactly alike. Some
+letters get more worn than others, and some wear only on one
+side. Now, you remark in this note of yours, Mr. Windibank, that
+in every case there is some little slurring over of the 'e,' and
+a slight defect in the tail of the 'r.' There are fourteen other
+characteristics, but those are the more obvious."
+
+"We do all our correspondence with this machine at the office,
+and no doubt it is a little worn," our visitor answered, glancing
+keenly at Holmes with his bright little eyes.
+
+"And now I will show you what is really a very interesting study,
+Mr. Windibank," Holmes continued. "I think of writing another
+little monograph some of these days on the typewriter and its
+relation to crime. It is a subject to which I have devoted some
+little attention. I have here four letters which purport to come
+from the missing man. They are all typewritten. In each case, not
+only are the 'e's' slurred and the 'r's' tailless, but you will
+observe, if you care to use my magnifying lens, that the fourteen
+other characteristics to which I have alluded are there as well."
+
+Mr. Windibank sprang out of his chair and picked up his hat. "I
+cannot waste time over this sort of fantastic talk, Mr. Holmes,"
+he said. "If you can catch the man, catch him, and let me know
+when you have done it."
+
+"Certainly," said Holmes, stepping over and turning the key in
+the door. "I let you know, then, that I have caught him!"
+
+"What! where?" shouted Mr. Windibank, turning white to his lips
+and glancing about him like a rat in a trap.
+
+"Oh, it won't do--really it won't," said Holmes suavely. "There
+is no possible getting out of it, Mr. Windibank. It is quite too
+transparent, and it was a very bad compliment when you said that
+it was impossible for me to solve so simple a question. That's
+right! Sit down and let us talk it over."
+
+Our visitor collapsed into a chair, with a ghastly face and a
+glitter of moisture on his brow. "It--it's not actionable," he
+stammered.
+
+"I am very much afraid that it is not. But between ourselves,
+Windibank, it was as cruel and selfish and heartless a trick in a
+petty way as ever came before me. Now, let me just run over the
+course of events, and you will contradict me if I go wrong."
+
+The man sat huddled up in his chair, with his head sunk upon his
+breast, like one who is utterly crushed. Holmes stuck his feet up
+on the corner of the mantelpiece and, leaning back with his hands
+in his pockets, began talking, rather to himself, as it seemed,
+than to us.
+
+"The man married a woman very much older than himself for her
+money," said he, "and he enjoyed the use of the money of the
+daughter as long as she lived with them. It was a considerable
+sum, for people in their position, and the loss of it would have
+made a serious difference. It was worth an effort to preserve it.
+The daughter was of a good, amiable disposition, but affectionate
+and warm-hearted in her ways, so that it was evident that with
+her fair personal advantages, and her little income, she would
+not be allowed to remain single long. Now her marriage would
+mean, of course, the loss of a hundred a year, so what does her
+stepfather do to prevent it? He takes the obvious course of
+keeping her at home and forbidding her to seek the company of
+people of her own age. But soon he found that that would not
+answer forever. She became restive, insisted upon her rights, and
+finally announced her positive intention of going to a certain
+ball. What does her clever stepfather do then? He conceives an
+idea more creditable to his head than to his heart. With the
+connivance and assistance of his wife he disguised himself,
+covered those keen eyes with tinted glasses, masked the face with
+a moustache and a pair of bushy whiskers, sunk that clear voice
+into an insinuating whisper, and doubly secure on account of the
+girl's short sight, he appears as Mr. Hosmer Angel, and keeps off
+other lovers by making love himself."
+
+"It was only a joke at first," groaned our visitor. "We never
+thought that she would have been so carried away."
+
+"Very likely not. However that may be, the young lady was very
+decidedly carried away, and, having quite made up her mind that
+her stepfather was in France, the suspicion of treachery never
+for an instant entered her mind. She was flattered by the
+gentleman's attentions, and the effect was increased by the
+loudly expressed admiration of her mother. Then Mr. Angel began
+to call, for it was obvious that the matter should be pushed as
+far as it would go if a real effect were to be produced. There
+were meetings, and an engagement, which would finally secure the
+girl's affections from turning towards anyone else. But the
+deception could not be kept up forever. These pretended journeys
+to France were rather cumbrous. The thing to do was clearly to
+bring the business to an end in such a dramatic manner that it
+would leave a permanent impression upon the young lady's mind and
+prevent her from looking upon any other suitor for some time to
+come. Hence those vows of fidelity exacted upon a Testament, and
+hence also the allusions to a possibility of something happening
+on the very morning of the wedding. James Windibank wished Miss
+Sutherland to be so bound to Hosmer Angel, and so uncertain as to
+his fate, that for ten years to come, at any rate, she would not
+listen to another man. As far as the church door he brought her,
+and then, as he could go no farther, he conveniently vanished
+away by the old trick of stepping in at one door of a
+four-wheeler and out at the other. I think that was the chain of
+events, Mr. Windibank!"
+
+Our visitor had recovered something of his assurance while Holmes
+had been talking, and he rose from his chair now with a cold
+sneer upon his pale face.
+
+"It may be so, or it may not, Mr. Holmes," said he, "but if you
+are so very sharp you ought to be sharp enough to know that it is
+you who are breaking the law now, and not me. I have done nothing
+actionable from the first, but as long as you keep that door
+locked you lay yourself open to an action for assault and illegal
+constraint."
+
+"The law cannot, as you say, touch you," said Holmes, unlocking
+and throwing open the door, "yet there never was a man who
+deserved punishment more. If the young lady has a brother or a
+friend, he ought to lay a whip across your shoulders. By Jove!"
+he continued, flushing up at the sight of the bitter sneer upon
+the man's face, "it is not part of my duties to my client, but
+here's a hunting crop handy, and I think I shall just treat
+myself to--" He took two swift steps to the whip, but before he
+could grasp it there was a wild clatter of steps upon the stairs,
+the heavy hall door banged, and from the window we could see Mr.
+James Windibank running at the top of his speed down the road.
+
+"There's a cold-blooded scoundrel!" said Holmes, laughing, as he
+threw himself down into his chair once more. "That fellow will
+rise from crime to crime until he does something very bad, and
+ends on a gallows. The case has, in some respects, been not
+entirely devoid of interest."
+
+"I cannot now entirely see all the steps of your reasoning," I
+remarked.
+
+"Well, of course it was obvious from the first that this Mr.
+Hosmer Angel must have some strong object for his curious
+conduct, and it was equally clear that the only man who really
+profited by the incident, as far as we could see, was the
+stepfather. Then the fact that the two men were never together,
+but that the one always appeared when the other was away, was
+suggestive. So were the tinted spectacles and the curious voice,
+which both hinted at a disguise, as did the bushy whiskers. My
+suspicions were all confirmed by his peculiar action in
+typewriting his signature, which, of course, inferred that his
+handwriting was so familiar to her that she would recognise even
+the smallest sample of it. You see all these isolated facts,
+together with many minor ones, all pointed in the same
+direction."
+
+"And how did you verify them?"
+
+"Having once spotted my man, it was easy to get corroboration. I
+knew the firm for which this man worked. Having taken the printed
+description. I eliminated everything from it which could be the
+result of a disguise--the whiskers, the glasses, the voice, and I
+sent it to the firm, with a request that they would inform me
+whether it answered to the description of any of their
+travellers. I had already noticed the peculiarities of the
+typewriter, and I wrote to the man himself at his business
+address asking him if he would come here. As I expected, his
+reply was typewritten and revealed the same trivial but
+characteristic defects. The same post brought me a letter from
+Westhouse & Marbank, of Fenchurch Street, to say that the
+description tallied in every respect with that of their employé,
+James Windibank. Voilà tout!"
+
+"And Miss Sutherland?"
+
+"If I tell her she will not believe me. You may remember the old
+Persian saying, 'There is danger for him who taketh the tiger
+cub, and danger also for whoso snatches a delusion from a woman.'
+There is as much sense in Hafiz as in Horace, and as much
+knowledge of the world."
+
+
+
+ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY
+
+We were seated at breakfast one morning, my wife and I, when the
+maid brought in a telegram. It was from Sherlock Holmes and ran
+in this way:
+
+"Have you a couple of days to spare? Have just been wired for from
+the west of England in connection with Boscombe Valley tragedy.
+Shall be glad if you will come with me. Air and scenery perfect.
+Leave Paddington by the 11:15."
+
+"What do you say, dear?" said my wife, looking across at me.
+"Will you go?"
+
+"I really don't know what to say. I have a fairly long list at
+present."
+
+"Oh, Anstruther would do your work for you. You have been looking
+a little pale lately. I think that the change would do you good,
+and you are always so interested in Mr. Sherlock Holmes' cases."
+
+"I should be ungrateful if I were not, seeing what I gained
+through one of them," I answered. "But if I am to go, I must pack
+at once, for I have only half an hour."
+
+My experience of camp life in Afghanistan had at least had the
+effect of making me a prompt and ready traveller. My wants were
+few and simple, so that in less than the time stated I was in a
+cab with my valise, rattling away to Paddington Station. Sherlock
+Holmes was pacing up and down the platform, his tall, gaunt
+figure made even gaunter and taller by his long grey
+travelling-cloak and close-fitting cloth cap.
+
+"It is really very good of you to come, Watson," said he. "It
+makes a considerable difference to me, having someone with me on
+whom I can thoroughly rely. Local aid is always either worthless
+or else biassed. If you will keep the two corner seats I shall
+get the tickets."
+
+We had the carriage to ourselves save for an immense litter of
+papers which Holmes had brought with him. Among these he rummaged
+and read, with intervals of note-taking and of meditation, until
+we were past Reading. Then he suddenly rolled them all into a
+gigantic ball and tossed them up onto the rack.
+
+"Have you heard anything of the case?" he asked.
+
+"Not a word. I have not seen a paper for some days."
+
+"The London press has not had very full accounts. I have just
+been looking through all the recent papers in order to master the
+particulars. It seems, from what I gather, to be one of those
+simple cases which are so extremely difficult."
+
+"That sounds a little paradoxical."
+
+"But it is profoundly true. Singularity is almost invariably a
+clue. The more featureless and commonplace a crime is, the more
+difficult it is to bring it home. In this case, however, they
+have established a very serious case against the son of the
+murdered man."
+
+"It is a murder, then?"
+
+"Well, it is conjectured to be so. I shall take nothing for
+granted until I have the opportunity of looking personally into
+it. I will explain the state of things to you, as far as I have
+been able to understand it, in a very few words.
+
+"Boscombe Valley is a country district not very far from Ross, in
+Herefordshire. The largest landed proprietor in that part is a
+Mr. John Turner, who made his money in Australia and returned
+some years ago to the old country. One of the farms which he
+held, that of Hatherley, was let to Mr. Charles McCarthy, who was
+also an ex-Australian. The men had known each other in the
+colonies, so that it was not unnatural that when they came to
+settle down they should do so as near each other as possible.
+Turner was apparently the richer man, so McCarthy became his
+tenant but still remained, it seems, upon terms of perfect
+equality, as they were frequently together. McCarthy had one son,
+a lad of eighteen, and Turner had an only daughter of the same
+age, but neither of them had wives living. They appear to have
+avoided the society of the neighbouring English families and to
+have led retired lives, though both the McCarthys were fond of
+sport and were frequently seen at the race-meetings of the
+neighbourhood. McCarthy kept two servants--a man and a girl.
+Turner had a considerable household, some half-dozen at the
+least. That is as much as I have been able to gather about the
+families. Now for the facts.
+
+"On June 3rd, that is, on Monday last, McCarthy left his house at
+Hatherley about three in the afternoon and walked down to the
+Boscombe Pool, which is a small lake formed by the spreading out
+of the stream which runs down the Boscombe Valley. He had been
+out with his serving-man in the morning at Ross, and he had told
+the man that he must hurry, as he had an appointment of
+importance to keep at three. From that appointment he never came
+back alive.
+
+"From Hatherley Farm-house to the Boscombe Pool is a quarter of a
+mile, and two people saw him as he passed over this ground. One
+was an old woman, whose name is not mentioned, and the other was
+William Crowder, a game-keeper in the employ of Mr. Turner. Both
+these witnesses depose that Mr. McCarthy was walking alone. The
+game-keeper adds that within a few minutes of his seeing Mr.
+McCarthy pass he had seen his son, Mr. James McCarthy, going the
+same way with a gun under his arm. To the best of his belief, the
+father was actually in sight at the time, and the son was
+following him. He thought no more of the matter until he heard in
+the evening of the tragedy that had occurred.
+
+"The two McCarthys were seen after the time when William Crowder,
+the game-keeper, lost sight of them. The Boscombe Pool is thickly
+wooded round, with just a fringe of grass and of reeds round the
+edge. A girl of fourteen, Patience Moran, who is the daughter of
+the lodge-keeper of the Boscombe Valley estate, was in one of the
+woods picking flowers. She states that while she was there she
+saw, at the border of the wood and close by the lake, Mr.
+McCarthy and his son, and that they appeared to be having a
+violent quarrel. She heard Mr. McCarthy the elder using very
+strong language to his son, and she saw the latter raise up his
+hand as if to strike his father. She was so frightened by their
+violence that she ran away and told her mother when she reached
+home that she had left the two McCarthys quarrelling near
+Boscombe Pool, and that she was afraid that they were going to
+fight. She had hardly said the words when young Mr. McCarthy came
+running up to the lodge to say that he had found his father dead
+in the wood, and to ask for the help of the lodge-keeper. He was
+much excited, without either his gun or his hat, and his right
+hand and sleeve were observed to be stained with fresh blood. On
+following him they found the dead body stretched out upon the
+grass beside the pool. The head had been beaten in by repeated
+blows of some heavy and blunt weapon. The injuries were such as
+might very well have been inflicted by the butt-end of his son's
+gun, which was found lying on the grass within a few paces of the
+body. Under these circumstances the young man was instantly
+arrested, and a verdict of 'wilful murder' having been returned
+at the inquest on Tuesday, he was on Wednesday brought before the
+magistrates at Ross, who have referred the case to the next
+Assizes. Those are the main facts of the case as they came out
+before the coroner and the police-court."
+
+"I could hardly imagine a more damning case," I remarked. "If
+ever circumstantial evidence pointed to a criminal it does so
+here."
+
+"Circumstantial evidence is a very tricky thing," answered Holmes
+thoughtfully. "It may seem to point very straight to one thing,
+but if you shift your own point of view a little, you may find it
+pointing in an equally uncompromising manner to something
+entirely different. It must be confessed, however, that the case
+looks exceedingly grave against the young man, and it is very
+possible that he is indeed the culprit. There are several people
+in the neighbourhood, however, and among them Miss Turner, the
+daughter of the neighbouring landowner, who believe in his
+innocence, and who have retained Lestrade, whom you may recollect
+in connection with the Study in Scarlet, to work out the case in
+his interest. Lestrade, being rather puzzled, has referred the
+case to me, and hence it is that two middle-aged gentlemen are
+flying westward at fifty miles an hour instead of quietly
+digesting their breakfasts at home."
+
+"I am afraid," said I, "that the facts are so obvious that you
+will find little credit to be gained out of this case."
+
+"There is nothing more deceptive than an obvious fact," he
+answered, laughing. "Besides, we may chance to hit upon some
+other obvious facts which may have been by no means obvious to
+Mr. Lestrade. You know me too well to think that I am boasting
+when I say that I shall either confirm or destroy his theory by
+means which he is quite incapable of employing, or even of
+understanding. To take the first example to hand, I very clearly
+perceive that in your bedroom the window is upon the right-hand
+side, and yet I question whether Mr. Lestrade would have noted
+even so self-evident a thing as that."
+
+"How on earth--"
+
+"My dear fellow, I know you well. I know the military neatness
+which characterises you. You shave every morning, and in this
+season you shave by the sunlight; but since your shaving is less
+and less complete as we get farther back on the left side, until
+it becomes positively slovenly as we get round the angle of the
+jaw, it is surely very clear that that side is less illuminated
+than the other. I could not imagine a man of your habits looking
+at himself in an equal light and being satisfied with such a
+result. I only quote this as a trivial example of observation and
+inference. Therein lies my métier, and it is just possible that
+it may be of some service in the investigation which lies before
+us. There are one or two minor points which were brought out in
+the inquest, and which are worth considering."
+
+"What are they?"
+
+"It appears that his arrest did not take place at once, but after
+the return to Hatherley Farm. On the inspector of constabulary
+informing him that he was a prisoner, he remarked that he was not
+surprised to hear it, and that it was no more than his deserts.
+This observation of his had the natural effect of removing any
+traces of doubt which might have remained in the minds of the
+coroner's jury."
+
+"It was a confession," I ejaculated.
+
+"No, for it was followed by a protestation of innocence."
+
+"Coming on the top of such a damning series of events, it was at
+least a most suspicious remark."
+
+"On the contrary," said Holmes, "it is the brightest rift which I
+can at present see in the clouds. However innocent he might be,
+he could not be such an absolute imbecile as not to see that the
+circumstances were very black against him. Had he appeared
+surprised at his own arrest, or feigned indignation at it, I
+should have looked upon it as highly suspicious, because such
+surprise or anger would not be natural under the circumstances,
+and yet might appear to be the best policy to a scheming man. His
+frank acceptance of the situation marks him as either an innocent
+man, or else as a man of considerable self-restraint and
+firmness. As to his remark about his deserts, it was also not
+unnatural if you consider that he stood beside the dead body of
+his father, and that there is no doubt that he had that very day
+so far forgotten his filial duty as to bandy words with him, and
+even, according to the little girl whose evidence is so
+important, to raise his hand as if to strike him. The
+self-reproach and contrition which are displayed in his remark
+appear to me to be the signs of a healthy mind rather than of a
+guilty one."
+
+I shook my head. "Many men have been hanged on far slighter
+evidence," I remarked.
+
+"So they have. And many men have been wrongfully hanged."
+
+"What is the young man's own account of the matter?"
+
+"It is, I am afraid, not very encouraging to his supporters,
+though there are one or two points in it which are suggestive.
+You will find it here, and may read it for yourself."
+
+He picked out from his bundle a copy of the local Herefordshire
+paper, and having turned down the sheet he pointed out the
+paragraph in which the unfortunate young man had given his own
+statement of what had occurred. I settled myself down in the
+corner of the carriage and read it very carefully. It ran in this
+way:
+
+"Mr. James McCarthy, the only son of the deceased, was then called
+and gave evidence as follows: 'I had been away from home for
+three days at Bristol, and had only just returned upon the
+morning of last Monday, the 3rd. My father was absent from home at
+the time of my arrival, and I was informed by the maid that he
+had driven over to Ross with John Cobb, the groom. Shortly after
+my return I heard the wheels of his trap in the yard, and,
+looking out of my window, I saw him get out and walk rapidly out
+of the yard, though I was not aware in which direction he was
+going. I then took my gun and strolled out in the direction of
+the Boscombe Pool, with the intention of visiting the rabbit
+warren which is upon the other side. On my way I saw William
+Crowder, the game-keeper, as he had stated in his evidence; but
+he is mistaken in thinking that I was following my father. I had
+no idea that he was in front of me. When about a hundred yards
+from the pool I heard a cry of "Cooee!" which was a usual signal
+between my father and myself. I then hurried forward, and found
+him standing by the pool. He appeared to be much surprised at
+seeing me and asked me rather roughly what I was doing there. A
+conversation ensued which led to high words and almost to blows,
+for my father was a man of a very violent temper. Seeing that his
+passion was becoming ungovernable, I left him and returned
+towards Hatherley Farm. I had not gone more than 150 yards,
+however, when I heard a hideous outcry behind me, which caused me
+to run back again. I found my father expiring upon the ground,
+with his head terribly injured. I dropped my gun and held him in
+my arms, but he almost instantly expired. I knelt beside him for
+some minutes, and then made my way to Mr. Turner's lodge-keeper,
+his house being the nearest, to ask for assistance. I saw no one
+near my father when I returned, and I have no idea how he came by
+his injuries. He was not a popular man, being somewhat cold and
+forbidding in his manners, but he had, as far as I know, no
+active enemies. I know nothing further of the matter.'
+
+"The Coroner: Did your father make any statement to you before
+he died?
+
+"Witness: He mumbled a few words, but I could only catch some
+allusion to a rat.
+
+"The Coroner: What did you understand by that?
+
+"Witness: It conveyed no meaning to me. I thought that he was
+delirious.
+
+"The Coroner: What was the point upon which you and your father
+had this final quarrel?
+
+"Witness: I should prefer not to answer.
+
+"The Coroner: I am afraid that I must press it.
+
+"Witness: It is really impossible for me to tell you. I can
+assure you that it has nothing to do with the sad tragedy which
+followed.
+
+"The Coroner: That is for the court to decide. I need not point
+out to you that your refusal to answer will prejudice your case
+considerably in any future proceedings which may arise.
+
+"Witness: I must still refuse.
+
+"The Coroner: I understand that the cry of 'Cooee' was a common
+signal between you and your father?
+
+"Witness: It was.
+
+"The Coroner: How was it, then, that he uttered it before he saw
+you, and before he even knew that you had returned from Bristol?
+
+"Witness (with considerable confusion): I do not know.
+
+"A Juryman: Did you see nothing which aroused your suspicions
+when you returned on hearing the cry and found your father
+fatally injured?
+
+"Witness: Nothing definite.
+
+"The Coroner: What do you mean?
+
+"Witness: I was so disturbed and excited as I rushed out into
+the open, that I could think of nothing except of my father. Yet
+I have a vague impression that as I ran forward something lay
+upon the ground to the left of me. It seemed to me to be
+something grey in colour, a coat of some sort, or a plaid perhaps.
+When I rose from my father I looked round for it, but it was
+gone.
+
+"'Do you mean that it disappeared before you went for help?'
+
+"'Yes, it was gone.'
+
+"'You cannot say what it was?'
+
+"'No, I had a feeling something was there.'
+
+"'How far from the body?'
+
+"'A dozen yards or so.'
+
+"'And how far from the edge of the wood?'
+
+"'About the same.'
+
+"'Then if it was removed it was while you were within a dozen
+yards of it?'
+
+"'Yes, but with my back towards it.'
+
+"This concluded the examination of the witness."
+
+"I see," said I as I glanced down the column, "that the coroner
+in his concluding remarks was rather severe upon young McCarthy.
+He calls attention, and with reason, to the discrepancy about his
+father having signalled to him before seeing him, also to his
+refusal to give details of his conversation with his father, and
+his singular account of his father's dying words. They are all,
+as he remarks, very much against the son."
+
+Holmes laughed softly to himself and stretched himself out upon
+the cushioned seat. "Both you and the coroner have been at some
+pains," said he, "to single out the very strongest points in the
+young man's favour. Don't you see that you alternately give him
+credit for having too much imagination and too little? Too
+little, if he could not invent a cause of quarrel which would
+give him the sympathy of the jury; too much, if he evolved from
+his own inner consciousness anything so outré as a dying
+reference to a rat, and the incident of the vanishing cloth. No,
+sir, I shall approach this case from the point of view that what
+this young man says is true, and we shall see whither that
+hypothesis will lead us. And now here is my pocket Petrarch, and
+not another word shall I say of this case until we are on the
+scene of action. We lunch at Swindon, and I see that we shall be
+there in twenty minutes."
+
+It was nearly four o'clock when we at last, after passing through
+the beautiful Stroud Valley, and over the broad gleaming Severn,
+found ourselves at the pretty little country-town of Ross. A
+lean, ferret-like man, furtive and sly-looking, was waiting for
+us upon the platform. In spite of the light brown dustcoat and
+leather-leggings which he wore in deference to his rustic
+surroundings, I had no difficulty in recognising Lestrade, of
+Scotland Yard. With him we drove to the Hereford Arms where a
+room had already been engaged for us.
+
+"I have ordered a carriage," said Lestrade as we sat over a cup
+of tea. "I knew your energetic nature, and that you would not be
+happy until you had been on the scene of the crime."
+
+"It was very nice and complimentary of you," Holmes answered. "It
+is entirely a question of barometric pressure."
+
+Lestrade looked startled. "I do not quite follow," he said.
+
+"How is the glass? Twenty-nine, I see. No wind, and not a cloud
+in the sky. I have a caseful of cigarettes here which need
+smoking, and the sofa is very much superior to the usual country
+hotel abomination. I do not think that it is probable that I
+shall use the carriage to-night."
+
+Lestrade laughed indulgently. "You have, no doubt, already formed
+your conclusions from the newspapers," he said. "The case is as
+plain as a pikestaff, and the more one goes into it the plainer
+it becomes. Still, of course, one can't refuse a lady, and such a
+very positive one, too. She has heard of you, and would have your
+opinion, though I repeatedly told her that there was nothing
+which you could do which I had not already done. Why, bless my
+soul! here is her carriage at the door."
+
+He had hardly spoken before there rushed into the room one of the
+most lovely young women that I have ever seen in my life. Her
+violet eyes shining, her lips parted, a pink flush upon her
+cheeks, all thought of her natural reserve lost in her
+overpowering excitement and concern.
+
+"Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the
+other of us, and finally, with a woman's quick intuition,
+fastening upon my companion, "I am so glad that you have come. I
+have driven down to tell you so. I know that James didn't do it.
+I know it, and I want you to start upon your work knowing it,
+too. Never let yourself doubt upon that point. We have known each
+other since we were little children, and I know his faults as no
+one else does; but he is too tender-hearted to hurt a fly. Such a
+charge is absurd to anyone who really knows him."
+
+"I hope we may clear him, Miss Turner," said Sherlock Holmes.
+"You may rely upon my doing all that I can."
+
+"But you have read the evidence. You have formed some conclusion?
+Do you not see some loophole, some flaw? Do you not yourself
+think that he is innocent?"
+
+"I think that it is very probable."
+
+"There, now!" she cried, throwing back her head and looking
+defiantly at Lestrade. "You hear! He gives me hopes."
+
+Lestrade shrugged his shoulders. "I am afraid that my colleague
+has been a little quick in forming his conclusions," he said.
+
+"But he is right. Oh! I know that he is right. James never did
+it. And about his quarrel with his father, I am sure that the
+reason why he would not speak about it to the coroner was because
+I was concerned in it."
+
+"In what way?" asked Holmes.
+
+"It is no time for me to hide anything. James and his father had
+many disagreements about me. Mr. McCarthy was very anxious that
+there should be a marriage between us. James and I have always
+loved each other as brother and sister; but of course he is young
+and has seen very little of life yet, and--and--well, he
+naturally did not wish to do anything like that yet. So there
+were quarrels, and this, I am sure, was one of them."
+
+"And your father?" asked Holmes. "Was he in favour of such a
+union?"
+
+"No, he was averse to it also. No one but Mr. McCarthy was in
+favour of it." A quick blush passed over her fresh young face as
+Holmes shot one of his keen, questioning glances at her.
+
+"Thank you for this information," said he. "May I see your father
+if I call to-morrow?"
+
+"I am afraid the doctor won't allow it."
+
+"The doctor?"
+
+"Yes, have you not heard? Poor father has never been strong for
+years back, but this has broken him down completely. He has taken
+to his bed, and Dr. Willows says that he is a wreck and that his
+nervous system is shattered. Mr. McCarthy was the only man alive
+who had known dad in the old days in Victoria."
+
+"Ha! In Victoria! That is important."
+
+"Yes, at the mines."
+
+"Quite so; at the gold-mines, where, as I understand, Mr. Turner
+made his money."
+
+"Yes, certainly."
+
+"Thank you, Miss Turner. You have been of material assistance to
+me."
+
+"You will tell me if you have any news to-morrow. No doubt you
+will go to the prison to see James. Oh, if you do, Mr. Holmes, do
+tell him that I know him to be innocent."
+
+"I will, Miss Turner."
+
+"I must go home now, for dad is very ill, and he misses me so if
+I leave him. Good-bye, and God help you in your undertaking." She
+hurried from the room as impulsively as she had entered, and we
+heard the wheels of her carriage rattle off down the street.
+
+"I am ashamed of you, Holmes," said Lestrade with dignity after a
+few minutes' silence. "Why should you raise up hopes which you
+are bound to disappoint? I am not over-tender of heart, but I
+call it cruel."
+
+"I think that I see my way to clearing James McCarthy," said
+Holmes. "Have you an order to see him in prison?"
+
+"Yes, but only for you and me."
+
+"Then I shall reconsider my resolution about going out. We have
+still time to take a train to Hereford and see him to-night?"
+
+"Ample."
+
+"Then let us do so. Watson, I fear that you will find it very
+slow, but I shall only be away a couple of hours."
+
+I walked down to the station with them, and then wandered through
+the streets of the little town, finally returning to the hotel,
+where I lay upon the sofa and tried to interest myself in a
+yellow-backed novel. The puny plot of the story was so thin,
+however, when compared to the deep mystery through which we were
+groping, and I found my attention wander so continually from the
+action to the fact, that I at last flung it across the room and
+gave myself up entirely to a consideration of the events of the
+day. Supposing that this unhappy young man's story were
+absolutely true, then what hellish thing, what absolutely
+unforeseen and extraordinary calamity could have occurred between
+the time when he parted from his father, and the moment when,
+drawn back by his screams, he rushed into the glade? It was
+something terrible and deadly. What could it be? Might not the
+nature of the injuries reveal something to my medical instincts?
+I rang the bell and called for the weekly county paper, which
+contained a verbatim account of the inquest. In the surgeon's
+deposition it was stated that the posterior third of the left
+parietal bone and the left half of the occipital bone had been
+shattered by a heavy blow from a blunt weapon. I marked the spot
+upon my own head. Clearly such a blow must have been struck from
+behind. That was to some extent in favour of the accused, as when
+seen quarrelling he was face to face with his father. Still, it
+did not go for very much, for the older man might have turned his
+back before the blow fell. Still, it might be worth while to call
+Holmes' attention to it. Then there was the peculiar dying
+reference to a rat. What could that mean? It could not be
+delirium. A man dying from a sudden blow does not commonly become
+delirious. No, it was more likely to be an attempt to explain how
+he met his fate. But what could it indicate? I cudgelled my
+brains to find some possible explanation. And then the incident
+of the grey cloth seen by young McCarthy. If that were true the
+murderer must have dropped some part of his dress, presumably his
+overcoat, in his flight, and must have had the hardihood to
+return and to carry it away at the instant when the son was
+kneeling with his back turned not a dozen paces off. What a
+tissue of mysteries and improbabilities the whole thing was! I
+did not wonder at Lestrade's opinion, and yet I had so much faith
+in Sherlock Holmes' insight that I could not lose hope as long
+as every fresh fact seemed to strengthen his conviction of young
+McCarthy's innocence.
+
+It was late before Sherlock Holmes returned. He came back alone,
+for Lestrade was staying in lodgings in the town.
+
+"The glass still keeps very high," he remarked as he sat down.
+"It is of importance that it should not rain before we are able
+to go over the ground. On the other hand, a man should be at his
+very best and keenest for such nice work as that, and I did not
+wish to do it when fagged by a long journey. I have seen young
+McCarthy."
+
+"And what did you learn from him?"
+
+"Nothing."
+
+"Could he throw no light?"
+
+"None at all. I was inclined to think at one time that he knew
+who had done it and was screening him or her, but I am convinced
+now that he is as puzzled as everyone else. He is not a very
+quick-witted youth, though comely to look at and, I should think,
+sound at heart."
+
+"I cannot admire his taste," I remarked, "if it is indeed a fact
+that he was averse to a marriage with so charming a young lady as
+this Miss Turner."
+
+"Ah, thereby hangs a rather painful tale. This fellow is madly,
+insanely, in love with her, but some two years ago, when he was
+only a lad, and before he really knew her, for she had been away
+five years at a boarding-school, what does the idiot do but get
+into the clutches of a barmaid in Bristol and marry her at a
+registry office? No one knows a word of the matter, but you can
+imagine how maddening it must be to him to be upbraided for not
+doing what he would give his very eyes to do, but what he knows
+to be absolutely impossible. It was sheer frenzy of this sort
+which made him throw his hands up into the air when his father,
+at their last interview, was goading him on to propose to Miss
+Turner. On the other hand, he had no means of supporting himself,
+and his father, who was by all accounts a very hard man, would
+have thrown him over utterly had he known the truth. It was with
+his barmaid wife that he had spent the last three days in
+Bristol, and his father did not know where he was. Mark that
+point. It is of importance. Good has come out of evil, however,
+for the barmaid, finding from the papers that he is in serious
+trouble and likely to be hanged, has thrown him over utterly and
+has written to him to say that she has a husband already in the
+Bermuda Dockyard, so that there is really no tie between them. I
+think that that bit of news has consoled young McCarthy for all
+that he has suffered."
+
+"But if he is innocent, who has done it?"
+
+"Ah! who? I would call your attention very particularly to two
+points. One is that the murdered man had an appointment with
+someone at the pool, and that the someone could not have been his
+son, for his son was away, and he did not know when he would
+return. The second is that the murdered man was heard to cry
+'Cooee!' before he knew that his son had returned. Those are the
+crucial points upon which the case depends. And now let us talk
+about George Meredith, if you please, and we shall leave all
+minor matters until to-morrow."
+
+There was no rain, as Holmes had foretold, and the morning broke
+bright and cloudless. At nine o'clock Lestrade called for us with
+the carriage, and we set off for Hatherley Farm and the Boscombe
+Pool.
+
+"There is serious news this morning," Lestrade observed. "It is
+said that Mr. Turner, of the Hall, is so ill that his life is
+despaired of."
+
+"An elderly man, I presume?" said Holmes.
+
+"About sixty; but his constitution has been shattered by his life
+abroad, and he has been in failing health for some time. This
+business has had a very bad effect upon him. He was an old friend
+of McCarthy's, and, I may add, a great benefactor to him, for I
+have learned that he gave him Hatherley Farm rent free."
+
+"Indeed! That is interesting," said Holmes.
+
+"Oh, yes! In a hundred other ways he has helped him. Everybody
+about here speaks of his kindness to him."
+
+"Really! Does it not strike you as a little singular that this
+McCarthy, who appears to have had little of his own, and to have
+been under such obligations to Turner, should still talk of
+marrying his son to Turner's daughter, who is, presumably,
+heiress to the estate, and that in such a very cocksure manner,
+as if it were merely a case of a proposal and all else would
+follow? It is the more strange, since we know that Turner himself
+was averse to the idea. The daughter told us as much. Do you not
+deduce something from that?"
+
+"We have got to the deductions and the inferences," said
+Lestrade, winking at me. "I find it hard enough to tackle facts,
+Holmes, without flying away after theories and fancies."
+
+"You are right," said Holmes demurely; "you do find it very hard
+to tackle the facts."
+
+"Anyhow, I have grasped one fact which you seem to find it
+difficult to get hold of," replied Lestrade with some warmth.
+
+"And that is--"
+
+"That McCarthy senior met his death from McCarthy junior and that
+all theories to the contrary are the merest moonshine."
+
+"Well, moonshine is a brighter thing than fog," said Holmes,
+laughing. "But I am very much mistaken if this is not Hatherley
+Farm upon the left."
+
+"Yes, that is it." It was a widespread, comfortable-looking
+building, two-storied, slate-roofed, with great yellow blotches
+of lichen upon the grey walls. The drawn blinds and the smokeless
+chimneys, however, gave it a stricken look, as though the weight
+of this horror still lay heavy upon it. We called at the door,
+when the maid, at Holmes' request, showed us the boots which her
+master wore at the time of his death, and also a pair of the
+son's, though not the pair which he had then had. Having measured
+these very carefully from seven or eight different points, Holmes
+desired to be led to the court-yard, from which we all followed
+the winding track which led to Boscombe Pool.
+
+Sherlock Holmes was transformed when he was hot upon such a scent
+as this. Men who had only known the quiet thinker and logician of
+Baker Street would have failed to recognise him. His face flushed
+and darkened. His brows were drawn into two hard black lines,
+while his eyes shone out from beneath them with a steely glitter.
+His face was bent downward, his shoulders bowed, his lips
+compressed, and the veins stood out like whipcord in his long,
+sinewy neck. His nostrils seemed to dilate with a purely animal
+lust for the chase, and his mind was so absolutely concentrated
+upon the matter before him that a question or remark fell
+unheeded upon his ears, or, at the most, only provoked a quick,
+impatient snarl in reply. Swiftly and silently he made his way
+along the track which ran through the meadows, and so by way of
+the woods to the Boscombe Pool. It was damp, marshy ground, as is
+all that district, and there were marks of many feet, both upon
+the path and amid the short grass which bounded it on either
+side. Sometimes Holmes would hurry on, sometimes stop dead, and
+once he made quite a little detour into the meadow. Lestrade and
+I walked behind him, the detective indifferent and contemptuous,
+while I watched my friend with the interest which sprang from the
+conviction that every one of his actions was directed towards a
+definite end.
+
+The Boscombe Pool, which is a little reed-girt sheet of water
+some fifty yards across, is situated at the boundary between the
+Hatherley Farm and the private park of the wealthy Mr. Turner.
+Above the woods which lined it upon the farther side we could see
+the red, jutting pinnacles which marked the site of the rich
+landowner's dwelling. On the Hatherley side of the pool the woods
+grew very thick, and there was a narrow belt of sodden grass
+twenty paces across between the edge of the trees and the reeds
+which lined the lake. Lestrade showed us the exact spot at which
+the body had been found, and, indeed, so moist was the ground,
+that I could plainly see the traces which had been left by the
+fall of the stricken man. To Holmes, as I could see by his eager
+face and peering eyes, very many other things were to be read
+upon the trampled grass. He ran round, like a dog who is picking
+up a scent, and then turned upon my companion.
+
+"What did you go into the pool for?" he asked.
+
+"I fished about with a rake. I thought there might be some weapon
+or other trace. But how on earth--"
+
+"Oh, tut, tut! I have no time! That left foot of yours with its
+inward twist is all over the place. A mole could trace it, and
+there it vanishes among the reeds. Oh, how simple it would all
+have been had I been here before they came like a herd of buffalo
+and wallowed all over it. Here is where the party with the
+lodge-keeper came, and they have covered all tracks for six or
+eight feet round the body. But here are three separate tracks of
+the same feet." He drew out a lens and lay down upon his
+waterproof to have a better view, talking all the time rather to
+himself than to us. "These are young McCarthy's feet. Twice he
+was walking, and once he ran swiftly, so that the soles are
+deeply marked and the heels hardly visible. That bears out his
+story. He ran when he saw his father on the ground. Then here are
+the father's feet as he paced up and down. What is this, then? It
+is the butt-end of the gun as the son stood listening. And this?
+Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite
+unusual boots! They come, they go, they come again--of course
+that was for the cloak. Now where did they come from?" He ran up
+and down, sometimes losing, sometimes finding the track until we
+were well within the edge of the wood and under the shadow of a
+great beech, the largest tree in the neighbourhood. Holmes traced
+his way to the farther side of this and lay down once more upon
+his face with a little cry of satisfaction. For a long time he
+remained there, turning over the leaves and dried sticks,
+gathering up what seemed to me to be dust into an envelope and
+examining with his lens not only the ground but even the bark of
+the tree as far as he could reach. A jagged stone was lying among
+the moss, and this also he carefully examined and retained. Then
+he followed a pathway through the wood until he came to the
+highroad, where all traces were lost.
+
+"It has been a case of considerable interest," he remarked,
+returning to his natural manner. "I fancy that this grey house on
+the right must be the lodge. I think that I will go in and have a
+word with Moran, and perhaps write a little note. Having done
+that, we may drive back to our luncheon. You may walk to the cab,
+and I shall be with you presently."
+
+It was about ten minutes before we regained our cab and drove
+back into Ross, Holmes still carrying with him the stone which he
+had picked up in the wood.
+
+"This may interest you, Lestrade," he remarked, holding it out.
+"The murder was done with it."
+
+"I see no marks."
+
+"There are none."
+
+"How do you know, then?"
+
+"The grass was growing under it. It had only lain there a few
+days. There was no sign of a place whence it had been taken. It
+corresponds with the injuries. There is no sign of any other
+weapon."
+
+"And the murderer?"
+
+"Is a tall man, left-handed, limps with the right leg, wears
+thick-soled shooting-boots and a grey cloak, smokes Indian
+cigars, uses a cigar-holder, and carries a blunt pen-knife in his
+pocket. There are several other indications, but these may be
+enough to aid us in our search."
+
+Lestrade laughed. "I am afraid that I am still a sceptic," he
+said. "Theories are all very well, but we have to deal with a
+hard-headed British jury."
+
+"Nous verrons," answered Holmes calmly. "You work your own
+method, and I shall work mine. I shall be busy this afternoon,
+and shall probably return to London by the evening train."
+
+"And leave your case unfinished?"
+
+"No, finished."
+
+"But the mystery?"
+
+"It is solved."
+
+"Who was the criminal, then?"
+
+"The gentleman I describe."
+
+"But who is he?"
+
+"Surely it would not be difficult to find out. This is not such a
+populous neighbourhood."
+
+Lestrade shrugged his shoulders. "I am a practical man," he said,
+"and I really cannot undertake to go about the country looking
+for a left-handed gentleman with a game leg. I should become the
+laughing-stock of Scotland Yard."
+
+"All right," said Holmes quietly. "I have given you the chance.
+Here are your lodgings. Good-bye. I shall drop you a line before
+I leave."
+
+Having left Lestrade at his rooms, we drove to our hotel, where
+we found lunch upon the table. Holmes was silent and buried in
+thought with a pained expression upon his face, as one who finds
+himself in a perplexing position.
+
+"Look here, Watson," he said when the cloth was cleared "just sit
+down in this chair and let me preach to you for a little. I don't
+know quite what to do, and I should value your advice. Light a
+cigar and let me expound."
+
+ "Pray do so."
+
+"Well, now, in considering this case there are two points about
+young McCarthy's narrative which struck us both instantly,
+although they impressed me in his favour and you against him. One
+was the fact that his father should, according to his account,
+cry 'Cooee!' before seeing him. The other was his singular dying
+reference to a rat. He mumbled several words, you understand, but
+that was all that caught the son's ear. Now from this double
+point our research must commence, and we will begin it by
+presuming that what the lad says is absolutely true."
+
+"What of this 'Cooee!' then?"
+
+"Well, obviously it could not have been meant for the son. The
+son, as far as he knew, was in Bristol. It was mere chance that
+he was within earshot. The 'Cooee!' was meant to attract the
+attention of whoever it was that he had the appointment with. But
+'Cooee' is a distinctly Australian cry, and one which is used
+between Australians. There is a strong presumption that the
+person whom McCarthy expected to meet him at Boscombe Pool was
+someone who had been in Australia."
+
+"What of the rat, then?"
+
+Sherlock Holmes took a folded paper from his pocket and flattened
+it out on the table. "This is a map of the Colony of Victoria,"
+he said. "I wired to Bristol for it last night." He put his hand
+over part of the map. "What do you read?"
+
+"ARAT," I read.
+
+"And now?" He raised his hand.
+
+"BALLARAT."
+
+"Quite so. That was the word the man uttered, and of which his
+son only caught the last two syllables. He was trying to utter
+the name of his murderer. So and so, of Ballarat."
+
+"It is wonderful!" I exclaimed.
+
+"It is obvious. And now, you see, I had narrowed the field down
+considerably. The possession of a grey garment was a third point
+which, granting the son's statement to be correct, was a
+certainty. We have come now out of mere vagueness to the definite
+conception of an Australian from Ballarat with a grey cloak."
+
+"Certainly."
+
+"And one who was at home in the district, for the pool can only
+be approached by the farm or by the estate, where strangers could
+hardly wander."
+
+"Quite so."
+
+"Then comes our expedition of to-day. By an examination of the
+ground I gained the trifling details which I gave to that
+imbecile Lestrade, as to the personality of the criminal."
+
+"But how did you gain them?"
+
+"You know my method. It is founded upon the observation of
+trifles."
+
+"His height I know that you might roughly judge from the length
+of his stride. His boots, too, might be told from their traces."
+
+"Yes, they were peculiar boots."
+
+"But his lameness?"
+
+"The impression of his right foot was always less distinct than
+his left. He put less weight upon it. Why? Because he limped--he
+was lame."
+
+"But his left-handedness."
+
+"You were yourself struck by the nature of the injury as recorded
+by the surgeon at the inquest. The blow was struck from
+immediately behind, and yet was upon the left side. Now, how can
+that be unless it were by a left-handed man? He had stood behind
+that tree during the interview between the father and son. He had
+even smoked there. I found the ash of a cigar, which my special
+knowledge of tobacco ashes enables me to pronounce as an Indian
+cigar. I have, as you know, devoted some attention to this, and
+written a little monograph on the ashes of 140 different
+varieties of pipe, cigar, and cigarette tobacco. Having found the
+ash, I then looked round and discovered the stump among the moss
+where he had tossed it. It was an Indian cigar, of the variety
+which are rolled in Rotterdam."
+
+"And the cigar-holder?"
+
+"I could see that the end had not been in his mouth. Therefore he
+used a holder. The tip had been cut off, not bitten off, but the
+cut was not a clean one, so I deduced a blunt pen-knife."
+
+"Holmes," I said, "you have drawn a net round this man from which
+he cannot escape, and you have saved an innocent human life as
+truly as if you had cut the cord which was hanging him. I see the
+direction in which all this points. The culprit is--"
+
+"Mr. John Turner," cried the hotel waiter, opening the door of
+our sitting-room, and ushering in a visitor.
+
+The man who entered was a strange and impressive figure. His
+slow, limping step and bowed shoulders gave the appearance of
+decrepitude, and yet his hard, deep-lined, craggy features, and
+his enormous limbs showed that he was possessed of unusual
+strength of body and of character. His tangled beard, grizzled
+hair, and outstanding, drooping eyebrows combined to give an air
+of dignity and power to his appearance, but his face was of an
+ashen white, while his lips and the corners of his nostrils were
+tinged with a shade of blue. It was clear to me at a glance that
+he was in the grip of some deadly and chronic disease.
+
+"Pray sit down on the sofa," said Holmes gently. "You had my
+note?"
+
+"Yes, the lodge-keeper brought it up. You said that you wished to
+see me here to avoid scandal."
+
+"I thought people would talk if I went to the Hall."
+
+"And why did you wish to see me?" He looked across at my
+companion with despair in his weary eyes, as though his question
+was already answered.
+
+"Yes," said Holmes, answering the look rather than the words. "It
+is so. I know all about McCarthy."
+
+The old man sank his face in his hands. "God help me!" he cried.
+"But I would not have let the young man come to harm. I give you
+my word that I would have spoken out if it went against him at
+the Assizes."
+
+"I am glad to hear you say so," said Holmes gravely.
+
+"I would have spoken now had it not been for my dear girl. It
+would break her heart--it will break her heart when she hears
+that I am arrested."
+
+"It may not come to that," said Holmes.
+
+"What?"
+
+"I am no official agent. I understand that it was your daughter
+who required my presence here, and I am acting in her interests.
+Young McCarthy must be got off, however."
+
+"I am a dying man," said old Turner. "I have had diabetes for
+years. My doctor says it is a question whether I shall live a
+month. Yet I would rather die under my own roof than in a gaol."
+
+Holmes rose and sat down at the table with his pen in his hand
+and a bundle of paper before him. "Just tell us the truth," he
+said. "I shall jot down the facts. You will sign it, and Watson
+here can witness it. Then I could produce your confession at the
+last extremity to save young McCarthy. I promise you that I shall
+not use it unless it is absolutely needed."
+
+"It's as well," said the old man; "it's a question whether I
+shall live to the Assizes, so it matters little to me, but I
+should wish to spare Alice the shock. And now I will make the
+thing clear to you; it has been a long time in the acting, but
+will not take me long to tell.
+
+"You didn't know this dead man, McCarthy. He was a devil
+incarnate. I tell you that. God keep you out of the clutches of
+such a man as he. His grip has been upon me these twenty years,
+and he has blasted my life. I'll tell you first how I came to be
+in his power.
+
+"It was in the early '60's at the diggings. I was a young chap
+then, hot-blooded and reckless, ready to turn my hand at
+anything; I got among bad companions, took to drink, had no luck
+with my claim, took to the bush, and in a word became what you
+would call over here a highway robber. There were six of us, and
+we had a wild, free life of it, sticking up a station from time
+to time, or stopping the wagons on the road to the diggings.
+Black Jack of Ballarat was the name I went under, and our party
+is still remembered in the colony as the Ballarat Gang.
+
+"One day a gold convoy came down from Ballarat to Melbourne, and
+we lay in wait for it and attacked it. There were six troopers
+and six of us, so it was a close thing, but we emptied four of
+their saddles at the first volley. Three of our boys were killed,
+however, before we got the swag. I put my pistol to the head of
+the wagon-driver, who was this very man McCarthy. I wish to the
+Lord that I had shot him then, but I spared him, though I saw his
+wicked little eyes fixed on my face, as though to remember every
+feature. We got away with the gold, became wealthy men, and made
+our way over to England without being suspected. There I parted
+from my old pals and determined to settle down to a quiet and
+respectable life. I bought this estate, which chanced to be in
+the market, and I set myself to do a little good with my money,
+to make up for the way in which I had earned it. I married, too,
+and though my wife died young she left me my dear little Alice.
+Even when she was just a baby her wee hand seemed to lead me down
+the right path as nothing else had ever done. In a word, I turned
+over a new leaf and did my best to make up for the past. All was
+going well when McCarthy laid his grip upon me.
+
+"I had gone up to town about an investment, and I met him in
+Regent Street with hardly a coat to his back or a boot to his
+foot.
+
+"'Here we are, Jack,' says he, touching me on the arm; 'we'll be
+as good as a family to you. There's two of us, me and my son, and
+you can have the keeping of us. If you don't--it's a fine,
+law-abiding country is England, and there's always a policeman
+within hail.'
+
+"Well, down they came to the west country, there was no shaking
+them off, and there they have lived rent free on my best land
+ever since. There was no rest for me, no peace, no forgetfulness;
+turn where I would, there was his cunning, grinning face at my
+elbow. It grew worse as Alice grew up, for he soon saw I was more
+afraid of her knowing my past than of the police. Whatever he
+wanted he must have, and whatever it was I gave him without
+question, land, money, houses, until at last he asked a thing
+which I could not give. He asked for Alice.
+
+"His son, you see, had grown up, and so had my girl, and as I was
+known to be in weak health, it seemed a fine stroke to him that
+his lad should step into the whole property. But there I was
+firm. I would not have his cursed stock mixed with mine; not that
+I had any dislike to the lad, but his blood was in him, and that
+was enough. I stood firm. McCarthy threatened. I braved him to do
+his worst. We were to meet at the pool midway between our houses
+to talk it over.
+
+"When I went down there I found him talking with his son, so I
+smoked a cigar and waited behind a tree until he should be alone.
+But as I listened to his talk all that was black and bitter in
+me seemed to come uppermost. He was urging his son to marry my
+daughter with as little regard for what she might think as if she
+were a slut from off the streets. It drove me mad to think that I
+and all that I held most dear should be in the power of such a
+man as this. Could I not snap the bond? I was already a dying and
+a desperate man. Though clear of mind and fairly strong of limb,
+I knew that my own fate was sealed. But my memory and my girl!
+Both could be saved if I could but silence that foul tongue. I
+did it, Mr. Holmes. I would do it again. Deeply as I have sinned,
+I have led a life of martyrdom to atone for it. But that my girl
+should be entangled in the same meshes which held me was more
+than I could suffer. I struck him down with no more compunction
+than if he had been some foul and venomous beast. His cry brought
+back his son; but I had gained the cover of the wood, though I
+was forced to go back to fetch the cloak which I had dropped in
+my flight. That is the true story, gentlemen, of all that
+occurred."
+
+"Well, it is not for me to judge you," said Holmes as the old man
+signed the statement which had been drawn out. "I pray that we
+may never be exposed to such a temptation."
+
+"I pray not, sir. And what do you intend to do?"
+
+"In view of your health, nothing. You are yourself aware that you
+will soon have to answer for your deed at a higher court than the
+Assizes. I will keep your confession, and if McCarthy is
+condemned I shall be forced to use it. If not, it shall never be
+seen by mortal eye; and your secret, whether you be alive or
+dead, shall be safe with us."
+
+"Farewell, then," said the old man solemnly. "Your own deathbeds,
+when they come, will be the easier for the thought of the peace
+which you have given to mine." Tottering and shaking in all his
+giant frame, he stumbled slowly from the room.
+
+"God help us!" said Holmes after a long silence. "Why does fate
+play such tricks with poor, helpless worms? I never hear of such
+a case as this that I do not think of Baxter's words, and say,
+'There, but for the grace of God, goes Sherlock Holmes.'"
+
+James McCarthy was acquitted at the Assizes on the strength of a
+number of objections which had been drawn out by Holmes and
+submitted to the defending counsel. Old Turner lived for seven
+months after our interview, but he is now dead; and there is
+every prospect that the son and daughter may come to live happily
+together in ignorance of the black cloud which rests upon their
+past.
+
+
+
+ADVENTURE V. THE FIVE ORANGE PIPS
+
+When I glance over my notes and records of the Sherlock Holmes
+cases between the years '82 and '90, I am faced by so many which
+present strange and interesting features that it is no easy
+matter to know which to choose and which to leave. Some, however,
+have already gained publicity through the papers, and others have
+not offered a field for those peculiar qualities which my friend
+possessed in so high a degree, and which it is the object of
+these papers to illustrate. Some, too, have baffled his
+analytical skill, and would be, as narratives, beginnings without
+an ending, while others have been but partially cleared up, and
+have their explanations founded rather upon conjecture and
+surmise than on that absolute logical proof which was so dear to
+him. There is, however, one of these last which was so remarkable
+in its details and so startling in its results that I am tempted
+to give some account of it in spite of the fact that there are
+points in connection with it which never have been, and probably
+never will be, entirely cleared up.
+
+The year '87 furnished us with a long series of cases of greater
+or less interest, of which I retain the records. Among my
+headings under this one twelve months I find an account of the
+adventure of the Paradol Chamber, of the Amateur Mendicant
+Society, who held a luxurious club in the lower vault of a
+furniture warehouse, of the facts connected with the loss of the
+British barque "Sophy Anderson", of the singular adventures of the
+Grice Patersons in the island of Uffa, and finally of the
+Camberwell poisoning case. In the latter, as may be remembered,
+Sherlock Holmes was able, by winding up the dead man's watch, to
+prove that it had been wound up two hours before, and that
+therefore the deceased had gone to bed within that time--a
+deduction which was of the greatest importance in clearing up the
+case. All these I may sketch out at some future date, but none of
+them present such singular features as the strange train of
+circumstances which I have now taken up my pen to describe.
+
+It was in the latter days of September, and the equinoctial gales
+had set in with exceptional violence. All day the wind had
+screamed and the rain had beaten against the windows, so that
+even here in the heart of great, hand-made London we were forced
+to raise our minds for the instant from the routine of life and
+to recognise the presence of those great elemental forces which
+shriek at mankind through the bars of his civilisation, like
+untamed beasts in a cage. As evening drew in, the storm grew
+higher and louder, and the wind cried and sobbed like a child in
+the chimney. Sherlock Holmes sat moodily at one side of the
+fireplace cross-indexing his records of crime, while I at the
+other was deep in one of Clark Russell's fine sea-stories until
+the howl of the gale from without seemed to blend with the text,
+and the splash of the rain to lengthen out into the long swash of
+the sea waves. My wife was on a visit to her mother's, and for a
+few days I was a dweller once more in my old quarters at Baker
+Street.
+
+"Why," said I, glancing up at my companion, "that was surely the
+bell. Who could come to-night? Some friend of yours, perhaps?"
+
+"Except yourself I have none," he answered. "I do not encourage
+visitors."
+
+"A client, then?"
+
+"If so, it is a serious case. Nothing less would bring a man out
+on such a day and at such an hour. But I take it that it is more
+likely to be some crony of the landlady's."
+
+Sherlock Holmes was wrong in his conjecture, however, for there
+came a step in the passage and a tapping at the door. He
+stretched out his long arm to turn the lamp away from himself and
+towards the vacant chair upon which a newcomer must sit.
+
+"Come in!" said he.
+
+The man who entered was young, some two-and-twenty at the
+outside, well-groomed and trimly clad, with something of
+refinement and delicacy in his bearing. The streaming umbrella
+which he held in his hand, and his long shining waterproof told
+of the fierce weather through which he had come. He looked about
+him anxiously in the glare of the lamp, and I could see that his
+face was pale and his eyes heavy, like those of a man who is
+weighed down with some great anxiety.
+
+"I owe you an apology," he said, raising his golden pince-nez to
+his eyes. "I trust that I am not intruding. I fear that I have
+brought some traces of the storm and rain into your snug
+chamber."
+
+"Give me your coat and umbrella," said Holmes. "They may rest
+here on the hook and will be dry presently. You have come up from
+the south-west, I see."
+
+"Yes, from Horsham."
+
+"That clay and chalk mixture which I see upon your toe caps is
+quite distinctive."
+
+"I have come for advice."
+
+"That is easily got."
+
+"And help."
+
+"That is not always so easy."
+
+"I have heard of you, Mr. Holmes. I heard from Major Prendergast
+how you saved him in the Tankerville Club scandal."
+
+"Ah, of course. He was wrongfully accused of cheating at cards."
+
+"He said that you could solve anything."
+
+"He said too much."
+
+"That you are never beaten."
+
+"I have been beaten four times--three times by men, and once by a
+woman."
+
+"But what is that compared with the number of your successes?"
+
+"It is true that I have been generally successful."
+
+"Then you may be so with me."
+
+"I beg that you will draw your chair up to the fire and favour me
+with some details as to your case."
+
+"It is no ordinary one."
+
+"None of those which come to me are. I am the last court of
+appeal."
+
+"And yet I question, sir, whether, in all your experience, you
+have ever listened to a more mysterious and inexplicable chain of
+events than those which have happened in my own family."
+
+"You fill me with interest," said Holmes. "Pray give us the
+essential facts from the commencement, and I can afterwards
+question you as to those details which seem to me to be most
+important."
+
+The young man pulled his chair up and pushed his wet feet out
+towards the blaze.
+
+"My name," said he, "is John Openshaw, but my own affairs have,
+as far as I can understand, little to do with this awful
+business. It is a hereditary matter; so in order to give you an
+idea of the facts, I must go back to the commencement of the
+affair.
+
+"You must know that my grandfather had two sons--my uncle Elias
+and my father Joseph. My father had a small factory at Coventry,
+which he enlarged at the time of the invention of bicycling. He
+was a patentee of the Openshaw unbreakable tire, and his business
+met with such success that he was able to sell it and to retire
+upon a handsome competence.
+
+"My uncle Elias emigrated to America when he was a young man and
+became a planter in Florida, where he was reported to have done
+very well. At the time of the war he fought in Jackson's army,
+and afterwards under Hood, where he rose to be a colonel. When
+Lee laid down his arms my uncle returned to his plantation, where
+he remained for three or four years. About 1869 or 1870 he came
+back to Europe and took a small estate in Sussex, near Horsham.
+He had made a very considerable fortune in the States, and his
+reason for leaving them was his aversion to the negroes, and his
+dislike of the Republican policy in extending the franchise to
+them. He was a singular man, fierce and quick-tempered, very
+foul-mouthed when he was angry, and of a most retiring
+disposition. During all the years that he lived at Horsham, I
+doubt if ever he set foot in the town. He had a garden and two or
+three fields round his house, and there he would take his
+exercise, though very often for weeks on end he would never leave
+his room. He drank a great deal of brandy and smoked very
+heavily, but he would see no society and did not want any
+friends, not even his own brother.
+
+"He didn't mind me; in fact, he took a fancy to me, for at the
+time when he saw me first I was a youngster of twelve or so. This
+would be in the year 1878, after he had been eight or nine years
+in England. He begged my father to let me live with him and he
+was very kind to me in his way. When he was sober he used to be
+fond of playing backgammon and draughts with me, and he would
+make me his representative both with the servants and with the
+tradespeople, so that by the time that I was sixteen I was quite
+master of the house. I kept all the keys and could go where I
+liked and do what I liked, so long as I did not disturb him in
+his privacy. There was one singular exception, however, for he
+had a single room, a lumber-room up among the attics, which was
+invariably locked, and which he would never permit either me or
+anyone else to enter. With a boy's curiosity I have peeped
+through the keyhole, but I was never able to see more than such a
+collection of old trunks and bundles as would be expected in such
+a room.
+
+"One day--it was in March, 1883--a letter with a foreign stamp
+lay upon the table in front of the colonel's plate. It was not a
+common thing for him to receive letters, for his bills were all
+paid in ready money, and he had no friends of any sort. 'From
+India!' said he as he took it up, 'Pondicherry postmark! What can
+this be?' Opening it hurriedly, out there jumped five little
+dried orange pips, which pattered down upon his plate. I began to
+laugh at this, but the laugh was struck from my lips at the sight
+of his face. His lip had fallen, his eyes were protruding, his
+skin the colour of putty, and he glared at the envelope which he
+still held in his trembling hand, 'K. K. K.!' he shrieked, and
+then, 'My God, my God, my sins have overtaken me!'
+
+"'What is it, uncle?' I cried.
+
+"'Death,' said he, and rising from the table he retired to his
+room, leaving me palpitating with horror. I took up the envelope
+and saw scrawled in red ink upon the inner flap, just above the
+gum, the letter K three times repeated. There was nothing else
+save the five dried pips. What could be the reason of his
+overpowering terror? I left the breakfast-table, and as I
+ascended the stair I met him coming down with an old rusty key,
+which must have belonged to the attic, in one hand, and a small
+brass box, like a cashbox, in the other.
+
+"'They may do what they like, but I'll checkmate them still,'
+said he with an oath. 'Tell Mary that I shall want a fire in my
+room to-day, and send down to Fordham, the Horsham lawyer.'
+
+"I did as he ordered, and when the lawyer arrived I was asked to
+step up to the room. The fire was burning brightly, and in the
+grate there was a mass of black, fluffy ashes, as of burned
+paper, while the brass box stood open and empty beside it. As I
+glanced at the box I noticed, with a start, that upon the lid was
+printed the treble K which I had read in the morning upon the
+envelope.
+
+"'I wish you, John,' said my uncle, 'to witness my will. I leave
+my estate, with all its advantages and all its disadvantages, to
+my brother, your father, whence it will, no doubt, descend to
+you. If you can enjoy it in peace, well and good! If you find you
+cannot, take my advice, my boy, and leave it to your deadliest
+enemy. I am sorry to give you such a two-edged thing, but I can't
+say what turn things are going to take. Kindly sign the paper
+where Mr. Fordham shows you.'
+
+"I signed the paper as directed, and the lawyer took it away with
+him. The singular incident made, as you may think, the deepest
+impression upon me, and I pondered over it and turned it every
+way in my mind without being able to make anything of it. Yet I
+could not shake off the vague feeling of dread which it left
+behind, though the sensation grew less keen as the weeks passed
+and nothing happened to disturb the usual routine of our lives. I
+could see a change in my uncle, however. He drank more than ever,
+and he was less inclined for any sort of society. Most of his
+time he would spend in his room, with the door locked upon the
+inside, but sometimes he would emerge in a sort of drunken frenzy
+and would burst out of the house and tear about the garden with a
+revolver in his hand, screaming out that he was afraid of no man,
+and that he was not to be cooped up, like a sheep in a pen, by
+man or devil. When these hot fits were over, however, he would
+rush tumultuously in at the door and lock and bar it behind him,
+like a man who can brazen it out no longer against the terror
+which lies at the roots of his soul. At such times I have seen
+his face, even on a cold day, glisten with moisture, as though it
+were new raised from a basin.
+
+"Well, to come to an end of the matter, Mr. Holmes, and not to
+abuse your patience, there came a night when he made one of those
+drunken sallies from which he never came back. We found him, when
+we went to search for him, face downward in a little
+green-scummed pool, which lay at the foot of the garden. There
+was no sign of any violence, and the water was but two feet deep,
+so that the jury, having regard to his known eccentricity,
+brought in a verdict of 'suicide.' But I, who knew how he winced
+from the very thought of death, had much ado to persuade myself
+that he had gone out of his way to meet it. The matter passed,
+however, and my father entered into possession of the estate, and
+of some 14,000 pounds, which lay to his credit at the bank."
+
+"One moment," Holmes interposed, "your statement is, I foresee,
+one of the most remarkable to which I have ever listened. Let me
+have the date of the reception by your uncle of the letter, and
+the date of his supposed suicide."
+
+"The letter arrived on March 10, 1883. His death was seven weeks
+later, upon the night of May 2nd."
+
+"Thank you. Pray proceed."
+
+"When my father took over the Horsham property, he, at my
+request, made a careful examination of the attic, which had been
+always locked up. We found the brass box there, although its
+contents had been destroyed. On the inside of the cover was a
+paper label, with the initials of K. K. K. repeated upon it, and
+'Letters, memoranda, receipts, and a register' written beneath.
+These, we presume, indicated the nature of the papers which had
+been destroyed by Colonel Openshaw. For the rest, there was
+nothing of much importance in the attic save a great many
+scattered papers and note-books bearing upon my uncle's life in
+America. Some of them were of the war time and showed that he had
+done his duty well and had borne the repute of a brave soldier.
+Others were of a date during the reconstruction of the Southern
+states, and were mostly concerned with politics, for he had
+evidently taken a strong part in opposing the carpet-bag
+politicians who had been sent down from the North.
+
+"Well, it was the beginning of '84 when my father came to live at
+Horsham, and all went as well as possible with us until the
+January of '85. On the fourth day after the new year I heard my
+father give a sharp cry of surprise as we sat together at the
+breakfast-table. There he was, sitting with a newly opened
+envelope in one hand and five dried orange pips in the
+outstretched palm of the other one. He had always laughed at what
+he called my cock-and-bull story about the colonel, but he looked
+very scared and puzzled now that the same thing had come upon
+himself.
+
+"'Why, what on earth does this mean, John?' he stammered.
+
+"My heart had turned to lead. 'It is K. K. K.,' said I.
+
+"He looked inside the envelope. 'So it is,' he cried. 'Here are
+the very letters. But what is this written above them?'
+
+"'Put the papers on the sundial,' I read, peeping over his
+shoulder.
+
+"'What papers? What sundial?' he asked.
+
+"'The sundial in the garden. There is no other,' said I; 'but the
+papers must be those that are destroyed.'
+
+"'Pooh!' said he, gripping hard at his courage. 'We are in a
+civilised land here, and we can't have tomfoolery of this kind.
+Where does the thing come from?'
+
+"'From Dundee,' I answered, glancing at the postmark.
+
+"'Some preposterous practical joke,' said he. 'What have I to do
+with sundials and papers? I shall take no notice of such
+nonsense.'
+
+"'I should certainly speak to the police,' I said.
+
+"'And be laughed at for my pains. Nothing of the sort.'
+
+"'Then let me do so?'
+
+"'No, I forbid you. I won't have a fuss made about such
+nonsense.'
+
+"It was in vain to argue with him, for he was a very obstinate
+man. I went about, however, with a heart which was full of
+forebodings.
+
+"On the third day after the coming of the letter my father went
+from home to visit an old friend of his, Major Freebody, who is
+in command of one of the forts upon Portsdown Hill. I was glad
+that he should go, for it seemed to me that he was farther from
+danger when he was away from home. In that, however, I was in
+error. Upon the second day of his absence I received a telegram
+from the major, imploring me to come at once. My father had
+fallen over one of the deep chalk-pits which abound in the
+neighbourhood, and was lying senseless, with a shattered skull. I
+hurried to him, but he passed away without having ever recovered
+his consciousness. He had, as it appears, been returning from
+Fareham in the twilight, and as the country was unknown to him,
+and the chalk-pit unfenced, the jury had no hesitation in
+bringing in a verdict of 'death from accidental causes.'
+Carefully as I examined every fact connected with his death, I
+was unable to find anything which could suggest the idea of
+murder. There were no signs of violence, no footmarks, no
+robbery, no record of strangers having been seen upon the roads.
+And yet I need not tell you that my mind was far from at ease,
+and that I was well-nigh certain that some foul plot had been
+woven round him.
+
+"In this sinister way I came into my inheritance. You will ask me
+why I did not dispose of it? I answer, because I was well
+convinced that our troubles were in some way dependent upon an
+incident in my uncle's life, and that the danger would be as
+pressing in one house as in another.
+
+"It was in January, '85, that my poor father met his end, and two
+years and eight months have elapsed since then. During that time
+I have lived happily at Horsham, and I had begun to hope that
+this curse had passed away from the family, and that it had ended
+with the last generation. I had begun to take comfort too soon,
+however; yesterday morning the blow fell in the very shape in
+which it had come upon my father."
+
+The young man took from his waistcoat a crumpled envelope, and
+turning to the table he shook out upon it five little dried
+orange pips.
+
+"This is the envelope," he continued. "The postmark is
+London--eastern division. Within are the very words which were
+upon my father's last message: 'K. K. K.'; and then 'Put the
+papers on the sundial.'"
+
+"What have you done?" asked Holmes.
+
+"Nothing."
+
+"Nothing?"
+
+"To tell the truth"--he sank his face into his thin, white
+hands--"I have felt helpless. I have felt like one of those poor
+rabbits when the snake is writhing towards it. I seem to be in
+the grasp of some resistless, inexorable evil, which no foresight
+and no precautions can guard against."
+
+"Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are
+lost. Nothing but energy can save you. This is no time for
+despair."
+
+"I have seen the police."
+
+"Ah!"
+
+"But they listened to my story with a smile. I am convinced that
+the inspector has formed the opinion that the letters are all
+practical jokes, and that the deaths of my relations were really
+accidents, as the jury stated, and were not to be connected with
+the warnings."
+
+Holmes shook his clenched hands in the air. "Incredible
+imbecility!" he cried.
+
+"They have, however, allowed me a policeman, who may remain in
+the house with me."
+
+"Has he come with you to-night?"
+
+"No. His orders were to stay in the house."
+
+Again Holmes raved in the air.
+
+"Why did you come to me," he cried, "and, above all, why did you
+not come at once?"
+
+"I did not know. It was only to-day that I spoke to Major
+Prendergast about my troubles and was advised by him to come to
+you."
+
+"It is really two days since you had the letter. We should have
+acted before this. You have no further evidence, I suppose, than
+that which you have placed before us--no suggestive detail which
+might help us?"
+
+"There is one thing," said John Openshaw. He rummaged in his coat
+pocket, and, drawing out a piece of discoloured, blue-tinted
+paper, he laid it out upon the table. "I have some remembrance,"
+said he, "that on the day when my uncle burned the papers I
+observed that the small, unburned margins which lay amid the
+ashes were of this particular colour. I found this single sheet
+upon the floor of his room, and I am inclined to think that it
+may be one of the papers which has, perhaps, fluttered out from
+among the others, and in that way has escaped destruction. Beyond
+the mention of pips, I do not see that it helps us much. I think
+myself that it is a page from some private diary. The writing is
+undoubtedly my uncle's."
+
+Holmes moved the lamp, and we both bent over the sheet of paper,
+which showed by its ragged edge that it had indeed been torn from
+a book. It was headed, "March, 1869," and beneath were the
+following enigmatical notices:
+
+"4th. Hudson came. Same old platform.
+
+"7th. Set the pips on McCauley, Paramore, and
+ John Swain, of St. Augustine.
+
+"9th. McCauley cleared.
+
+"10th. John Swain cleared.
+
+"12th. Visited Paramore. All well."
+
+"Thank you!" said Holmes, folding up the paper and returning it
+to our visitor. "And now you must on no account lose another
+instant. We cannot spare time even to discuss what you have told
+me. You must get home instantly and act."
+
+"What shall I do?"
+
+"There is but one thing to do. It must be done at once. You must
+put this piece of paper which you have shown us into the brass
+box which you have described. You must also put in a note to say
+that all the other papers were burned by your uncle, and that
+this is the only one which remains. You must assert that in such
+words as will carry conviction with them. Having done this, you
+must at once put the box out upon the sundial, as directed. Do
+you understand?"
+
+"Entirely."
+
+"Do not think of revenge, or anything of the sort, at present. I
+think that we may gain that by means of the law; but we have our
+web to weave, while theirs is already woven. The first
+consideration is to remove the pressing danger which threatens
+you. The second is to clear up the mystery and to punish the
+guilty parties."
+
+"I thank you," said the young man, rising and pulling on his
+overcoat. "You have given me fresh life and hope. I shall
+certainly do as you advise."
+
+"Do not lose an instant. And, above all, take care of yourself in
+the meanwhile, for I do not think that there can be a doubt that
+you are threatened by a very real and imminent danger. How do you
+go back?"
+
+"By train from Waterloo."
+
+"It is not yet nine. The streets will be crowded, so I trust that
+you may be in safety. And yet you cannot guard yourself too
+closely."
+
+"I am armed."
+
+"That is well. To-morrow I shall set to work upon your case."
+
+"I shall see you at Horsham, then?"
+
+"No, your secret lies in London. It is there that I shall seek
+it."
+
+"Then I shall call upon you in a day, or in two days, with news
+as to the box and the papers. I shall take your advice in every
+particular." He shook hands with us and took his leave. Outside
+the wind still screamed and the rain splashed and pattered
+against the windows. This strange, wild story seemed to have come
+to us from amid the mad elements--blown in upon us like a sheet
+of sea-weed in a gale--and now to have been reabsorbed by them
+once more.
+
+Sherlock Holmes sat for some time in silence, with his head sunk
+forward and his eyes bent upon the red glow of the fire. Then he
+lit his pipe, and leaning back in his chair he watched the blue
+smoke-rings as they chased each other up to the ceiling.
+
+"I think, Watson," he remarked at last, "that of all our cases we
+have had none more fantastic than this."
+
+"Save, perhaps, the Sign of Four."
+
+"Well, yes. Save, perhaps, that. And yet this John Openshaw seems
+to me to be walking amid even greater perils than did the
+Sholtos."
+
+"But have you," I asked, "formed any definite conception as to
+what these perils are?"
+
+"There can be no question as to their nature," he answered.
+
+"Then what are they? Who is this K. K. K., and why does he pursue
+this unhappy family?"
+
+Sherlock Holmes closed his eyes and placed his elbows upon the
+arms of his chair, with his finger-tips together. "The ideal
+reasoner," he remarked, "would, when he had once been shown a
+single fact in all its bearings, deduce from it not only all the
+chain of events which led up to it but also all the results which
+would follow from it. As Cuvier could correctly describe a whole
+animal by the contemplation of a single bone, so the observer who
+has thoroughly understood one link in a series of incidents
+should be able to accurately state all the other ones, both
+before and after. We have not yet grasped the results which the
+reason alone can attain to. Problems may be solved in the study
+which have baffled all those who have sought a solution by the
+aid of their senses. To carry the art, however, to its highest
+pitch, it is necessary that the reasoner should be able to
+utilise all the facts which have come to his knowledge; and this
+in itself implies, as you will readily see, a possession of all
+knowledge, which, even in these days of free education and
+encyclopaedias, is a somewhat rare accomplishment. It is not so
+impossible, however, that a man should possess all knowledge
+which is likely to be useful to him in his work, and this I have
+endeavoured in my case to do. If I remember rightly, you on one
+occasion, in the early days of our friendship, defined my limits
+in a very precise fashion."
+
+"Yes," I answered, laughing. "It was a singular document.
+Philosophy, astronomy, and politics were marked at zero, I
+remember. Botany variable, geology profound as regards the
+mud-stains from any region within fifty miles of town, chemistry
+eccentric, anatomy unsystematic, sensational literature and crime
+records unique, violin-player, boxer, swordsman, lawyer, and
+self-poisoner by cocaine and tobacco. Those, I think, were the
+main points of my analysis."
+
+Holmes grinned at the last item. "Well," he said, "I say now, as
+I said then, that a man should keep his little brain-attic
+stocked with all the furniture that he is likely to use, and the
+rest he can put away in the lumber-room of his library, where he
+can get it if he wants it. Now, for such a case as the one which
+has been submitted to us to-night, we need certainly to muster
+all our resources. Kindly hand me down the letter K of the
+'American Encyclopaedia' which stands upon the shelf beside you.
+Thank you. Now let us consider the situation and see what may be
+deduced from it. In the first place, we may start with a strong
+presumption that Colonel Openshaw had some very strong reason for
+leaving America. Men at his time of life do not change all their
+habits and exchange willingly the charming climate of Florida for
+the lonely life of an English provincial town. His extreme love
+of solitude in England suggests the idea that he was in fear of
+someone or something, so we may assume as a working hypothesis
+that it was fear of someone or something which drove him from
+America. As to what it was he feared, we can only deduce that by
+considering the formidable letters which were received by himself
+and his successors. Did you remark the postmarks of those
+letters?"
+
+"The first was from Pondicherry, the second from Dundee, and the
+third from London."
+
+"From East London. What do you deduce from that?"
+
+"They are all seaports. That the writer was on board of a ship."
+
+"Excellent. We have already a clue. There can be no doubt that
+the probability--the strong probability--is that the writer was
+on board of a ship. And now let us consider another point. In the
+case of Pondicherry, seven weeks elapsed between the threat and
+its fulfilment, in Dundee it was only some three or four days.
+Does that suggest anything?"
+
+"A greater distance to travel."
+
+"But the letter had also a greater distance to come."
+
+"Then I do not see the point."
+
+"There is at least a presumption that the vessel in which the man
+or men are is a sailing-ship. It looks as if they always send
+their singular warning or token before them when starting upon
+their mission. You see how quickly the deed followed the sign
+when it came from Dundee. If they had come from Pondicherry in a
+steamer they would have arrived almost as soon as their letter.
+But, as a matter of fact, seven weeks elapsed. I think that those
+seven weeks represented the difference between the mail-boat which
+brought the letter and the sailing vessel which brought the
+writer."
+
+"It is possible."
+
+"More than that. It is probable. And now you see the deadly
+urgency of this new case, and why I urged young Openshaw to
+caution. The blow has always fallen at the end of the time which
+it would take the senders to travel the distance. But this one
+comes from London, and therefore we cannot count upon delay."
+
+"Good God!" I cried. "What can it mean, this relentless
+persecution?"
+
+"The papers which Openshaw carried are obviously of vital
+importance to the person or persons in the sailing-ship. I think
+that it is quite clear that there must be more than one of them.
+A single man could not have carried out two deaths in such a way
+as to deceive a coroner's jury. There must have been several in
+it, and they must have been men of resource and determination.
+Their papers they mean to have, be the holder of them who it may.
+In this way you see K. K. K. ceases to be the initials of an
+individual and becomes the badge of a society."
+
+"But of what society?"
+
+"Have you never--" said Sherlock Holmes, bending forward and
+sinking his voice--"have you never heard of the Ku Klux Klan?"
+
+"I never have."
+
+Holmes turned over the leaves of the book upon his knee. "Here it
+is," said he presently:
+
+"'Ku Klux Klan. A name derived from the fanciful resemblance to
+the sound produced by cocking a rifle. This terrible secret
+society was formed by some ex-Confederate soldiers in the
+Southern states after the Civil War, and it rapidly formed local
+branches in different parts of the country, notably in Tennessee,
+Louisiana, the Carolinas, Georgia, and Florida. Its power was
+used for political purposes, principally for the terrorising of
+the negro voters and the murdering and driving from the country
+of those who were opposed to its views. Its outrages were usually
+preceded by a warning sent to the marked man in some fantastic
+but generally recognised shape--a sprig of oak-leaves in some
+parts, melon seeds or orange pips in others. On receiving this
+the victim might either openly abjure his former ways, or might
+fly from the country. If he braved the matter out, death would
+unfailingly come upon him, and usually in some strange and
+unforeseen manner. So perfect was the organisation of the
+society, and so systematic its methods, that there is hardly a
+case upon record where any man succeeded in braving it with
+impunity, or in which any of its outrages were traced home to the
+perpetrators. For some years the organisation flourished in spite
+of the efforts of the United States government and of the better
+classes of the community in the South. Eventually, in the year
+1869, the movement rather suddenly collapsed, although there have
+been sporadic outbreaks of the same sort since that date.'
+
+"You will observe," said Holmes, laying down the volume, "that
+the sudden breaking up of the society was coincident with the
+disappearance of Openshaw from America with their papers. It may
+well have been cause and effect. It is no wonder that he and his
+family have some of the more implacable spirits upon their track.
+You can understand that this register and diary may implicate
+some of the first men in the South, and that there may be many
+who will not sleep easy at night until it is recovered."
+
+"Then the page we have seen--"
+
+"Is such as we might expect. It ran, if I remember right, 'sent
+the pips to A, B, and C'--that is, sent the society's warning to
+them. Then there are successive entries that A and B cleared, or
+left the country, and finally that C was visited, with, I fear, a
+sinister result for C. Well, I think, Doctor, that we may let
+some light into this dark place, and I believe that the only
+chance young Openshaw has in the meantime is to do what I have
+told him. There is nothing more to be said or to be done
+to-night, so hand me over my violin and let us try to forget for
+half an hour the miserable weather and the still more miserable
+ways of our fellow-men."
+
+
+It had cleared in the morning, and the sun was shining with a
+subdued brightness through the dim veil which hangs over the
+great city. Sherlock Holmes was already at breakfast when I came
+down.
+
+"You will excuse me for not waiting for you," said he; "I have, I
+foresee, a very busy day before me in looking into this case of
+young Openshaw's."
+
+"What steps will you take?" I asked.
+
+"It will very much depend upon the results of my first inquiries.
+I may have to go down to Horsham, after all."
+
+"You will not go there first?"
+
+"No, I shall commence with the City. Just ring the bell and the
+maid will bring up your coffee."
+
+As I waited, I lifted the unopened newspaper from the table and
+glanced my eye over it. It rested upon a heading which sent a
+chill to my heart.
+
+"Holmes," I cried, "you are too late."
+
+"Ah!" said he, laying down his cup, "I feared as much. How was it
+done?" He spoke calmly, but I could see that he was deeply moved.
+
+"My eye caught the name of Openshaw, and the heading 'Tragedy
+Near Waterloo Bridge.' Here is the account:
+
+"Between nine and ten last night Police-Constable Cook, of the H
+Division, on duty near Waterloo Bridge, heard a cry for help and
+a splash in the water. The night, however, was extremely dark and
+stormy, so that, in spite of the help of several passers-by, it
+was quite impossible to effect a rescue. The alarm, however, was
+given, and, by the aid of the water-police, the body was
+eventually recovered. It proved to be that of a young gentleman
+whose name, as it appears from an envelope which was found in his
+pocket, was John Openshaw, and whose residence is near Horsham.
+It is conjectured that he may have been hurrying down to catch
+the last train from Waterloo Station, and that in his haste and
+the extreme darkness he missed his path and walked over the edge
+of one of the small landing-places for river steamboats. The body
+exhibited no traces of violence, and there can be no doubt that
+the deceased had been the victim of an unfortunate accident,
+which should have the effect of calling the attention of the
+authorities to the condition of the riverside landing-stages."
+
+We sat in silence for some minutes, Holmes more depressed and
+shaken than I had ever seen him.
+
+"That hurts my pride, Watson," he said at last. "It is a petty
+feeling, no doubt, but it hurts my pride. It becomes a personal
+matter with me now, and, if God sends me health, I shall set my
+hand upon this gang. That he should come to me for help, and that
+I should send him away to his death--!" He sprang from his chair
+and paced about the room in uncontrollable agitation, with a
+flush upon his sallow cheeks and a nervous clasping and
+unclasping of his long thin hands.
+
+"They must be cunning devils," he exclaimed at last. "How could
+they have decoyed him down there? The Embankment is not on the
+direct line to the station. The bridge, no doubt, was too
+crowded, even on such a night, for their purpose. Well, Watson,
+we shall see who will win in the long run. I am going out now!"
+
+"To the police?"
+
+"No; I shall be my own police. When I have spun the web they may
+take the flies, but not before."
+
+All day I was engaged in my professional work, and it was late in
+the evening before I returned to Baker Street. Sherlock Holmes
+had not come back yet. It was nearly ten o'clock before he
+entered, looking pale and worn. He walked up to the sideboard,
+and tearing a piece from the loaf he devoured it voraciously,
+washing it down with a long draught of water.
+
+"You are hungry," I remarked.
+
+"Starving. It had escaped my memory. I have had nothing since
+breakfast."
+
+"Nothing?"
+
+"Not a bite. I had no time to think of it."
+
+"And how have you succeeded?"
+
+"Well."
+
+"You have a clue?"
+
+"I have them in the hollow of my hand. Young Openshaw shall not
+long remain unavenged. Why, Watson, let us put their own devilish
+trade-mark upon them. It is well thought of!"
+
+"What do you mean?"
+
+He took an orange from the cupboard, and tearing it to pieces he
+squeezed out the pips upon the table. Of these he took five and
+thrust them into an envelope. On the inside of the flap he wrote
+"S. H. for J. O." Then he sealed it and addressed it to "Captain
+James Calhoun, Barque 'Lone Star,' Savannah, Georgia."
+
+"That will await him when he enters port," said he, chuckling.
+"It may give him a sleepless night. He will find it as sure a
+precursor of his fate as Openshaw did before him."
+
+"And who is this Captain Calhoun?"
+
+"The leader of the gang. I shall have the others, but he first."
+
+"How did you trace it, then?"
+
+He took a large sheet of paper from his pocket, all covered with
+dates and names.
+
+"I have spent the whole day," said he, "over Lloyd's registers
+and files of the old papers, following the future career of every
+vessel which touched at Pondicherry in January and February in
+'83. There were thirty-six ships of fair tonnage which were
+reported there during those months. Of these, one, the 'Lone Star,'
+instantly attracted my attention, since, although it was reported
+as having cleared from London, the name is that which is given to
+one of the states of the Union."
+
+"Texas, I think."
+
+"I was not and am not sure which; but I knew that the ship must
+have an American origin."
+
+"What then?"
+
+"I searched the Dundee records, and when I found that the barque
+'Lone Star' was there in January, '85, my suspicion became a
+certainty. I then inquired as to the vessels which lay at present
+in the port of London."
+
+"Yes?"
+
+"The 'Lone Star' had arrived here last week. I went down to the
+Albert Dock and found that she had been taken down the river by
+the early tide this morning, homeward bound to Savannah. I wired
+to Gravesend and learned that she had passed some time ago, and
+as the wind is easterly I have no doubt that she is now past the
+Goodwins and not very far from the Isle of Wight."
+
+"What will you do, then?"
+
+"Oh, I have my hand upon him. He and the two mates, are as I
+learn, the only native-born Americans in the ship. The others are
+Finns and Germans. I know, also, that they were all three away
+from the ship last night. I had it from the stevedore who has
+been loading their cargo. By the time that their sailing-ship
+reaches Savannah the mail-boat will have carried this letter, and
+the cable will have informed the police of Savannah that these
+three gentlemen are badly wanted here upon a charge of murder."
+
+There is ever a flaw, however, in the best laid of human plans,
+and the murderers of John Openshaw were never to receive the
+orange pips which would show them that another, as cunning and as
+resolute as themselves, was upon their track. Very long and very
+severe were the equinoctial gales that year. We waited long for
+news of the "Lone Star" of Savannah, but none ever reached us. We
+did at last hear that somewhere far out in the Atlantic a
+shattered stern-post of a boat was seen swinging in the trough
+of a wave, with the letters "L. S." carved upon it, and that is
+all which we shall ever know of the fate of the "Lone Star."
+
+
+
+ADVENTURE VI. THE MAN WITH THE TWISTED LIP
+
+Isa Whitney, brother of the late Elias Whitney, D.D., Principal
+of the Theological College of St. George's, was much addicted to
+opium. The habit grew upon him, as I understand, from some
+foolish freak when he was at college; for having read De
+Quincey's description of his dreams and sensations, he had
+drenched his tobacco with laudanum in an attempt to produce the
+same effects. He found, as so many more have done, that the
+practice is easier to attain than to get rid of, and for many
+years he continued to be a slave to the drug, an object of
+mingled horror and pity to his friends and relatives. I can see
+him now, with yellow, pasty face, drooping lids, and pin-point
+pupils, all huddled in a chair, the wreck and ruin of a noble
+man.
+
+One night--it was in June, '89--there came a ring to my bell,
+about the hour when a man gives his first yawn and glances at the
+clock. I sat up in my chair, and my wife laid her needle-work
+down in her lap and made a little face of disappointment.
+
+"A patient!" said she. "You'll have to go out."
+
+I groaned, for I was newly come back from a weary day.
+
+We heard the door open, a few hurried words, and then quick steps
+upon the linoleum. Our own door flew open, and a lady, clad in
+some dark-coloured stuff, with a black veil, entered the room.
+
+"You will excuse my calling so late," she began, and then,
+suddenly losing her self-control, she ran forward, threw her arms
+about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in
+such trouble!" she cried; "I do so want a little help."
+
+"Why," said my wife, pulling up her veil, "it is Kate Whitney.
+How you startled me, Kate! I had not an idea who you were when
+you came in."
+
+"I didn't know what to do, so I came straight to you." That was
+always the way. Folk who were in grief came to my wife like birds
+to a light-house.
+
+"It was very sweet of you to come. Now, you must have some wine
+and water, and sit here comfortably and tell us all about it. Or
+should you rather that I sent James off to bed?"
+
+"Oh, no, no! I want the doctor's advice and help, too. It's about
+Isa. He has not been home for two days. I am so frightened about
+him!"
+
+It was not the first time that she had spoken to us of her
+husband's trouble, to me as a doctor, to my wife as an old friend
+and school companion. We soothed and comforted her by such words
+as we could find. Did she know where her husband was? Was it
+possible that we could bring him back to her?
+
+It seems that it was. She had the surest information that of late
+he had, when the fit was on him, made use of an opium den in the
+farthest east of the City. Hitherto his orgies had always been
+confined to one day, and he had come back, twitching and
+shattered, in the evening. But now the spell had been upon him
+eight-and-forty hours, and he lay there, doubtless among the
+dregs of the docks, breathing in the poison or sleeping off the
+effects. There he was to be found, she was sure of it, at the Bar
+of Gold, in Upper Swandam Lane. But what was she to do? How could
+she, a young and timid woman, make her way into such a place and
+pluck her husband out from among the ruffians who surrounded him?
+
+There was the case, and of course there was but one way out of
+it. Might I not escort her to this place? And then, as a second
+thought, why should she come at all? I was Isa Whitney's medical
+adviser, and as such I had influence over him. I could manage it
+better if I were alone. I promised her on my word that I would
+send him home in a cab within two hours if he were indeed at the
+address which she had given me. And so in ten minutes I had left
+my armchair and cheery sitting-room behind me, and was speeding
+eastward in a hansom on a strange errand, as it seemed to me at
+the time, though the future only could show how strange it was to
+be.
+
+But there was no great difficulty in the first stage of my
+adventure. Upper Swandam Lane is a vile alley lurking behind the
+high wharves which line the north side of the river to the east
+of London Bridge. Between a slop-shop and a gin-shop, approached
+by a steep flight of steps leading down to a black gap like the
+mouth of a cave, I found the den of which I was in search.
+Ordering my cab to wait, I passed down the steps, worn hollow in
+the centre by the ceaseless tread of drunken feet; and by the
+light of a flickering oil-lamp above the door I found the latch
+and made my way into a long, low room, thick and heavy with the
+brown opium smoke, and terraced with wooden berths, like the
+forecastle of an emigrant ship.
+
+Through the gloom one could dimly catch a glimpse of bodies lying
+in strange fantastic poses, bowed shoulders, bent knees, heads
+thrown back, and chins pointing upward, with here and there a
+dark, lack-lustre eye turned upon the newcomer. Out of the black
+shadows there glimmered little red circles of light, now bright,
+now faint, as the burning poison waxed or waned in the bowls of
+the metal pipes. The most lay silent, but some muttered to
+themselves, and others talked together in a strange, low,
+monotonous voice, their conversation coming in gushes, and then
+suddenly tailing off into silence, each mumbling out his own
+thoughts and paying little heed to the words of his neighbour. At
+the farther end was a small brazier of burning charcoal, beside
+which on a three-legged wooden stool there sat a tall, thin old
+man, with his jaw resting upon his two fists, and his elbows upon
+his knees, staring into the fire.
+
+As I entered, a sallow Malay attendant had hurried up with a pipe
+for me and a supply of the drug, beckoning me to an empty berth.
+
+"Thank you. I have not come to stay," said I. "There is a friend
+of mine here, Mr. Isa Whitney, and I wish to speak with him."
+
+There was a movement and an exclamation from my right, and
+peering through the gloom, I saw Whitney, pale, haggard, and
+unkempt, staring out at me.
+
+"My God! It's Watson," said he. He was in a pitiable state of
+reaction, with every nerve in a twitter. "I say, Watson, what
+o'clock is it?"
+
+"Nearly eleven."
+
+"Of what day?"
+
+"Of Friday, June 19th."
+
+"Good heavens! I thought it was Wednesday. It is Wednesday. What
+d'you want to frighten a chap for?" He sank his face onto his
+arms and began to sob in a high treble key.
+
+"I tell you that it is Friday, man. Your wife has been waiting
+this two days for you. You should be ashamed of yourself!"
+
+"So I am. But you've got mixed, Watson, for I have only been here
+a few hours, three pipes, four pipes--I forget how many. But I'll
+go home with you. I wouldn't frighten Kate--poor little Kate.
+Give me your hand! Have you a cab?"
+
+"Yes, I have one waiting."
+
+"Then I shall go in it. But I must owe something. Find what I
+owe, Watson. I am all off colour. I can do nothing for myself."
+
+I walked down the narrow passage between the double row of
+sleepers, holding my breath to keep out the vile, stupefying
+fumes of the drug, and looking about for the manager. As I passed
+the tall man who sat by the brazier I felt a sudden pluck at my
+skirt, and a low voice whispered, "Walk past me, and then look
+back at me." The words fell quite distinctly upon my ear. I
+glanced down. They could only have come from the old man at my
+side, and yet he sat now as absorbed as ever, very thin, very
+wrinkled, bent with age, an opium pipe dangling down from between
+his knees, as though it had dropped in sheer lassitude from his
+fingers. I took two steps forward and looked back. It took all my
+self-control to prevent me from breaking out into a cry of
+astonishment. He had turned his back so that none could see him
+but I. His form had filled out, his wrinkles were gone, the dull
+eyes had regained their fire, and there, sitting by the fire and
+grinning at my surprise, was none other than Sherlock Holmes. He
+made a slight motion to me to approach him, and instantly, as he
+turned his face half round to the company once more, subsided
+into a doddering, loose-lipped senility.
+
+"Holmes!" I whispered, "what on earth are you doing in this den?"
+
+"As low as you can," he answered; "I have excellent ears. If you
+would have the great kindness to get rid of that sottish friend
+of yours I should be exceedingly glad to have a little talk with
+you."
+
+"I have a cab outside."
+
+"Then pray send him home in it. You may safely trust him, for he
+appears to be too limp to get into any mischief. I should
+recommend you also to send a note by the cabman to your wife to
+say that you have thrown in your lot with me. If you will wait
+outside, I shall be with you in five minutes."
+
+It was difficult to refuse any of Sherlock Holmes' requests, for
+they were always so exceedingly definite, and put forward with
+such a quiet air of mastery. I felt, however, that when Whitney
+was once confined in the cab my mission was practically
+accomplished; and for the rest, I could not wish anything better
+than to be associated with my friend in one of those singular
+adventures which were the normal condition of his existence. In a
+few minutes I had written my note, paid Whitney's bill, led him
+out to the cab, and seen him driven through the darkness. In a
+very short time a decrepit figure had emerged from the opium den,
+and I was walking down the street with Sherlock Holmes. For two
+streets he shuffled along with a bent back and an uncertain foot.
+Then, glancing quickly round, he straightened himself out and
+burst into a hearty fit of laughter.
+
+"I suppose, Watson," said he, "that you imagine that I have added
+opium-smoking to cocaine injections, and all the other little
+weaknesses on which you have favoured me with your medical
+views."
+
+"I was certainly surprised to find you there."
+
+"But not more so than I to find you."
+
+"I came to find a friend."
+
+"And I to find an enemy."
+
+"An enemy?"
+
+"Yes; one of my natural enemies, or, shall I say, my natural
+prey. Briefly, Watson, I am in the midst of a very remarkable
+inquiry, and I have hoped to find a clue in the incoherent
+ramblings of these sots, as I have done before now. Had I been
+recognised in that den my life would not have been worth an
+hour's purchase; for I have used it before now for my own
+purposes, and the rascally Lascar who runs it has sworn to have
+vengeance upon me. There is a trap-door at the back of that
+building, near the corner of Paul's Wharf, which could tell some
+strange tales of what has passed through it upon the moonless
+nights."
+
+"What! You do not mean bodies?"
+
+"Ay, bodies, Watson. We should be rich men if we had 1000 pounds
+for every poor devil who has been done to death in that den. It
+is the vilest murder-trap on the whole riverside, and I fear that
+Neville St. Clair has entered it never to leave it more. But our
+trap should be here." He put his two forefingers between his
+teeth and whistled shrilly--a signal which was answered by a
+similar whistle from the distance, followed shortly by the rattle
+of wheels and the clink of horses' hoofs.
+
+"Now, Watson," said Holmes, as a tall dog-cart dashed up through
+the gloom, throwing out two golden tunnels of yellow light from
+its side lanterns. "You'll come with me, won't you?"
+
+"If I can be of use."
+
+"Oh, a trusty comrade is always of use; and a chronicler still
+more so. My room at The Cedars is a double-bedded one."
+
+"The Cedars?"
+
+"Yes; that is Mr. St. Clair's house. I am staying there while I
+conduct the inquiry."
+
+"Where is it, then?"
+
+"Near Lee, in Kent. We have a seven-mile drive before us."
+
+"But I am all in the dark."
+
+"Of course you are. You'll know all about it presently. Jump up
+here. All right, John; we shall not need you. Here's half a
+crown. Look out for me to-morrow, about eleven. Give her her
+head. So long, then!"
+
+He flicked the horse with his whip, and we dashed away through
+the endless succession of sombre and deserted streets, which
+widened gradually, until we were flying across a broad
+balustraded bridge, with the murky river flowing sluggishly
+beneath us. Beyond lay another dull wilderness of bricks and
+mortar, its silence broken only by the heavy, regular footfall of
+the policeman, or the songs and shouts of some belated party of
+revellers. A dull wrack was drifting slowly across the sky, and a
+star or two twinkled dimly here and there through the rifts of
+the clouds. Holmes drove in silence, with his head sunk upon his
+breast, and the air of a man who is lost in thought, while I sat
+beside him, curious to learn what this new quest might be which
+seemed to tax his powers so sorely, and yet afraid to break in
+upon the current of his thoughts. We had driven several miles,
+and were beginning to get to the fringe of the belt of suburban
+villas, when he shook himself, shrugged his shoulders, and lit up
+his pipe with the air of a man who has satisfied himself that he
+is acting for the best.
+
+"You have a grand gift of silence, Watson," said he. "It makes
+you quite invaluable as a companion. 'Pon my word, it is a great
+thing for me to have someone to talk to, for my own thoughts are
+not over-pleasant. I was wondering what I should say to this dear
+little woman to-night when she meets me at the door."
+
+"You forget that I know nothing about it."
+
+"I shall just have time to tell you the facts of the case before
+we get to Lee. It seems absurdly simple, and yet, somehow I can
+get nothing to go upon. There's plenty of thread, no doubt, but I
+can't get the end of it into my hand. Now, I'll state the case
+clearly and concisely to you, Watson, and maybe you can see a
+spark where all is dark to me."
+
+"Proceed, then."
+
+"Some years ago--to be definite, in May, 1884--there came to Lee
+a gentleman, Neville St. Clair by name, who appeared to have
+plenty of money. He took a large villa, laid out the grounds very
+nicely, and lived generally in good style. By degrees he made
+friends in the neighbourhood, and in 1887 he married the daughter
+of a local brewer, by whom he now has two children. He had no
+occupation, but was interested in several companies and went into
+town as a rule in the morning, returning by the 5:14 from Cannon
+Street every night. Mr. St. Clair is now thirty-seven years of
+age, is a man of temperate habits, a good husband, a very
+affectionate father, and a man who is popular with all who know
+him. I may add that his whole debts at the present moment, as far
+as we have been able to ascertain, amount to 88 pounds 10s., while
+he has 220 pounds standing to his credit in the Capital and
+Counties Bank. There is no reason, therefore, to think that money
+troubles have been weighing upon his mind.
+
+"Last Monday Mr. Neville St. Clair went into town rather earlier
+than usual, remarking before he started that he had two important
+commissions to perform, and that he would bring his little boy
+home a box of bricks. Now, by the merest chance, his wife
+received a telegram upon this same Monday, very shortly after his
+departure, to the effect that a small parcel of considerable
+value which she had been expecting was waiting for her at the
+offices of the Aberdeen Shipping Company. Now, if you are well up
+in your London, you will know that the office of the company is
+in Fresno Street, which branches out of Upper Swandam Lane, where
+you found me to-night. Mrs. St. Clair had her lunch, started for
+the City, did some shopping, proceeded to the company's office,
+got her packet, and found herself at exactly 4:35 walking through
+Swandam Lane on her way back to the station. Have you followed me
+so far?"
+
+"It is very clear."
+
+"If you remember, Monday was an exceedingly hot day, and Mrs. St.
+Clair walked slowly, glancing about in the hope of seeing a cab,
+as she did not like the neighbourhood in which she found herself.
+While she was walking in this way down Swandam Lane, she suddenly
+heard an ejaculation or cry, and was struck cold to see her
+husband looking down at her and, as it seemed to her, beckoning
+to her from a second-floor window. The window was open, and she
+distinctly saw his face, which she describes as being terribly
+agitated. He waved his hands frantically to her, and then
+vanished from the window so suddenly that it seemed to her that
+he had been plucked back by some irresistible force from behind.
+One singular point which struck her quick feminine eye was that
+although he wore some dark coat, such as he had started to town
+in, he had on neither collar nor necktie.
+
+"Convinced that something was amiss with him, she rushed down the
+steps--for the house was none other than the opium den in which
+you found me to-night--and running through the front room she
+attempted to ascend the stairs which led to the first floor. At
+the foot of the stairs, however, she met this Lascar scoundrel of
+whom I have spoken, who thrust her back and, aided by a Dane, who
+acts as assistant there, pushed her out into the street. Filled
+with the most maddening doubts and fears, she rushed down the
+lane and, by rare good-fortune, met in Fresno Street a number of
+constables with an inspector, all on their way to their beat. The
+inspector and two men accompanied her back, and in spite of the
+continued resistance of the proprietor, they made their way to
+the room in which Mr. St. Clair had last been seen. There was no
+sign of him there. In fact, in the whole of that floor there was
+no one to be found save a crippled wretch of hideous aspect, who,
+it seems, made his home there. Both he and the Lascar stoutly
+swore that no one else had been in the front room during the
+afternoon. So determined was their denial that the inspector was
+staggered, and had almost come to believe that Mrs. St. Clair had
+been deluded when, with a cry, she sprang at a small deal box
+which lay upon the table and tore the lid from it. Out there fell
+a cascade of children's bricks. It was the toy which he had
+promised to bring home.
+
+"This discovery, and the evident confusion which the cripple
+showed, made the inspector realise that the matter was serious.
+The rooms were carefully examined, and results all pointed to an
+abominable crime. The front room was plainly furnished as a
+sitting-room and led into a small bedroom, which looked out upon
+the back of one of the wharves. Between the wharf and the bedroom
+window is a narrow strip, which is dry at low tide but is covered
+at high tide with at least four and a half feet of water. The
+bedroom window was a broad one and opened from below. On
+examination traces of blood were to be seen upon the windowsill,
+and several scattered drops were visible upon the wooden floor of
+the bedroom. Thrust away behind a curtain in the front room were
+all the clothes of Mr. Neville St. Clair, with the exception of
+his coat. His boots, his socks, his hat, and his watch--all were
+there. There were no signs of violence upon any of these
+garments, and there were no other traces of Mr. Neville St.
+Clair. Out of the window he must apparently have gone for no
+other exit could be discovered, and the ominous bloodstains upon
+the sill gave little promise that he could save himself by
+swimming, for the tide was at its very highest at the moment of
+the tragedy.
+
+"And now as to the villains who seemed to be immediately
+implicated in the matter. The Lascar was known to be a man of the
+vilest antecedents, but as, by Mrs. St. Clair's story, he was
+known to have been at the foot of the stair within a very few
+seconds of her husband's appearance at the window, he could
+hardly have been more than an accessory to the crime. His defence
+was one of absolute ignorance, and he protested that he had no
+knowledge as to the doings of Hugh Boone, his lodger, and that he
+could not account in any way for the presence of the missing
+gentleman's clothes.
+
+"So much for the Lascar manager. Now for the sinister cripple who
+lives upon the second floor of the opium den, and who was
+certainly the last human being whose eyes rested upon Neville St.
+Clair. His name is Hugh Boone, and his hideous face is one which
+is familiar to every man who goes much to the City. He is a
+professional beggar, though in order to avoid the police
+regulations he pretends to a small trade in wax vestas. Some
+little distance down Threadneedle Street, upon the left-hand
+side, there is, as you may have remarked, a small angle in the
+wall. Here it is that this creature takes his daily seat,
+cross-legged with his tiny stock of matches on his lap, and as he
+is a piteous spectacle a small rain of charity descends into the
+greasy leather cap which lies upon the pavement beside him. I
+have watched the fellow more than once before ever I thought of
+making his professional acquaintance, and I have been surprised
+at the harvest which he has reaped in a short time. His
+appearance, you see, is so remarkable that no one can pass him
+without observing him. A shock of orange hair, a pale face
+disfigured by a horrible scar, which, by its contraction, has
+turned up the outer edge of his upper lip, a bulldog chin, and a
+pair of very penetrating dark eyes, which present a singular
+contrast to the colour of his hair, all mark him out from amid
+the common crowd of mendicants and so, too, does his wit, for he
+is ever ready with a reply to any piece of chaff which may be
+thrown at him by the passers-by. This is the man whom we now
+learn to have been the lodger at the opium den, and to have been
+the last man to see the gentleman of whom we are in quest."
+
+"But a cripple!" said I. "What could he have done single-handed
+against a man in the prime of life?"
+
+"He is a cripple in the sense that he walks with a limp; but in
+other respects he appears to be a powerful and well-nurtured man.
+Surely your medical experience would tell you, Watson, that
+weakness in one limb is often compensated for by exceptional
+strength in the others."
+
+"Pray continue your narrative."
+
+"Mrs. St. Clair had fainted at the sight of the blood upon the
+window, and she was escorted home in a cab by the police, as her
+presence could be of no help to them in their investigations.
+Inspector Barton, who had charge of the case, made a very careful
+examination of the premises, but without finding anything which
+threw any light upon the matter. One mistake had been made in not
+arresting Boone instantly, as he was allowed some few minutes
+during which he might have communicated with his friend the
+Lascar, but this fault was soon remedied, and he was seized and
+searched, without anything being found which could incriminate
+him. There were, it is true, some blood-stains upon his right
+shirt-sleeve, but he pointed to his ring-finger, which had been
+cut near the nail, and explained that the bleeding came from
+there, adding that he had been to the window not long before, and
+that the stains which had been observed there came doubtless from
+the same source. He denied strenuously having ever seen Mr.
+Neville St. Clair and swore that the presence of the clothes in
+his room was as much a mystery to him as to the police. As to
+Mrs. St. Clair's assertion that she had actually seen her husband
+at the window, he declared that she must have been either mad or
+dreaming. He was removed, loudly protesting, to the
+police-station, while the inspector remained upon the premises in
+the hope that the ebbing tide might afford some fresh clue.
+
+"And it did, though they hardly found upon the mud-bank what they
+had feared to find. It was Neville St. Clair's coat, and not
+Neville St. Clair, which lay uncovered as the tide receded. And
+what do you think they found in the pockets?"
+
+"I cannot imagine."
+
+"No, I don't think you would guess. Every pocket stuffed with
+pennies and half-pennies--421 pennies and 270 half-pennies. It
+was no wonder that it had not been swept away by the tide. But a
+human body is a different matter. There is a fierce eddy between
+the wharf and the house. It seemed likely enough that the
+weighted coat had remained when the stripped body had been sucked
+away into the river."
+
+"But I understand that all the other clothes were found in the
+room. Would the body be dressed in a coat alone?"
+
+"No, sir, but the facts might be met speciously enough. Suppose
+that this man Boone had thrust Neville St. Clair through the
+window, there is no human eye which could have seen the deed.
+What would he do then? It would of course instantly strike him
+that he must get rid of the tell-tale garments. He would seize
+the coat, then, and be in the act of throwing it out, when it
+would occur to him that it would swim and not sink. He has little
+time, for he has heard the scuffle downstairs when the wife tried
+to force her way up, and perhaps he has already heard from his
+Lascar confederate that the police are hurrying up the street.
+There is not an instant to be lost. He rushes to some secret
+hoard, where he has accumulated the fruits of his beggary, and he
+stuffs all the coins upon which he can lay his hands into the
+pockets to make sure of the coat's sinking. He throws it out, and
+would have done the same with the other garments had not he heard
+the rush of steps below, and only just had time to close the
+window when the police appeared."
+
+"It certainly sounds feasible."
+
+"Well, we will take it as a working hypothesis for want of a
+better. Boone, as I have told you, was arrested and taken to the
+station, but it could not be shown that there had ever before
+been anything against him. He had for years been known as a
+professional beggar, but his life appeared to have been a very
+quiet and innocent one. There the matter stands at present, and
+the questions which have to be solved--what Neville St. Clair was
+doing in the opium den, what happened to him when there, where is
+he now, and what Hugh Boone had to do with his disappearance--are
+all as far from a solution as ever. I confess that I cannot
+recall any case within my experience which looked at the first
+glance so simple and yet which presented such difficulties."
+
+While Sherlock Holmes had been detailing this singular series of
+events, we had been whirling through the outskirts of the great
+town until the last straggling houses had been left behind, and
+we rattled along with a country hedge upon either side of us.
+Just as he finished, however, we drove through two scattered
+villages, where a few lights still glimmered in the windows.
+
+"We are on the outskirts of Lee," said my companion. "We have
+touched on three English counties in our short drive, starting in
+Middlesex, passing over an angle of Surrey, and ending in Kent.
+See that light among the trees? That is The Cedars, and beside
+that lamp sits a woman whose anxious ears have already, I have
+little doubt, caught the clink of our horse's feet."
+
+"But why are you not conducting the case from Baker Street?" I
+asked.
+
+"Because there are many inquiries which must be made out here.
+Mrs. St. Clair has most kindly put two rooms at my disposal, and
+you may rest assured that she will have nothing but a welcome for
+my friend and colleague. I hate to meet her, Watson, when I have
+no news of her husband. Here we are. Whoa, there, whoa!"
+
+We had pulled up in front of a large villa which stood within its
+own grounds. A stable-boy had run out to the horse's head, and
+springing down, I followed Holmes up the small, winding
+gravel-drive which led to the house. As we approached, the door
+flew open, and a little blonde woman stood in the opening, clad
+in some sort of light mousseline de soie, with a touch of fluffy
+pink chiffon at her neck and wrists. She stood with her figure
+outlined against the flood of light, one hand upon the door, one
+half-raised in her eagerness, her body slightly bent, her head
+and face protruded, with eager eyes and parted lips, a standing
+question.
+
+"Well?" she cried, "well?" And then, seeing that there were two
+of us, she gave a cry of hope which sank into a groan as she saw
+that my companion shook his head and shrugged his shoulders.
+
+"No good news?"
+
+"None."
+
+"No bad?"
+
+"No."
+
+"Thank God for that. But come in. You must be weary, for you have
+had a long day."
+
+"This is my friend, Dr. Watson. He has been of most vital use to
+me in several of my cases, and a lucky chance has made it
+possible for me to bring him out and associate him with this
+investigation."
+
+"I am delighted to see you," said she, pressing my hand warmly.
+"You will, I am sure, forgive anything that may be wanting in our
+arrangements, when you consider the blow which has come so
+suddenly upon us."
+
+"My dear madam," said I, "I am an old campaigner, and if I were
+not I can very well see that no apology is needed. If I can be of
+any assistance, either to you or to my friend here, I shall be
+indeed happy."
+
+"Now, Mr. Sherlock Holmes," said the lady as we entered a
+well-lit dining-room, upon the table of which a cold supper had
+been laid out, "I should very much like to ask you one or two
+plain questions, to which I beg that you will give a plain
+answer."
+
+"Certainly, madam."
+
+"Do not trouble about my feelings. I am not hysterical, nor given
+to fainting. I simply wish to hear your real, real opinion."
+
+"Upon what point?"
+
+"In your heart of hearts, do you think that Neville is alive?"
+
+Sherlock Holmes seemed to be embarrassed by the question.
+"Frankly, now!" she repeated, standing upon the rug and looking
+keenly down at him as he leaned back in a basket-chair.
+
+"Frankly, then, madam, I do not."
+
+"You think that he is dead?"
+
+"I do."
+
+"Murdered?"
+
+"I don't say that. Perhaps."
+
+"And on what day did he meet his death?"
+
+"On Monday."
+
+"Then perhaps, Mr. Holmes, you will be good enough to explain how
+it is that I have received a letter from him to-day."
+
+Sherlock Holmes sprang out of his chair as if he had been
+galvanised.
+
+"What!" he roared.
+
+"Yes, to-day." She stood smiling, holding up a little slip of
+paper in the air.
+
+"May I see it?"
+
+"Certainly."
+
+He snatched it from her in his eagerness, and smoothing it out
+upon the table he drew over the lamp and examined it intently. I
+had left my chair and was gazing at it over his shoulder. The
+envelope was a very coarse one and was stamped with the Gravesend
+postmark and with the date of that very day, or rather of the day
+before, for it was considerably after midnight.
+
+"Coarse writing," murmured Holmes. "Surely this is not your
+husband's writing, madam."
+
+"No, but the enclosure is."
+
+"I perceive also that whoever addressed the envelope had to go
+and inquire as to the address."
+
+"How can you tell that?"
+
+"The name, you see, is in perfectly black ink, which has dried
+itself. The rest is of the greyish colour, which shows that
+blotting-paper has been used. If it had been written straight
+off, and then blotted, none would be of a deep black shade. This
+man has written the name, and there has then been a pause before
+he wrote the address, which can only mean that he was not
+familiar with it. It is, of course, a trifle, but there is
+nothing so important as trifles. Let us now see the letter. Ha!
+there has been an enclosure here!"
+
+"Yes, there was a ring. His signet-ring."
+
+"And you are sure that this is your husband's hand?"
+
+"One of his hands."
+
+"One?"
+
+"His hand when he wrote hurriedly. It is very unlike his usual
+writing, and yet I know it well."
+
+"'Dearest do not be frightened. All will come well. There is a
+huge error which it may take some little time to rectify.
+Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf
+of a book, octavo size, no water-mark. Hum! Posted to-day in
+Gravesend by a man with a dirty thumb. Ha! And the flap has been
+gummed, if I am not very much in error, by a person who had been
+chewing tobacco. And you have no doubt that it is your husband's
+hand, madam?"
+
+"None. Neville wrote those words."
+
+"And they were posted to-day at Gravesend. Well, Mrs. St. Clair,
+the clouds lighten, though I should not venture to say that the
+danger is over."
+
+"But he must be alive, Mr. Holmes."
+
+"Unless this is a clever forgery to put us on the wrong scent.
+The ring, after all, proves nothing. It may have been taken from
+him."
+
+"No, no; it is, it is his very own writing!"
+
+"Very well. It may, however, have been written on Monday and only
+posted to-day."
+
+"That is possible."
+
+"If so, much may have happened between."
+
+"Oh, you must not discourage me, Mr. Holmes. I know that all is
+well with him. There is so keen a sympathy between us that I
+should know if evil came upon him. On the very day that I saw him
+last he cut himself in the bedroom, and yet I in the dining-room
+rushed upstairs instantly with the utmost certainty that
+something had happened. Do you think that I would respond to such
+a trifle and yet be ignorant of his death?"
+
+"I have seen too much not to know that the impression of a woman
+may be more valuable than the conclusion of an analytical
+reasoner. And in this letter you certainly have a very strong
+piece of evidence to corroborate your view. But if your husband
+is alive and able to write letters, why should he remain away
+from you?"
+
+"I cannot imagine. It is unthinkable."
+
+"And on Monday he made no remarks before leaving you?"
+
+"No."
+
+"And you were surprised to see him in Swandam Lane?"
+
+"Very much so."
+
+"Was the window open?"
+
+"Yes."
+
+"Then he might have called to you?"
+
+"He might."
+
+"He only, as I understand, gave an inarticulate cry?"
+
+"Yes."
+
+"A call for help, you thought?"
+
+"Yes. He waved his hands."
+
+"But it might have been a cry of surprise. Astonishment at the
+unexpected sight of you might cause him to throw up his hands?"
+
+"It is possible."
+
+"And you thought he was pulled back?"
+
+"He disappeared so suddenly."
+
+"He might have leaped back. You did not see anyone else in the
+room?"
+
+"No, but this horrible man confessed to having been there, and
+the Lascar was at the foot of the stairs."
+
+"Quite so. Your husband, as far as you could see, had his
+ordinary clothes on?"
+
+"But without his collar or tie. I distinctly saw his bare
+throat."
+
+"Had he ever spoken of Swandam Lane?"
+
+"Never."
+
+"Had he ever showed any signs of having taken opium?"
+
+"Never."
+
+"Thank you, Mrs. St. Clair. Those are the principal points about
+which I wished to be absolutely clear. We shall now have a little
+supper and then retire, for we may have a very busy day
+to-morrow."
+
+A large and comfortable double-bedded room had been placed at our
+disposal, and I was quickly between the sheets, for I was weary
+after my night of adventure. Sherlock Holmes was a man, however,
+who, when he had an unsolved problem upon his mind, would go for
+days, and even for a week, without rest, turning it over,
+rearranging his facts, looking at it from every point of view
+until he had either fathomed it or convinced himself that his
+data were insufficient. It was soon evident to me that he was now
+preparing for an all-night sitting. He took off his coat and
+waistcoat, put on a large blue dressing-gown, and then wandered
+about the room collecting pillows from his bed and cushions from
+the sofa and armchairs. With these he constructed a sort of
+Eastern divan, upon which he perched himself cross-legged, with
+an ounce of shag tobacco and a box of matches laid out in front
+of him. In the dim light of the lamp I saw him sitting there, an
+old briar pipe between his lips, his eyes fixed vacantly upon the
+corner of the ceiling, the blue smoke curling up from him,
+silent, motionless, with the light shining upon his strong-set
+aquiline features. So he sat as I dropped off to sleep, and so he
+sat when a sudden ejaculation caused me to wake up, and I found
+the summer sun shining into the apartment. The pipe was still
+between his lips, the smoke still curled upward, and the room was
+full of a dense tobacco haze, but nothing remained of the heap of
+shag which I had seen upon the previous night.
+
+"Awake, Watson?" he asked.
+
+"Yes."
+
+"Game for a morning drive?"
+
+"Certainly."
+
+"Then dress. No one is stirring yet, but I know where the
+stable-boy sleeps, and we shall soon have the trap out." He
+chuckled to himself as he spoke, his eyes twinkled, and he seemed
+a different man to the sombre thinker of the previous night.
+
+As I dressed I glanced at my watch. It was no wonder that no one
+was stirring. It was twenty-five minutes past four. I had hardly
+finished when Holmes returned with the news that the boy was
+putting in the horse.
+
+"I want to test a little theory of mine," said he, pulling on his
+boots. "I think, Watson, that you are now standing in the
+presence of one of the most absolute fools in Europe. I deserve
+to be kicked from here to Charing Cross. But I think I have the
+key of the affair now."
+
+"And where is it?" I asked, smiling.
+
+"In the bathroom," he answered. "Oh, yes, I am not joking," he
+continued, seeing my look of incredulity. "I have just been
+there, and I have taken it out, and I have got it in this
+Gladstone bag. Come on, my boy, and we shall see whether it will
+not fit the lock."
+
+We made our way downstairs as quietly as possible, and out into
+the bright morning sunshine. In the road stood our horse and
+trap, with the half-clad stable-boy waiting at the head. We both
+sprang in, and away we dashed down the London Road. A few country
+carts were stirring, bearing in vegetables to the metropolis, but
+the lines of villas on either side were as silent and lifeless as
+some city in a dream.
+
+"It has been in some points a singular case," said Holmes,
+flicking the horse on into a gallop. "I confess that I have been
+as blind as a mole, but it is better to learn wisdom late than
+never to learn it at all."
+
+In town the earliest risers were just beginning to look sleepily
+from their windows as we drove through the streets of the Surrey
+side. Passing down the Waterloo Bridge Road we crossed over the
+river, and dashing up Wellington Street wheeled sharply to the
+right and found ourselves in Bow Street. Sherlock Holmes was well
+known to the force, and the two constables at the door saluted
+him. One of them held the horse's head while the other led us in.
+
+"Who is on duty?" asked Holmes.
+
+"Inspector Bradstreet, sir."
+
+"Ah, Bradstreet, how are you?" A tall, stout official had come
+down the stone-flagged passage, in a peaked cap and frogged
+jacket. "I wish to have a quiet word with you, Bradstreet."
+"Certainly, Mr. Holmes. Step into my room here." It was a small,
+office-like room, with a huge ledger upon the table, and a
+telephone projecting from the wall. The inspector sat down at his
+desk.
+
+"What can I do for you, Mr. Holmes?"
+
+"I called about that beggarman, Boone--the one who was charged
+with being concerned in the disappearance of Mr. Neville St.
+Clair, of Lee."
+
+"Yes. He was brought up and remanded for further inquiries."
+
+"So I heard. You have him here?"
+
+"In the cells."
+
+"Is he quiet?"
+
+"Oh, he gives no trouble. But he is a dirty scoundrel."
+
+"Dirty?"
+
+"Yes, it is all we can do to make him wash his hands, and his
+face is as black as a tinker's. Well, when once his case has been
+settled, he will have a regular prison bath; and I think, if you
+saw him, you would agree with me that he needed it."
+
+"I should like to see him very much."
+
+"Would you? That is easily done. Come this way. You can leave
+your bag."
+
+"No, I think that I'll take it."
+
+"Very good. Come this way, if you please." He led us down a
+passage, opened a barred door, passed down a winding stair, and
+brought us to a whitewashed corridor with a line of doors on each
+side.
+
+"The third on the right is his," said the inspector. "Here it
+is!" He quietly shot back a panel in the upper part of the door
+and glanced through.
+
+"He is asleep," said he. "You can see him very well."
+
+We both put our eyes to the grating. The prisoner lay with his
+face towards us, in a very deep sleep, breathing slowly and
+heavily. He was a middle-sized man, coarsely clad as became his
+calling, with a coloured shirt protruding through the rent in his
+tattered coat. He was, as the inspector had said, extremely
+dirty, but the grime which covered his face could not conceal its
+repulsive ugliness. A broad wheal from an old scar ran right
+across it from eye to chin, and by its contraction had turned up
+one side of the upper lip, so that three teeth were exposed in a
+perpetual snarl. A shock of very bright red hair grew low over
+his eyes and forehead.
+
+"He's a beauty, isn't he?" said the inspector.
+
+"He certainly needs a wash," remarked Holmes. "I had an idea that
+he might, and I took the liberty of bringing the tools with me."
+He opened the Gladstone bag as he spoke, and took out, to my
+astonishment, a very large bath-sponge.
+
+"He! he! You are a funny one," chuckled the inspector.
+
+"Now, if you will have the great goodness to open that door very
+quietly, we will soon make him cut a much more respectable
+figure."
+
+"Well, I don't know why not," said the inspector. "He doesn't
+look a credit to the Bow Street cells, does he?" He slipped his
+key into the lock, and we all very quietly entered the cell. The
+sleeper half turned, and then settled down once more into a deep
+slumber. Holmes stooped to the water-jug, moistened his sponge,
+and then rubbed it twice vigorously across and down the
+prisoner's face.
+
+"Let me introduce you," he shouted, "to Mr. Neville St. Clair, of
+Lee, in the county of Kent."
+
+Never in my life have I seen such a sight. The man's face peeled
+off under the sponge like the bark from a tree. Gone was the
+coarse brown tint! Gone, too, was the horrid scar which had
+seamed it across, and the twisted lip which had given the
+repulsive sneer to the face! A twitch brought away the tangled
+red hair, and there, sitting up in his bed, was a pale,
+sad-faced, refined-looking man, black-haired and smooth-skinned,
+rubbing his eyes and staring about him with sleepy bewilderment.
+Then suddenly realising the exposure, he broke into a scream and
+threw himself down with his face to the pillow.
+
+"Great heavens!" cried the inspector, "it is, indeed, the missing
+man. I know him from the photograph."
+
+The prisoner turned with the reckless air of a man who abandons
+himself to his destiny. "Be it so," said he. "And pray what am I
+charged with?"
+
+"With making away with Mr. Neville St.-- Oh, come, you can't be
+charged with that unless they make a case of attempted suicide of
+it," said the inspector with a grin. "Well, I have been
+twenty-seven years in the force, but this really takes the cake."
+
+"If I am Mr. Neville St. Clair, then it is obvious that no crime
+has been committed, and that, therefore, I am illegally
+detained."
+
+"No crime, but a very great error has been committed," said
+Holmes. "You would have done better to have trusted your wife."
+
+"It was not the wife; it was the children," groaned the prisoner.
+"God help me, I would not have them ashamed of their father. My
+God! What an exposure! What can I do?"
+
+Sherlock Holmes sat down beside him on the couch and patted him
+kindly on the shoulder.
+
+"If you leave it to a court of law to clear the matter up," said
+he, "of course you can hardly avoid publicity. On the other hand,
+if you convince the police authorities that there is no possible
+case against you, I do not know that there is any reason that the
+details should find their way into the papers. Inspector
+Bradstreet would, I am sure, make notes upon anything which you
+might tell us and submit it to the proper authorities. The case
+would then never go into court at all."
+
+"God bless you!" cried the prisoner passionately. "I would have
+endured imprisonment, ay, even execution, rather than have left
+my miserable secret as a family blot to my children.
+
+"You are the first who have ever heard my story. My father was a
+schoolmaster in Chesterfield, where I received an excellent
+education. I travelled in my youth, took to the stage, and
+finally became a reporter on an evening paper in London. One day
+my editor wished to have a series of articles upon begging in the
+metropolis, and I volunteered to supply them. There was the point
+from which all my adventures started. It was only by trying
+begging as an amateur that I could get the facts upon which to
+base my articles. When an actor I had, of course, learned all the
+secrets of making up, and had been famous in the green-room for
+my skill. I took advantage now of my attainments. I painted my
+face, and to make myself as pitiable as possible I made a good
+scar and fixed one side of my lip in a twist by the aid of a
+small slip of flesh-coloured plaster. Then with a red head of
+hair, and an appropriate dress, I took my station in the business
+part of the city, ostensibly as a match-seller but really as a
+beggar. For seven hours I plied my trade, and when I returned
+home in the evening I found to my surprise that I had received no
+less than 26s. 4d.
+
+"I wrote my articles and thought little more of the matter until,
+some time later, I backed a bill for a friend and had a writ
+served upon me for 25 pounds. I was at my wit's end where to get
+the money, but a sudden idea came to me. I begged a fortnight's
+grace from the creditor, asked for a holiday from my employers,
+and spent the time in begging in the City under my disguise. In
+ten days I had the money and had paid the debt.
+
+"Well, you can imagine how hard it was to settle down to arduous
+work at 2 pounds a week when I knew that I could earn as much in
+a day by smearing my face with a little paint, laying my cap on
+the ground, and sitting still. It was a long fight between my
+pride and the money, but the dollars won at last, and I threw up
+reporting and sat day after day in the corner which I had first
+chosen, inspiring pity by my ghastly face and filling my pockets
+with coppers. Only one man knew my secret. He was the keeper of a
+low den in which I used to lodge in Swandam Lane, where I could
+every morning emerge as a squalid beggar and in the evenings
+transform myself into a well-dressed man about town. This fellow,
+a Lascar, was well paid by me for his rooms, so that I knew that
+my secret was safe in his possession.
+
+"Well, very soon I found that I was saving considerable sums of
+money. I do not mean that any beggar in the streets of London
+could earn 700 pounds a year--which is less than my average
+takings--but I had exceptional advantages in my power of making
+up, and also in a facility of repartee, which improved by
+practice and made me quite a recognised character in the City.
+All day a stream of pennies, varied by silver, poured in upon me,
+and it was a very bad day in which I failed to take 2 pounds.
+
+"As I grew richer I grew more ambitious, took a house in the
+country, and eventually married, without anyone having a
+suspicion as to my real occupation. My dear wife knew that I had
+business in the City. She little knew what.
+
+"Last Monday I had finished for the day and was dressing in my
+room above the opium den when I looked out of my window and saw,
+to my horror and astonishment, that my wife was standing in the
+street, with her eyes fixed full upon me. I gave a cry of
+surprise, threw up my arms to cover my face, and, rushing to my
+confidant, the Lascar, entreated him to prevent anyone from
+coming up to me. I heard her voice downstairs, but I knew that
+she could not ascend. Swiftly I threw off my clothes, pulled on
+those of a beggar, and put on my pigments and wig. Even a wife's
+eyes could not pierce so complete a disguise. But then it
+occurred to me that there might be a search in the room, and that
+the clothes might betray me. I threw open the window, reopening
+by my violence a small cut which I had inflicted upon myself in
+the bedroom that morning. Then I seized my coat, which was
+weighted by the coppers which I had just transferred to it from
+the leather bag in which I carried my takings. I hurled it out of
+the window, and it disappeared into the Thames. The other clothes
+would have followed, but at that moment there was a rush of
+constables up the stair, and a few minutes after I found, rather,
+I confess, to my relief, that instead of being identified as Mr.
+Neville St. Clair, I was arrested as his murderer.
+
+"I do not know that there is anything else for me to explain. I
+was determined to preserve my disguise as long as possible, and
+hence my preference for a dirty face. Knowing that my wife would
+be terribly anxious, I slipped off my ring and confided it to the
+Lascar at a moment when no constable was watching me, together
+with a hurried scrawl, telling her that she had no cause to
+fear."
+
+"That note only reached her yesterday," said Holmes.
+
+"Good God! What a week she must have spent!"
+
+"The police have watched this Lascar," said Inspector Bradstreet,
+"and I can quite understand that he might find it difficult to
+post a letter unobserved. Probably he handed it to some sailor
+customer of his, who forgot all about it for some days."
+
+"That was it," said Holmes, nodding approvingly; "I have no doubt
+of it. But have you never been prosecuted for begging?"
+
+"Many times; but what was a fine to me?"
+
+"It must stop here, however," said Bradstreet. "If the police are
+to hush this thing up, there must be no more of Hugh Boone."
+
+"I have sworn it by the most solemn oaths which a man can take."
+
+"In that case I think that it is probable that no further steps
+may be taken. But if you are found again, then all must come out.
+I am sure, Mr. Holmes, that we are very much indebted to you for
+having cleared the matter up. I wish I knew how you reach your
+results."
+
+"I reached this one," said my friend, "by sitting upon five
+pillows and consuming an ounce of shag. I think, Watson, that if
+we drive to Baker Street we shall just be in time for breakfast."
+
+
+
+VII. THE ADVENTURE OF THE BLUE CARBUNCLE
+
+I had called upon my friend Sherlock Holmes upon the second
+morning after Christmas, with the intention of wishing him the
+compliments of the season. He was lounging upon the sofa in a
+purple dressing-gown, a pipe-rack within his reach upon the
+right, and a pile of crumpled morning papers, evidently newly
+studied, near at hand. Beside the couch was a wooden chair, and
+on the angle of the back hung a very seedy and disreputable
+hard-felt hat, much the worse for wear, and cracked in several
+places. A lens and a forceps lying upon the seat of the chair
+suggested that the hat had been suspended in this manner for the
+purpose of examination.
+
+"You are engaged," said I; "perhaps I interrupt you."
+
+"Not at all. I am glad to have a friend with whom I can discuss
+my results. The matter is a perfectly trivial one"--he jerked his
+thumb in the direction of the old hat--"but there are points in
+connection with it which are not entirely devoid of interest and
+even of instruction."
+
+I seated myself in his armchair and warmed my hands before his
+crackling fire, for a sharp frost had set in, and the windows
+were thick with the ice crystals. "I suppose," I remarked, "that,
+homely as it looks, this thing has some deadly story linked on to
+it--that it is the clue which will guide you in the solution of
+some mystery and the punishment of some crime."
+
+"No, no. No crime," said Sherlock Holmes, laughing. "Only one of
+those whimsical little incidents which will happen when you have
+four million human beings all jostling each other within the
+space of a few square miles. Amid the action and reaction of so
+dense a swarm of humanity, every possible combination of events
+may be expected to take place, and many a little problem will be
+presented which may be striking and bizarre without being
+criminal. We have already had experience of such."
+
+"So much so," I remarked, "that of the last six cases which I
+have added to my notes, three have been entirely free of any
+legal crime."
+
+"Precisely. You allude to my attempt to recover the Irene Adler
+papers, to the singular case of Miss Mary Sutherland, and to the
+adventure of the man with the twisted lip. Well, I have no doubt
+that this small matter will fall into the same innocent category.
+You know Peterson, the commissionaire?"
+
+"Yes."
+
+"It is to him that this trophy belongs."
+
+"It is his hat."
+
+"No, no, he found it. Its owner is unknown. I beg that you will
+look upon it not as a battered billycock but as an intellectual
+problem. And, first, as to how it came here. It arrived upon
+Christmas morning, in company with a good fat goose, which is, I
+have no doubt, roasting at this moment in front of Peterson's
+fire. The facts are these: about four o'clock on Christmas
+morning, Peterson, who, as you know, is a very honest fellow, was
+returning from some small jollification and was making his way
+homeward down Tottenham Court Road. In front of him he saw, in
+the gaslight, a tallish man, walking with a slight stagger, and
+carrying a white goose slung over his shoulder. As he reached the
+corner of Goodge Street, a row broke out between this stranger
+and a little knot of roughs. One of the latter knocked off the
+man's hat, on which he raised his stick to defend himself and,
+swinging it over his head, smashed the shop window behind him.
+Peterson had rushed forward to protect the stranger from his
+assailants; but the man, shocked at having broken the window, and
+seeing an official-looking person in uniform rushing towards him,
+dropped his goose, took to his heels, and vanished amid the
+labyrinth of small streets which lie at the back of Tottenham
+Court Road. The roughs had also fled at the appearance of
+Peterson, so that he was left in possession of the field of
+battle, and also of the spoils of victory in the shape of this
+battered hat and a most unimpeachable Christmas goose."
+
+"Which surely he restored to their owner?"
+
+"My dear fellow, there lies the problem. It is true that 'For
+Mrs. Henry Baker' was printed upon a small card which was tied to
+the bird's left leg, and it is also true that the initials 'H.
+B.' are legible upon the lining of this hat, but as there are
+some thousands of Bakers, and some hundreds of Henry Bakers in
+this city of ours, it is not easy to restore lost property to any
+one of them."
+
+"What, then, did Peterson do?"
+
+"He brought round both hat and goose to me on Christmas morning,
+knowing that even the smallest problems are of interest to me.
+The goose we retained until this morning, when there were signs
+that, in spite of the slight frost, it would be well that it
+should be eaten without unnecessary delay. Its finder has carried
+it off, therefore, to fulfil the ultimate destiny of a goose,
+while I continue to retain the hat of the unknown gentleman who
+lost his Christmas dinner."
+
+"Did he not advertise?"
+
+"No."
+
+"Then, what clue could you have as to his identity?"
+
+"Only as much as we can deduce."
+
+"From his hat?"
+
+"Precisely."
+
+"But you are joking. What can you gather from this old battered
+felt?"
+
+"Here is my lens. You know my methods. What can you gather
+yourself as to the individuality of the man who has worn this
+article?"
+
+I took the tattered object in my hands and turned it over rather
+ruefully. It was a very ordinary black hat of the usual round
+shape, hard and much the worse for wear. The lining had been of
+red silk, but was a good deal discoloured. There was no maker's
+name; but, as Holmes had remarked, the initials "H. B." were
+scrawled upon one side. It was pierced in the brim for a
+hat-securer, but the elastic was missing. For the rest, it was
+cracked, exceedingly dusty, and spotted in several places,
+although there seemed to have been some attempt to hide the
+discoloured patches by smearing them with ink.
+
+"I can see nothing," said I, handing it back to my friend.
+
+"On the contrary, Watson, you can see everything. You fail,
+however, to reason from what you see. You are too timid in
+drawing your inferences."
+
+"Then, pray tell me what it is that you can infer from this hat?"
+
+He picked it up and gazed at it in the peculiar introspective
+fashion which was characteristic of him. "It is perhaps less
+suggestive than it might have been," he remarked, "and yet there
+are a few inferences which are very distinct, and a few others
+which represent at least a strong balance of probability. That
+the man was highly intellectual is of course obvious upon the
+face of it, and also that he was fairly well-to-do within the
+last three years, although he has now fallen upon evil days. He
+had foresight, but has less now than formerly, pointing to a
+moral retrogression, which, when taken with the decline of his
+fortunes, seems to indicate some evil influence, probably drink,
+at work upon him. This may account also for the obvious fact that
+his wife has ceased to love him."
+
+"My dear Holmes!"
+
+"He has, however, retained some degree of self-respect," he
+continued, disregarding my remonstrance. "He is a man who leads a
+sedentary life, goes out little, is out of training entirely, is
+middle-aged, has grizzled hair which he has had cut within the
+last few days, and which he anoints with lime-cream. These are
+the more patent facts which are to be deduced from his hat. Also,
+by the way, that it is extremely improbable that he has gas laid
+on in his house."
+
+"You are certainly joking, Holmes."
+
+"Not in the least. Is it possible that even now, when I give you
+these results, you are unable to see how they are attained?"
+
+"I have no doubt that I am very stupid, but I must confess that I
+am unable to follow you. For example, how did you deduce that
+this man was intellectual?"
+
+For answer Holmes clapped the hat upon his head. It came right
+over the forehead and settled upon the bridge of his nose. "It is
+a question of cubic capacity," said he; "a man with so large a
+brain must have something in it."
+
+"The decline of his fortunes, then?"
+
+"This hat is three years old. These flat brims curled at the edge
+came in then. It is a hat of the very best quality. Look at the
+band of ribbed silk and the excellent lining. If this man could
+afford to buy so expensive a hat three years ago, and has had no
+hat since, then he has assuredly gone down in the world."
+
+"Well, that is clear enough, certainly. But how about the
+foresight and the moral retrogression?"
+
+Sherlock Holmes laughed. "Here is the foresight," said he putting
+his finger upon the little disc and loop of the hat-securer.
+"They are never sold upon hats. If this man ordered one, it is a
+sign of a certain amount of foresight, since he went out of his
+way to take this precaution against the wind. But since we see
+that he has broken the elastic and has not troubled to replace
+it, it is obvious that he has less foresight now than formerly,
+which is a distinct proof of a weakening nature. On the other
+hand, he has endeavoured to conceal some of these stains upon the
+felt by daubing them with ink, which is a sign that he has not
+entirely lost his self-respect."
+
+"Your reasoning is certainly plausible."
+
+"The further points, that he is middle-aged, that his hair is
+grizzled, that it has been recently cut, and that he uses
+lime-cream, are all to be gathered from a close examination of the
+lower part of the lining. The lens discloses a large number of
+hair-ends, clean cut by the scissors of the barber. They all
+appear to be adhesive, and there is a distinct odour of
+lime-cream. This dust, you will observe, is not the gritty, grey
+dust of the street but the fluffy brown dust of the house,
+showing that it has been hung up indoors most of the time, while
+the marks of moisture upon the inside are proof positive that the
+wearer perspired very freely, and could therefore, hardly be in
+the best of training."
+
+"But his wife--you said that she had ceased to love him."
+
+"This hat has not been brushed for weeks. When I see you, my dear
+Watson, with a week's accumulation of dust upon your hat, and
+when your wife allows you to go out in such a state, I shall fear
+that you also have been unfortunate enough to lose your wife's
+affection."
+
+"But he might be a bachelor."
+
+"Nay, he was bringing home the goose as a peace-offering to his
+wife. Remember the card upon the bird's leg."
+
+"You have an answer to everything. But how on earth do you deduce
+that the gas is not laid on in his house?"
+
+"One tallow stain, or even two, might come by chance; but when I
+see no less than five, I think that there can be little doubt
+that the individual must be brought into frequent contact with
+burning tallow--walks upstairs at night probably with his hat in
+one hand and a guttering candle in the other. Anyhow, he never
+got tallow-stains from a gas-jet. Are you satisfied?"
+
+"Well, it is very ingenious," said I, laughing; "but since, as
+you said just now, there has been no crime committed, and no harm
+done save the loss of a goose, all this seems to be rather a
+waste of energy."
+
+Sherlock Holmes had opened his mouth to reply, when the door flew
+open, and Peterson, the commissionaire, rushed into the apartment
+with flushed cheeks and the face of a man who is dazed with
+astonishment.
+
+"The goose, Mr. Holmes! The goose, sir!" he gasped.
+
+"Eh? What of it, then? Has it returned to life and flapped off
+through the kitchen window?" Holmes twisted himself round upon
+the sofa to get a fairer view of the man's excited face.
+
+"See here, sir! See what my wife found in its crop!" He held out
+his hand and displayed upon the centre of the palm a brilliantly
+scintillating blue stone, rather smaller than a bean in size, but
+of such purity and radiance that it twinkled like an electric
+point in the dark hollow of his hand.
+
+Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said
+he, "this is treasure trove indeed. I suppose you know what you
+have got?"
+
+"A diamond, sir? A precious stone. It cuts into glass as though
+it were putty."
+
+"It's more than a precious stone. It is the precious stone."
+
+"Not the Countess of Morcar's blue carbuncle!" I ejaculated.
+
+"Precisely so. I ought to know its size and shape, seeing that I
+have read the advertisement about it in The Times every day
+lately. It is absolutely unique, and its value can only be
+conjectured, but the reward offered of 1000 pounds is certainly
+not within a twentieth part of the market price."
+
+"A thousand pounds! Great Lord of mercy!" The commissionaire
+plumped down into a chair and stared from one to the other of us.
+
+"That is the reward, and I have reason to know that there are
+sentimental considerations in the background which would induce
+the Countess to part with half her fortune if she could but
+recover the gem."
+
+"It was lost, if I remember aright, at the Hotel Cosmopolitan," I
+remarked.
+
+"Precisely so, on December 22nd, just five days ago. John Horner,
+a plumber, was accused of having abstracted it from the lady's
+jewel-case. The evidence against him was so strong that the case
+has been referred to the Assizes. I have some account of the
+matter here, I believe." He rummaged amid his newspapers,
+glancing over the dates, until at last he smoothed one out,
+doubled it over, and read the following paragraph:
+
+"Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was
+brought up upon the charge of having upon the 22nd inst.,
+abstracted from the jewel-case of the Countess of Morcar the
+valuable gem known as the blue carbuncle. James Ryder,
+upper-attendant at the hotel, gave his evidence to the effect
+that he had shown Horner up to the dressing-room of the Countess
+of Morcar upon the day of the robbery in order that he might
+solder the second bar of the grate, which was loose. He had
+remained with Horner some little time, but had finally been
+called away. On returning, he found that Horner had disappeared,
+that the bureau had been forced open, and that the small morocco
+casket in which, as it afterwards transpired, the Countess was
+accustomed to keep her jewel, was lying empty upon the
+dressing-table. Ryder instantly gave the alarm, and Horner was
+arrested the same evening; but the stone could not be found
+either upon his person or in his rooms. Catherine Cusack, maid to
+the Countess, deposed to having heard Ryder's cry of dismay on
+discovering the robbery, and to having rushed into the room,
+where she found matters as described by the last witness.
+Inspector Bradstreet, B division, gave evidence as to the arrest
+of Horner, who struggled frantically, and protested his innocence
+in the strongest terms. Evidence of a previous conviction for
+robbery having been given against the prisoner, the magistrate
+refused to deal summarily with the offence, but referred it to
+the Assizes. Horner, who had shown signs of intense emotion
+during the proceedings, fainted away at the conclusion and was
+carried out of court."
+
+"Hum! So much for the police-court," said Holmes thoughtfully,
+tossing aside the paper. "The question for us now to solve is the
+sequence of events leading from a rifled jewel-case at one end to
+the crop of a goose in Tottenham Court Road at the other. You
+see, Watson, our little deductions have suddenly assumed a much
+more important and less innocent aspect. Here is the stone; the
+stone came from the goose, and the goose came from Mr. Henry
+Baker, the gentleman with the bad hat and all the other
+characteristics with which I have bored you. So now we must set
+ourselves very seriously to finding this gentleman and
+ascertaining what part he has played in this little mystery. To
+do this, we must try the simplest means first, and these lie
+undoubtedly in an advertisement in all the evening papers. If
+this fail, I shall have recourse to other methods."
+
+"What will you say?"
+
+"Give me a pencil and that slip of paper. Now, then: 'Found at
+the corner of Goodge Street, a goose and a black felt hat. Mr.
+Henry Baker can have the same by applying at 6:30 this evening at
+221B, Baker Street.' That is clear and concise."
+
+"Very. But will he see it?"
+
+"Well, he is sure to keep an eye on the papers, since, to a poor
+man, the loss was a heavy one. He was clearly so scared by his
+mischance in breaking the window and by the approach of Peterson
+that he thought of nothing but flight, but since then he must
+have bitterly regretted the impulse which caused him to drop his
+bird. Then, again, the introduction of his name will cause him to
+see it, for everyone who knows him will direct his attention to
+it. Here you are, Peterson, run down to the advertising agency
+and have this put in the evening papers."
+
+"In which, sir?"
+
+"Oh, in the Globe, Star, Pall Mall, St. James's, Evening News,
+Standard, Echo, and any others that occur to you."
+
+"Very well, sir. And this stone?"
+
+"Ah, yes, I shall keep the stone. Thank you. And, I say,
+Peterson, just buy a goose on your way back and leave it here
+with me, for we must have one to give to this gentleman in place
+of the one which your family is now devouring."
+
+When the commissionaire had gone, Holmes took up the stone and
+held it against the light. "It's a bonny thing," said he. "Just
+see how it glints and sparkles. Of course it is a nucleus and
+focus of crime. Every good stone is. They are the devil's pet
+baits. In the larger and older jewels every facet may stand for a
+bloody deed. This stone is not yet twenty years old. It was found
+in the banks of the Amoy River in southern China and is remarkable
+in having every characteristic of the carbuncle, save that it is
+blue in shade instead of ruby red. In spite of its youth, it has
+already a sinister history. There have been two murders, a
+vitriol-throwing, a suicide, and several robberies brought about
+for the sake of this forty-grain weight of crystallised charcoal.
+Who would think that so pretty a toy would be a purveyor to the
+gallows and the prison? I'll lock it up in my strong box now and
+drop a line to the Countess to say that we have it."
+
+"Do you think that this man Horner is innocent?"
+
+"I cannot tell."
+
+"Well, then, do you imagine that this other one, Henry Baker, had
+anything to do with the matter?"
+
+"It is, I think, much more likely that Henry Baker is an
+absolutely innocent man, who had no idea that the bird which he
+was carrying was of considerably more value than if it were made
+of solid gold. That, however, I shall determine by a very simple
+test if we have an answer to our advertisement."
+
+"And you can do nothing until then?"
+
+"Nothing."
+
+"In that case I shall continue my professional round. But I shall
+come back in the evening at the hour you have mentioned, for I
+should like to see the solution of so tangled a business."
+
+"Very glad to see you. I dine at seven. There is a woodcock, I
+believe. By the way, in view of recent occurrences, perhaps I
+ought to ask Mrs. Hudson to examine its crop."
+
+I had been delayed at a case, and it was a little after half-past
+six when I found myself in Baker Street once more. As I
+approached the house I saw a tall man in a Scotch bonnet with a
+coat which was buttoned up to his chin waiting outside in the
+bright semicircle which was thrown from the fanlight. Just as I
+arrived the door was opened, and we were shown up together to
+Holmes' room.
+
+"Mr. Henry Baker, I believe," said he, rising from his armchair
+and greeting his visitor with the easy air of geniality which he
+could so readily assume. "Pray take this chair by the fire, Mr.
+Baker. It is a cold night, and I observe that your circulation is
+more adapted for summer than for winter. Ah, Watson, you have
+just come at the right time. Is that your hat, Mr. Baker?"
+
+"Yes, sir, that is undoubtedly my hat."
+
+He was a large man with rounded shoulders, a massive head, and a
+broad, intelligent face, sloping down to a pointed beard of
+grizzled brown. A touch of red in nose and cheeks, with a slight
+tremor of his extended hand, recalled Holmes' surmise as to his
+habits. His rusty black frock-coat was buttoned right up in
+front, with the collar turned up, and his lank wrists protruded
+from his sleeves without a sign of cuff or shirt. He spoke in a
+slow staccato fashion, choosing his words with care, and gave the
+impression generally of a man of learning and letters who had had
+ill-usage at the hands of fortune.
+
+"We have retained these things for some days," said Holmes,
+"because we expected to see an advertisement from you giving your
+address. I am at a loss to know now why you did not advertise."
+
+Our visitor gave a rather shamefaced laugh. "Shillings have not
+been so plentiful with me as they once were," he remarked. "I had
+no doubt that the gang of roughs who assaulted me had carried off
+both my hat and the bird. I did not care to spend more money in a
+hopeless attempt at recovering them."
+
+"Very naturally. By the way, about the bird, we were compelled to
+eat it."
+
+"To eat it!" Our visitor half rose from his chair in his
+excitement.
+
+"Yes, it would have been of no use to anyone had we not done so.
+But I presume that this other goose upon the sideboard, which is
+about the same weight and perfectly fresh, will answer your
+purpose equally well?"
+
+"Oh, certainly, certainly," answered Mr. Baker with a sigh of
+relief.
+
+"Of course, we still have the feathers, legs, crop, and so on of
+your own bird, so if you wish--"
+
+The man burst into a hearty laugh. "They might be useful to me as
+relics of my adventure," said he, "but beyond that I can hardly
+see what use the disjecta membra of my late acquaintance are
+going to be to me. No, sir, I think that, with your permission, I
+will confine my attentions to the excellent bird which I perceive
+upon the sideboard."
+
+Sherlock Holmes glanced sharply across at me with a slight shrug
+of his shoulders.
+
+"There is your hat, then, and there your bird," said he. "By the
+way, would it bore you to tell me where you got the other one
+from? I am somewhat of a fowl fancier, and I have seldom seen a
+better grown goose."
+
+"Certainly, sir," said Baker, who had risen and tucked his newly
+gained property under his arm. "There are a few of us who
+frequent the Alpha Inn, near the Museum--we are to be found in
+the Museum itself during the day, you understand. This year our
+good host, Windigate by name, instituted a goose club, by which,
+on consideration of some few pence every week, we were each to
+receive a bird at Christmas. My pence were duly paid, and the
+rest is familiar to you. I am much indebted to you, sir, for a
+Scotch bonnet is fitted neither to my years nor my gravity." With
+a comical pomposity of manner he bowed solemnly to both of us and
+strode off upon his way.
+
+"So much for Mr. Henry Baker," said Holmes when he had closed the
+door behind him. "It is quite certain that he knows nothing
+whatever about the matter. Are you hungry, Watson?"
+
+"Not particularly."
+
+"Then I suggest that we turn our dinner into a supper and follow
+up this clue while it is still hot."
+
+"By all means."
+
+It was a bitter night, so we drew on our ulsters and wrapped
+cravats about our throats. Outside, the stars were shining coldly
+in a cloudless sky, and the breath of the passers-by blew out
+into smoke like so many pistol shots. Our footfalls rang out
+crisply and loudly as we swung through the doctors' quarter,
+Wimpole Street, Harley Street, and so through Wigmore Street into
+Oxford Street. In a quarter of an hour we were in Bloomsbury at
+the Alpha Inn, which is a small public-house at the corner of one
+of the streets which runs down into Holborn. Holmes pushed open
+the door of the private bar and ordered two glasses of beer from
+the ruddy-faced, white-aproned landlord.
+
+"Your beer should be excellent if it is as good as your geese,"
+said he.
+
+"My geese!" The man seemed surprised.
+
+"Yes. I was speaking only half an hour ago to Mr. Henry Baker,
+who was a member of your goose club."
+
+"Ah! yes, I see. But you see, sir, them's not our geese."
+
+"Indeed! Whose, then?"
+
+"Well, I got the two dozen from a salesman in Covent Garden."
+
+"Indeed? I know some of them. Which was it?"
+
+"Breckinridge is his name."
+
+"Ah! I don't know him. Well, here's your good health landlord,
+and prosperity to your house. Good-night."
+
+"Now for Mr. Breckinridge," he continued, buttoning up his coat
+as we came out into the frosty air. "Remember, Watson that though
+we have so homely a thing as a goose at one end of this chain, we
+have at the other a man who will certainly get seven years' penal
+servitude unless we can establish his innocence. It is possible
+that our inquiry may but confirm his guilt; but, in any case, we
+have a line of investigation which has been missed by the police,
+and which a singular chance has placed in our hands. Let us
+follow it out to the bitter end. Faces to the south, then, and
+quick march!"
+
+We passed across Holborn, down Endell Street, and so through a
+zigzag of slums to Covent Garden Market. One of the largest
+stalls bore the name of Breckinridge upon it, and the proprietor
+a horsey-looking man, with a sharp face and trim side-whiskers was
+helping a boy to put up the shutters.
+
+"Good-evening. It's a cold night," said Holmes.
+
+The salesman nodded and shot a questioning glance at my
+companion.
+
+"Sold out of geese, I see," continued Holmes, pointing at the
+bare slabs of marble.
+
+"Let you have five hundred to-morrow morning."
+
+"That's no good."
+
+"Well, there are some on the stall with the gas-flare."
+
+"Ah, but I was recommended to you."
+
+"Who by?"
+
+"The landlord of the Alpha."
+
+"Oh, yes; I sent him a couple of dozen."
+
+"Fine birds they were, too. Now where did you get them from?"
+
+To my surprise the question provoked a burst of anger from the
+salesman.
+
+"Now, then, mister," said he, with his head cocked and his arms
+akimbo, "what are you driving at? Let's have it straight, now."
+
+"It is straight enough. I should like to know who sold you the
+geese which you supplied to the Alpha."
+
+"Well then, I shan't tell you. So now!"
+
+"Oh, it is a matter of no importance; but I don't know why you
+should be so warm over such a trifle."
+
+"Warm! You'd be as warm, maybe, if you were as pestered as I am.
+When I pay good money for a good article there should be an end
+of the business; but it's 'Where are the geese?' and 'Who did you
+sell the geese to?' and 'What will you take for the geese?' One
+would think they were the only geese in the world, to hear the
+fuss that is made over them."
+
+"Well, I have no connection with any other people who have been
+making inquiries," said Holmes carelessly. "If you won't tell us
+the bet is off, that is all. But I'm always ready to back my
+opinion on a matter of fowls, and I have a fiver on it that the
+bird I ate is country bred."
+
+"Well, then, you've lost your fiver, for it's town bred," snapped
+the salesman.
+
+"It's nothing of the kind."
+
+"I say it is."
+
+"I don't believe it."
+
+"D'you think you know more about fowls than I, who have handled
+them ever since I was a nipper? I tell you, all those birds that
+went to the Alpha were town bred."
+
+"You'll never persuade me to believe that."
+
+"Will you bet, then?"
+
+"It's merely taking your money, for I know that I am right. But
+I'll have a sovereign on with you, just to teach you not to be
+obstinate."
+
+The salesman chuckled grimly. "Bring me the books, Bill," said
+he.
+
+The small boy brought round a small thin volume and a great
+greasy-backed one, laying them out together beneath the hanging
+lamp.
+
+"Now then, Mr. Cocksure," said the salesman, "I thought that I
+was out of geese, but before I finish you'll find that there is
+still one left in my shop. You see this little book?"
+
+"Well?"
+
+"That's the list of the folk from whom I buy. D'you see? Well,
+then, here on this page are the country folk, and the numbers
+after their names are where their accounts are in the big ledger.
+Now, then! You see this other page in red ink? Well, that is a
+list of my town suppliers. Now, look at that third name. Just
+read it out to me."
+
+"Mrs. Oakshott, 117, Brixton Road--249," read Holmes.
+
+"Quite so. Now turn that up in the ledger."
+
+Holmes turned to the page indicated. "Here you are, 'Mrs.
+Oakshott, 117, Brixton Road, egg and poultry supplier.'"
+
+"Now, then, what's the last entry?"
+
+"'December 22nd. Twenty-four geese at 7s. 6d.'"
+
+"Quite so. There you are. And underneath?"
+
+"'Sold to Mr. Windigate of the Alpha, at 12s.'"
+
+"What have you to say now?"
+
+Sherlock Holmes looked deeply chagrined. He drew a sovereign from
+his pocket and threw it down upon the slab, turning away with the
+air of a man whose disgust is too deep for words. A few yards off
+he stopped under a lamp-post and laughed in the hearty, noiseless
+fashion which was peculiar to him.
+
+"When you see a man with whiskers of that cut and the 'Pink 'un'
+protruding out of his pocket, you can always draw him by a bet,"
+said he. "I daresay that if I had put 100 pounds down in front of
+him, that man would not have given me such complete information
+as was drawn from him by the idea that he was doing me on a
+wager. Well, Watson, we are, I fancy, nearing the end of our
+quest, and the only point which remains to be determined is
+whether we should go on to this Mrs. Oakshott to-night, or
+whether we should reserve it for to-morrow. It is clear from what
+that surly fellow said that there are others besides ourselves
+who are anxious about the matter, and I should--"
+
+His remarks were suddenly cut short by a loud hubbub which broke
+out from the stall which we had just left. Turning round we saw a
+little rat-faced fellow standing in the centre of the circle of
+yellow light which was thrown by the swinging lamp, while
+Breckinridge, the salesman, framed in the door of his stall, was
+shaking his fists fiercely at the cringing figure.
+
+"I've had enough of you and your geese," he shouted. "I wish you
+were all at the devil together. If you come pestering me any more
+with your silly talk I'll set the dog at you. You bring Mrs.
+Oakshott here and I'll answer her, but what have you to do with
+it? Did I buy the geese off you?"
+
+"No; but one of them was mine all the same," whined the little
+man.
+
+"Well, then, ask Mrs. Oakshott for it."
+
+"She told me to ask you."
+
+"Well, you can ask the King of Proosia, for all I care. I've had
+enough of it. Get out of this!" He rushed fiercely forward, and
+the inquirer flitted away into the darkness.
+
+"Ha! this may save us a visit to Brixton Road," whispered Holmes.
+"Come with me, and we will see what is to be made of this
+fellow." Striding through the scattered knots of people who
+lounged round the flaring stalls, my companion speedily overtook
+the little man and touched him upon the shoulder. He sprang
+round, and I could see in the gas-light that every vestige of
+colour had been driven from his face.
+
+"Who are you, then? What do you want?" he asked in a quavering
+voice.
+
+"You will excuse me," said Holmes blandly, "but I could not help
+overhearing the questions which you put to the salesman just now.
+I think that I could be of assistance to you."
+
+"You? Who are you? How could you know anything of the matter?"
+
+"My name is Sherlock Holmes. It is my business to know what other
+people don't know."
+
+"But you can know nothing of this?"
+
+"Excuse me, I know everything of it. You are endeavouring to
+trace some geese which were sold by Mrs. Oakshott, of Brixton
+Road, to a salesman named Breckinridge, by him in turn to Mr.
+Windigate, of the Alpha, and by him to his club, of which Mr.
+Henry Baker is a member."
+
+"Oh, sir, you are the very man whom I have longed to meet," cried
+the little fellow with outstretched hands and quivering fingers.
+"I can hardly explain to you how interested I am in this matter."
+
+Sherlock Holmes hailed a four-wheeler which was passing. "In that
+case we had better discuss it in a cosy room rather than in this
+wind-swept market-place," said he. "But pray tell me, before we
+go farther, who it is that I have the pleasure of assisting."
+
+The man hesitated for an instant. "My name is John Robinson," he
+answered with a sidelong glance.
+
+"No, no; the real name," said Holmes sweetly. "It is always
+awkward doing business with an alias."
+
+A flush sprang to the white cheeks of the stranger. "Well then,"
+said he, "my real name is James Ryder."
+
+"Precisely so. Head attendant at the Hotel Cosmopolitan. Pray
+step into the cab, and I shall soon be able to tell you
+everything which you would wish to know."
+
+The little man stood glancing from one to the other of us with
+half-frightened, half-hopeful eyes, as one who is not sure
+whether he is on the verge of a windfall or of a catastrophe.
+Then he stepped into the cab, and in half an hour we were back in
+the sitting-room at Baker Street. Nothing had been said during
+our drive, but the high, thin breathing of our new companion, and
+the claspings and unclaspings of his hands, spoke of the nervous
+tension within him.
+
+"Here we are!" said Holmes cheerily as we filed into the room.
+"The fire looks very seasonable in this weather. You look cold,
+Mr. Ryder. Pray take the basket-chair. I will just put on my
+slippers before we settle this little matter of yours. Now, then!
+You want to know what became of those geese?"
+
+"Yes, sir."
+
+"Or rather, I fancy, of that goose. It was one bird, I imagine in
+which you were interested--white, with a black bar across the
+tail."
+
+Ryder quivered with emotion. "Oh, sir," he cried, "can you tell
+me where it went to?"
+
+"It came here."
+
+"Here?"
+
+"Yes, and a most remarkable bird it proved. I don't wonder that
+you should take an interest in it. It laid an egg after it was
+dead--the bonniest, brightest little blue egg that ever was seen.
+I have it here in my museum."
+
+Our visitor staggered to his feet and clutched the mantelpiece
+with his right hand. Holmes unlocked his strong-box and held up
+the blue carbuncle, which shone out like a star, with a cold,
+brilliant, many-pointed radiance. Ryder stood glaring with a
+drawn face, uncertain whether to claim or to disown it.
+
+"The game's up, Ryder," said Holmes quietly. "Hold up, man, or
+you'll be into the fire! Give him an arm back into his chair,
+Watson. He's not got blood enough to go in for felony with
+impunity. Give him a dash of brandy. So! Now he looks a little
+more human. What a shrimp it is, to be sure!"
+
+For a moment he had staggered and nearly fallen, but the brandy
+brought a tinge of colour into his cheeks, and he sat staring
+with frightened eyes at his accuser.
+
+"I have almost every link in my hands, and all the proofs which I
+could possibly need, so there is little which you need tell me.
+Still, that little may as well be cleared up to make the case
+complete. You had heard, Ryder, of this blue stone of the
+Countess of Morcar's?"
+
+"It was Catherine Cusack who told me of it," said he in a
+crackling voice.
+
+"I see--her ladyship's waiting-maid. Well, the temptation of
+sudden wealth so easily acquired was too much for you, as it has
+been for better men before you; but you were not very scrupulous
+in the means you used. It seems to me, Ryder, that there is the
+making of a very pretty villain in you. You knew that this man
+Horner, the plumber, had been concerned in some such matter
+before, and that suspicion would rest the more readily upon him.
+What did you do, then? You made some small job in my lady's
+room--you and your confederate Cusack--and you managed that he
+should be the man sent for. Then, when he had left, you rifled
+the jewel-case, raised the alarm, and had this unfortunate man
+arrested. You then--"
+
+Ryder threw himself down suddenly upon the rug and clutched at my
+companion's knees. "For God's sake, have mercy!" he shrieked.
+"Think of my father! Of my mother! It would break their hearts. I
+never went wrong before! I never will again. I swear it. I'll
+swear it on a Bible. Oh, don't bring it into court! For Christ's
+sake, don't!"
+
+"Get back into your chair!" said Holmes sternly. "It is very well
+to cringe and crawl now, but you thought little enough of this
+poor Horner in the dock for a crime of which he knew nothing."
+
+"I will fly, Mr. Holmes. I will leave the country, sir. Then the
+charge against him will break down."
+
+"Hum! We will talk about that. And now let us hear a true account
+of the next act. How came the stone into the goose, and how came
+the goose into the open market? Tell us the truth, for there lies
+your only hope of safety."
+
+Ryder passed his tongue over his parched lips. "I will tell you
+it just as it happened, sir," said he. "When Horner had been
+arrested, it seemed to me that it would be best for me to get
+away with the stone at once, for I did not know at what moment
+the police might not take it into their heads to search me and my
+room. There was no place about the hotel where it would be safe.
+I went out, as if on some commission, and I made for my sister's
+house. She had married a man named Oakshott, and lived in Brixton
+Road, where she fattened fowls for the market. All the way there
+every man I met seemed to me to be a policeman or a detective;
+and, for all that it was a cold night, the sweat was pouring down
+my face before I came to the Brixton Road. My sister asked me
+what was the matter, and why I was so pale; but I told her that I
+had been upset by the jewel robbery at the hotel. Then I went
+into the back yard and smoked a pipe and wondered what it would
+be best to do.
+
+"I had a friend once called Maudsley, who went to the bad, and
+has just been serving his time in Pentonville. One day he had met
+me, and fell into talk about the ways of thieves, and how they
+could get rid of what they stole. I knew that he would be true to
+me, for I knew one or two things about him; so I made up my mind
+to go right on to Kilburn, where he lived, and take him into my
+confidence. He would show me how to turn the stone into money.
+But how to get to him in safety? I thought of the agonies I had
+gone through in coming from the hotel. I might at any moment be
+seized and searched, and there would be the stone in my waistcoat
+pocket. I was leaning against the wall at the time and looking at
+the geese which were waddling about round my feet, and suddenly
+an idea came into my head which showed me how I could beat the
+best detective that ever lived.
+
+"My sister had told me some weeks before that I might have the
+pick of her geese for a Christmas present, and I knew that she
+was always as good as her word. I would take my goose now, and in
+it I would carry my stone to Kilburn. There was a little shed in
+the yard, and behind this I drove one of the birds--a fine big
+one, white, with a barred tail. I caught it, and prying its bill
+open, I thrust the stone down its throat as far as my finger
+could reach. The bird gave a gulp, and I felt the stone pass
+along its gullet and down into its crop. But the creature flapped
+and struggled, and out came my sister to know what was the
+matter. As I turned to speak to her the brute broke loose and
+fluttered off among the others.
+
+"'Whatever were you doing with that bird, Jem?' says she.
+
+"'Well,' said I, 'you said you'd give me one for Christmas, and I
+was feeling which was the fattest.'
+
+"'Oh,' says she, 'we've set yours aside for you--Jem's bird, we
+call it. It's the big white one over yonder. There's twenty-six
+of them, which makes one for you, and one for us, and two dozen
+for the market.'
+
+"'Thank you, Maggie,' says I; 'but if it is all the same to you,
+I'd rather have that one I was handling just now.'
+
+"'The other is a good three pound heavier,' said she, 'and we
+fattened it expressly for you.'
+
+"'Never mind. I'll have the other, and I'll take it now,' said I.
+
+"'Oh, just as you like,' said she, a little huffed. 'Which is it
+you want, then?'
+
+"'That white one with the barred tail, right in the middle of the
+flock.'
+
+"'Oh, very well. Kill it and take it with you.'
+
+"Well, I did what she said, Mr. Holmes, and I carried the bird
+all the way to Kilburn. I told my pal what I had done, for he was
+a man that it was easy to tell a thing like that to. He laughed
+until he choked, and we got a knife and opened the goose. My
+heart turned to water, for there was no sign of the stone, and I
+knew that some terrible mistake had occurred. I left the bird,
+rushed back to my sister's, and hurried into the back yard. There
+was not a bird to be seen there.
+
+"'Where are they all, Maggie?' I cried.
+
+"'Gone to the dealer's, Jem.'
+
+"'Which dealer's?'
+
+"'Breckinridge, of Covent Garden.'
+
+"'But was there another with a barred tail?' I asked, 'the same
+as the one I chose?'
+
+"'Yes, Jem; there were two barred-tailed ones, and I could never
+tell them apart.'
+
+"Well, then, of course I saw it all, and I ran off as hard as my
+feet would carry me to this man Breckinridge; but he had sold the
+lot at once, and not one word would he tell me as to where they
+had gone. You heard him yourselves to-night. Well, he has always
+answered me like that. My sister thinks that I am going mad.
+Sometimes I think that I am myself. And now--and now I am myself
+a branded thief, without ever having touched the wealth for which
+I sold my character. God help me! God help me!" He burst into
+convulsive sobbing, with his face buried in his hands.
+
+There was a long silence, broken only by his heavy breathing and
+by the measured tapping of Sherlock Holmes' finger-tips upon the
+edge of the table. Then my friend rose and threw open the door.
+
+"Get out!" said he.
+
+"What, sir! Oh, Heaven bless you!"
+
+"No more words. Get out!"
+
+And no more words were needed. There was a rush, a clatter upon
+the stairs, the bang of a door, and the crisp rattle of running
+footfalls from the street.
+
+"After all, Watson," said Holmes, reaching up his hand for his
+clay pipe, "I am not retained by the police to supply their
+deficiencies. If Horner were in danger it would be another thing;
+but this fellow will not appear against him, and the case must
+collapse. I suppose that I am commuting a felony, but it is just
+possible that I am saving a soul. This fellow will not go wrong
+again; he is too terribly frightened. Send him to gaol now, and
+you make him a gaol-bird for life. Besides, it is the season of
+forgiveness. Chance has put in our way a most singular and
+whimsical problem, and its solution is its own reward. If you
+will have the goodness to touch the bell, Doctor, we will begin
+another investigation, in which, also a bird will be the chief
+feature."
+
+
+
+VIII. THE ADVENTURE OF THE SPECKLED BAND
+
+On glancing over my notes of the seventy odd cases in which I
+have during the last eight years studied the methods of my friend
+Sherlock Holmes, I find many tragic, some comic, a large number
+merely strange, but none commonplace; for, working as he did
+rather for the love of his art than for the acquirement of
+wealth, he refused to associate himself with any investigation
+which did not tend towards the unusual, and even the fantastic.
+Of all these varied cases, however, I cannot recall any which
+presented more singular features than that which was associated
+with the well-known Surrey family of the Roylotts of Stoke Moran.
+The events in question occurred in the early days of my
+association with Holmes, when we were sharing rooms as bachelors
+in Baker Street. It is possible that I might have placed them
+upon record before, but a promise of secrecy was made at the
+time, from which I have only been freed during the last month by
+the untimely death of the lady to whom the pledge was given. It
+is perhaps as well that the facts should now come to light, for I
+have reasons to know that there are widespread rumours as to the
+death of Dr. Grimesby Roylott which tend to make the matter even
+more terrible than the truth.
+
+It was early in April in the year '83 that I woke one morning to
+find Sherlock Holmes standing, fully dressed, by the side of my
+bed. He was a late riser, as a rule, and as the clock on the
+mantelpiece showed me that it was only a quarter-past seven, I
+blinked up at him in some surprise, and perhaps just a little
+resentment, for I was myself regular in my habits.
+
+"Very sorry to knock you up, Watson," said he, "but it's the
+common lot this morning. Mrs. Hudson has been knocked up, she
+retorted upon me, and I on you."
+
+"What is it, then--a fire?"
+
+"No; a client. It seems that a young lady has arrived in a
+considerable state of excitement, who insists upon seeing me. She
+is waiting now in the sitting-room. Now, when young ladies wander
+about the metropolis at this hour of the morning, and knock
+sleepy people up out of their beds, I presume that it is
+something very pressing which they have to communicate. Should it
+prove to be an interesting case, you would, I am sure, wish to
+follow it from the outset. I thought, at any rate, that I should
+call you and give you the chance."
+
+"My dear fellow, I would not miss it for anything."
+
+I had no keener pleasure than in following Holmes in his
+professional investigations, and in admiring the rapid
+deductions, as swift as intuitions, and yet always founded on a
+logical basis with which he unravelled the problems which were
+submitted to him. I rapidly threw on my clothes and was ready in
+a few minutes to accompany my friend down to the sitting-room. A
+lady dressed in black and heavily veiled, who had been sitting in
+the window, rose as we entered.
+
+"Good-morning, madam," said Holmes cheerily. "My name is Sherlock
+Holmes. This is my intimate friend and associate, Dr. Watson,
+before whom you can speak as freely as before myself. Ha! I am
+glad to see that Mrs. Hudson has had the good sense to light the
+fire. Pray draw up to it, and I shall order you a cup of hot
+coffee, for I observe that you are shivering."
+
+"It is not cold which makes me shiver," said the woman in a low
+voice, changing her seat as requested.
+
+"What, then?"
+
+"It is fear, Mr. Holmes. It is terror." She raised her veil as
+she spoke, and we could see that she was indeed in a pitiable
+state of agitation, her face all drawn and grey, with restless
+frightened eyes, like those of some hunted animal. Her features
+and figure were those of a woman of thirty, but her hair was shot
+with premature grey, and her expression was weary and haggard.
+Sherlock Holmes ran her over with one of his quick,
+all-comprehensive glances.
+
+"You must not fear," said he soothingly, bending forward and
+patting her forearm. "We shall soon set matters right, I have no
+doubt. You have come in by train this morning, I see."
+
+"You know me, then?"
+
+"No, but I observe the second half of a return ticket in the palm
+of your left glove. You must have started early, and yet you had
+a good drive in a dog-cart, along heavy roads, before you reached
+the station."
+
+The lady gave a violent start and stared in bewilderment at my
+companion.
+
+"There is no mystery, my dear madam," said he, smiling. "The left
+arm of your jacket is spattered with mud in no less than seven
+places. The marks are perfectly fresh. There is no vehicle save a
+dog-cart which throws up mud in that way, and then only when you
+sit on the left-hand side of the driver."
+
+"Whatever your reasons may be, you are perfectly correct," said
+she. "I started from home before six, reached Leatherhead at
+twenty past, and came in by the first train to Waterloo. Sir, I
+can stand this strain no longer; I shall go mad if it continues.
+I have no one to turn to--none, save only one, who cares for me,
+and he, poor fellow, can be of little aid. I have heard of you,
+Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you
+helped in the hour of her sore need. It was from her that I had
+your address. Oh, sir, do you not think that you could help me,
+too, and at least throw a little light through the dense darkness
+which surrounds me? At present it is out of my power to reward
+you for your services, but in a month or six weeks I shall be
+married, with the control of my own income, and then at least you
+shall not find me ungrateful."
+
+Holmes turned to his desk and, unlocking it, drew out a small
+case-book, which he consulted.
+
+"Farintosh," said he. "Ah yes, I recall the case; it was
+concerned with an opal tiara. I think it was before your time,
+Watson. I can only say, madam, that I shall be happy to devote
+the same care to your case as I did to that of your friend. As to
+reward, my profession is its own reward; but you are at liberty
+to defray whatever expenses I may be put to, at the time which
+suits you best. And now I beg that you will lay before us
+everything that may help us in forming an opinion upon the
+matter."
+
+"Alas!" replied our visitor, "the very horror of my situation
+lies in the fact that my fears are so vague, and my suspicions
+depend so entirely upon small points, which might seem trivial to
+another, that even he to whom of all others I have a right to
+look for help and advice looks upon all that I tell him about it
+as the fancies of a nervous woman. He does not say so, but I can
+read it from his soothing answers and averted eyes. But I have
+heard, Mr. Holmes, that you can see deeply into the manifold
+wickedness of the human heart. You may advise me how to walk amid
+the dangers which encompass me."
+
+"I am all attention, madam."
+
+"My name is Helen Stoner, and I am living with my stepfather, who
+is the last survivor of one of the oldest Saxon families in
+England, the Roylotts of Stoke Moran, on the western border of
+Surrey."
+
+Holmes nodded his head. "The name is familiar to me," said he.
+
+"The family was at one time among the richest in England, and the
+estates extended over the borders into Berkshire in the north,
+and Hampshire in the west. In the last century, however, four
+successive heirs were of a dissolute and wasteful disposition,
+and the family ruin was eventually completed by a gambler in the
+days of the Regency. Nothing was left save a few acres of ground,
+and the two-hundred-year-old house, which is itself crushed under
+a heavy mortgage. The last squire dragged out his existence
+there, living the horrible life of an aristocratic pauper; but
+his only son, my stepfather, seeing that he must adapt himself to
+the new conditions, obtained an advance from a relative, which
+enabled him to take a medical degree and went out to Calcutta,
+where, by his professional skill and his force of character, he
+established a large practice. In a fit of anger, however, caused
+by some robberies which had been perpetrated in the house, he
+beat his native butler to death and narrowly escaped a capital
+sentence. As it was, he suffered a long term of imprisonment and
+afterwards returned to England a morose and disappointed man.
+
+"When Dr. Roylott was in India he married my mother, Mrs. Stoner,
+the young widow of Major-General Stoner, of the Bengal Artillery.
+My sister Julia and I were twins, and we were only two years old
+at the time of my mother's re-marriage. She had a considerable
+sum of money--not less than 1000 pounds a year--and this she
+bequeathed to Dr. Roylott entirely while we resided with him,
+with a provision that a certain annual sum should be allowed to
+each of us in the event of our marriage. Shortly after our return
+to England my mother died--she was killed eight years ago in a
+railway accident near Crewe. Dr. Roylott then abandoned his
+attempts to establish himself in practice in London and took us
+to live with him in the old ancestral house at Stoke Moran. The
+money which my mother had left was enough for all our wants, and
+there seemed to be no obstacle to our happiness.
+
+"But a terrible change came over our stepfather about this time.
+Instead of making friends and exchanging visits with our
+neighbours, who had at first been overjoyed to see a Roylott of
+Stoke Moran back in the old family seat, he shut himself up in
+his house and seldom came out save to indulge in ferocious
+quarrels with whoever might cross his path. Violence of temper
+approaching to mania has been hereditary in the men of the
+family, and in my stepfather's case it had, I believe, been
+intensified by his long residence in the tropics. A series of
+disgraceful brawls took place, two of which ended in the
+police-court, until at last he became the terror of the village,
+and the folks would fly at his approach, for he is a man of
+immense strength, and absolutely uncontrollable in his anger.
+
+"Last week he hurled the local blacksmith over a parapet into a
+stream, and it was only by paying over all the money which I
+could gather together that I was able to avert another public
+exposure. He had no friends at all save the wandering gipsies,
+and he would give these vagabonds leave to encamp upon the few
+acres of bramble-covered land which represent the family estate,
+and would accept in return the hospitality of their tents,
+wandering away with them sometimes for weeks on end. He has a
+passion also for Indian animals, which are sent over to him by a
+correspondent, and he has at this moment a cheetah and a baboon,
+which wander freely over his grounds and are feared by the
+villagers almost as much as their master.
+
+"You can imagine from what I say that my poor sister Julia and I
+had no great pleasure in our lives. No servant would stay with
+us, and for a long time we did all the work of the house. She was
+but thirty at the time of her death, and yet her hair had already
+begun to whiten, even as mine has."
+
+"Your sister is dead, then?"
+
+"She died just two years ago, and it is of her death that I wish
+to speak to you. You can understand that, living the life which I
+have described, we were little likely to see anyone of our own
+age and position. We had, however, an aunt, my mother's maiden
+sister, Miss Honoria Westphail, who lives near Harrow, and we
+were occasionally allowed to pay short visits at this lady's
+house. Julia went there at Christmas two years ago, and met there
+a half-pay major of marines, to whom she became engaged. My
+stepfather learned of the engagement when my sister returned and
+offered no objection to the marriage; but within a fortnight of
+the day which had been fixed for the wedding, the terrible event
+occurred which has deprived me of my only companion."
+
+Sherlock Holmes had been leaning back in his chair with his eyes
+closed and his head sunk in a cushion, but he half opened his
+lids now and glanced across at his visitor.
+
+"Pray be precise as to details," said he.
+
+"It is easy for me to be so, for every event of that dreadful
+time is seared into my memory. The manor-house is, as I have
+already said, very old, and only one wing is now inhabited. The
+bedrooms in this wing are on the ground floor, the sitting-rooms
+being in the central block of the buildings. Of these bedrooms
+the first is Dr. Roylott's, the second my sister's, and the third
+my own. There is no communication between them, but they all open
+out into the same corridor. Do I make myself plain?"
+
+"Perfectly so."
+
+"The windows of the three rooms open out upon the lawn. That
+fatal night Dr. Roylott had gone to his room early, though we
+knew that he had not retired to rest, for my sister was troubled
+by the smell of the strong Indian cigars which it was his custom
+to smoke. She left her room, therefore, and came into mine, where
+she sat for some time, chatting about her approaching wedding. At
+eleven o'clock she rose to leave me, but she paused at the door
+and looked back.
+
+"'Tell me, Helen,' said she, 'have you ever heard anyone whistle
+in the dead of the night?'
+
+"'Never,' said I.
+
+"'I suppose that you could not possibly whistle, yourself, in
+your sleep?'
+
+"'Certainly not. But why?'
+
+"'Because during the last few nights I have always, about three
+in the morning, heard a low, clear whistle. I am a light sleeper,
+and it has awakened me. I cannot tell where it came from--perhaps
+from the next room, perhaps from the lawn. I thought that I would
+just ask you whether you had heard it.'
+
+"'No, I have not. It must be those wretched gipsies in the
+plantation.'
+
+"'Very likely. And yet if it were on the lawn, I wonder that you
+did not hear it also.'
+
+"'Ah, but I sleep more heavily than you.'
+
+"'Well, it is of no great consequence, at any rate.' She smiled
+back at me, closed my door, and a few moments later I heard her
+key turn in the lock."
+
+"Indeed," said Holmes. "Was it your custom always to lock
+yourselves in at night?"
+
+"Always."
+
+"And why?"
+
+"I think that I mentioned to you that the doctor kept a cheetah
+and a baboon. We had no feeling of security unless our doors were
+locked."
+
+"Quite so. Pray proceed with your statement."
+
+"I could not sleep that night. A vague feeling of impending
+misfortune impressed me. My sister and I, you will recollect,
+were twins, and you know how subtle are the links which bind two
+souls which are so closely allied. It was a wild night. The wind
+was howling outside, and the rain was beating and splashing
+against the windows. Suddenly, amid all the hubbub of the gale,
+there burst forth the wild scream of a terrified woman. I knew
+that it was my sister's voice. I sprang from my bed, wrapped a
+shawl round me, and rushed into the corridor. As I opened my door
+I seemed to hear a low whistle, such as my sister described, and
+a few moments later a clanging sound, as if a mass of metal had
+fallen. As I ran down the passage, my sister's door was unlocked,
+and revolved slowly upon its hinges. I stared at it
+horror-stricken, not knowing what was about to issue from it. By
+the light of the corridor-lamp I saw my sister appear at the
+opening, her face blanched with terror, her hands groping for
+help, her whole figure swaying to and fro like that of a
+drunkard. I ran to her and threw my arms round her, but at that
+moment her knees seemed to give way and she fell to the ground.
+She writhed as one who is in terrible pain, and her limbs were
+dreadfully convulsed. At first I thought that she had not
+recognised me, but as I bent over her she suddenly shrieked out
+in a voice which I shall never forget, 'Oh, my God! Helen! It was
+the band! The speckled band!' There was something else which she
+would fain have said, and she stabbed with her finger into the
+air in the direction of the doctor's room, but a fresh convulsion
+seized her and choked her words. I rushed out, calling loudly for
+my stepfather, and I met him hastening from his room in his
+dressing-gown. When he reached my sister's side she was
+unconscious, and though he poured brandy down her throat and sent
+for medical aid from the village, all efforts were in vain, for
+she slowly sank and died without having recovered her
+consciousness. Such was the dreadful end of my beloved sister."
+
+"One moment," said Holmes, "are you sure about this whistle and
+metallic sound? Could you swear to it?"
+
+"That was what the county coroner asked me at the inquiry. It is
+my strong impression that I heard it, and yet, among the crash of
+the gale and the creaking of an old house, I may possibly have
+been deceived."
+
+"Was your sister dressed?"
+
+"No, she was in her night-dress. In her right hand was found the
+charred stump of a match, and in her left a match-box."
+
+"Showing that she had struck a light and looked about her when
+the alarm took place. That is important. And what conclusions did
+the coroner come to?"
+
+"He investigated the case with great care, for Dr. Roylott's
+conduct had long been notorious in the county, but he was unable
+to find any satisfactory cause of death. My evidence showed that
+the door had been fastened upon the inner side, and the windows
+were blocked by old-fashioned shutters with broad iron bars,
+which were secured every night. The walls were carefully sounded,
+and were shown to be quite solid all round, and the flooring was
+also thoroughly examined, with the same result. The chimney is
+wide, but is barred up by four large staples. It is certain,
+therefore, that my sister was quite alone when she met her end.
+Besides, there were no marks of any violence upon her."
+
+"How about poison?"
+
+"The doctors examined her for it, but without success."
+
+"What do you think that this unfortunate lady died of, then?"
+
+"It is my belief that she died of pure fear and nervous shock,
+though what it was that frightened her I cannot imagine."
+
+"Were there gipsies in the plantation at the time?"
+
+"Yes, there are nearly always some there."
+
+"Ah, and what did you gather from this allusion to a band--a
+speckled band?"
+
+"Sometimes I have thought that it was merely the wild talk of
+delirium, sometimes that it may have referred to some band of
+people, perhaps to these very gipsies in the plantation. I do not
+know whether the spotted handkerchiefs which so many of them wear
+over their heads might have suggested the strange adjective which
+she used."
+
+Holmes shook his head like a man who is far from being satisfied.
+
+"These are very deep waters," said he; "pray go on with your
+narrative."
+
+"Two years have passed since then, and my life has been until
+lately lonelier than ever. A month ago, however, a dear friend,
+whom I have known for many years, has done me the honour to ask
+my hand in marriage. His name is Armitage--Percy Armitage--the
+second son of Mr. Armitage, of Crane Water, near Reading. My
+stepfather has offered no opposition to the match, and we are to
+be married in the course of the spring. Two days ago some repairs
+were started in the west wing of the building, and my bedroom
+wall has been pierced, so that I have had to move into the
+chamber in which my sister died, and to sleep in the very bed in
+which she slept. Imagine, then, my thrill of terror when last
+night, as I lay awake, thinking over her terrible fate, I
+suddenly heard in the silence of the night the low whistle which
+had been the herald of her own death. I sprang up and lit the
+lamp, but nothing was to be seen in the room. I was too shaken to
+go to bed again, however, so I dressed, and as soon as it was
+daylight I slipped down, got a dog-cart at the Crown Inn, which
+is opposite, and drove to Leatherhead, from whence I have come on
+this morning with the one object of seeing you and asking your
+advice."
+
+"You have done wisely," said my friend. "But have you told me
+all?"
+
+"Yes, all."
+
+"Miss Roylott, you have not. You are screening your stepfather."
+
+"Why, what do you mean?"
+
+For answer Holmes pushed back the frill of black lace which
+fringed the hand that lay upon our visitor's knee. Five little
+livid spots, the marks of four fingers and a thumb, were printed
+upon the white wrist.
+
+"You have been cruelly used," said Holmes.
+
+The lady coloured deeply and covered over her injured wrist. "He
+is a hard man," she said, "and perhaps he hardly knows his own
+strength."
+
+There was a long silence, during which Holmes leaned his chin
+upon his hands and stared into the crackling fire.
+
+"This is a very deep business," he said at last. "There are a
+thousand details which I should desire to know before I decide
+upon our course of action. Yet we have not a moment to lose. If
+we were to come to Stoke Moran to-day, would it be possible for
+us to see over these rooms without the knowledge of your
+stepfather?"
+
+"As it happens, he spoke of coming into town to-day upon some
+most important business. It is probable that he will be away all
+day, and that there would be nothing to disturb you. We have a
+housekeeper now, but she is old and foolish, and I could easily
+get her out of the way."
+
+"Excellent. You are not averse to this trip, Watson?"
+
+"By no means."
+
+"Then we shall both come. What are you going to do yourself?"
+
+"I have one or two things which I would wish to do now that I am
+in town. But I shall return by the twelve o'clock train, so as to
+be there in time for your coming."
+
+"And you may expect us early in the afternoon. I have myself some
+small business matters to attend to. Will you not wait and
+breakfast?"
+
+"No, I must go. My heart is lightened already since I have
+confided my trouble to you. I shall look forward to seeing you
+again this afternoon." She dropped her thick black veil over her
+face and glided from the room.
+
+"And what do you think of it all, Watson?" asked Sherlock Holmes,
+leaning back in his chair.
+
+"It seems to me to be a most dark and sinister business."
+
+"Dark enough and sinister enough."
+
+"Yet if the lady is correct in saying that the flooring and walls
+are sound, and that the door, window, and chimney are impassable,
+then her sister must have been undoubtedly alone when she met her
+mysterious end."
+
+"What becomes, then, of these nocturnal whistles, and what of the
+very peculiar words of the dying woman?"
+
+"I cannot think."
+
+"When you combine the ideas of whistles at night, the presence of
+a band of gipsies who are on intimate terms with this old doctor,
+the fact that we have every reason to believe that the doctor has
+an interest in preventing his stepdaughter's marriage, the dying
+allusion to a band, and, finally, the fact that Miss Helen Stoner
+heard a metallic clang, which might have been caused by one of
+those metal bars that secured the shutters falling back into its
+place, I think that there is good ground to think that the
+mystery may be cleared along those lines."
+
+"But what, then, did the gipsies do?"
+
+"I cannot imagine."
+
+"I see many objections to any such theory."
+
+"And so do I. It is precisely for that reason that we are going
+to Stoke Moran this day. I want to see whether the objections are
+fatal, or if they may be explained away. But what in the name of
+the devil!"
+
+The ejaculation had been drawn from my companion by the fact that
+our door had been suddenly dashed open, and that a huge man had
+framed himself in the aperture. His costume was a peculiar
+mixture of the professional and of the agricultural, having a
+black top-hat, a long frock-coat, and a pair of high gaiters,
+with a hunting-crop swinging in his hand. So tall was he that his
+hat actually brushed the cross bar of the doorway, and his
+breadth seemed to span it across from side to side. A large face,
+seared with a thousand wrinkles, burned yellow with the sun, and
+marked with every evil passion, was turned from one to the other
+of us, while his deep-set, bile-shot eyes, and his high, thin,
+fleshless nose, gave him somewhat the resemblance to a fierce old
+bird of prey.
+
+"Which of you is Holmes?" asked this apparition.
+
+"My name, sir; but you have the advantage of me," said my
+companion quietly.
+
+"I am Dr. Grimesby Roylott, of Stoke Moran."
+
+"Indeed, Doctor," said Holmes blandly. "Pray take a seat."
+
+"I will do nothing of the kind. My stepdaughter has been here. I
+have traced her. What has she been saying to you?"
+
+"It is a little cold for the time of the year," said Holmes.
+
+"What has she been saying to you?" screamed the old man
+furiously.
+
+"But I have heard that the crocuses promise well," continued my
+companion imperturbably.
+
+"Ha! You put me off, do you?" said our new visitor, taking a step
+forward and shaking his hunting-crop. "I know you, you scoundrel!
+I have heard of you before. You are Holmes, the meddler."
+
+My friend smiled.
+
+"Holmes, the busybody!"
+
+His smile broadened.
+
+"Holmes, the Scotland Yard Jack-in-office!"
+
+Holmes chuckled heartily. "Your conversation is most
+entertaining," said he. "When you go out close the door, for
+there is a decided draught."
+
+"I will go when I have said my say. Don't you dare to meddle with
+my affairs. I know that Miss Stoner has been here. I traced her!
+I am a dangerous man to fall foul of! See here." He stepped
+swiftly forward, seized the poker, and bent it into a curve with
+his huge brown hands.
+
+"See that you keep yourself out of my grip," he snarled, and
+hurling the twisted poker into the fireplace he strode out of the
+room.
+
+"He seems a very amiable person," said Holmes, laughing. "I am
+not quite so bulky, but if he had remained I might have shown him
+that my grip was not much more feeble than his own." As he spoke
+he picked up the steel poker and, with a sudden effort,
+straightened it out again.
+
+"Fancy his having the insolence to confound me with the official
+detective force! This incident gives zest to our investigation,
+however, and I only trust that our little friend will not suffer
+from her imprudence in allowing this brute to trace her. And now,
+Watson, we shall order breakfast, and afterwards I shall walk
+down to Doctors' Commons, where I hope to get some data which may
+help us in this matter."
+
+
+It was nearly one o'clock when Sherlock Holmes returned from his
+excursion. He held in his hand a sheet of blue paper, scrawled
+over with notes and figures.
+
+"I have seen the will of the deceased wife," said he. "To
+determine its exact meaning I have been obliged to work out the
+present prices of the investments with which it is concerned. The
+total income, which at the time of the wife's death was little
+short of 1100 pounds, is now, through the fall in agricultural
+prices, not more than 750 pounds. Each daughter can claim an
+income of 250 pounds, in case of marriage. It is evident,
+therefore, that if both girls had married, this beauty would have
+had a mere pittance, while even one of them would cripple him to
+a very serious extent. My morning's work has not been wasted,
+since it has proved that he has the very strongest motives for
+standing in the way of anything of the sort. And now, Watson,
+this is too serious for dawdling, especially as the old man is
+aware that we are interesting ourselves in his affairs; so if you
+are ready, we shall call a cab and drive to Waterloo. I should be
+very much obliged if you would slip your revolver into your
+pocket. An Eley's No. 2 is an excellent argument with gentlemen
+who can twist steel pokers into knots. That and a tooth-brush
+are, I think, all that we need."
+
+At Waterloo we were fortunate in catching a train for
+Leatherhead, where we hired a trap at the station inn and drove
+for four or five miles through the lovely Surrey lanes. It was a
+perfect day, with a bright sun and a few fleecy clouds in the
+heavens. The trees and wayside hedges were just throwing out
+their first green shoots, and the air was full of the pleasant
+smell of the moist earth. To me at least there was a strange
+contrast between the sweet promise of the spring and this
+sinister quest upon which we were engaged. My companion sat in
+the front of the trap, his arms folded, his hat pulled down over
+his eyes, and his chin sunk upon his breast, buried in the
+deepest thought. Suddenly, however, he started, tapped me on the
+shoulder, and pointed over the meadows.
+
+"Look there!" said he.
+
+A heavily timbered park stretched up in a gentle slope,
+thickening into a grove at the highest point. From amid the
+branches there jutted out the grey gables and high roof-tree of a
+very old mansion.
+
+"Stoke Moran?" said he.
+
+"Yes, sir, that be the house of Dr. Grimesby Roylott," remarked
+the driver.
+
+"There is some building going on there," said Holmes; "that is
+where we are going."
+
+"There's the village," said the driver, pointing to a cluster of
+roofs some distance to the left; "but if you want to get to the
+house, you'll find it shorter to get over this stile, and so by
+the foot-path over the fields. There it is, where the lady is
+walking."
+
+"And the lady, I fancy, is Miss Stoner," observed Holmes, shading
+his eyes. "Yes, I think we had better do as you suggest."
+
+We got off, paid our fare, and the trap rattled back on its way
+to Leatherhead.
+
+"I thought it as well," said Holmes as we climbed the stile,
+"that this fellow should think we had come here as architects, or
+on some definite business. It may stop his gossip.
+Good-afternoon, Miss Stoner. You see that we have been as good as
+our word."
+
+Our client of the morning had hurried forward to meet us with a
+face which spoke her joy. "I have been waiting so eagerly for
+you," she cried, shaking hands with us warmly. "All has turned
+out splendidly. Dr. Roylott has gone to town, and it is unlikely
+that he will be back before evening."
+
+"We have had the pleasure of making the doctor's acquaintance,"
+said Holmes, and in a few words he sketched out what had
+occurred. Miss Stoner turned white to the lips as she listened.
+
+"Good heavens!" she cried, "he has followed me, then."
+
+"So it appears."
+
+"He is so cunning that I never know when I am safe from him. What
+will he say when he returns?"
+
+"He must guard himself, for he may find that there is someone
+more cunning than himself upon his track. You must lock yourself
+up from him to-night. If he is violent, we shall take you away to
+your aunt's at Harrow. Now, we must make the best use of our
+time, so kindly take us at once to the rooms which we are to
+examine."
+
+The building was of grey, lichen-blotched stone, with a high
+central portion and two curving wings, like the claws of a crab,
+thrown out on each side. In one of these wings the windows were
+broken and blocked with wooden boards, while the roof was partly
+caved in, a picture of ruin. The central portion was in little
+better repair, but the right-hand block was comparatively modern,
+and the blinds in the windows, with the blue smoke curling up
+from the chimneys, showed that this was where the family resided.
+Some scaffolding had been erected against the end wall, and the
+stone-work had been broken into, but there were no signs of any
+workmen at the moment of our visit. Holmes walked slowly up and
+down the ill-trimmed lawn and examined with deep attention the
+outsides of the windows.
+
+"This, I take it, belongs to the room in which you used to sleep,
+the centre one to your sister's, and the one next to the main
+building to Dr. Roylott's chamber?"
+
+"Exactly so. But I am now sleeping in the middle one."
+
+"Pending the alterations, as I understand. By the way, there does
+not seem to be any very pressing need for repairs at that end
+wall."
+
+"There were none. I believe that it was an excuse to move me from
+my room."
+
+"Ah! that is suggestive. Now, on the other side of this narrow
+wing runs the corridor from which these three rooms open. There
+are windows in it, of course?"
+
+"Yes, but very small ones. Too narrow for anyone to pass
+through."
+
+"As you both locked your doors at night, your rooms were
+unapproachable from that side. Now, would you have the kindness
+to go into your room and bar your shutters?"
+
+Miss Stoner did so, and Holmes, after a careful examination
+through the open window, endeavoured in every way to force the
+shutter open, but without success. There was no slit through
+which a knife could be passed to raise the bar. Then with his
+lens he tested the hinges, but they were of solid iron, built
+firmly into the massive masonry. "Hum!" said he, scratching his
+chin in some perplexity, "my theory certainly presents some
+difficulties. No one could pass these shutters if they were
+bolted. Well, we shall see if the inside throws any light upon
+the matter."
+
+A small side door led into the whitewashed corridor from which
+the three bedrooms opened. Holmes refused to examine the third
+chamber, so we passed at once to the second, that in which Miss
+Stoner was now sleeping, and in which her sister had met with her
+fate. It was a homely little room, with a low ceiling and a
+gaping fireplace, after the fashion of old country-houses. A
+brown chest of drawers stood in one corner, a narrow
+white-counterpaned bed in another, and a dressing-table on the
+left-hand side of the window. These articles, with two small
+wicker-work chairs, made up all the furniture in the room save
+for a square of Wilton carpet in the centre. The boards round and
+the panelling of the walls were of brown, worm-eaten oak, so old
+and discoloured that it may have dated from the original building
+of the house. Holmes drew one of the chairs into a corner and sat
+silent, while his eyes travelled round and round and up and down,
+taking in every detail of the apartment.
+
+"Where does that bell communicate with?" he asked at last
+pointing to a thick bell-rope which hung down beside the bed, the
+tassel actually lying upon the pillow.
+
+"It goes to the housekeeper's room."
+
+"It looks newer than the other things?"
+
+"Yes, it was only put there a couple of years ago."
+
+"Your sister asked for it, I suppose?"
+
+"No, I never heard of her using it. We used always to get what we
+wanted for ourselves."
+
+"Indeed, it seemed unnecessary to put so nice a bell-pull there.
+You will excuse me for a few minutes while I satisfy myself as to
+this floor." He threw himself down upon his face with his lens in
+his hand and crawled swiftly backward and forward, examining
+minutely the cracks between the boards. Then he did the same with
+the wood-work with which the chamber was panelled. Finally he
+walked over to the bed and spent some time in staring at it and
+in running his eye up and down the wall. Finally he took the
+bell-rope in his hand and gave it a brisk tug.
+
+"Why, it's a dummy," said he.
+
+"Won't it ring?"
+
+"No, it is not even attached to a wire. This is very interesting.
+You can see now that it is fastened to a hook just above where
+the little opening for the ventilator is."
+
+"How very absurd! I never noticed that before."
+
+"Very strange!" muttered Holmes, pulling at the rope. "There are
+one or two very singular points about this room. For example,
+what a fool a builder must be to open a ventilator into another
+room, when, with the same trouble, he might have communicated
+with the outside air!"
+
+"That is also quite modern," said the lady.
+
+"Done about the same time as the bell-rope?" remarked Holmes.
+
+"Yes, there were several little changes carried out about that
+time."
+
+"They seem to have been of a most interesting character--dummy
+bell-ropes, and ventilators which do not ventilate. With your
+permission, Miss Stoner, we shall now carry our researches into
+the inner apartment."
+
+Dr. Grimesby Roylott's chamber was larger than that of his
+step-daughter, but was as plainly furnished. A camp-bed, a small
+wooden shelf full of books, mostly of a technical character, an
+armchair beside the bed, a plain wooden chair against the wall, a
+round table, and a large iron safe were the principal things
+which met the eye. Holmes walked slowly round and examined each
+and all of them with the keenest interest.
+
+"What's in here?" he asked, tapping the safe.
+
+"My stepfather's business papers."
+
+"Oh! you have seen inside, then?"
+
+"Only once, some years ago. I remember that it was full of
+papers."
+
+"There isn't a cat in it, for example?"
+
+"No. What a strange idea!"
+
+"Well, look at this!" He took up a small saucer of milk which
+stood on the top of it.
+
+"No; we don't keep a cat. But there is a cheetah and a baboon."
+
+"Ah, yes, of course! Well, a cheetah is just a big cat, and yet a
+saucer of milk does not go very far in satisfying its wants, I
+daresay. There is one point which I should wish to determine." He
+squatted down in front of the wooden chair and examined the seat
+of it with the greatest attention.
+
+"Thank you. That is quite settled," said he, rising and putting
+his lens in his pocket. "Hullo! Here is something interesting!"
+
+The object which had caught his eye was a small dog lash hung on
+one corner of the bed. The lash, however, was curled upon itself
+and tied so as to make a loop of whipcord.
+
+"What do you make of that, Watson?"
+
+"It's a common enough lash. But I don't know why it should be
+tied."
+
+"That is not quite so common, is it? Ah, me! it's a wicked world,
+and when a clever man turns his brains to crime it is the worst
+of all. I think that I have seen enough now, Miss Stoner, and
+with your permission we shall walk out upon the lawn."
+
+I had never seen my friend's face so grim or his brow so dark as
+it was when we turned from the scene of this investigation. We
+had walked several times up and down the lawn, neither Miss
+Stoner nor myself liking to break in upon his thoughts before he
+roused himself from his reverie.
+
+"It is very essential, Miss Stoner," said he, "that you should
+absolutely follow my advice in every respect."
+
+"I shall most certainly do so."
+
+"The matter is too serious for any hesitation. Your life may
+depend upon your compliance."
+
+"I assure you that I am in your hands."
+
+"In the first place, both my friend and I must spend the night in
+your room."
+
+Both Miss Stoner and I gazed at him in astonishment.
+
+"Yes, it must be so. Let me explain. I believe that that is the
+village inn over there?"
+
+"Yes, that is the Crown."
+
+"Very good. Your windows would be visible from there?"
+
+"Certainly."
+
+"You must confine yourself to your room, on pretence of a
+headache, when your stepfather comes back. Then when you hear him
+retire for the night, you must open the shutters of your window,
+undo the hasp, put your lamp there as a signal to us, and then
+withdraw quietly with everything which you are likely to want
+into the room which you used to occupy. I have no doubt that, in
+spite of the repairs, you could manage there for one night."
+
+"Oh, yes, easily."
+
+"The rest you will leave in our hands."
+
+"But what will you do?"
+
+"We shall spend the night in your room, and we shall investigate
+the cause of this noise which has disturbed you."
+
+"I believe, Mr. Holmes, that you have already made up your mind,"
+said Miss Stoner, laying her hand upon my companion's sleeve.
+
+"Perhaps I have."
+
+"Then, for pity's sake, tell me what was the cause of my sister's
+death."
+
+"I should prefer to have clearer proofs before I speak."
+
+"You can at least tell me whether my own thought is correct, and
+if she died from some sudden fright."
+
+"No, I do not think so. I think that there was probably some more
+tangible cause. And now, Miss Stoner, we must leave you for if
+Dr. Roylott returned and saw us our journey would be in vain.
+Good-bye, and be brave, for if you will do what I have told you,
+you may rest assured that we shall soon drive away the dangers
+that threaten you."
+
+Sherlock Holmes and I had no difficulty in engaging a bedroom and
+sitting-room at the Crown Inn. They were on the upper floor, and
+from our window we could command a view of the avenue gate, and
+of the inhabited wing of Stoke Moran Manor House. At dusk we saw
+Dr. Grimesby Roylott drive past, his huge form looming up beside
+the little figure of the lad who drove him. The boy had some
+slight difficulty in undoing the heavy iron gates, and we heard
+the hoarse roar of the doctor's voice and saw the fury with which
+he shook his clinched fists at him. The trap drove on, and a few
+minutes later we saw a sudden light spring up among the trees as
+the lamp was lit in one of the sitting-rooms.
+
+"Do you know, Watson," said Holmes as we sat together in the
+gathering darkness, "I have really some scruples as to taking you
+to-night. There is a distinct element of danger."
+
+"Can I be of assistance?"
+
+"Your presence might be invaluable."
+
+"Then I shall certainly come."
+
+"It is very kind of you."
+
+"You speak of danger. You have evidently seen more in these rooms
+than was visible to me."
+
+"No, but I fancy that I may have deduced a little more. I imagine
+that you saw all that I did."
+
+"I saw nothing remarkable save the bell-rope, and what purpose
+that could answer I confess is more than I can imagine."
+
+"You saw the ventilator, too?"
+
+"Yes, but I do not think that it is such a very unusual thing to
+have a small opening between two rooms. It was so small that a
+rat could hardly pass through."
+
+"I knew that we should find a ventilator before ever we came to
+Stoke Moran."
+
+"My dear Holmes!"
+
+"Oh, yes, I did. You remember in her statement she said that her
+sister could smell Dr. Roylott's cigar. Now, of course that
+suggested at once that there must be a communication between the
+two rooms. It could only be a small one, or it would have been
+remarked upon at the coroner's inquiry. I deduced a ventilator."
+
+"But what harm can there be in that?"
+
+"Well, there is at least a curious coincidence of dates. A
+ventilator is made, a cord is hung, and a lady who sleeps in the
+bed dies. Does not that strike you?"
+
+"I cannot as yet see any connection."
+
+"Did you observe anything very peculiar about that bed?"
+
+"No."
+
+"It was clamped to the floor. Did you ever see a bed fastened
+like that before?"
+
+"I cannot say that I have."
+
+"The lady could not move her bed. It must always be in the same
+relative position to the ventilator and to the rope--or so we may
+call it, since it was clearly never meant for a bell-pull."
+
+"Holmes," I cried, "I seem to see dimly what you are hinting at.
+We are only just in time to prevent some subtle and horrible
+crime."
+
+"Subtle enough and horrible enough. When a doctor does go wrong
+he is the first of criminals. He has nerve and he has knowledge.
+Palmer and Pritchard were among the heads of their profession.
+This man strikes even deeper, but I think, Watson, that we shall
+be able to strike deeper still. But we shall have horrors enough
+before the night is over; for goodness' sake let us have a quiet
+pipe and turn our minds for a few hours to something more
+cheerful."
+
+
+About nine o'clock the light among the trees was extinguished,
+and all was dark in the direction of the Manor House. Two hours
+passed slowly away, and then, suddenly, just at the stroke of
+eleven, a single bright light shone out right in front of us.
+
+"That is our signal," said Holmes, springing to his feet; "it
+comes from the middle window."
+
+As we passed out he exchanged a few words with the landlord,
+explaining that we were going on a late visit to an acquaintance,
+and that it was possible that we might spend the night there. A
+moment later we were out on the dark road, a chill wind blowing
+in our faces, and one yellow light twinkling in front of us
+through the gloom to guide us on our sombre errand.
+
+There was little difficulty in entering the grounds, for
+unrepaired breaches gaped in the old park wall. Making our way
+among the trees, we reached the lawn, crossed it, and were about
+to enter through the window when out from a clump of laurel
+bushes there darted what seemed to be a hideous and distorted
+child, who threw itself upon the grass with writhing limbs and
+then ran swiftly across the lawn into the darkness.
+
+"My God!" I whispered; "did you see it?"
+
+Holmes was for the moment as startled as I. His hand closed like
+a vice upon my wrist in his agitation. Then he broke into a low
+laugh and put his lips to my ear.
+
+"It is a nice household," he murmured. "That is the baboon."
+
+I had forgotten the strange pets which the doctor affected. There
+was a cheetah, too; perhaps we might find it upon our shoulders
+at any moment. I confess that I felt easier in my mind when,
+after following Holmes' example and slipping off my shoes, I
+found myself inside the bedroom. My companion noiselessly closed
+the shutters, moved the lamp onto the table, and cast his eyes
+round the room. All was as we had seen it in the daytime. Then
+creeping up to me and making a trumpet of his hand, he whispered
+into my ear again so gently that it was all that I could do to
+distinguish the words:
+
+"The least sound would be fatal to our plans."
+
+I nodded to show that I had heard.
+
+"We must sit without light. He would see it through the
+ventilator."
+
+I nodded again.
+
+"Do not go asleep; your very life may depend upon it. Have your
+pistol ready in case we should need it. I will sit on the side of
+the bed, and you in that chair."
+
+I took out my revolver and laid it on the corner of the table.
+
+Holmes had brought up a long thin cane, and this he placed upon
+the bed beside him. By it he laid the box of matches and the
+stump of a candle. Then he turned down the lamp, and we were left
+in darkness.
+
+How shall I ever forget that dreadful vigil? I could not hear a
+sound, not even the drawing of a breath, and yet I knew that my
+companion sat open-eyed, within a few feet of me, in the same
+state of nervous tension in which I was myself. The shutters cut
+off the least ray of light, and we waited in absolute darkness.
+
+From outside came the occasional cry of a night-bird, and once at
+our very window a long drawn catlike whine, which told us that
+the cheetah was indeed at liberty. Far away we could hear the
+deep tones of the parish clock, which boomed out every quarter of
+an hour. How long they seemed, those quarters! Twelve struck, and
+one and two and three, and still we sat waiting silently for
+whatever might befall.
+
+Suddenly there was the momentary gleam of a light up in the
+direction of the ventilator, which vanished immediately, but was
+succeeded by a strong smell of burning oil and heated metal.
+Someone in the next room had lit a dark-lantern. I heard a gentle
+sound of movement, and then all was silent once more, though the
+smell grew stronger. For half an hour I sat with straining ears.
+Then suddenly another sound became audible--a very gentle,
+soothing sound, like that of a small jet of steam escaping
+continually from a kettle. The instant that we heard it, Holmes
+sprang from the bed, struck a match, and lashed furiously with
+his cane at the bell-pull.
+
+"You see it, Watson?" he yelled. "You see it?"
+
+But I saw nothing. At the moment when Holmes struck the light I
+heard a low, clear whistle, but the sudden glare flashing into my
+weary eyes made it impossible for me to tell what it was at which
+my friend lashed so savagely. I could, however, see that his face
+was deadly pale and filled with horror and loathing. He had
+ceased to strike and was gazing up at the ventilator when
+suddenly there broke from the silence of the night the most
+horrible cry to which I have ever listened. It swelled up louder
+and louder, a hoarse yell of pain and fear and anger all mingled
+in the one dreadful shriek. They say that away down in the
+village, and even in the distant parsonage, that cry raised the
+sleepers from their beds. It struck cold to our hearts, and I
+stood gazing at Holmes, and he at me, until the last echoes of it
+had died away into the silence from which it rose.
+
+"What can it mean?" I gasped.
+
+"It means that it is all over," Holmes answered. "And perhaps,
+after all, it is for the best. Take your pistol, and we will
+enter Dr. Roylott's room."
+
+With a grave face he lit the lamp and led the way down the
+corridor. Twice he struck at the chamber door without any reply
+from within. Then he turned the handle and entered, I at his
+heels, with the cocked pistol in my hand.
+
+It was a singular sight which met our eyes. On the table stood a
+dark-lantern with the shutter half open, throwing a brilliant
+beam of light upon the iron safe, the door of which was ajar.
+Beside this table, on the wooden chair, sat Dr. Grimesby Roylott
+clad in a long grey dressing-gown, his bare ankles protruding
+beneath, and his feet thrust into red heelless Turkish slippers.
+Across his lap lay the short stock with the long lash which we
+had noticed during the day. His chin was cocked upward and his
+eyes were fixed in a dreadful, rigid stare at the corner of the
+ceiling. Round his brow he had a peculiar yellow band, with
+brownish speckles, which seemed to be bound tightly round his
+head. As we entered he made neither sound nor motion.
+
+"The band! the speckled band!" whispered Holmes.
+
+I took a step forward. In an instant his strange headgear began
+to move, and there reared itself from among his hair the squat
+diamond-shaped head and puffed neck of a loathsome serpent.
+
+"It is a swamp adder!" cried Holmes; "the deadliest snake in
+India. He has died within ten seconds of being bitten. Violence
+does, in truth, recoil upon the violent, and the schemer falls
+into the pit which he digs for another. Let us thrust this
+creature back into its den, and we can then remove Miss Stoner to
+some place of shelter and let the county police know what has
+happened."
+
+As he spoke he drew the dog-whip swiftly from the dead man's lap,
+and throwing the noose round the reptile's neck he drew it from
+its horrid perch and, carrying it at arm's length, threw it into
+the iron safe, which he closed upon it.
+
+Such are the true facts of the death of Dr. Grimesby Roylott, of
+Stoke Moran. It is not necessary that I should prolong a
+narrative which has already run to too great a length by telling
+how we broke the sad news to the terrified girl, how we conveyed
+her by the morning train to the care of her good aunt at Harrow,
+of how the slow process of official inquiry came to the
+conclusion that the doctor met his fate while indiscreetly
+playing with a dangerous pet. The little which I had yet to learn
+of the case was told me by Sherlock Holmes as we travelled back
+next day.
+
+"I had," said he, "come to an entirely erroneous conclusion which
+shows, my dear Watson, how dangerous it always is to reason from
+insufficient data. The presence of the gipsies, and the use of
+the word 'band,' which was used by the poor girl, no doubt, to
+explain the appearance which she had caught a hurried glimpse of
+by the light of her match, were sufficient to put me upon an
+entirely wrong scent. I can only claim the merit that I instantly
+reconsidered my position when, however, it became clear to me
+that whatever danger threatened an occupant of the room could not
+come either from the window or the door. My attention was
+speedily drawn, as I have already remarked to you, to this
+ventilator, and to the bell-rope which hung down to the bed. The
+discovery that this was a dummy, and that the bed was clamped to
+the floor, instantly gave rise to the suspicion that the rope was
+there as a bridge for something passing through the hole and
+coming to the bed. The idea of a snake instantly occurred to me,
+and when I coupled it with my knowledge that the doctor was
+furnished with a supply of creatures from India, I felt that I
+was probably on the right track. The idea of using a form of
+poison which could not possibly be discovered by any chemical
+test was just such a one as would occur to a clever and ruthless
+man who had had an Eastern training. The rapidity with which such
+a poison would take effect would also, from his point of view, be
+an advantage. It would be a sharp-eyed coroner, indeed, who could
+distinguish the two little dark punctures which would show where
+the poison fangs had done their work. Then I thought of the
+whistle. Of course he must recall the snake before the morning
+light revealed it to the victim. He had trained it, probably by
+the use of the milk which we saw, to return to him when summoned.
+He would put it through this ventilator at the hour that he
+thought best, with the certainty that it would crawl down the
+rope and land on the bed. It might or might not bite the
+occupant, perhaps she might escape every night for a week, but
+sooner or later she must fall a victim.
+
+"I had come to these conclusions before ever I had entered his
+room. An inspection of his chair showed me that he had been in
+the habit of standing on it, which of course would be necessary
+in order that he should reach the ventilator. The sight of the
+safe, the saucer of milk, and the loop of whipcord were enough to
+finally dispel any doubts which may have remained. The metallic
+clang heard by Miss Stoner was obviously caused by her stepfather
+hastily closing the door of his safe upon its terrible occupant.
+Having once made up my mind, you know the steps which I took in
+order to put the matter to the proof. I heard the creature hiss
+as I have no doubt that you did also, and I instantly lit the
+light and attacked it."
+
+"With the result of driving it through the ventilator."
+
+"And also with the result of causing it to turn upon its master
+at the other side. Some of the blows of my cane came home and
+roused its snakish temper, so that it flew upon the first person
+it saw. In this way I am no doubt indirectly responsible for Dr.
+Grimesby Roylott's death, and I cannot say that it is likely to
+weigh very heavily upon my conscience."
+
+
+
+IX. THE ADVENTURE OF THE ENGINEER'S THUMB
+
+Of all the problems which have been submitted to my friend, Mr.
+Sherlock Holmes, for solution during the years of our intimacy,
+there were only two which I was the means of introducing to his
+notice--that of Mr. Hatherley's thumb, and that of Colonel
+Warburton's madness. Of these the latter may have afforded a
+finer field for an acute and original observer, but the other was
+so strange in its inception and so dramatic in its details that
+it may be the more worthy of being placed upon record, even if it
+gave my friend fewer openings for those deductive methods of
+reasoning by which he achieved such remarkable results. The story
+has, I believe, been told more than once in the newspapers, but,
+like all such narratives, its effect is much less striking when
+set forth en bloc in a single half-column of print than when the
+facts slowly evolve before your own eyes, and the mystery clears
+gradually away as each new discovery furnishes a step which leads
+on to the complete truth. At the time the circumstances made a
+deep impression upon me, and the lapse of two years has hardly
+served to weaken the effect.
+
+It was in the summer of '89, not long after my marriage, that the
+events occurred which I am now about to summarise. I had returned
+to civil practice and had finally abandoned Holmes in his Baker
+Street rooms, although I continually visited him and occasionally
+even persuaded him to forgo his Bohemian habits so far as to come
+and visit us. My practice had steadily increased, and as I
+happened to live at no very great distance from Paddington
+Station, I got a few patients from among the officials. One of
+these, whom I had cured of a painful and lingering disease, was
+never weary of advertising my virtues and of endeavouring to send
+me on every sufferer over whom he might have any influence.
+
+One morning, at a little before seven o'clock, I was awakened by
+the maid tapping at the door to announce that two men had come
+from Paddington and were waiting in the consulting-room. I
+dressed hurriedly, for I knew by experience that railway cases
+were seldom trivial, and hastened downstairs. As I descended, my
+old ally, the guard, came out of the room and closed the door
+tightly behind him.
+
+"I've got him here," he whispered, jerking his thumb over his
+shoulder; "he's all right."
+
+"What is it, then?" I asked, for his manner suggested that it was
+some strange creature which he had caged up in my room.
+
+"It's a new patient," he whispered. "I thought I'd bring him
+round myself; then he couldn't slip away. There he is, all safe
+and sound. I must go now, Doctor; I have my dooties, just the
+same as you." And off he went, this trusty tout, without even
+giving me time to thank him.
+
+I entered my consulting-room and found a gentleman seated by the
+table. He was quietly dressed in a suit of heather tweed with a
+soft cloth cap which he had laid down upon my books. Round one of
+his hands he had a handkerchief wrapped, which was mottled all
+over with bloodstains. He was young, not more than
+five-and-twenty, I should say, with a strong, masculine face; but
+he was exceedingly pale and gave me the impression of a man who
+was suffering from some strong agitation, which it took all his
+strength of mind to control.
+
+"I am sorry to knock you up so early, Doctor," said he, "but I
+have had a very serious accident during the night. I came in by
+train this morning, and on inquiring at Paddington as to where I
+might find a doctor, a worthy fellow very kindly escorted me
+here. I gave the maid a card, but I see that she has left it upon
+the side-table."
+
+I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic
+engineer, 16A, Victoria Street (3rd floor)." That was the name,
+style, and abode of my morning visitor. "I regret that I have
+kept you waiting," said I, sitting down in my library-chair. "You
+are fresh from a night journey, I understand, which is in itself
+a monotonous occupation."
+
+"Oh, my night could not be called monotonous," said he, and
+laughed. He laughed very heartily, with a high, ringing note,
+leaning back in his chair and shaking his sides. All my medical
+instincts rose up against that laugh.
+
+"Stop it!" I cried; "pull yourself together!" and I poured out
+some water from a caraffe.
+
+It was useless, however. He was off in one of those hysterical
+outbursts which come upon a strong nature when some great crisis
+is over and gone. Presently he came to himself once more, very
+weary and pale-looking.
+
+"I have been making a fool of myself," he gasped.
+
+"Not at all. Drink this." I dashed some brandy into the water,
+and the colour began to come back to his bloodless cheeks.
+
+"That's better!" said he. "And now, Doctor, perhaps you would
+kindly attend to my thumb, or rather to the place where my thumb
+used to be."
+
+He unwound the handkerchief and held out his hand. It gave even
+my hardened nerves a shudder to look at it. There were four
+protruding fingers and a horrid red, spongy surface where the
+thumb should have been. It had been hacked or torn right out from
+the roots.
+
+"Good heavens!" I cried, "this is a terrible injury. It must have
+bled considerably."
+
+"Yes, it did. I fainted when it was done, and I think that I must
+have been senseless for a long time. When I came to I found that
+it was still bleeding, so I tied one end of my handkerchief very
+tightly round the wrist and braced it up with a twig."
+
+"Excellent! You should have been a surgeon."
+
+"It is a question of hydraulics, you see, and came within my own
+province."
+
+"This has been done," said I, examining the wound, "by a very
+heavy and sharp instrument."
+
+"A thing like a cleaver," said he.
+
+"An accident, I presume?"
+
+"By no means."
+
+"What! a murderous attack?"
+
+"Very murderous indeed."
+
+"You horrify me."
+
+I sponged the wound, cleaned it, dressed it, and finally covered
+it over with cotton wadding and carbolised bandages. He lay back
+without wincing, though he bit his lip from time to time.
+
+"How is that?" I asked when I had finished.
+
+"Capital! Between your brandy and your bandage, I feel a new man.
+I was very weak, but I have had a good deal to go through."
+
+"Perhaps you had better not speak of the matter. It is evidently
+trying to your nerves."
+
+"Oh, no, not now. I shall have to tell my tale to the police;
+but, between ourselves, if it were not for the convincing
+evidence of this wound of mine, I should be surprised if they
+believed my statement, for it is a very extraordinary one, and I
+have not much in the way of proof with which to back it up; and,
+even if they believe me, the clues which I can give them are so
+vague that it is a question whether justice will be done."
+
+"Ha!" cried I, "if it is anything in the nature of a problem
+which you desire to see solved, I should strongly recommend you
+to come to my friend, Mr. Sherlock Holmes, before you go to the
+official police."
+
+"Oh, I have heard of that fellow," answered my visitor, "and I
+should be very glad if he would take the matter up, though of
+course I must use the official police as well. Would you give me
+an introduction to him?"
+
+"I'll do better. I'll take you round to him myself."
+
+"I should be immensely obliged to you."
+
+"We'll call a cab and go together. We shall just be in time to
+have a little breakfast with him. Do you feel equal to it?"
+
+"Yes; I shall not feel easy until I have told my story."
+
+"Then my servant will call a cab, and I shall be with you in an
+instant." I rushed upstairs, explained the matter shortly to my
+wife, and in five minutes was inside a hansom, driving with my
+new acquaintance to Baker Street.
+
+Sherlock Holmes was, as I expected, lounging about his
+sitting-room in his dressing-gown, reading the agony column of The
+Times and smoking his before-breakfast pipe, which was composed
+of all the plugs and dottles left from his smokes of the day
+before, all carefully dried and collected on the corner of the
+mantelpiece. He received us in his quietly genial fashion,
+ordered fresh rashers and eggs, and joined us in a hearty meal.
+When it was concluded he settled our new acquaintance upon the
+sofa, placed a pillow beneath his head, and laid a glass of
+brandy and water within his reach.
+
+"It is easy to see that your experience has been no common one,
+Mr. Hatherley," said he. "Pray, lie down there and make yourself
+absolutely at home. Tell us what you can, but stop when you are
+tired and keep up your strength with a little stimulant."
+
+"Thank you," said my patient, "but I have felt another man since
+the doctor bandaged me, and I think that your breakfast has
+completed the cure. I shall take up as little of your valuable
+time as possible, so I shall start at once upon my peculiar
+experiences."
+
+Holmes sat in his big armchair with the weary, heavy-lidded
+expression which veiled his keen and eager nature, while I sat
+opposite to him, and we listened in silence to the strange story
+which our visitor detailed to us.
+
+"You must know," said he, "that I am an orphan and a bachelor,
+residing alone in lodgings in London. By profession I am a
+hydraulic engineer, and I have had considerable experience of my
+work during the seven years that I was apprenticed to Venner &
+Matheson, the well-known firm, of Greenwich. Two years ago,
+having served my time, and having also come into a fair sum of
+money through my poor father's death, I determined to start in
+business for myself and took professional chambers in Victoria
+Street.
+
+"I suppose that everyone finds his first independent start in
+business a dreary experience. To me it has been exceptionally so.
+During two years I have had three consultations and one small
+job, and that is absolutely all that my profession has brought
+me. My gross takings amount to 27 pounds 10s. Every day, from
+nine in the morning until four in the afternoon, I waited in my
+little den, until at last my heart began to sink, and I came to
+believe that I should never have any practice at all.
+
+"Yesterday, however, just as I was thinking of leaving the
+office, my clerk entered to say there was a gentleman waiting who
+wished to see me upon business. He brought up a card, too, with
+the name of 'Colonel Lysander Stark' engraved upon it. Close at
+his heels came the colonel himself, a man rather over the middle
+size, but of an exceeding thinness. I do not think that I have
+ever seen so thin a man. His whole face sharpened away into nose
+and chin, and the skin of his cheeks was drawn quite tense over
+his outstanding bones. Yet this emaciation seemed to be his
+natural habit, and due to no disease, for his eye was bright, his
+step brisk, and his bearing assured. He was plainly but neatly
+dressed, and his age, I should judge, would be nearer forty than
+thirty.
+
+"'Mr. Hatherley?' said he, with something of a German accent.
+'You have been recommended to me, Mr. Hatherley, as being a man
+who is not only proficient in his profession but is also discreet
+and capable of preserving a secret.'
+
+"I bowed, feeling as flattered as any young man would at such an
+address. 'May I ask who it was who gave me so good a character?'
+
+"'Well, perhaps it is better that I should not tell you that just
+at this moment. I have it from the same source that you are both
+an orphan and a bachelor and are residing alone in London.'
+
+"'That is quite correct,' I answered; 'but you will excuse me if
+I say that I cannot see how all this bears upon my professional
+qualifications. I understand that it was on a professional matter
+that you wished to speak to me?'
+
+"'Undoubtedly so. But you will find that all I say is really to
+the point. I have a professional commission for you, but absolute
+secrecy is quite essential--absolute secrecy, you understand, and
+of course we may expect that more from a man who is alone than
+from one who lives in the bosom of his family.'
+
+"'If I promise to keep a secret,' said I, 'you may absolutely
+depend upon my doing so.'
+
+"He looked very hard at me as I spoke, and it seemed to me that I
+had never seen so suspicious and questioning an eye.
+
+"'Do you promise, then?' said he at last.
+
+"'Yes, I promise.'
+
+"'Absolute and complete silence before, during, and after? No
+reference to the matter at all, either in word or writing?'
+
+"'I have already given you my word.'
+
+"'Very good.' He suddenly sprang up, and darting like lightning
+across the room he flung open the door. The passage outside was
+empty.
+
+"'That's all right,' said he, coming back. 'I know that clerks are
+sometimes curious as to their master's affairs. Now we can talk
+in safety.' He drew up his chair very close to mine and began to
+stare at me again with the same questioning and thoughtful look.
+
+"A feeling of repulsion, and of something akin to fear had begun
+to rise within me at the strange antics of this fleshless man.
+Even my dread of losing a client could not restrain me from
+showing my impatience.
+
+"'I beg that you will state your business, sir,' said I; 'my time
+is of value.' Heaven forgive me for that last sentence, but the
+words came to my lips.
+
+"'How would fifty guineas for a night's work suit you?' he asked.
+
+"'Most admirably.'
+
+"'I say a night's work, but an hour's would be nearer the mark. I
+simply want your opinion about a hydraulic stamping machine which
+has got out of gear. If you show us what is wrong we shall soon
+set it right ourselves. What do you think of such a commission as
+that?'
+
+"'The work appears to be light and the pay munificent.'
+
+"'Precisely so. We shall want you to come to-night by the last
+train.'
+
+"'Where to?'
+
+"'To Eyford, in Berkshire. It is a little place near the borders
+of Oxfordshire, and within seven miles of Reading. There is a
+train from Paddington which would bring you there at about
+11:15.'
+
+"'Very good.'
+
+"'I shall come down in a carriage to meet you.'
+
+"'There is a drive, then?'
+
+"'Yes, our little place is quite out in the country. It is a good
+seven miles from Eyford Station.'
+
+"'Then we can hardly get there before midnight. I suppose there
+would be no chance of a train back. I should be compelled to stop
+the night.'
+
+"'Yes, we could easily give you a shake-down.'
+
+"'That is very awkward. Could I not come at some more convenient
+hour?'
+
+"'We have judged it best that you should come late. It is to
+recompense you for any inconvenience that we are paying to you, a
+young and unknown man, a fee which would buy an opinion from the
+very heads of your profession. Still, of course, if you would
+like to draw out of the business, there is plenty of time to do
+so.'
+
+"I thought of the fifty guineas, and of how very useful they
+would be to me. 'Not at all,' said I, 'I shall be very happy to
+accommodate myself to your wishes. I should like, however, to
+understand a little more clearly what it is that you wish me to
+do.'
+
+"'Quite so. It is very natural that the pledge of secrecy which
+we have exacted from you should have aroused your curiosity. I
+have no wish to commit you to anything without your having it all
+laid before you. I suppose that we are absolutely safe from
+eavesdroppers?'
+
+"'Entirely.'
+
+"'Then the matter stands thus. You are probably aware that
+fuller's-earth is a valuable product, and that it is only found
+in one or two places in England?'
+
+"'I have heard so.'
+
+"'Some little time ago I bought a small place--a very small
+place--within ten miles of Reading. I was fortunate enough to
+discover that there was a deposit of fuller's-earth in one of my
+fields. On examining it, however, I found that this deposit was a
+comparatively small one, and that it formed a link between two
+very much larger ones upon the right and left--both of them,
+however, in the grounds of my neighbours. These good people were
+absolutely ignorant that their land contained that which was
+quite as valuable as a gold-mine. Naturally, it was to my
+interest to buy their land before they discovered its true value,
+but unfortunately I had no capital by which I could do this. I
+took a few of my friends into the secret, however, and they
+suggested that we should quietly and secretly work our own little
+deposit and that in this way we should earn the money which would
+enable us to buy the neighbouring fields. This we have now been
+doing for some time, and in order to help us in our operations we
+erected a hydraulic press. This press, as I have already
+explained, has got out of order, and we wish your advice upon the
+subject. We guard our secret very jealously, however, and if it
+once became known that we had hydraulic engineers coming to our
+little house, it would soon rouse inquiry, and then, if the facts
+came out, it would be good-bye to any chance of getting these
+fields and carrying out our plans. That is why I have made you
+promise me that you will not tell a human being that you are
+going to Eyford to-night. I hope that I make it all plain?'
+
+"'I quite follow you,' said I. 'The only point which I could not
+quite understand was what use you could make of a hydraulic press
+in excavating fuller's-earth, which, as I understand, is dug out
+like gravel from a pit.'
+
+"'Ah!' said he carelessly, 'we have our own process. We compress
+the earth into bricks, so as to remove them without revealing
+what they are. But that is a mere detail. I have taken you fully
+into my confidence now, Mr. Hatherley, and I have shown you how I
+trust you.' He rose as he spoke. 'I shall expect you, then, at
+Eyford at 11:15.'
+
+"'I shall certainly be there.'
+
+"'And not a word to a soul.' He looked at me with a last long,
+questioning gaze, and then, pressing my hand in a cold, dank
+grasp, he hurried from the room.
+
+"Well, when I came to think it all over in cool blood I was very
+much astonished, as you may both think, at this sudden commission
+which had been intrusted to me. On the one hand, of course, I was
+glad, for the fee was at least tenfold what I should have asked
+had I set a price upon my own services, and it was possible that
+this order might lead to other ones. On the other hand, the face
+and manner of my patron had made an unpleasant impression upon
+me, and I could not think that his explanation of the
+fuller's-earth was sufficient to explain the necessity for my
+coming at midnight, and his extreme anxiety lest I should tell
+anyone of my errand. However, I threw all fears to the winds, ate
+a hearty supper, drove to Paddington, and started off, having
+obeyed to the letter the injunction as to holding my tongue.
+
+"At Reading I had to change not only my carriage but my station.
+However, I was in time for the last train to Eyford, and I
+reached the little dim-lit station after eleven o'clock. I was the
+only passenger who got out there, and there was no one upon the
+platform save a single sleepy porter with a lantern. As I passed
+out through the wicket gate, however, I found my acquaintance of
+the morning waiting in the shadow upon the other side. Without a
+word he grasped my arm and hurried me into a carriage, the door
+of which was standing open. He drew up the windows on either
+side, tapped on the wood-work, and away we went as fast as the
+horse could go."
+
+"One horse?" interjected Holmes.
+
+"Yes, only one."
+
+"Did you observe the colour?"
+
+"Yes, I saw it by the side-lights when I was stepping into the
+carriage. It was a chestnut."
+
+"Tired-looking or fresh?"
+
+"Oh, fresh and glossy."
+
+"Thank you. I am sorry to have interrupted you. Pray continue
+your most interesting statement."
+
+"Away we went then, and we drove for at least an hour. Colonel
+Lysander Stark had said that it was only seven miles, but I
+should think, from the rate that we seemed to go, and from the
+time that we took, that it must have been nearer twelve. He sat
+at my side in silence all the time, and I was aware, more than
+once when I glanced in his direction, that he was looking at me
+with great intensity. The country roads seem to be not very good
+in that part of the world, for we lurched and jolted terribly. I
+tried to look out of the windows to see something of where we
+were, but they were made of frosted glass, and I could make out
+nothing save the occasional bright blur of a passing light. Now
+and then I hazarded some remark to break the monotony of the
+journey, but the colonel answered only in monosyllables, and the
+conversation soon flagged. At last, however, the bumping of the
+road was exchanged for the crisp smoothness of a gravel-drive,
+and the carriage came to a stand. Colonel Lysander Stark sprang
+out, and, as I followed after him, pulled me swiftly into a porch
+which gaped in front of us. We stepped, as it were, right out of
+the carriage and into the hall, so that I failed to catch the
+most fleeting glance of the front of the house. The instant that
+I had crossed the threshold the door slammed heavily behind us,
+and I heard faintly the rattle of the wheels as the carriage
+drove away.
+
+"It was pitch dark inside the house, and the colonel fumbled
+about looking for matches and muttering under his breath.
+Suddenly a door opened at the other end of the passage, and a
+long, golden bar of light shot out in our direction. It grew
+broader, and a woman appeared with a lamp in her hand, which she
+held above her head, pushing her face forward and peering at us.
+I could see that she was pretty, and from the gloss with which
+the light shone upon her dark dress I knew that it was a rich
+material. She spoke a few words in a foreign tongue in a tone as
+though asking a question, and when my companion answered in a
+gruff monosyllable she gave such a start that the lamp nearly
+fell from her hand. Colonel Stark went up to her, whispered
+something in her ear, and then, pushing her back into the room
+from whence she had come, he walked towards me again with the
+lamp in his hand.
+
+"'Perhaps you will have the kindness to wait in this room for a
+few minutes,' said he, throwing open another door. It was a
+quiet, little, plainly furnished room, with a round table in the
+centre, on which several German books were scattered. Colonel
+Stark laid down the lamp on the top of a harmonium beside the
+door. 'I shall not keep you waiting an instant,' said he, and
+vanished into the darkness.
+
+"I glanced at the books upon the table, and in spite of my
+ignorance of German I could see that two of them were treatises
+on science, the others being volumes of poetry. Then I walked
+across to the window, hoping that I might catch some glimpse of
+the country-side, but an oak shutter, heavily barred, was folded
+across it. It was a wonderfully silent house. There was an old
+clock ticking loudly somewhere in the passage, but otherwise
+everything was deadly still. A vague feeling of uneasiness began
+to steal over me. Who were these German people, and what were
+they doing living in this strange, out-of-the-way place? And
+where was the place? I was ten miles or so from Eyford, that was
+all I knew, but whether north, south, east, or west I had no
+idea. For that matter, Reading, and possibly other large towns,
+were within that radius, so the place might not be so secluded,
+after all. Yet it was quite certain, from the absolute stillness,
+that we were in the country. I paced up and down the room,
+humming a tune under my breath to keep up my spirits and feeling
+that I was thoroughly earning my fifty-guinea fee.
+
+"Suddenly, without any preliminary sound in the midst of the
+utter stillness, the door of my room swung slowly open. The woman
+was standing in the aperture, the darkness of the hall behind
+her, the yellow light from my lamp beating upon her eager and
+beautiful face. I could see at a glance that she was sick with
+fear, and the sight sent a chill to my own heart. She held up one
+shaking finger to warn me to be silent, and she shot a few
+whispered words of broken English at me, her eyes glancing back,
+like those of a frightened horse, into the gloom behind her.
+
+"'I would go,' said she, trying hard, as it seemed to me, to
+speak calmly; 'I would go. I should not stay here. There is no
+good for you to do.'
+
+"'But, madam,' said I, 'I have not yet done what I came for. I
+cannot possibly leave until I have seen the machine.'
+
+"'It is not worth your while to wait,' she went on. 'You can pass
+through the door; no one hinders.' And then, seeing that I smiled
+and shook my head, she suddenly threw aside her constraint and
+made a step forward, with her hands wrung together. 'For the love
+of Heaven!' she whispered, 'get away from here before it is too
+late!'
+
+"But I am somewhat headstrong by nature, and the more ready to
+engage in an affair when there is some obstacle in the way. I
+thought of my fifty-guinea fee, of my wearisome journey, and of
+the unpleasant night which seemed to be before me. Was it all to
+go for nothing? Why should I slink away without having carried
+out my commission, and without the payment which was my due? This
+woman might, for all I knew, be a monomaniac. With a stout
+bearing, therefore, though her manner had shaken me more than I
+cared to confess, I still shook my head and declared my intention
+of remaining where I was. She was about to renew her entreaties
+when a door slammed overhead, and the sound of several footsteps
+was heard upon the stairs. She listened for an instant, threw up
+her hands with a despairing gesture, and vanished as suddenly and
+as noiselessly as she had come.
+
+"The newcomers were Colonel Lysander Stark and a short thick man
+with a chinchilla beard growing out of the creases of his double
+chin, who was introduced to me as Mr. Ferguson.
+
+"'This is my secretary and manager,' said the colonel. 'By the
+way, I was under the impression that I left this door shut just
+now. I fear that you have felt the draught.'
+
+"'On the contrary,' said I, 'I opened the door myself because I
+felt the room to be a little close.'
+
+"He shot one of his suspicious looks at me. 'Perhaps we had
+better proceed to business, then,' said he. 'Mr. Ferguson and I
+will take you up to see the machine.'
+
+"'I had better put my hat on, I suppose.'
+
+"'Oh, no, it is in the house.'
+
+"'What, you dig fuller's-earth in the house?'
+
+"'No, no. This is only where we compress it. But never mind that.
+All we wish you to do is to examine the machine and to let us
+know what is wrong with it.'
+
+"We went upstairs together, the colonel first with the lamp, the
+fat manager and I behind him. It was a labyrinth of an old house,
+with corridors, passages, narrow winding staircases, and little
+low doors, the thresholds of which were hollowed out by the
+generations who had crossed them. There were no carpets and no
+signs of any furniture above the ground floor, while the plaster
+was peeling off the walls, and the damp was breaking through in
+green, unhealthy blotches. I tried to put on as unconcerned an
+air as possible, but I had not forgotten the warnings of the
+lady, even though I disregarded them, and I kept a keen eye upon
+my two companions. Ferguson appeared to be a morose and silent
+man, but I could see from the little that he said that he was at
+least a fellow-countryman.
+
+"Colonel Lysander Stark stopped at last before a low door, which
+he unlocked. Within was a small, square room, in which the three
+of us could hardly get at one time. Ferguson remained outside,
+and the colonel ushered me in.
+
+"'We are now,' said he, 'actually within the hydraulic press, and
+it would be a particularly unpleasant thing for us if anyone were
+to turn it on. The ceiling of this small chamber is really the
+end of the descending piston, and it comes down with the force of
+many tons upon this metal floor. There are small lateral columns
+of water outside which receive the force, and which transmit and
+multiply it in the manner which is familiar to you. The machine
+goes readily enough, but there is some stiffness in the working
+of it, and it has lost a little of its force. Perhaps you will
+have the goodness to look it over and to show us how we can set
+it right.'
+
+"I took the lamp from him, and I examined the machine very
+thoroughly. It was indeed a gigantic one, and capable of
+exercising enormous pressure. When I passed outside, however, and
+pressed down the levers which controlled it, I knew at once by
+the whishing sound that there was a slight leakage, which allowed
+a regurgitation of water through one of the side cylinders. An
+examination showed that one of the india-rubber bands which was
+round the head of a driving-rod had shrunk so as not quite to
+fill the socket along which it worked. This was clearly the cause
+of the loss of power, and I pointed it out to my companions, who
+followed my remarks very carefully and asked several practical
+questions as to how they should proceed to set it right. When I
+had made it clear to them, I returned to the main chamber of the
+machine and took a good look at it to satisfy my own curiosity.
+It was obvious at a glance that the story of the fuller's-earth
+was the merest fabrication, for it would be absurd to suppose
+that so powerful an engine could be designed for so inadequate a
+purpose. The walls were of wood, but the floor consisted of a
+large iron trough, and when I came to examine it I could see a
+crust of metallic deposit all over it. I had stooped and was
+scraping at this to see exactly what it was when I heard a
+muttered exclamation in German and saw the cadaverous face of the
+colonel looking down at me.
+
+"'What are you doing there?' he asked.
+
+"I felt angry at having been tricked by so elaborate a story as
+that which he had told me. 'I was admiring your fuller's-earth,'
+said I; 'I think that I should be better able to advise you as to
+your machine if I knew what the exact purpose was for which it
+was used.'
+
+"The instant that I uttered the words I regretted the rashness of
+my speech. His face set hard, and a baleful light sprang up in
+his grey eyes.
+
+"'Very well,' said he, 'you shall know all about the machine.' He
+took a step backward, slammed the little door, and turned the key
+in the lock. I rushed towards it and pulled at the handle, but it
+was quite secure, and did not give in the least to my kicks and
+shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!'
+
+"And then suddenly in the silence I heard a sound which sent my
+heart into my mouth. It was the clank of the levers and the swish
+of the leaking cylinder. He had set the engine at work. The lamp
+still stood upon the floor where I had placed it when examining
+the trough. By its light I saw that the black ceiling was coming
+down upon me, slowly, jerkily, but, as none knew better than
+myself, with a force which must within a minute grind me to a
+shapeless pulp. I threw myself, screaming, against the door, and
+dragged with my nails at the lock. I implored the colonel to let
+me out, but the remorseless clanking of the levers drowned my
+cries. The ceiling was only a foot or two above my head, and with
+my hand upraised I could feel its hard, rough surface. Then it
+flashed through my mind that the pain of my death would depend
+very much upon the position in which I met it. If I lay on my
+face the weight would come upon my spine, and I shuddered to
+think of that dreadful snap. Easier the other way, perhaps; and
+yet, had I the nerve to lie and look up at that deadly black
+shadow wavering down upon me? Already I was unable to stand
+erect, when my eye caught something which brought a gush of hope
+back to my heart.
+
+"I have said that though the floor and ceiling were of iron, the
+walls were of wood. As I gave a last hurried glance around, I saw
+a thin line of yellow light between two of the boards, which
+broadened and broadened as a small panel was pushed backward. For
+an instant I could hardly believe that here was indeed a door
+which led away from death. The next instant I threw myself
+through, and lay half-fainting upon the other side. The panel had
+closed again behind me, but the crash of the lamp, and a few
+moments afterwards the clang of the two slabs of metal, told me
+how narrow had been my escape.
+
+"I was recalled to myself by a frantic plucking at my wrist, and
+I found myself lying upon the stone floor of a narrow corridor,
+while a woman bent over me and tugged at me with her left hand,
+while she held a candle in her right. It was the same good friend
+whose warning I had so foolishly rejected.
+
+"'Come! come!' she cried breathlessly. 'They will be here in a
+moment. They will see that you are not there. Oh, do not waste
+the so-precious time, but come!'
+
+"This time, at least, I did not scorn her advice. I staggered to
+my feet and ran with her along the corridor and down a winding
+stair. The latter led to another broad passage, and just as we
+reached it we heard the sound of running feet and the shouting of
+two voices, one answering the other from the floor on which we
+were and from the one beneath. My guide stopped and looked about
+her like one who is at her wit's end. Then she threw open a door
+which led into a bedroom, through the window of which the moon
+was shining brightly.
+
+"'It is your only chance,' said she. 'It is high, but it may be
+that you can jump it.'
+
+"As she spoke a light sprang into view at the further end of the
+passage, and I saw the lean figure of Colonel Lysander Stark
+rushing forward with a lantern in one hand and a weapon like a
+butcher's cleaver in the other. I rushed across the bedroom,
+flung open the window, and looked out. How quiet and sweet and
+wholesome the garden looked in the moonlight, and it could not be
+more than thirty feet down. I clambered out upon the sill, but I
+hesitated to jump until I should have heard what passed between
+my saviour and the ruffian who pursued me. If she were ill-used,
+then at any risks I was determined to go back to her assistance.
+The thought had hardly flashed through my mind before he was at
+the door, pushing his way past her; but she threw her arms round
+him and tried to hold him back.
+
+"'Fritz! Fritz!' she cried in English, 'remember your promise
+after the last time. You said it should not be again. He will be
+silent! Oh, he will be silent!'
+
+"'You are mad, Elise!' he shouted, struggling to break away from
+her. 'You will be the ruin of us. He has seen too much. Let me
+pass, I say!' He dashed her to one side, and, rushing to the
+window, cut at me with his heavy weapon. I had let myself go, and
+was hanging by the hands to the sill, when his blow fell. I was
+conscious of a dull pain, my grip loosened, and I fell into the
+garden below.
+
+"I was shaken but not hurt by the fall; so I picked myself up and
+rushed off among the bushes as hard as I could run, for I
+understood that I was far from being out of danger yet. Suddenly,
+however, as I ran, a deadly dizziness and sickness came over me.
+I glanced down at my hand, which was throbbing painfully, and
+then, for the first time, saw that my thumb had been cut off and
+that the blood was pouring from my wound. I endeavoured to tie my
+handkerchief round it, but there came a sudden buzzing in my
+ears, and next moment I fell in a dead faint among the
+rose-bushes.
+
+"How long I remained unconscious I cannot tell. It must have been
+a very long time, for the moon had sunk, and a bright morning was
+breaking when I came to myself. My clothes were all sodden with
+dew, and my coat-sleeve was drenched with blood from my wounded
+thumb. The smarting of it recalled in an instant all the
+particulars of my night's adventure, and I sprang to my feet with
+the feeling that I might hardly yet be safe from my pursuers. But
+to my astonishment, when I came to look round me, neither house
+nor garden were to be seen. I had been lying in an angle of the
+hedge close by the highroad, and just a little lower down was a
+long building, which proved, upon my approaching it, to be the
+very station at which I had arrived upon the previous night. Were
+it not for the ugly wound upon my hand, all that had passed
+during those dreadful hours might have been an evil dream.
+
+"Half dazed, I went into the station and asked about the morning
+train. There would be one to Reading in less than an hour. The
+same porter was on duty, I found, as had been there when I
+arrived. I inquired of him whether he had ever heard of Colonel
+Lysander Stark. The name was strange to him. Had he observed a
+carriage the night before waiting for me? No, he had not. Was
+there a police-station anywhere near? There was one about three
+miles off.
+
+"It was too far for me to go, weak and ill as I was. I determined
+to wait until I got back to town before telling my story to the
+police. It was a little past six when I arrived, so I went first
+to have my wound dressed, and then the doctor was kind enough to
+bring me along here. I put the case into your hands and shall do
+exactly what you advise."
+
+We both sat in silence for some little time after listening to
+this extraordinary narrative. Then Sherlock Holmes pulled down
+from the shelf one of the ponderous commonplace books in which he
+placed his cuttings.
+
+"Here is an advertisement which will interest you," said he. "It
+appeared in all the papers about a year ago. Listen to this:
+'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged
+twenty-six, a hydraulic engineer. Left his lodgings at ten
+o'clock at night, and has not been heard of since. Was
+dressed in,' etc., etc. Ha! That represents the last time that
+the colonel needed to have his machine overhauled, I fancy."
+
+"Good heavens!" cried my patient. "Then that explains what the
+girl said."
+
+"Undoubtedly. It is quite clear that the colonel was a cool and
+desperate man, who was absolutely determined that nothing should
+stand in the way of his little game, like those out-and-out
+pirates who will leave no survivor from a captured ship. Well,
+every moment now is precious, so if you feel equal to it we shall
+go down to Scotland Yard at once as a preliminary to starting for
+Eyford."
+
+Some three hours or so afterwards we were all in the train
+together, bound from Reading to the little Berkshire village.
+There were Sherlock Holmes, the hydraulic engineer, Inspector
+Bradstreet, of Scotland Yard, a plain-clothes man, and myself.
+Bradstreet had spread an ordnance map of the county out upon the
+seat and was busy with his compasses drawing a circle with Eyford
+for its centre.
+
+"There you are," said he. "That circle is drawn at a radius of
+ten miles from the village. The place we want must be somewhere
+near that line. You said ten miles, I think, sir."
+
+"It was an hour's good drive."
+
+"And you think that they brought you back all that way when you
+were unconscious?"
+
+"They must have done so. I have a confused memory, too, of having
+been lifted and conveyed somewhere."
+
+"What I cannot understand," said I, "is why they should have
+spared you when they found you lying fainting in the garden.
+Perhaps the villain was softened by the woman's entreaties."
+
+"I hardly think that likely. I never saw a more inexorable face
+in my life."
+
+"Oh, we shall soon clear up all that," said Bradstreet. "Well, I
+have drawn my circle, and I only wish I knew at what point upon
+it the folk that we are in search of are to be found."
+
+"I think I could lay my finger on it," said Holmes quietly.
+
+"Really, now!" cried the inspector, "you have formed your
+opinion! Come, now, we shall see who agrees with you. I say it is
+south, for the country is more deserted there."
+
+"And I say east," said my patient.
+
+"I am for west," remarked the plain-clothes man. "There are
+several quiet little villages up there."
+
+"And I am for north," said I, "because there are no hills there,
+and our friend says that he did not notice the carriage go up
+any."
+
+"Come," cried the inspector, laughing; "it's a very pretty
+diversity of opinion. We have boxed the compass among us. Who do
+you give your casting vote to?"
+
+"You are all wrong."
+
+"But we can't all be."
+
+"Oh, yes, you can. This is my point." He placed his finger in the
+centre of the circle. "This is where we shall find them."
+
+"But the twelve-mile drive?" gasped Hatherley.
+
+"Six out and six back. Nothing simpler. You say yourself that the
+horse was fresh and glossy when you got in. How could it be that
+if it had gone twelve miles over heavy roads?"
+
+"Indeed, it is a likely ruse enough," observed Bradstreet
+thoughtfully. "Of course there can be no doubt as to the nature
+of this gang."
+
+"None at all," said Holmes. "They are coiners on a large scale,
+and have used the machine to form the amalgam which has taken the
+place of silver."
+
+"We have known for some time that a clever gang was at work,"
+said the inspector. "They have been turning out half-crowns by
+the thousand. We even traced them as far as Reading, but could
+get no farther, for they had covered their traces in a way that
+showed that they were very old hands. But now, thanks to this
+lucky chance, I think that we have got them right enough."
+
+But the inspector was mistaken, for those criminals were not
+destined to fall into the hands of justice. As we rolled into
+Eyford Station we saw a gigantic column of smoke which streamed
+up from behind a small clump of trees in the neighbourhood and
+hung like an immense ostrich feather over the landscape.
+
+"A house on fire?" asked Bradstreet as the train steamed off
+again on its way.
+
+"Yes, sir!" said the station-master.
+
+"When did it break out?"
+
+"I hear that it was during the night, sir, but it has got worse,
+and the whole place is in a blaze."
+
+"Whose house is it?"
+
+"Dr. Becher's."
+
+"Tell me," broke in the engineer, "is Dr. Becher a German, very
+thin, with a long, sharp nose?"
+
+The station-master laughed heartily. "No, sir, Dr. Becher is an
+Englishman, and there isn't a man in the parish who has a
+better-lined waistcoat. But he has a gentleman staying with him,
+a patient, as I understand, who is a foreigner, and he looks as
+if a little good Berkshire beef would do him no harm."
+
+The station-master had not finished his speech before we were all
+hastening in the direction of the fire. The road topped a low
+hill, and there was a great widespread whitewashed building in
+front of us, spouting fire at every chink and window, while in
+the garden in front three fire-engines were vainly striving to
+keep the flames under.
+
+"That's it!" cried Hatherley, in intense excitement. "There is
+the gravel-drive, and there are the rose-bushes where I lay. That
+second window is the one that I jumped from."
+
+"Well, at least," said Holmes, "you have had your revenge upon
+them. There can be no question that it was your oil-lamp which,
+when it was crushed in the press, set fire to the wooden walls,
+though no doubt they were too excited in the chase after you to
+observe it at the time. Now keep your eyes open in this crowd for
+your friends of last night, though I very much fear that they are
+a good hundred miles off by now."
+
+And Holmes' fears came to be realised, for from that day to this
+no word has ever been heard either of the beautiful woman, the
+sinister German, or the morose Englishman. Early that morning a
+peasant had met a cart containing several people and some very
+bulky boxes driving rapidly in the direction of Reading, but
+there all traces of the fugitives disappeared, and even Holmes'
+ingenuity failed ever to discover the least clue as to their
+whereabouts.
+
+The firemen had been much perturbed at the strange arrangements
+which they had found within, and still more so by discovering a
+newly severed human thumb upon a window-sill of the second floor.
+About sunset, however, their efforts were at last successful, and
+they subdued the flames, but not before the roof had fallen in,
+and the whole place been reduced to such absolute ruin that, save
+some twisted cylinders and iron piping, not a trace remained of
+the machinery which had cost our unfortunate acquaintance so
+dearly. Large masses of nickel and of tin were discovered stored
+in an out-house, but no coins were to be found, which may have
+explained the presence of those bulky boxes which have been
+already referred to.
+
+How our hydraulic engineer had been conveyed from the garden to
+the spot where he recovered his senses might have remained
+forever a mystery were it not for the soft mould, which told us a
+very plain tale. He had evidently been carried down by two
+persons, one of whom had remarkably small feet and the other
+unusually large ones. On the whole, it was most probable that the
+silent Englishman, being less bold or less murderous than his
+companion, had assisted the woman to bear the unconscious man out
+of the way of danger.
+
+"Well," said our engineer ruefully as we took our seats to return
+once more to London, "it has been a pretty business for me! I
+have lost my thumb and I have lost a fifty-guinea fee, and what
+have I gained?"
+
+"Experience," said Holmes, laughing. "Indirectly it may be of
+value, you know; you have only to put it into words to gain the
+reputation of being excellent company for the remainder of your
+existence."
+
+
+
+X. THE ADVENTURE OF THE NOBLE BACHELOR
+
+The Lord St. Simon marriage, and its curious termination, have
+long ceased to be a subject of interest in those exalted circles
+in which the unfortunate bridegroom moves. Fresh scandals have
+eclipsed it, and their more piquant details have drawn the
+gossips away from this four-year-old drama. As I have reason to
+believe, however, that the full facts have never been revealed to
+the general public, and as my friend Sherlock Holmes had a
+considerable share in clearing the matter up, I feel that no
+memoir of him would be complete without some little sketch of
+this remarkable episode.
+
+It was a few weeks before my own marriage, during the days when I
+was still sharing rooms with Holmes in Baker Street, that he came
+home from an afternoon stroll to find a letter on the table
+waiting for him. I had remained indoors all day, for the weather
+had taken a sudden turn to rain, with high autumnal winds, and
+the Jezail bullet which I had brought back in one of my limbs as
+a relic of my Afghan campaign throbbed with dull persistence.
+With my body in one easy-chair and my legs upon another, I had
+surrounded myself with a cloud of newspapers until at last,
+saturated with the news of the day, I tossed them all aside and
+lay listless, watching the huge crest and monogram upon the
+envelope upon the table and wondering lazily who my friend's
+noble correspondent could be.
+
+"Here is a very fashionable epistle," I remarked as he entered.
+"Your morning letters, if I remember right, were from a
+fish-monger and a tide-waiter."
+
+"Yes, my correspondence has certainly the charm of variety," he
+answered, smiling, "and the humbler are usually the more
+interesting. This looks like one of those unwelcome social
+summonses which call upon a man either to be bored or to lie."
+
+He broke the seal and glanced over the contents.
+
+"Oh, come, it may prove to be something of interest, after all."
+
+"Not social, then?"
+
+"No, distinctly professional."
+
+"And from a noble client?"
+
+"One of the highest in England."
+
+"My dear fellow, I congratulate you."
+
+"I assure you, Watson, without affectation, that the status of my
+client is a matter of less moment to me than the interest of his
+case. It is just possible, however, that that also may not be
+wanting in this new investigation. You have been reading the
+papers diligently of late, have you not?"
+
+"It looks like it," said I ruefully, pointing to a huge bundle in
+the corner. "I have had nothing else to do."
+
+"It is fortunate, for you will perhaps be able to post me up. I
+read nothing except the criminal news and the agony column. The
+latter is always instructive. But if you have followed recent
+events so closely you must have read about Lord St. Simon and his
+wedding?"
+
+"Oh, yes, with the deepest interest."
+
+"That is well. The letter which I hold in my hand is from Lord
+St. Simon. I will read it to you, and in return you must turn
+over these papers and let me have whatever bears upon the matter.
+This is what he says:
+
+"'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I
+may place implicit reliance upon your judgment and discretion. I
+have determined, therefore, to call upon you and to consult you
+in reference to the very painful event which has occurred in
+connection with my wedding. Mr. Lestrade, of Scotland Yard, is
+acting already in the matter, but he assures me that he sees no
+objection to your co-operation, and that he even thinks that
+it might be of some assistance. I will call at four o'clock in
+the afternoon, and, should you have any other engagement at that
+time, I hope that you will postpone it, as this matter is of
+paramount importance. Yours faithfully, ST. SIMON.'
+
+"It is dated from Grosvenor Mansions, written with a quill pen,
+and the noble lord has had the misfortune to get a smear of ink
+upon the outer side of his right little finger," remarked Holmes
+as he folded up the epistle.
+
+"He says four o'clock. It is three now. He will be here in an
+hour."
+
+"Then I have just time, with your assistance, to get clear upon
+the subject. Turn over those papers and arrange the extracts in
+their order of time, while I take a glance as to who our client
+is." He picked a red-covered volume from a line of books of
+reference beside the mantelpiece. "Here he is," said he, sitting
+down and flattening it out upon his knee. "'Lord Robert Walsingham
+de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms:
+Azure, three caltrops in chief over a fess sable. Born in 1846.'
+He's forty-one years of age, which is mature for marriage. Was
+Under-Secretary for the colonies in a late administration. The
+Duke, his father, was at one time Secretary for Foreign Affairs.
+They inherit Plantagenet blood by direct descent, and Tudor on
+the distaff side. Ha! Well, there is nothing very instructive in
+all this. I think that I must turn to you Watson, for something
+more solid."
+
+"I have very little difficulty in finding what I want," said I,
+"for the facts are quite recent, and the matter struck me as
+remarkable. I feared to refer them to you, however, as I knew
+that you had an inquiry on hand and that you disliked the
+intrusion of other matters."
+
+"Oh, you mean the little problem of the Grosvenor Square
+furniture van. That is quite cleared up now--though, indeed, it
+was obvious from the first. Pray give me the results of your
+newspaper selections."
+
+"Here is the first notice which I can find. It is in the personal
+column of the Morning Post, and dates, as you see, some weeks
+back: 'A marriage has been arranged,' it says, 'and will, if
+rumour is correct, very shortly take place, between Lord Robert
+St. Simon, second son of the Duke of Balmoral, and Miss Hatty
+Doran, the only daughter of Aloysius Doran. Esq., of San
+Francisco, Cal., U.S.A.' That is all."
+
+"Terse and to the point," remarked Holmes, stretching his long,
+thin legs towards the fire.
+
+"There was a paragraph amplifying this in one of the society
+papers of the same week. Ah, here it is: 'There will soon be a
+call for protection in the marriage market, for the present
+free-trade principle appears to tell heavily against our home
+product. One by one the management of the noble houses of Great
+Britain is passing into the hands of our fair cousins from across
+the Atlantic. An important addition has been made during the last
+week to the list of the prizes which have been borne away by
+these charming invaders. Lord St. Simon, who has shown himself
+for over twenty years proof against the little god's arrows, has
+now definitely announced his approaching marriage with Miss Hatty
+Doran, the fascinating daughter of a California millionaire. Miss
+Doran, whose graceful figure and striking face attracted much
+attention at the Westbury House festivities, is an only child,
+and it is currently reported that her dowry will run to
+considerably over the six figures, with expectancies for the
+future. As it is an open secret that the Duke of Balmoral has
+been compelled to sell his pictures within the last few years,
+and as Lord St. Simon has no property of his own save the small
+estate of Birchmoor, it is obvious that the Californian heiress
+is not the only gainer by an alliance which will enable her to
+make the easy and common transition from a Republican lady to a
+British peeress.'"
+
+"Anything else?" asked Holmes, yawning.
+
+"Oh, yes; plenty. Then there is another note in the Morning Post
+to say that the marriage would be an absolutely quiet one, that it
+would be at St. George's, Hanover Square, that only half a dozen
+intimate friends would be invited, and that the party would
+return to the furnished house at Lancaster Gate which has been
+taken by Mr. Aloysius Doran. Two days later--that is, on
+Wednesday last--there is a curt announcement that the wedding had
+taken place, and that the honeymoon would be passed at Lord
+Backwater's place, near Petersfield. Those are all the notices
+which appeared before the disappearance of the bride."
+
+"Before the what?" asked Holmes with a start.
+
+"The vanishing of the lady."
+
+"When did she vanish, then?"
+
+"At the wedding breakfast."
+
+"Indeed. This is more interesting than it promised to be; quite
+dramatic, in fact."
+
+"Yes; it struck me as being a little out of the common."
+
+"They often vanish before the ceremony, and occasionally during
+the honeymoon; but I cannot call to mind anything quite so prompt
+as this. Pray let me have the details."
+
+"I warn you that they are very incomplete."
+
+"Perhaps we may make them less so."
+
+"Such as they are, they are set forth in a single article of a
+morning paper of yesterday, which I will read to you. It is
+headed, 'Singular Occurrence at a Fashionable Wedding':
+
+"'The family of Lord Robert St. Simon has been thrown into the
+greatest consternation by the strange and painful episodes which
+have taken place in connection with his wedding. The ceremony, as
+shortly announced in the papers of yesterday, occurred on the
+previous morning; but it is only now that it has been possible to
+confirm the strange rumours which have been so persistently
+floating about. In spite of the attempts of the friends to hush
+the matter up, so much public attention has now been drawn to it
+that no good purpose can be served by affecting to disregard what
+is a common subject for conversation.
+
+"'The ceremony, which was performed at St. George's, Hanover
+Square, was a very quiet one, no one being present save the
+father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral,
+Lord Backwater, Lord Eustace and Lady Clara St. Simon (the
+younger brother and sister of the bridegroom), and Lady Alicia
+Whittington. The whole party proceeded afterwards to the house of
+Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been
+prepared. It appears that some little trouble was caused by a
+woman, whose name has not been ascertained, who endeavoured to
+force her way into the house after the bridal party, alleging
+that she had some claim upon Lord St. Simon. It was only after a
+painful and prolonged scene that she was ejected by the butler
+and the footman. The bride, who had fortunately entered the house
+before this unpleasant interruption, had sat down to breakfast
+with the rest, when she complained of a sudden indisposition and
+retired to her room. Her prolonged absence having caused some
+comment, her father followed her, but learned from her maid that
+she had only come up to her chamber for an instant, caught up an
+ulster and bonnet, and hurried down to the passage. One of the
+footmen declared that he had seen a lady leave the house thus
+apparelled, but had refused to credit that it was his mistress,
+believing her to be with the company. On ascertaining that his
+daughter had disappeared, Mr. Aloysius Doran, in conjunction with
+the bridegroom, instantly put themselves in communication with
+the police, and very energetic inquiries are being made, which
+will probably result in a speedy clearing up of this very
+singular business. Up to a late hour last night, however, nothing
+had transpired as to the whereabouts of the missing lady. There
+are rumours of foul play in the matter, and it is said that the
+police have caused the arrest of the woman who had caused the
+original disturbance, in the belief that, from jealousy or some
+other motive, she may have been concerned in the strange
+disappearance of the bride.'"
+
+"And is that all?"
+
+"Only one little item in another of the morning papers, but it is
+a suggestive one."
+
+"And it is--"
+
+"That Miss Flora Millar, the lady who had caused the disturbance,
+has actually been arrested. It appears that she was formerly a
+danseuse at the Allegro, and that she has known the bridegroom
+for some years. There are no further particulars, and the whole
+case is in your hands now--so far as it has been set forth in the
+public press."
+
+"And an exceedingly interesting case it appears to be. I would
+not have missed it for worlds. But there is a ring at the bell,
+Watson, and as the clock makes it a few minutes after four, I
+have no doubt that this will prove to be our noble client. Do not
+dream of going, Watson, for I very much prefer having a witness,
+if only as a check to my own memory."
+
+"Lord Robert St. Simon," announced our page-boy, throwing open
+the door. A gentleman entered, with a pleasant, cultured face,
+high-nosed and pale, with something perhaps of petulance about
+the mouth, and with the steady, well-opened eye of a man whose
+pleasant lot it had ever been to command and to be obeyed. His
+manner was brisk, and yet his general appearance gave an undue
+impression of age, for he had a slight forward stoop and a little
+bend of the knees as he walked. His hair, too, as he swept off
+his very curly-brimmed hat, was grizzled round the edges and thin
+upon the top. As to his dress, it was careful to the verge of
+foppishness, with high collar, black frock-coat, white waistcoat,
+yellow gloves, patent-leather shoes, and light-coloured gaiters.
+He advanced slowly into the room, turning his head from left to
+right, and swinging in his right hand the cord which held his
+golden eyeglasses.
+
+"Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray
+take the basket-chair. This is my friend and colleague, Dr.
+Watson. Draw up a little to the fire, and we will talk this
+matter over."
+
+"A most painful matter to me, as you can most readily imagine,
+Mr. Holmes. I have been cut to the quick. I understand that you
+have already managed several delicate cases of this sort, sir,
+though I presume that they were hardly from the same class of
+society."
+
+"No, I am descending."
+
+"I beg pardon."
+
+"My last client of the sort was a king."
+
+"Oh, really! I had no idea. And which king?"
+
+"The King of Scandinavia."
+
+"What! Had he lost his wife?"
+
+"You can understand," said Holmes suavely, "that I extend to the
+affairs of my other clients the same secrecy which I promise to
+you in yours."
+
+"Of course! Very right! very right! I'm sure I beg pardon. As to
+my own case, I am ready to give you any information which may
+assist you in forming an opinion."
+
+"Thank you. I have already learned all that is in the public
+prints, nothing more. I presume that I may take it as correct--this
+article, for example, as to the disappearance of the bride."
+
+Lord St. Simon glanced over it. "Yes, it is correct, as far as it
+goes."
+
+"But it needs a great deal of supplementing before anyone could
+offer an opinion. I think that I may arrive at my facts most
+directly by questioning you."
+
+"Pray do so."
+
+"When did you first meet Miss Hatty Doran?"
+
+"In San Francisco, a year ago."
+
+"You were travelling in the States?"
+
+"Yes."
+
+"Did you become engaged then?"
+
+"No."
+
+"But you were on a friendly footing?"
+
+"I was amused by her society, and she could see that I was
+amused."
+
+"Her father is very rich?"
+
+"He is said to be the richest man on the Pacific slope."
+
+"And how did he make his money?"
+
+"In mining. He had nothing a few years ago. Then he struck gold,
+invested it, and came up by leaps and bounds."
+
+"Now, what is your own impression as to the young lady's--your
+wife's character?"
+
+The nobleman swung his glasses a little faster and stared down
+into the fire. "You see, Mr. Holmes," said he, "my wife was
+twenty before her father became a rich man. During that time she
+ran free in a mining camp and wandered through woods or
+mountains, so that her education has come from Nature rather than
+from the schoolmaster. She is what we call in England a tomboy,
+with a strong nature, wild and free, unfettered by any sort of
+traditions. She is impetuous--volcanic, I was about to say. She
+is swift in making up her mind and fearless in carrying out her
+resolutions. On the other hand, I would not have given her the
+name which I have the honour to bear"--he gave a little stately
+cough--"had not I thought her to be at bottom a noble woman. I
+believe that she is capable of heroic self-sacrifice and that
+anything dishonourable would be repugnant to her."
+
+"Have you her photograph?"
+
+"I brought this with me." He opened a locket and showed us the
+full face of a very lovely woman. It was not a photograph but an
+ivory miniature, and the artist had brought out the full effect
+of the lustrous black hair, the large dark eyes, and the
+exquisite mouth. Holmes gazed long and earnestly at it. Then he
+closed the locket and handed it back to Lord St. Simon.
+
+"The young lady came to London, then, and you renewed your
+acquaintance?"
+
+"Yes, her father brought her over for this last London season. I
+met her several times, became engaged to her, and have now
+married her."
+
+"She brought, I understand, a considerable dowry?"
+
+"A fair dowry. Not more than is usual in my family."
+
+"And this, of course, remains to you, since the marriage is a
+fait accompli?"
+
+"I really have made no inquiries on the subject."
+
+"Very naturally not. Did you see Miss Doran on the day before the
+wedding?"
+
+"Yes."
+
+"Was she in good spirits?"
+
+"Never better. She kept talking of what we should do in our
+future lives."
+
+"Indeed! That is very interesting. And on the morning of the
+wedding?"
+
+"She was as bright as possible--at least until after the
+ceremony."
+
+"And did you observe any change in her then?"
+
+"Well, to tell the truth, I saw then the first signs that I had
+ever seen that her temper was just a little sharp. The incident
+however, was too trivial to relate and can have no possible
+bearing upon the case."
+
+"Pray let us have it, for all that."
+
+"Oh, it is childish. She dropped her bouquet as we went towards
+the vestry. She was passing the front pew at the time, and it
+fell over into the pew. There was a moment's delay, but the
+gentleman in the pew handed it up to her again, and it did not
+appear to be the worse for the fall. Yet when I spoke to her of
+the matter, she answered me abruptly; and in the carriage, on our
+way home, she seemed absurdly agitated over this trifling cause."
+
+"Indeed! You say that there was a gentleman in the pew. Some of
+the general public were present, then?"
+
+"Oh, yes. It is impossible to exclude them when the church is
+open."
+
+"This gentleman was not one of your wife's friends?"
+
+"No, no; I call him a gentleman by courtesy, but he was quite a
+common-looking person. I hardly noticed his appearance. But
+really I think that we are wandering rather far from the point."
+
+"Lady St. Simon, then, returned from the wedding in a less
+cheerful frame of mind than she had gone to it. What did she do
+on re-entering her father's house?"
+
+"I saw her in conversation with her maid."
+
+"And who is her maid?"
+
+"Alice is her name. She is an American and came from California
+with her."
+
+"A confidential servant?"
+
+"A little too much so. It seemed to me that her mistress allowed
+her to take great liberties. Still, of course, in America they
+look upon these things in a different way."
+
+"How long did she speak to this Alice?"
+
+"Oh, a few minutes. I had something else to think of."
+
+"You did not overhear what they said?"
+
+"Lady St. Simon said something about 'jumping a claim.' She was
+accustomed to use slang of the kind. I have no idea what she
+meant."
+
+"American slang is very expressive sometimes. And what did your
+wife do when she finished speaking to her maid?"
+
+"She walked into the breakfast-room."
+
+"On your arm?"
+
+"No, alone. She was very independent in little matters like that.
+Then, after we had sat down for ten minutes or so, she rose
+hurriedly, muttered some words of apology, and left the room. She
+never came back."
+
+"But this maid, Alice, as I understand, deposes that she went to
+her room, covered her bride's dress with a long ulster, put on a
+bonnet, and went out."
+
+"Quite so. And she was afterwards seen walking into Hyde Park in
+company with Flora Millar, a woman who is now in custody, and who
+had already made a disturbance at Mr. Doran's house that
+morning."
+
+"Ah, yes. I should like a few particulars as to this young lady,
+and your relations to her."
+
+Lord St. Simon shrugged his shoulders and raised his eyebrows.
+"We have been on a friendly footing for some years--I may say on
+a very friendly footing. She used to be at the Allegro. I have
+not treated her ungenerously, and she had no just cause of
+complaint against me, but you know what women are, Mr. Holmes.
+Flora was a dear little thing, but exceedingly hot-headed and
+devotedly attached to me. She wrote me dreadful letters when she
+heard that I was about to be married, and, to tell the truth, the
+reason why I had the marriage celebrated so quietly was that I
+feared lest there might be a scandal in the church. She came to
+Mr. Doran's door just after we returned, and she endeavoured to
+push her way in, uttering very abusive expressions towards my
+wife, and even threatening her, but I had foreseen the
+possibility of something of the sort, and I had two police
+fellows there in private clothes, who soon pushed her out again.
+She was quiet when she saw that there was no good in making a
+row."
+
+"Did your wife hear all this?"
+
+"No, thank goodness, she did not."
+
+"And she was seen walking with this very woman afterwards?"
+
+"Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as
+so serious. It is thought that Flora decoyed my wife out and laid
+some terrible trap for her."
+
+"Well, it is a possible supposition."
+
+"You think so, too?"
+
+"I did not say a probable one. But you do not yourself look upon
+this as likely?"
+
+"I do not think Flora would hurt a fly."
+
+"Still, jealousy is a strange transformer of characters. Pray
+what is your own theory as to what took place?"
+
+"Well, really, I came to seek a theory, not to propound one. I
+have given you all the facts. Since you ask me, however, I may
+say that it has occurred to me as possible that the excitement of
+this affair, the consciousness that she had made so immense a
+social stride, had the effect of causing some little nervous
+disturbance in my wife."
+
+"In short, that she had become suddenly deranged?"
+
+"Well, really, when I consider that she has turned her back--I
+will not say upon me, but upon so much that many have aspired to
+without success--I can hardly explain it in any other fashion."
+
+"Well, certainly that is also a conceivable hypothesis," said
+Holmes, smiling. "And now, Lord St. Simon, I think that I have
+nearly all my data. May I ask whether you were seated at the
+breakfast-table so that you could see out of the window?"
+
+"We could see the other side of the road and the Park."
+
+"Quite so. Then I do not think that I need to detain you longer.
+I shall communicate with you."
+
+"Should you be fortunate enough to solve this problem," said our
+client, rising.
+
+"I have solved it."
+
+"Eh? What was that?"
+
+"I say that I have solved it."
+
+"Where, then, is my wife?"
+
+"That is a detail which I shall speedily supply."
+
+Lord St. Simon shook his head. "I am afraid that it will take
+wiser heads than yours or mine," he remarked, and bowing in a
+stately, old-fashioned manner he departed.
+
+"It is very good of Lord St. Simon to honour my head by putting
+it on a level with his own," said Sherlock Holmes, laughing. "I
+think that I shall have a whisky and soda and a cigar after all
+this cross-questioning. I had formed my conclusions as to the
+case before our client came into the room."
+
+"My dear Holmes!"
+
+"I have notes of several similar cases, though none, as I
+remarked before, which were quite as prompt. My whole examination
+served to turn my conjecture into a certainty. Circumstantial
+evidence is occasionally very convincing, as when you find a
+trout in the milk, to quote Thoreau's example."
+
+"But I have heard all that you have heard."
+
+"Without, however, the knowledge of pre-existing cases which
+serves me so well. There was a parallel instance in Aberdeen some
+years back, and something on very much the same lines at Munich
+the year after the Franco-Prussian War. It is one of these
+cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade!
+You will find an extra tumbler upon the sideboard, and there are
+cigars in the box."
+
+The official detective was attired in a pea-jacket and cravat,
+which gave him a decidedly nautical appearance, and he carried a
+black canvas bag in his hand. With a short greeting he seated
+himself and lit the cigar which had been offered to him.
+
+"What's up, then?" asked Holmes with a twinkle in his eye. "You
+look dissatisfied."
+
+"And I feel dissatisfied. It is this infernal St. Simon marriage
+case. I can make neither head nor tail of the business."
+
+"Really! You surprise me."
+
+"Who ever heard of such a mixed affair? Every clue seems to slip
+through my fingers. I have been at work upon it all day."
+
+"And very wet it seems to have made you," said Holmes laying his
+hand upon the arm of the pea-jacket.
+
+"Yes, I have been dragging the Serpentine."
+
+"In heaven's name, what for?"
+
+"In search of the body of Lady St. Simon."
+
+Sherlock Holmes leaned back in his chair and laughed heartily.
+
+"Have you dragged the basin of Trafalgar Square fountain?" he
+asked.
+
+"Why? What do you mean?"
+
+"Because you have just as good a chance of finding this lady in
+the one as in the other."
+
+Lestrade shot an angry glance at my companion. "I suppose you
+know all about it," he snarled.
+
+"Well, I have only just heard the facts, but my mind is made up."
+
+"Oh, indeed! Then you think that the Serpentine plays no part in
+the matter?"
+
+"I think it very unlikely."
+
+"Then perhaps you will kindly explain how it is that we found
+this in it?" He opened his bag as he spoke, and tumbled onto the
+floor a wedding-dress of watered silk, a pair of white satin
+shoes and a bride's wreath and veil, all discoloured and soaked
+in water. "There," said he, putting a new wedding-ring upon the
+top of the pile. "There is a little nut for you to crack, Master
+Holmes."
+
+"Oh, indeed!" said my friend, blowing blue rings into the air.
+"You dragged them from the Serpentine?"
+
+"No. They were found floating near the margin by a park-keeper.
+They have been identified as her clothes, and it seemed to me
+that if the clothes were there the body would not be far off."
+
+"By the same brilliant reasoning, every man's body is to be found
+in the neighbourhood of his wardrobe. And pray what did you hope
+to arrive at through this?"
+
+"At some evidence implicating Flora Millar in the disappearance."
+
+"I am afraid that you will find it difficult."
+
+"Are you, indeed, now?" cried Lestrade with some bitterness. "I
+am afraid, Holmes, that you are not very practical with your
+deductions and your inferences. You have made two blunders in as
+many minutes. This dress does implicate Miss Flora Millar."
+
+"And how?"
+
+"In the dress is a pocket. In the pocket is a card-case. In the
+card-case is a note. And here is the very note." He slapped it
+down upon the table in front of him. "Listen to this: 'You will
+see me when all is ready. Come at once. F.H.M.' Now my theory all
+along has been that Lady St. Simon was decoyed away by Flora
+Millar, and that she, with confederates, no doubt, was
+responsible for her disappearance. Here, signed with her
+initials, is the very note which was no doubt quietly slipped
+into her hand at the door and which lured her within their
+reach."
+
+"Very good, Lestrade," said Holmes, laughing. "You really are
+very fine indeed. Let me see it." He took up the paper in a
+listless way, but his attention instantly became riveted, and he
+gave a little cry of satisfaction. "This is indeed important,"
+said he.
+
+"Ha! you find it so?"
+
+"Extremely so. I congratulate you warmly."
+
+Lestrade rose in his triumph and bent his head to look. "Why," he
+shrieked, "you're looking at the wrong side!"
+
+"On the contrary, this is the right side."
+
+"The right side? You're mad! Here is the note written in pencil
+over here."
+
+"And over here is what appears to be the fragment of a hotel
+bill, which interests me deeply."
+
+"There's nothing in it. I looked at it before," said Lestrade.
+"'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s.
+6d., glass sherry, 8d.' I see nothing in that."
+
+"Very likely not. It is most important, all the same. As to the
+note, it is important also, or at least the initials are, so I
+congratulate you again."
+
+"I've wasted time enough," said Lestrade, rising. "I believe in
+hard work and not in sitting by the fire spinning fine theories.
+Good-day, Mr. Holmes, and we shall see which gets to the bottom
+of the matter first." He gathered up the garments, thrust them
+into the bag, and made for the door.
+
+"Just one hint to you, Lestrade," drawled Holmes before his rival
+vanished; "I will tell you the true solution of the matter. Lady
+St. Simon is a myth. There is not, and there never has been, any
+such person."
+
+Lestrade looked sadly at my companion. Then he turned to me,
+tapped his forehead three times, shook his head solemnly, and
+hurried away.
+
+He had hardly shut the door behind him when Holmes rose to put on
+his overcoat. "There is something in what the fellow says about
+outdoor work," he remarked, "so I think, Watson, that I must
+leave you to your papers for a little."
+
+It was after five o'clock when Sherlock Holmes left me, but I had
+no time to be lonely, for within an hour there arrived a
+confectioner's man with a very large flat box. This he unpacked
+with the help of a youth whom he had brought with him, and
+presently, to my very great astonishment, a quite epicurean
+little cold supper began to be laid out upon our humble
+lodging-house mahogany. There were a couple of brace of cold
+woodcock, a pheasant, a pâté de foie gras pie with a group of
+ancient and cobwebby bottles. Having laid out all these luxuries,
+my two visitors vanished away, like the genii of the Arabian
+Nights, with no explanation save that the things had been paid
+for and were ordered to this address.
+
+Just before nine o'clock Sherlock Holmes stepped briskly into the
+room. His features were gravely set, but there was a light in his
+eye which made me think that he had not been disappointed in his
+conclusions.
+
+"They have laid the supper, then," he said, rubbing his hands.
+
+"You seem to expect company. They have laid for five."
+
+"Yes, I fancy we may have some company dropping in," said he. "I
+am surprised that Lord St. Simon has not already arrived. Ha! I
+fancy that I hear his step now upon the stairs."
+
+It was indeed our visitor of the afternoon who came bustling in,
+dangling his glasses more vigorously than ever, and with a very
+perturbed expression upon his aristocratic features.
+
+"My messenger reached you, then?" asked Holmes.
+
+"Yes, and I confess that the contents startled me beyond measure.
+Have you good authority for what you say?"
+
+"The best possible."
+
+Lord St. Simon sank into a chair and passed his hand over his
+forehead.
+
+"What will the Duke say," he murmured, "when he hears that one of
+the family has been subjected to such humiliation?"
+
+"It is the purest accident. I cannot allow that there is any
+humiliation."
+
+"Ah, you look on these things from another standpoint."
+
+"I fail to see that anyone is to blame. I can hardly see how the
+lady could have acted otherwise, though her abrupt method of
+doing it was undoubtedly to be regretted. Having no mother, she
+had no one to advise her at such a crisis."
+
+"It was a slight, sir, a public slight," said Lord St. Simon,
+tapping his fingers upon the table.
+
+"You must make allowance for this poor girl, placed in so
+unprecedented a position."
+
+"I will make no allowance. I am very angry indeed, and I have
+been shamefully used."
+
+"I think that I heard a ring," said Holmes. "Yes, there are steps
+on the landing. If I cannot persuade you to take a lenient view
+of the matter, Lord St. Simon, I have brought an advocate here
+who may be more successful." He opened the door and ushered in a
+lady and gentleman. "Lord St. Simon," said he "allow me to
+introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I
+think, you have already met."
+
+At the sight of these newcomers our client had sprung from his
+seat and stood very erect, with his eyes cast down and his hand
+thrust into the breast of his frock-coat, a picture of offended
+dignity. The lady had taken a quick step forward and had held out
+her hand to him, but he still refused to raise his eyes. It was
+as well for his resolution, perhaps, for her pleading face was
+one which it was hard to resist.
+
+"You're angry, Robert," said she. "Well, I guess you have every
+cause to be."
+
+"Pray make no apology to me," said Lord St. Simon bitterly.
+
+"Oh, yes, I know that I have treated you real bad and that I
+should have spoken to you before I went; but I was kind of
+rattled, and from the time when I saw Frank here again I just
+didn't know what I was doing or saying. I only wonder I didn't
+fall down and do a faint right there before the altar."
+
+"Perhaps, Mrs. Moulton, you would like my friend and me to leave
+the room while you explain this matter?"
+
+"If I may give an opinion," remarked the strange gentleman,
+"we've had just a little too much secrecy over this business
+already. For my part, I should like all Europe and America to
+hear the rights of it." He was a small, wiry, sunburnt man,
+clean-shaven, with a sharp face and alert manner.
+
+"Then I'll tell our story right away," said the lady. "Frank here
+and I met in '84, in McQuire's camp, near the Rockies, where pa
+was working a claim. We were engaged to each other, Frank and I;
+but then one day father struck a rich pocket and made a pile,
+while poor Frank here had a claim that petered out and came to
+nothing. The richer pa grew the poorer was Frank; so at last pa
+wouldn't hear of our engagement lasting any longer, and he took
+me away to 'Frisco. Frank wouldn't throw up his hand, though; so
+he followed me there, and he saw me without pa knowing anything
+about it. It would only have made him mad to know, so we just
+fixed it all up for ourselves. Frank said that he would go and
+make his pile, too, and never come back to claim me until he had
+as much as pa. So then I promised to wait for him to the end of
+time and pledged myself not to marry anyone else while he lived.
+'Why shouldn't we be married right away, then,' said he, 'and
+then I will feel sure of you; and I won't claim to be your
+husband until I come back?' Well, we talked it over, and he had
+fixed it all up so nicely, with a clergyman all ready in waiting,
+that we just did it right there; and then Frank went off to seek
+his fortune, and I went back to pa.
+
+"The next I heard of Frank was that he was in Montana, and then
+he went prospecting in Arizona, and then I heard of him from New
+Mexico. After that came a long newspaper story about how a
+miners' camp had been attacked by Apache Indians, and there was
+my Frank's name among the killed. I fainted dead away, and I was
+very sick for months after. Pa thought I had a decline and took
+me to half the doctors in 'Frisco. Not a word of news came for a
+year and more, so that I never doubted that Frank was really
+dead. Then Lord St. Simon came to 'Frisco, and we came to London,
+and a marriage was arranged, and pa was very pleased, but I felt
+all the time that no man on this earth would ever take the place
+in my heart that had been given to my poor Frank.
+
+"Still, if I had married Lord St. Simon, of course I'd have done
+my duty by him. We can't command our love, but we can our
+actions. I went to the altar with him with the intention to make
+him just as good a wife as it was in me to be. But you may
+imagine what I felt when, just as I came to the altar rails, I
+glanced back and saw Frank standing and looking at me out of the
+first pew. I thought it was his ghost at first; but when I looked
+again there he was still, with a kind of question in his eyes, as
+if to ask me whether I were glad or sorry to see him. I wonder I
+didn't drop. I know that everything was turning round, and the
+words of the clergyman were just like the buzz of a bee in my
+ear. I didn't know what to do. Should I stop the service and make
+a scene in the church? I glanced at him again, and he seemed to
+know what I was thinking, for he raised his finger to his lips to
+tell me to be still. Then I saw him scribble on a piece of paper,
+and I knew that he was writing me a note. As I passed his pew on
+the way out I dropped my bouquet over to him, and he slipped the
+note into my hand when he returned me the flowers. It was only a
+line asking me to join him when he made the sign to me to do so.
+Of course I never doubted for a moment that my first duty was now
+to him, and I determined to do just whatever he might direct.
+
+"When I got back I told my maid, who had known him in California,
+and had always been his friend. I ordered her to say nothing, but
+to get a few things packed and my ulster ready. I know I ought to
+have spoken to Lord St. Simon, but it was dreadful hard before
+his mother and all those great people. I just made up my mind to
+run away and explain afterwards. I hadn't been at the table ten
+minutes before I saw Frank out of the window at the other side of
+the road. He beckoned to me and then began walking into the Park.
+I slipped out, put on my things, and followed him. Some woman
+came talking something or other about Lord St. Simon to
+me--seemed to me from the little I heard as if he had a little
+secret of his own before marriage also--but I managed to get away
+from her and soon overtook Frank. We got into a cab together, and
+away we drove to some lodgings he had taken in Gordon Square, and
+that was my true wedding after all those years of waiting. Frank
+had been a prisoner among the Apaches, had escaped, came on to
+'Frisco, found that I had given him up for dead and had gone to
+England, followed me there, and had come upon me at last on the
+very morning of my second wedding."
+
+"I saw it in a paper," explained the American. "It gave the name
+and the church but not where the lady lived."
+
+"Then we had a talk as to what we should do, and Frank was all
+for openness, but I was so ashamed of it all that I felt as if I
+should like to vanish away and never see any of them again--just
+sending a line to pa, perhaps, to show him that I was alive. It
+was awful to me to think of all those lords and ladies sitting
+round that breakfast-table and waiting for me to come back. So
+Frank took my wedding-clothes and things and made a bundle of
+them, so that I should not be traced, and dropped them away
+somewhere where no one could find them. It is likely that we
+should have gone on to Paris to-morrow, only that this good
+gentleman, Mr. Holmes, came round to us this evening, though how
+he found us is more than I can think, and he showed us very
+clearly and kindly that I was wrong and that Frank was right, and
+that we should be putting ourselves in the wrong if we were so
+secret. Then he offered to give us a chance of talking to Lord
+St. Simon alone, and so we came right away round to his rooms at
+once. Now, Robert, you have heard it all, and I am very sorry if
+I have given you pain, and I hope that you do not think very
+meanly of me."
+
+Lord St. Simon had by no means relaxed his rigid attitude, but
+had listened with a frowning brow and a compressed lip to this
+long narrative.
+
+"Excuse me," he said, "but it is not my custom to discuss my most
+intimate personal affairs in this public manner."
+
+"Then you won't forgive me? You won't shake hands before I go?"
+
+"Oh, certainly, if it would give you any pleasure." He put out
+his hand and coldly grasped that which she extended to him.
+
+"I had hoped," suggested Holmes, "that you would have joined us
+in a friendly supper."
+
+"I think that there you ask a little too much," responded his
+Lordship. "I may be forced to acquiesce in these recent
+developments, but I can hardly be expected to make merry over
+them. I think that with your permission I will now wish you all a
+very good-night." He included us all in a sweeping bow and
+stalked out of the room.
+
+"Then I trust that you at least will honour me with your
+company," said Sherlock Holmes. "It is always a joy to meet an
+American, Mr. Moulton, for I am one of those who believe that the
+folly of a monarch and the blundering of a minister in far-gone
+years will not prevent our children from being some day citizens
+of the same world-wide country under a flag which shall be a
+quartering of the Union Jack with the Stars and Stripes."
+
+"The case has been an interesting one," remarked Holmes when our
+visitors had left us, "because it serves to show very clearly how
+simple the explanation may be of an affair which at first sight
+seems to be almost inexplicable. Nothing could be more natural
+than the sequence of events as narrated by this lady, and nothing
+stranger than the result when viewed, for instance, by Mr.
+Lestrade of Scotland Yard."
+
+"You were not yourself at fault at all, then?"
+
+"From the first, two facts were very obvious to me, the one that
+the lady had been quite willing to undergo the wedding ceremony,
+the other that she had repented of it within a few minutes of
+returning home. Obviously something had occurred during the
+morning, then, to cause her to change her mind. What could that
+something be? She could not have spoken to anyone when she was
+out, for she had been in the company of the bridegroom. Had she
+seen someone, then? If she had, it must be someone from America
+because she had spent so short a time in this country that she
+could hardly have allowed anyone to acquire so deep an influence
+over her that the mere sight of him would induce her to change
+her plans so completely. You see we have already arrived, by a
+process of exclusion, at the idea that she might have seen an
+American. Then who could this American be, and why should he
+possess so much influence over her? It might be a lover; it might
+be a husband. Her young womanhood had, I knew, been spent in
+rough scenes and under strange conditions. So far I had got
+before I ever heard Lord St. Simon's narrative. When he told us
+of a man in a pew, of the change in the bride's manner, of so
+transparent a device for obtaining a note as the dropping of a
+bouquet, of her resort to her confidential maid, and of her very
+significant allusion to claim-jumping--which in miners' parlance
+means taking possession of that which another person has a prior
+claim to--the whole situation became absolutely clear. She had
+gone off with a man, and the man was either a lover or was a
+previous husband--the chances being in favour of the latter."
+
+"And how in the world did you find them?"
+
+"It might have been difficult, but friend Lestrade held
+information in his hands the value of which he did not himself
+know. The initials were, of course, of the highest importance,
+but more valuable still was it to know that within a week he had
+settled his bill at one of the most select London hotels."
+
+"How did you deduce the select?"
+
+"By the select prices. Eight shillings for a bed and eightpence
+for a glass of sherry pointed to one of the most expensive
+hotels. There are not many in London which charge at that rate.
+In the second one which I visited in Northumberland Avenue, I
+learned by an inspection of the book that Francis H. Moulton, an
+American gentleman, had left only the day before, and on looking
+over the entries against him, I came upon the very items which I
+had seen in the duplicate bill. His letters were to be forwarded
+to 226 Gordon Square; so thither I travelled, and being fortunate
+enough to find the loving couple at home, I ventured to give them
+some paternal advice and to point out to them that it would be
+better in every way that they should make their position a little
+clearer both to the general public and to Lord St. Simon in
+particular. I invited them to meet him here, and, as you see, I
+made him keep the appointment."
+
+"But with no very good result," I remarked. "His conduct was
+certainly not very gracious."
+
+"Ah, Watson," said Holmes, smiling, "perhaps you would not be
+very gracious either, if, after all the trouble of wooing and
+wedding, you found yourself deprived in an instant of wife and of
+fortune. I think that we may judge Lord St. Simon very mercifully
+and thank our stars that we are never likely to find ourselves in
+the same position. Draw your chair up and hand me my violin, for
+the only problem we have still to solve is how to while away
+these bleak autumnal evenings."
+
+
+
+XI. THE ADVENTURE OF THE BERYL CORONET
+
+"Holmes," said I as I stood one morning in our bow-window looking
+down the street, "here is a madman coming along. It seems rather
+sad that his relatives should allow him to come out alone."
+
+My friend rose lazily from his armchair and stood with his hands
+in the pockets of his dressing-gown, looking over my shoulder. It
+was a bright, crisp February morning, and the snow of the day
+before still lay deep upon the ground, shimmering brightly in the
+wintry sun. Down the centre of Baker Street it had been ploughed
+into a brown crumbly band by the traffic, but at either side and
+on the heaped-up edges of the foot-paths it still lay as white as
+when it fell. The grey pavement had been cleaned and scraped, but
+was still dangerously slippery, so that there were fewer
+passengers than usual. Indeed, from the direction of the
+Metropolitan Station no one was coming save the single gentleman
+whose eccentric conduct had drawn my attention.
+
+He was a man of about fifty, tall, portly, and imposing, with a
+massive, strongly marked face and a commanding figure. He was
+dressed in a sombre yet rich style, in black frock-coat, shining
+hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet
+his actions were in absurd contrast to the dignity of his dress
+and features, for he was running hard, with occasional little
+springs, such as a weary man gives who is little accustomed to
+set any tax upon his legs. As he ran he jerked his hands up and
+down, waggled his head, and writhed his face into the most
+extraordinary contortions.
+
+"What on earth can be the matter with him?" I asked. "He is
+looking up at the numbers of the houses."
+
+"I believe that he is coming here," said Holmes, rubbing his
+hands.
+
+"Here?"
+
+"Yes; I rather think he is coming to consult me professionally. I
+think that I recognise the symptoms. Ha! did I not tell you?" As
+he spoke, the man, puffing and blowing, rushed at our door and
+pulled at our bell until the whole house resounded with the
+clanging.
+
+A few moments later he was in our room, still puffing, still
+gesticulating, but with so fixed a look of grief and despair in
+his eyes that our smiles were turned in an instant to horror and
+pity. For a while he could not get his words out, but swayed his
+body and plucked at his hair like one who has been driven to the
+extreme limits of his reason. Then, suddenly springing to his
+feet, he beat his head against the wall with such force that we
+both rushed upon him and tore him away to the centre of the room.
+Sherlock Holmes pushed him down into the easy-chair and, sitting
+beside him, patted his hand and chatted with him in the easy,
+soothing tones which he knew so well how to employ.
+
+"You have come to me to tell your story, have you not?" said he.
+"You are fatigued with your haste. Pray wait until you have
+recovered yourself, and then I shall be most happy to look into
+any little problem which you may submit to me."
+
+The man sat for a minute or more with a heaving chest, fighting
+against his emotion. Then he passed his handkerchief over his
+brow, set his lips tight, and turned his face towards us.
+
+"No doubt you think me mad?" said he.
+
+"I see that you have had some great trouble," responded Holmes.
+
+"God knows I have!--a trouble which is enough to unseat my
+reason, so sudden and so terrible is it. Public disgrace I might
+have faced, although I am a man whose character has never yet
+borne a stain. Private affliction also is the lot of every man;
+but the two coming together, and in so frightful a form, have
+been enough to shake my very soul. Besides, it is not I alone.
+The very noblest in the land may suffer unless some way be found
+out of this horrible affair."
+
+"Pray compose yourself, sir," said Holmes, "and let me have a
+clear account of who you are and what it is that has befallen
+you."
+
+"My name," answered our visitor, "is probably familiar to your
+ears. I am Alexander Holder, of the banking firm of Holder &
+Stevenson, of Threadneedle Street."
+
+The name was indeed well known to us as belonging to the senior
+partner in the second largest private banking concern in the City
+of London. What could have happened, then, to bring one of the
+foremost citizens of London to this most pitiable pass? We
+waited, all curiosity, until with another effort he braced
+himself to tell his story.
+
+"I feel that time is of value," said he; "that is why I hastened
+here when the police inspector suggested that I should secure
+your co-operation. I came to Baker Street by the Underground and
+hurried from there on foot, for the cabs go slowly through this
+snow. That is why I was so out of breath, for I am a man who
+takes very little exercise. I feel better now, and I will put the
+facts before you as shortly and yet as clearly as I can.
+
+"It is, of course, well known to you that in a successful banking
+business as much depends upon our being able to find remunerative
+investments for our funds as upon our increasing our connection
+and the number of our depositors. One of our most lucrative means
+of laying out money is in the shape of loans, where the security
+is unimpeachable. We have done a good deal in this direction
+during the last few years, and there are many noble families to
+whom we have advanced large sums upon the security of their
+pictures, libraries, or plate.
+
+"Yesterday morning I was seated in my office at the bank when a
+card was brought in to me by one of the clerks. I started when I
+saw the name, for it was that of none other than--well, perhaps
+even to you I had better say no more than that it was a name
+which is a household word all over the earth--one of the highest,
+noblest, most exalted names in England. I was overwhelmed by the
+honour and attempted, when he entered, to say so, but he plunged
+at once into business with the air of a man who wishes to hurry
+quickly through a disagreeable task.
+
+"'Mr. Holder,' said he, 'I have been informed that you are in the
+habit of advancing money.'
+
+"'The firm does so when the security is good.' I answered.
+
+"'It is absolutely essential to me,' said he, 'that I should have
+50,000 pounds at once. I could, of course, borrow so trifling a
+sum ten times over from my friends, but I much prefer to make it
+a matter of business and to carry out that business myself. In my
+position you can readily understand that it is unwise to place
+one's self under obligations.'
+
+"'For how long, may I ask, do you want this sum?' I asked.
+
+"'Next Monday I have a large sum due to me, and I shall then most
+certainly repay what you advance, with whatever interest you
+think it right to charge. But it is very essential to me that the
+money should be paid at once.'
+
+"'I should be happy to advance it without further parley from my
+own private purse,' said I, 'were it not that the strain would be
+rather more than it could bear. If, on the other hand, I am to do
+it in the name of the firm, then in justice to my partner I must
+insist that, even in your case, every businesslike precaution
+should be taken.'
+
+"'I should much prefer to have it so,' said he, raising up a
+square, black morocco case which he had laid beside his chair.
+'You have doubtless heard of the Beryl Coronet?'
+
+"'One of the most precious public possessions of the empire,'
+said I.
+
+"'Precisely.' He opened the case, and there, imbedded in soft,
+flesh-coloured velvet, lay the magnificent piece of jewellery
+which he had named. 'There are thirty-nine enormous beryls,' said
+he, 'and the price of the gold chasing is incalculable. The
+lowest estimate would put the worth of the coronet at double the
+sum which I have asked. I am prepared to leave it with you as my
+security.'
+
+"I took the precious case into my hands and looked in some
+perplexity from it to my illustrious client.
+
+"'You doubt its value?' he asked.
+
+"'Not at all. I only doubt--'
+
+"'The propriety of my leaving it. You may set your mind at rest
+about that. I should not dream of doing so were it not absolutely
+certain that I should be able in four days to reclaim it. It is a
+pure matter of form. Is the security sufficient?'
+
+"'Ample.'
+
+"'You understand, Mr. Holder, that I am giving you a strong proof
+of the confidence which I have in you, founded upon all that I
+have heard of you. I rely upon you not only to be discreet and to
+refrain from all gossip upon the matter but, above all, to
+preserve this coronet with every possible precaution because I
+need not say that a great public scandal would be caused if any
+harm were to befall it. Any injury to it would be almost as
+serious as its complete loss, for there are no beryls in the
+world to match these, and it would be impossible to replace them.
+I leave it with you, however, with every confidence, and I shall
+call for it in person on Monday morning.'
+
+"Seeing that my client was anxious to leave, I said no more but,
+calling for my cashier, I ordered him to pay over fifty 1000
+pound notes. When I was alone once more, however, with the
+precious case lying upon the table in front of me, I could not
+but think with some misgivings of the immense responsibility
+which it entailed upon me. There could be no doubt that, as it
+was a national possession, a horrible scandal would ensue if any
+misfortune should occur to it. I already regretted having ever
+consented to take charge of it. However, it was too late to alter
+the matter now, so I locked it up in my private safe and turned
+once more to my work.
+
+"When evening came I felt that it would be an imprudence to leave
+so precious a thing in the office behind me. Bankers' safes had
+been forced before now, and why should not mine be? If so, how
+terrible would be the position in which I should find myself! I
+determined, therefore, that for the next few days I would always
+carry the case backward and forward with me, so that it might
+never be really out of my reach. With this intention, I called a
+cab and drove out to my house at Streatham, carrying the jewel
+with me. I did not breathe freely until I had taken it upstairs
+and locked it in the bureau of my dressing-room.
+
+"And now a word as to my household, Mr. Holmes, for I wish you to
+thoroughly understand the situation. My groom and my page sleep
+out of the house, and may be set aside altogether. I have three
+maid-servants who have been with me a number of years and whose
+absolute reliability is quite above suspicion. Another, Lucy
+Parr, the second waiting-maid, has only been in my service a few
+months. She came with an excellent character, however, and has
+always given me satisfaction. She is a very pretty girl and has
+attracted admirers who have occasionally hung about the place.
+That is the only drawback which we have found to her, but we
+believe her to be a thoroughly good girl in every way.
+
+"So much for the servants. My family itself is so small that it
+will not take me long to describe it. I am a widower and have an
+only son, Arthur. He has been a disappointment to me, Mr.
+Holmes--a grievous disappointment. I have no doubt that I am
+myself to blame. People tell me that I have spoiled him. Very
+likely I have. When my dear wife died I felt that he was all I
+had to love. I could not bear to see the smile fade even for a
+moment from his face. I have never denied him a wish. Perhaps it
+would have been better for both of us had I been sterner, but I
+meant it for the best.
+
+"It was naturally my intention that he should succeed me in my
+business, but he was not of a business turn. He was wild,
+wayward, and, to speak the truth, I could not trust him in the
+handling of large sums of money. When he was young he became a
+member of an aristocratic club, and there, having charming
+manners, he was soon the intimate of a number of men with long
+purses and expensive habits. He learned to play heavily at cards
+and to squander money on the turf, until he had again and again
+to come to me and implore me to give him an advance upon his
+allowance, that he might settle his debts of honour. He tried
+more than once to break away from the dangerous company which he
+was keeping, but each time the influence of his friend, Sir
+George Burnwell, was enough to draw him back again.
+
+"And, indeed, I could not wonder that such a man as Sir George
+Burnwell should gain an influence over him, for he has frequently
+brought him to my house, and I have found myself that I could
+hardly resist the fascination of his manner. He is older than
+Arthur, a man of the world to his finger-tips, one who had been
+everywhere, seen everything, a brilliant talker, and a man of
+great personal beauty. Yet when I think of him in cold blood, far
+away from the glamour of his presence, I am convinced from his
+cynical speech and the look which I have caught in his eyes that
+he is one who should be deeply distrusted. So I think, and so,
+too, thinks my little Mary, who has a woman's quick insight into
+character.
+
+"And now there is only she to be described. She is my niece; but
+when my brother died five years ago and left her alone in the
+world I adopted her, and have looked upon her ever since as my
+daughter. She is a sunbeam in my house--sweet, loving, beautiful,
+a wonderful manager and housekeeper, yet as tender and quiet and
+gentle as a woman could be. She is my right hand. I do not know
+what I could do without her. In only one matter has she ever gone
+against my wishes. Twice my boy has asked her to marry him, for
+he loves her devotedly, but each time she has refused him. I
+think that if anyone could have drawn him into the right path it
+would have been she, and that his marriage might have changed his
+whole life; but now, alas! it is too late--forever too late!
+
+"Now, Mr. Holmes, you know the people who live under my roof, and
+I shall continue with my miserable story.
+
+"When we were taking coffee in the drawing-room that night after
+dinner, I told Arthur and Mary my experience, and of the precious
+treasure which we had under our roof, suppressing only the name
+of my client. Lucy Parr, who had brought in the coffee, had, I am
+sure, left the room; but I cannot swear that the door was closed.
+Mary and Arthur were much interested and wished to see the famous
+coronet, but I thought it better not to disturb it.
+
+"'Where have you put it?' asked Arthur.
+
+"'In my own bureau.'
+
+"'Well, I hope to goodness the house won't be burgled during the
+night.' said he.
+
+"'It is locked up,' I answered.
+
+"'Oh, any old key will fit that bureau. When I was a youngster I
+have opened it myself with the key of the box-room cupboard.'
+
+"He often had a wild way of talking, so that I thought little of
+what he said. He followed me to my room, however, that night with
+a very grave face.
+
+"'Look here, dad,' said he with his eyes cast down, 'can you let
+me have 200 pounds?'
+
+"'No, I cannot!' I answered sharply. 'I have been far too
+generous with you in money matters.'
+
+"'You have been very kind,' said he, 'but I must have this money,
+or else I can never show my face inside the club again.'
+
+"'And a very good thing, too!' I cried.
+
+"'Yes, but you would not have me leave it a dishonoured man,'
+said he. 'I could not bear the disgrace. I must raise the money
+in some way, and if you will not let me have it, then I must try
+other means.'
+
+"I was very angry, for this was the third demand during the
+month. 'You shall not have a farthing from me,' I cried, on which
+he bowed and left the room without another word.
+
+"When he was gone I unlocked my bureau, made sure that my
+treasure was safe, and locked it again. Then I started to go
+round the house to see that all was secure--a duty which I
+usually leave to Mary but which I thought it well to perform
+myself that night. As I came down the stairs I saw Mary herself
+at the side window of the hall, which she closed and fastened as
+I approached.
+
+"'Tell me, dad,' said she, looking, I thought, a little
+disturbed, 'did you give Lucy, the maid, leave to go out
+to-night?'
+
+"'Certainly not.'
+
+"'She came in just now by the back door. I have no doubt that she
+has only been to the side gate to see someone, but I think that
+it is hardly safe and should be stopped.'
+
+"'You must speak to her in the morning, or I will if you prefer
+it. Are you sure that everything is fastened?'
+
+"'Quite sure, dad.'
+
+"'Then, good-night.' I kissed her and went up to my bedroom
+again, where I was soon asleep.
+
+"I am endeavouring to tell you everything, Mr. Holmes, which may
+have any bearing upon the case, but I beg that you will question
+me upon any point which I do not make clear."
+
+"On the contrary, your statement is singularly lucid."
+
+"I come to a part of my story now in which I should wish to be
+particularly so. I am not a very heavy sleeper, and the anxiety
+in my mind tended, no doubt, to make me even less so than usual.
+About two in the morning, then, I was awakened by some sound in
+the house. It had ceased ere I was wide awake, but it had left an
+impression behind it as though a window had gently closed
+somewhere. I lay listening with all my ears. Suddenly, to my
+horror, there was a distinct sound of footsteps moving softly in
+the next room. I slipped out of bed, all palpitating with fear,
+and peeped round the corner of my dressing-room door.
+
+"'Arthur!' I screamed, 'you villain! you thief! How dare you
+touch that coronet?'
+
+"The gas was half up, as I had left it, and my unhappy boy,
+dressed only in his shirt and trousers, was standing beside the
+light, holding the coronet in his hands. He appeared to be
+wrenching at it, or bending it with all his strength. At my cry
+he dropped it from his grasp and turned as pale as death. I
+snatched it up and examined it. One of the gold corners, with
+three of the beryls in it, was missing.
+
+"'You blackguard!' I shouted, beside myself with rage. 'You have
+destroyed it! You have dishonoured me forever! Where are the
+jewels which you have stolen?'
+
+"'Stolen!' he cried.
+
+"'Yes, thief!' I roared, shaking him by the shoulder.
+
+"'There are none missing. There cannot be any missing,' said he.
+
+"'There are three missing. And you know where they are. Must I
+call you a liar as well as a thief? Did I not see you trying to
+tear off another piece?'
+
+"'You have called me names enough,' said he, 'I will not stand it
+any longer. I shall not say another word about this business,
+since you have chosen to insult me. I will leave your house in
+the morning and make my own way in the world.'
+
+"'You shall leave it in the hands of the police!' I cried
+half-mad with grief and rage. 'I shall have this matter probed to
+the bottom.'
+
+"'You shall learn nothing from me,' said he with a passion such
+as I should not have thought was in his nature. 'If you choose to
+call the police, let the police find what they can.'
+
+"By this time the whole house was astir, for I had raised my
+voice in my anger. Mary was the first to rush into my room, and,
+at the sight of the coronet and of Arthur's face, she read the
+whole story and, with a scream, fell down senseless on the
+ground. I sent the house-maid for the police and put the
+investigation into their hands at once. When the inspector and a
+constable entered the house, Arthur, who had stood sullenly with
+his arms folded, asked me whether it was my intention to charge
+him with theft. I answered that it had ceased to be a private
+matter, but had become a public one, since the ruined coronet was
+national property. I was determined that the law should have its
+way in everything.
+
+"'At least,' said he, 'you will not have me arrested at once. It
+would be to your advantage as well as mine if I might leave the
+house for five minutes.'
+
+"'That you may get away, or perhaps that you may conceal what you
+have stolen,' said I. And then, realising the dreadful position
+in which I was placed, I implored him to remember that not only
+my honour but that of one who was far greater than I was at
+stake; and that he threatened to raise a scandal which would
+convulse the nation. He might avert it all if he would but tell
+me what he had done with the three missing stones.
+
+"'You may as well face the matter,' said I; 'you have been caught
+in the act, and no confession could make your guilt more heinous.
+If you but make such reparation as is in your power, by telling
+us where the beryls are, all shall be forgiven and forgotten.'
+
+"'Keep your forgiveness for those who ask for it,' he answered,
+turning away from me with a sneer. I saw that he was too hardened
+for any words of mine to influence him. There was but one way for
+it. I called in the inspector and gave him into custody. A search
+was made at once not only of his person but of his room and of
+every portion of the house where he could possibly have concealed
+the gems; but no trace of them could be found, nor would the
+wretched boy open his mouth for all our persuasions and our
+threats. This morning he was removed to a cell, and I, after
+going through all the police formalities, have hurried round to
+you to implore you to use your skill in unravelling the matter.
+The police have openly confessed that they can at present make
+nothing of it. You may go to any expense which you think
+necessary. I have already offered a reward of 1000 pounds. My
+God, what shall I do! I have lost my honour, my gems, and my son
+in one night. Oh, what shall I do!"
+
+He put a hand on either side of his head and rocked himself to
+and fro, droning to himself like a child whose grief has got
+beyond words.
+
+Sherlock Holmes sat silent for some few minutes, with his brows
+knitted and his eyes fixed upon the fire.
+
+"Do you receive much company?" he asked.
+
+"None save my partner with his family and an occasional friend of
+Arthur's. Sir George Burnwell has been several times lately. No
+one else, I think."
+
+"Do you go out much in society?"
+
+"Arthur does. Mary and I stay at home. We neither of us care for
+it."
+
+"That is unusual in a young girl."
+
+"She is of a quiet nature. Besides, she is not so very young. She
+is four-and-twenty."
+
+"This matter, from what you say, seems to have been a shock to
+her also."
+
+"Terrible! She is even more affected than I."
+
+"You have neither of you any doubt as to your son's guilt?"
+
+"How can we have when I saw him with my own eyes with the coronet
+in his hands."
+
+"I hardly consider that a conclusive proof. Was the remainder of
+the coronet at all injured?"
+
+"Yes, it was twisted."
+
+"Do you not think, then, that he might have been trying to
+straighten it?"
+
+"God bless you! You are doing what you can for him and for me.
+But it is too heavy a task. What was he doing there at all? If
+his purpose were innocent, why did he not say so?"
+
+"Precisely. And if it were guilty, why did he not invent a lie?
+His silence appears to me to cut both ways. There are several
+singular points about the case. What did the police think of the
+noise which awoke you from your sleep?"
+
+"They considered that it might be caused by Arthur's closing his
+bedroom door."
+
+"A likely story! As if a man bent on felony would slam his door
+so as to wake a household. What did they say, then, of the
+disappearance of these gems?"
+
+"They are still sounding the planking and probing the furniture
+in the hope of finding them."
+
+"Have they thought of looking outside the house?"
+
+"Yes, they have shown extraordinary energy. The whole garden has
+already been minutely examined."
+
+"Now, my dear sir," said Holmes, "is it not obvious to you now
+that this matter really strikes very much deeper than either you
+or the police were at first inclined to think? It appeared to you
+to be a simple case; to me it seems exceedingly complex. Consider
+what is involved by your theory. You suppose that your son came
+down from his bed, went, at great risk, to your dressing-room,
+opened your bureau, took out your coronet, broke off by main
+force a small portion of it, went off to some other place,
+concealed three gems out of the thirty-nine, with such skill that
+nobody can find them, and then returned with the other thirty-six
+into the room in which he exposed himself to the greatest danger
+of being discovered. I ask you now, is such a theory tenable?"
+
+"But what other is there?" cried the banker with a gesture of
+despair. "If his motives were innocent, why does he not explain
+them?"
+
+"It is our task to find that out," replied Holmes; "so now, if
+you please, Mr. Holder, we will set off for Streatham together,
+and devote an hour to glancing a little more closely into
+details."
+
+My friend insisted upon my accompanying them in their expedition,
+which I was eager enough to do, for my curiosity and sympathy
+were deeply stirred by the story to which we had listened. I
+confess that the guilt of the banker's son appeared to me to be
+as obvious as it did to his unhappy father, but still I had such
+faith in Holmes' judgment that I felt that there must be some
+grounds for hope as long as he was dissatisfied with the accepted
+explanation. He hardly spoke a word the whole way out to the
+southern suburb, but sat with his chin upon his breast and his
+hat drawn over his eyes, sunk in the deepest thought. Our client
+appeared to have taken fresh heart at the little glimpse of hope
+which had been presented to him, and he even broke into a
+desultory chat with me over his business affairs. A short railway
+journey and a shorter walk brought us to Fairbank, the modest
+residence of the great financier.
+
+Fairbank was a good-sized square house of white stone, standing
+back a little from the road. A double carriage-sweep, with a
+snow-clad lawn, stretched down in front to two large iron gates
+which closed the entrance. On the right side was a small wooden
+thicket, which led into a narrow path between two neat hedges
+stretching from the road to the kitchen door, and forming the
+tradesmen's entrance. On the left ran a lane which led to the
+stables, and was not itself within the grounds at all, being a
+public, though little used, thoroughfare. Holmes left us standing
+at the door and walked slowly all round the house, across the
+front, down the tradesmen's path, and so round by the garden
+behind into the stable lane. So long was he that Mr. Holder and I
+went into the dining-room and waited by the fire until he should
+return. We were sitting there in silence when the door opened and
+a young lady came in. She was rather above the middle height,
+slim, with dark hair and eyes, which seemed the darker against
+the absolute pallor of her skin. I do not think that I have ever
+seen such deadly paleness in a woman's face. Her lips, too, were
+bloodless, but her eyes were flushed with crying. As she swept
+silently into the room she impressed me with a greater sense of
+grief than the banker had done in the morning, and it was the
+more striking in her as she was evidently a woman of strong
+character, with immense capacity for self-restraint. Disregarding
+my presence, she went straight to her uncle and passed her hand
+over his head with a sweet womanly caress.
+
+"You have given orders that Arthur should be liberated, have you
+not, dad?" she asked.
+
+"No, no, my girl, the matter must be probed to the bottom."
+
+"But I am so sure that he is innocent. You know what woman's
+instincts are. I know that he has done no harm and that you will
+be sorry for having acted so harshly."
+
+"Why is he silent, then, if he is innocent?"
+
+"Who knows? Perhaps because he was so angry that you should
+suspect him."
+
+"How could I help suspecting him, when I actually saw him with
+the coronet in his hand?"
+
+"Oh, but he had only picked it up to look at it. Oh, do, do take
+my word for it that he is innocent. Let the matter drop and say
+no more. It is so dreadful to think of our dear Arthur in
+prison!"
+
+"I shall never let it drop until the gems are found--never, Mary!
+Your affection for Arthur blinds you as to the awful consequences
+to me. Far from hushing the thing up, I have brought a gentleman
+down from London to inquire more deeply into it."
+
+"This gentleman?" she asked, facing round to me.
+
+"No, his friend. He wished us to leave him alone. He is round in
+the stable lane now."
+
+"The stable lane?" She raised her dark eyebrows. "What can he
+hope to find there? Ah! this, I suppose, is he. I trust, sir,
+that you will succeed in proving, what I feel sure is the truth,
+that my cousin Arthur is innocent of this crime."
+
+"I fully share your opinion, and I trust, with you, that we may
+prove it," returned Holmes, going back to the mat to knock the
+snow from his shoes. "I believe I have the honour of addressing
+Miss Mary Holder. Might I ask you a question or two?"
+
+"Pray do, sir, if it may help to clear this horrible affair up."
+
+"You heard nothing yourself last night?"
+
+"Nothing, until my uncle here began to speak loudly. I heard
+that, and I came down."
+
+"You shut up the windows and doors the night before. Did you
+fasten all the windows?"
+
+"Yes."
+
+"Were they all fastened this morning?"
+
+"Yes."
+
+"You have a maid who has a sweetheart? I think that you remarked
+to your uncle last night that she had been out to see him?"
+
+"Yes, and she was the girl who waited in the drawing-room, and
+who may have heard uncle's remarks about the coronet."
+
+"I see. You infer that she may have gone out to tell her
+sweetheart, and that the two may have planned the robbery."
+
+"But what is the good of all these vague theories," cried the
+banker impatiently, "when I have told you that I saw Arthur with
+the coronet in his hands?"
+
+"Wait a little, Mr. Holder. We must come back to that. About this
+girl, Miss Holder. You saw her return by the kitchen door, I
+presume?"
+
+"Yes; when I went to see if the door was fastened for the night I
+met her slipping in. I saw the man, too, in the gloom."
+
+"Do you know him?"
+
+"Oh, yes! he is the green-grocer who brings our vegetables round.
+His name is Francis Prosper."
+
+"He stood," said Holmes, "to the left of the door--that is to
+say, farther up the path than is necessary to reach the door?"
+
+"Yes, he did."
+
+"And he is a man with a wooden leg?"
+
+Something like fear sprang up in the young lady's expressive
+black eyes. "Why, you are like a magician," said she. "How do you
+know that?" She smiled, but there was no answering smile in
+Holmes' thin, eager face.
+
+"I should be very glad now to go upstairs," said he. "I shall
+probably wish to go over the outside of the house again. Perhaps
+I had better take a look at the lower windows before I go up."
+
+He walked swiftly round from one to the other, pausing only at
+the large one which looked from the hall onto the stable lane.
+This he opened and made a very careful examination of the sill
+with his powerful magnifying lens. "Now we shall go upstairs,"
+said he at last.
+
+The banker's dressing-room was a plainly furnished little
+chamber, with a grey carpet, a large bureau, and a long mirror.
+Holmes went to the bureau first and looked hard at the lock.
+
+"Which key was used to open it?" he asked.
+
+"That which my son himself indicated--that of the cupboard of the
+lumber-room."
+
+"Have you it here?"
+
+"That is it on the dressing-table."
+
+Sherlock Holmes took it up and opened the bureau.
+
+"It is a noiseless lock," said he. "It is no wonder that it did
+not wake you. This case, I presume, contains the coronet. We must
+have a look at it." He opened the case, and taking out the diadem
+he laid it upon the table. It was a magnificent specimen of the
+jeweller's art, and the thirty-six stones were the finest that I
+have ever seen. At one side of the coronet was a cracked edge,
+where a corner holding three gems had been torn away.
+
+"Now, Mr. Holder," said Holmes, "here is the corner which
+corresponds to that which has been so unfortunately lost. Might I
+beg that you will break it off."
+
+The banker recoiled in horror. "I should not dream of trying,"
+said he.
+
+"Then I will." Holmes suddenly bent his strength upon it, but
+without result. "I feel it give a little," said he; "but, though
+I am exceptionally strong in the fingers, it would take me all my
+time to break it. An ordinary man could not do it. Now, what do
+you think would happen if I did break it, Mr. Holder? There would
+be a noise like a pistol shot. Do you tell me that all this
+happened within a few yards of your bed and that you heard
+nothing of it?"
+
+"I do not know what to think. It is all dark to me."
+
+"But perhaps it may grow lighter as we go. What do you think,
+Miss Holder?"
+
+"I confess that I still share my uncle's perplexity."
+
+"Your son had no shoes or slippers on when you saw him?"
+
+"He had nothing on save only his trousers and shirt."
+
+"Thank you. We have certainly been favoured with extraordinary
+luck during this inquiry, and it will be entirely our own fault
+if we do not succeed in clearing the matter up. With your
+permission, Mr. Holder, I shall now continue my investigations
+outside."
+
+He went alone, at his own request, for he explained that any
+unnecessary footmarks might make his task more difficult. For an
+hour or more he was at work, returning at last with his feet
+heavy with snow and his features as inscrutable as ever.
+
+"I think that I have seen now all that there is to see, Mr.
+Holder," said he; "I can serve you best by returning to my
+rooms."
+
+"But the gems, Mr. Holmes. Where are they?"
+
+"I cannot tell."
+
+The banker wrung his hands. "I shall never see them again!" he
+cried. "And my son? You give me hopes?"
+
+"My opinion is in no way altered."
+
+"Then, for God's sake, what was this dark business which was
+acted in my house last night?"
+
+"If you can call upon me at my Baker Street rooms to-morrow
+morning between nine and ten I shall be happy to do what I can to
+make it clearer. I understand that you give me carte blanche to
+act for you, provided only that I get back the gems, and that you
+place no limit on the sum I may draw."
+
+"I would give my fortune to have them back."
+
+"Very good. I shall look into the matter between this and then.
+Good-bye; it is just possible that I may have to come over here
+again before evening."
+
+It was obvious to me that my companion's mind was now made up
+about the case, although what his conclusions were was more than
+I could even dimly imagine. Several times during our homeward
+journey I endeavoured to sound him upon the point, but he always
+glided away to some other topic, until at last I gave it over in
+despair. It was not yet three when we found ourselves in our
+rooms once more. He hurried to his chamber and was down again in
+a few minutes dressed as a common loafer. With his collar turned
+up, his shiny, seedy coat, his red cravat, and his worn boots, he
+was a perfect sample of the class.
+
+"I think that this should do," said he, glancing into the glass
+above the fireplace. "I only wish that you could come with me,
+Watson, but I fear that it won't do. I may be on the trail in
+this matter, or I may be following a will-o'-the-wisp, but I
+shall soon know which it is. I hope that I may be back in a few
+hours." He cut a slice of beef from the joint upon the sideboard,
+sandwiched it between two rounds of bread, and thrusting this
+rude meal into his pocket he started off upon his expedition.
+
+I had just finished my tea when he returned, evidently in
+excellent spirits, swinging an old elastic-sided boot in his
+hand. He chucked it down into a corner and helped himself to a
+cup of tea.
+
+"I only looked in as I passed," said he. "I am going right on."
+
+"Where to?"
+
+"Oh, to the other side of the West End. It may be some time
+before I get back. Don't wait up for me in case I should be
+late."
+
+"How are you getting on?"
+
+"Oh, so so. Nothing to complain of. I have been out to Streatham
+since I saw you last, but I did not call at the house. It is a
+very sweet little problem, and I would not have missed it for a
+good deal. However, I must not sit gossiping here, but must get
+these disreputable clothes off and return to my highly
+respectable self."
+
+I could see by his manner that he had stronger reasons for
+satisfaction than his words alone would imply. His eyes twinkled,
+and there was even a touch of colour upon his sallow cheeks. He
+hastened upstairs, and a few minutes later I heard the slam of
+the hall door, which told me that he was off once more upon his
+congenial hunt.
+
+I waited until midnight, but there was no sign of his return, so
+I retired to my room. It was no uncommon thing for him to be away
+for days and nights on end when he was hot upon a scent, so that
+his lateness caused me no surprise. I do not know at what hour he
+came in, but when I came down to breakfast in the morning there
+he was with a cup of coffee in one hand and the paper in the
+other, as fresh and trim as possible.
+
+"You will excuse my beginning without you, Watson," said he, "but
+you remember that our client has rather an early appointment this
+morning."
+
+"Why, it is after nine now," I answered. "I should not be
+surprised if that were he. I thought I heard a ring."
+
+It was, indeed, our friend the financier. I was shocked by the
+change which had come over him, for his face which was naturally
+of a broad and massive mould, was now pinched and fallen in,
+while his hair seemed to me at least a shade whiter. He entered
+with a weariness and lethargy which was even more painful than
+his violence of the morning before, and he dropped heavily into
+the armchair which I pushed forward for him.
+
+"I do not know what I have done to be so severely tried," said
+he. "Only two days ago I was a happy and prosperous man, without
+a care in the world. Now I am left to a lonely and dishonoured
+age. One sorrow comes close upon the heels of another. My niece,
+Mary, has deserted me."
+
+"Deserted you?"
+
+"Yes. Her bed this morning had not been slept in, her room was
+empty, and a note for me lay upon the hall table. I had said to
+her last night, in sorrow and not in anger, that if she had
+married my boy all might have been well with him. Perhaps it was
+thoughtless of me to say so. It is to that remark that she refers
+in this note:
+
+"'MY DEAREST UNCLE:--I feel that I have brought trouble upon you,
+and that if I had acted differently this terrible misfortune
+might never have occurred. I cannot, with this thought in my
+mind, ever again be happy under your roof, and I feel that I must
+leave you forever. Do not worry about my future, for that is
+provided for; and, above all, do not search for me, for it will
+be fruitless labour and an ill-service to me. In life or in
+death, I am ever your loving,--MARY.'
+
+"What could she mean by that note, Mr. Holmes? Do you think it
+points to suicide?"
+
+"No, no, nothing of the kind. It is perhaps the best possible
+solution. I trust, Mr. Holder, that you are nearing the end of
+your troubles."
+
+"Ha! You say so! You have heard something, Mr. Holmes; you have
+learned something! Where are the gems?"
+
+"You would not think 1000 pounds apiece an excessive sum for
+them?"
+
+"I would pay ten."
+
+"That would be unnecessary. Three thousand will cover the matter.
+And there is a little reward, I fancy. Have you your check-book?
+Here is a pen. Better make it out for 4000 pounds."
+
+With a dazed face the banker made out the required check. Holmes
+walked over to his desk, took out a little triangular piece of
+gold with three gems in it, and threw it down upon the table.
+
+With a shriek of joy our client clutched it up.
+
+"You have it!" he gasped. "I am saved! I am saved!"
+
+The reaction of joy was as passionate as his grief had been, and
+he hugged his recovered gems to his bosom.
+
+"There is one other thing you owe, Mr. Holder," said Sherlock
+Holmes rather sternly.
+
+"Owe!" He caught up a pen. "Name the sum, and I will pay it."
+
+"No, the debt is not to me. You owe a very humble apology to that
+noble lad, your son, who has carried himself in this matter as I
+should be proud to see my own son do, should I ever chance to
+have one."
+
+"Then it was not Arthur who took them?"
+
+"I told you yesterday, and I repeat to-day, that it was not."
+
+"You are sure of it! Then let us hurry to him at once to let him
+know that the truth is known."
+
+"He knows it already. When I had cleared it all up I had an
+interview with him, and finding that he would not tell me the
+story, I told it to him, on which he had to confess that I was
+right and to add the very few details which were not yet quite
+clear to me. Your news of this morning, however, may open his
+lips."
+
+"For heaven's sake, tell me, then, what is this extraordinary
+mystery!"
+
+"I will do so, and I will show you the steps by which I reached
+it. And let me say to you, first, that which it is hardest for me
+to say and for you to hear: there has been an understanding
+between Sir George Burnwell and your niece Mary. They have now
+fled together."
+
+"My Mary? Impossible!"
+
+"It is unfortunately more than possible; it is certain. Neither
+you nor your son knew the true character of this man when you
+admitted him into your family circle. He is one of the most
+dangerous men in England--a ruined gambler, an absolutely
+desperate villain, a man without heart or conscience. Your niece
+knew nothing of such men. When he breathed his vows to her, as he
+had done to a hundred before her, she flattered herself that she
+alone had touched his heart. The devil knows best what he said,
+but at least she became his tool and was in the habit of seeing
+him nearly every evening."
+
+"I cannot, and I will not, believe it!" cried the banker with an
+ashen face.
+
+"I will tell you, then, what occurred in your house last night.
+Your niece, when you had, as she thought, gone to your room,
+slipped down and talked to her lover through the window which
+leads into the stable lane. His footmarks had pressed right
+through the snow, so long had he stood there. She told him of the
+coronet. His wicked lust for gold kindled at the news, and he
+bent her to his will. I have no doubt that she loved you, but
+there are women in whom the love of a lover extinguishes all
+other loves, and I think that she must have been one. She had
+hardly listened to his instructions when she saw you coming
+downstairs, on which she closed the window rapidly and told you
+about one of the servants' escapade with her wooden-legged lover,
+which was all perfectly true.
+
+"Your boy, Arthur, went to bed after his interview with you but
+he slept badly on account of his uneasiness about his club debts.
+In the middle of the night he heard a soft tread pass his door,
+so he rose and, looking out, was surprised to see his cousin
+walking very stealthily along the passage until she disappeared
+into your dressing-room. Petrified with astonishment, the lad
+slipped on some clothes and waited there in the dark to see what
+would come of this strange affair. Presently she emerged from the
+room again, and in the light of the passage-lamp your son saw
+that she carried the precious coronet in her hands. She passed
+down the stairs, and he, thrilling with horror, ran along and
+slipped behind the curtain near your door, whence he could see
+what passed in the hall beneath. He saw her stealthily open the
+window, hand out the coronet to someone in the gloom, and then
+closing it once more hurry back to her room, passing quite close
+to where he stood hid behind the curtain.
+
+"As long as she was on the scene he could not take any action
+without a horrible exposure of the woman whom he loved. But the
+instant that she was gone he realised how crushing a misfortune
+this would be for you, and how all-important it was to set it
+right. He rushed down, just as he was, in his bare feet, opened
+the window, sprang out into the snow, and ran down the lane,
+where he could see a dark figure in the moonlight. Sir George
+Burnwell tried to get away, but Arthur caught him, and there was
+a struggle between them, your lad tugging at one side of the
+coronet, and his opponent at the other. In the scuffle, your son
+struck Sir George and cut him over the eye. Then something
+suddenly snapped, and your son, finding that he had the coronet
+in his hands, rushed back, closed the window, ascended to your
+room, and had just observed that the coronet had been twisted in
+the struggle and was endeavouring to straighten it when you
+appeared upon the scene."
+
+"Is it possible?" gasped the banker.
+
+"You then roused his anger by calling him names at a moment when
+he felt that he had deserved your warmest thanks. He could not
+explain the true state of affairs without betraying one who
+certainly deserved little enough consideration at his hands. He
+took the more chivalrous view, however, and preserved her
+secret."
+
+"And that was why she shrieked and fainted when she saw the
+coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have
+been! And his asking to be allowed to go out for five minutes!
+The dear fellow wanted to see if the missing piece were at the
+scene of the struggle. How cruelly I have misjudged him!"
+
+"When I arrived at the house," continued Holmes, "I at once went
+very carefully round it to observe if there were any traces in
+the snow which might help me. I knew that none had fallen since
+the evening before, and also that there had been a strong frost
+to preserve impressions. I passed along the tradesmen's path, but
+found it all trampled down and indistinguishable. Just beyond it,
+however, at the far side of the kitchen door, a woman had stood
+and talked with a man, whose round impressions on one side showed
+that he had a wooden leg. I could even tell that they had been
+disturbed, for the woman had run back swiftly to the door, as was
+shown by the deep toe and light heel marks, while Wooden-leg had
+waited a little, and then had gone away. I thought at the time
+that this might be the maid and her sweetheart, of whom you had
+already spoken to me, and inquiry showed it was so. I passed
+round the garden without seeing anything more than random tracks,
+which I took to be the police; but when I got into the stable
+lane a very long and complex story was written in the snow in
+front of me.
+
+"There was a double line of tracks of a booted man, and a second
+double line which I saw with delight belonged to a man with naked
+feet. I was at once convinced from what you had told me that the
+latter was your son. The first had walked both ways, but the
+other had run swiftly, and as his tread was marked in places over
+the depression of the boot, it was obvious that he had passed
+after the other. I followed them up and found they led to the
+hall window, where Boots had worn all the snow away while
+waiting. Then I walked to the other end, which was a hundred
+yards or more down the lane. I saw where Boots had faced round,
+where the snow was cut up as though there had been a struggle,
+and, finally, where a few drops of blood had fallen, to show me
+that I was not mistaken. Boots had then run down the lane, and
+another little smudge of blood showed that it was he who had been
+hurt. When he came to the highroad at the other end, I found that
+the pavement had been cleared, so there was an end to that clue.
+
+"On entering the house, however, I examined, as you remember, the
+sill and framework of the hall window with my lens, and I could
+at once see that someone had passed out. I could distinguish the
+outline of an instep where the wet foot had been placed in coming
+in. I was then beginning to be able to form an opinion as to what
+had occurred. A man had waited outside the window; someone had
+brought the gems; the deed had been overseen by your son; he had
+pursued the thief; had struggled with him; they had each tugged
+at the coronet, their united strength causing injuries which
+neither alone could have effected. He had returned with the
+prize, but had left a fragment in the grasp of his opponent. So
+far I was clear. The question now was, who was the man and who
+was it brought him the coronet?
+
+"It is an old maxim of mine that when you have excluded the
+impossible, whatever remains, however improbable, must be the
+truth. Now, I knew that it was not you who had brought it down,
+so there only remained your niece and the maids. But if it were
+the maids, why should your son allow himself to be accused in
+their place? There could be no possible reason. As he loved his
+cousin, however, there was an excellent explanation why he should
+retain her secret--the more so as the secret was a disgraceful
+one. When I remembered that you had seen her at that window, and
+how she had fainted on seeing the coronet again, my conjecture
+became a certainty.
+
+"And who could it be who was her confederate? A lover evidently,
+for who else could outweigh the love and gratitude which she must
+feel to you? I knew that you went out little, and that your
+circle of friends was a very limited one. But among them was Sir
+George Burnwell. I had heard of him before as being a man of evil
+reputation among women. It must have been he who wore those boots
+and retained the missing gems. Even though he knew that Arthur
+had discovered him, he might still flatter himself that he was
+safe, for the lad could not say a word without compromising his
+own family.
+
+"Well, your own good sense will suggest what measures I took
+next. I went in the shape of a loafer to Sir George's house,
+managed to pick up an acquaintance with his valet, learned that
+his master had cut his head the night before, and, finally, at
+the expense of six shillings, made all sure by buying a pair of
+his cast-off shoes. With these I journeyed down to Streatham and
+saw that they exactly fitted the tracks."
+
+"I saw an ill-dressed vagabond in the lane yesterday evening,"
+said Mr. Holder.
+
+"Precisely. It was I. I found that I had my man, so I came home
+and changed my clothes. It was a delicate part which I had to
+play then, for I saw that a prosecution must be avoided to avert
+scandal, and I knew that so astute a villain would see that our
+hands were tied in the matter. I went and saw him. At first, of
+course, he denied everything. But when I gave him every
+particular that had occurred, he tried to bluster and took down a
+life-preserver from the wall. I knew my man, however, and I
+clapped a pistol to his head before he could strike. Then he
+became a little more reasonable. I told him that we would give
+him a price for the stones he held--1000 pounds apiece. That
+brought out the first signs of grief that he had shown. 'Why,
+dash it all!' said he, 'I've let them go at six hundred for the
+three!' I soon managed to get the address of the receiver who had
+them, on promising him that there would be no prosecution. Off I
+set to him, and after much chaffering I got our stones at 1000
+pounds apiece. Then I looked in upon your son, told him that all
+was right, and eventually got to my bed about two o'clock, after
+what I may call a really hard day's work."
+
+"A day which has saved England from a great public scandal," said
+the banker, rising. "Sir, I cannot find words to thank you, but
+you shall not find me ungrateful for what you have done. Your
+skill has indeed exceeded all that I have heard of it. And now I
+must fly to my dear boy to apologise to him for the wrong which I
+have done him. As to what you tell me of poor Mary, it goes to my
+very heart. Not even your skill can inform me where she is now."
+
+"I think that we may safely say," returned Holmes, "that she is
+wherever Sir George Burnwell is. It is equally certain, too, that
+whatever her sins are, they will soon receive a more than
+sufficient punishment."
+
+
+
+XII. THE ADVENTURE OF THE COPPER BEECHES
+
+"To the man who loves art for its own sake," remarked Sherlock
+Holmes, tossing aside the advertisement sheet of the Daily
+Telegraph, "it is frequently in its least important and lowliest
+manifestations that the keenest pleasure is to be derived. It is
+pleasant to me to observe, Watson, that you have so far grasped
+this truth that in these little records of our cases which you
+have been good enough to draw up, and, I am bound to say,
+occasionally to embellish, you have given prominence not so much
+to the many causes célèbres and sensational trials in which I
+have figured but rather to those incidents which may have been
+trivial in themselves, but which have given room for those
+faculties of deduction and of logical synthesis which I have made
+my special province."
+
+"And yet," said I, smiling, "I cannot quite hold myself absolved
+from the charge of sensationalism which has been urged against my
+records."
+
+"You have erred, perhaps," he observed, taking up a glowing
+cinder with the tongs and lighting with it the long cherry-wood
+pipe which was wont to replace his clay when he was in a
+disputatious rather than a meditative mood--"you have erred
+perhaps in attempting to put colour and life into each of your
+statements instead of confining yourself to the task of placing
+upon record that severe reasoning from cause to effect which is
+really the only notable feature about the thing."
+
+"It seems to me that I have done you full justice in the matter,"
+I remarked with some coldness, for I was repelled by the egotism
+which I had more than once observed to be a strong factor in my
+friend's singular character.
+
+"No, it is not selfishness or conceit," said he, answering, as
+was his wont, my thoughts rather than my words. "If I claim full
+justice for my art, it is because it is an impersonal thing--a
+thing beyond myself. Crime is common. Logic is rare. Therefore it
+is upon the logic rather than upon the crime that you should
+dwell. You have degraded what should have been a course of
+lectures into a series of tales."
+
+It was a cold morning of the early spring, and we sat after
+breakfast on either side of a cheery fire in the old room at
+Baker Street. A thick fog rolled down between the lines of
+dun-coloured houses, and the opposing windows loomed like dark,
+shapeless blurs through the heavy yellow wreaths. Our gas was lit
+and shone on the white cloth and glimmer of china and metal, for
+the table had not been cleared yet. Sherlock Holmes had been
+silent all the morning, dipping continuously into the
+advertisement columns of a succession of papers until at last,
+having apparently given up his search, he had emerged in no very
+sweet temper to lecture me upon my literary shortcomings.
+
+"At the same time," he remarked after a pause, during which he
+had sat puffing at his long pipe and gazing down into the fire,
+"you can hardly be open to a charge of sensationalism, for out of
+these cases which you have been so kind as to interest yourself
+in, a fair proportion do not treat of crime, in its legal sense,
+at all. The small matter in which I endeavoured to help the King
+of Bohemia, the singular experience of Miss Mary Sutherland, the
+problem connected with the man with the twisted lip, and the
+incident of the noble bachelor, were all matters which are
+outside the pale of the law. But in avoiding the sensational, I
+fear that you may have bordered on the trivial."
+
+"The end may have been so," I answered, "but the methods I hold
+to have been novel and of interest."
+
+"Pshaw, my dear fellow, what do the public, the great unobservant
+public, who could hardly tell a weaver by his tooth or a
+compositor by his left thumb, care about the finer shades of
+analysis and deduction! But, indeed, if you are trivial, I cannot
+blame you, for the days of the great cases are past. Man, or at
+least criminal man, has lost all enterprise and originality. As
+to my own little practice, it seems to be degenerating into an
+agency for recovering lost lead pencils and giving advice to
+young ladies from boarding-schools. I think that I have touched
+bottom at last, however. This note I had this morning marks my
+zero-point, I fancy. Read it!" He tossed a crumpled letter across
+to me.
+
+It was dated from Montague Place upon the preceding evening, and
+ran thus:
+
+"DEAR MR. HOLMES:--I am very anxious to consult you as to whether
+I should or should not accept a situation which has been offered
+to me as governess. I shall call at half-past ten to-morrow if I
+do not inconvenience you. Yours faithfully,
+ "VIOLET HUNTER."
+
+"Do you know the young lady?" I asked.
+
+"Not I."
+
+"It is half-past ten now."
+
+"Yes, and I have no doubt that is her ring."
+
+"It may turn out to be of more interest than you think. You
+remember that the affair of the blue carbuncle, which appeared to
+be a mere whim at first, developed into a serious investigation.
+It may be so in this case, also."
+
+"Well, let us hope so. But our doubts will very soon be solved,
+for here, unless I am much mistaken, is the person in question."
+
+As he spoke the door opened and a young lady entered the room.
+She was plainly but neatly dressed, with a bright, quick face,
+freckled like a plover's egg, and with the brisk manner of a
+woman who has had her own way to make in the world.
+
+"You will excuse my troubling you, I am sure," said she, as my
+companion rose to greet her, "but I have had a very strange
+experience, and as I have no parents or relations of any sort
+from whom I could ask advice, I thought that perhaps you would be
+kind enough to tell me what I should do."
+
+"Pray take a seat, Miss Hunter. I shall be happy to do anything
+that I can to serve you."
+
+I could see that Holmes was favourably impressed by the manner
+and speech of his new client. He looked her over in his searching
+fashion, and then composed himself, with his lids drooping and
+his finger-tips together, to listen to her story.
+
+"I have been a governess for five years," said she, "in the
+family of Colonel Spence Munro, but two months ago the colonel
+received an appointment at Halifax, in Nova Scotia, and took his
+children over to America with him, so that I found myself without
+a situation. I advertised, and I answered advertisements, but
+without success. At last the little money which I had saved began
+to run short, and I was at my wit's end as to what I should do.
+
+"There is a well-known agency for governesses in the West End
+called Westaway's, and there I used to call about once a week in
+order to see whether anything had turned up which might suit me.
+Westaway was the name of the founder of the business, but it is
+really managed by Miss Stoper. She sits in her own little office,
+and the ladies who are seeking employment wait in an anteroom,
+and are then shown in one by one, when she consults her ledgers
+and sees whether she has anything which would suit them.
+
+"Well, when I called last week I was shown into the little office
+as usual, but I found that Miss Stoper was not alone. A
+prodigiously stout man with a very smiling face and a great heavy
+chin which rolled down in fold upon fold over his throat sat at
+her elbow with a pair of glasses on his nose, looking very
+earnestly at the ladies who entered. As I came in he gave quite a
+jump in his chair and turned quickly to Miss Stoper.
+
+"'That will do,' said he; 'I could not ask for anything better.
+Capital! capital!' He seemed quite enthusiastic and rubbed his
+hands together in the most genial fashion. He was such a
+comfortable-looking man that it was quite a pleasure to look at
+him.
+
+"'You are looking for a situation, miss?' he asked.
+
+"'Yes, sir.'
+
+"'As governess?'
+
+"'Yes, sir.'
+
+"'And what salary do you ask?'
+
+"'I had 4 pounds a month in my last place with Colonel Spence
+Munro.'
+
+"'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his
+fat hands out into the air like a man who is in a boiling
+passion. 'How could anyone offer so pitiful a sum to a lady with
+such attractions and accomplishments?'
+
+"'My accomplishments, sir, may be less than you imagine,' said I.
+'A little French, a little German, music, and drawing--'
+
+"'Tut, tut!' he cried. 'This is all quite beside the question.
+The point is, have you or have you not the bearing and deportment
+of a lady? There it is in a nutshell. If you have not, you are
+not fitted for the rearing of a child who may some day play a
+considerable part in the history of the country. But if you have
+why, then, how could any gentleman ask you to condescend to
+accept anything under the three figures? Your salary with me,
+madam, would commence at 100 pounds a year.'
+
+"You may imagine, Mr. Holmes, that to me, destitute as I was,
+such an offer seemed almost too good to be true. The gentleman,
+however, seeing perhaps the look of incredulity upon my face,
+opened a pocket-book and took out a note.
+
+"'It is also my custom,' said he, smiling in the most pleasant
+fashion until his eyes were just two little shining slits amid
+the white creases of his face, 'to advance to my young ladies
+half their salary beforehand, so that they may meet any little
+expenses of their journey and their wardrobe.'
+
+"It seemed to me that I had never met so fascinating and so
+thoughtful a man. As I was already in debt to my tradesmen, the
+advance was a great convenience, and yet there was something
+unnatural about the whole transaction which made me wish to know
+a little more before I quite committed myself.
+
+"'May I ask where you live, sir?' said I.
+
+"'Hampshire. Charming rural place. The Copper Beeches, five miles
+on the far side of Winchester. It is the most lovely country, my
+dear young lady, and the dearest old country-house.'
+
+"'And my duties, sir? I should be glad to know what they would
+be.'
+
+"'One child--one dear little romper just six years old. Oh, if
+you could see him killing cockroaches with a slipper! Smack!
+smack! smack! Three gone before you could wink!' He leaned back
+in his chair and laughed his eyes into his head again.
+
+"I was a little startled at the nature of the child's amusement,
+but the father's laughter made me think that perhaps he was
+joking.
+
+"'My sole duties, then,' I asked, 'are to take charge of a single
+child?'
+
+"'No, no, not the sole, not the sole, my dear young lady,' he
+cried. 'Your duty would be, as I am sure your good sense would
+suggest, to obey any little commands my wife might give, provided
+always that they were such commands as a lady might with
+propriety obey. You see no difficulty, heh?'
+
+"'I should be happy to make myself useful.'
+
+"'Quite so. In dress now, for example. We are faddy people, you
+know--faddy but kind-hearted. If you were asked to wear any dress
+which we might give you, you would not object to our little whim.
+Heh?'
+
+"'No,' said I, considerably astonished at his words.
+
+"'Or to sit here, or sit there, that would not be offensive to
+you?'
+
+"'Oh, no.'
+
+"'Or to cut your hair quite short before you come to us?'
+
+"I could hardly believe my ears. As you may observe, Mr. Holmes,
+my hair is somewhat luxuriant, and of a rather peculiar tint of
+chestnut. It has been considered artistic. I could not dream of
+sacrificing it in this offhand fashion.
+
+"'I am afraid that that is quite impossible,' said I. He had been
+watching me eagerly out of his small eyes, and I could see a
+shadow pass over his face as I spoke.
+
+"'I am afraid that it is quite essential,' said he. 'It is a
+little fancy of my wife's, and ladies' fancies, you know, madam,
+ladies' fancies must be consulted. And so you won't cut your
+hair?'
+
+"'No, sir, I really could not,' I answered firmly.
+
+"'Ah, very well; then that quite settles the matter. It is a
+pity, because in other respects you would really have done very
+nicely. In that case, Miss Stoper, I had best inspect a few more
+of your young ladies.'
+
+"The manageress had sat all this while busy with her papers
+without a word to either of us, but she glanced at me now with so
+much annoyance upon her face that I could not help suspecting
+that she had lost a handsome commission through my refusal.
+
+"'Do you desire your name to be kept upon the books?' she asked.
+
+"'If you please, Miss Stoper.'
+
+"'Well, really, it seems rather useless, since you refuse the
+most excellent offers in this fashion,' said she sharply. 'You
+can hardly expect us to exert ourselves to find another such
+opening for you. Good-day to you, Miss Hunter.' She struck a gong
+upon the table, and I was shown out by the page.
+
+"Well, Mr. Holmes, when I got back to my lodgings and found
+little enough in the cupboard, and two or three bills upon the
+table, I began to ask myself whether I had not done a very
+foolish thing. After all, if these people had strange fads and
+expected obedience on the most extraordinary matters, they were
+at least ready to pay for their eccentricity. Very few
+governesses in England are getting 100 pounds a year. Besides,
+what use was my hair to me? Many people are improved by wearing
+it short and perhaps I should be among the number. Next day I was
+inclined to think that I had made a mistake, and by the day after
+I was sure of it. I had almost overcome my pride so far as to go
+back to the agency and inquire whether the place was still open
+when I received this letter from the gentleman himself. I have it
+here and I will read it to you:
+
+ "'The Copper Beeches, near Winchester.
+"'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your
+address, and I write from here to ask you whether you have
+reconsidered your decision. My wife is very anxious that you
+should come, for she has been much attracted by my description of
+you. We are willing to give 30 pounds a quarter, or 120 pounds a
+year, so as to recompense you for any little inconvenience which
+our fads may cause you. They are not very exacting, after all. My
+wife is fond of a particular shade of electric blue and would
+like you to wear such a dress indoors in the morning. You need
+not, however, go to the expense of purchasing one, as we have one
+belonging to my dear daughter Alice (now in Philadelphia), which
+would, I should think, fit you very well. Then, as to sitting
+here or there, or amusing yourself in any manner indicated, that
+need cause you no inconvenience. As regards your hair, it is no
+doubt a pity, especially as I could not help remarking its beauty
+during our short interview, but I am afraid that I must remain
+firm upon this point, and I only hope that the increased salary
+may recompense you for the loss. Your duties, as far as the child
+is concerned, are very light. Now do try to come, and I shall
+meet you with the dog-cart at Winchester. Let me know your train.
+Yours faithfully, JEPHRO RUCASTLE.'
+
+"That is the letter which I have just received, Mr. Holmes, and
+my mind is made up that I will accept it. I thought, however,
+that before taking the final step I should like to submit the
+whole matter to your consideration."
+
+"Well, Miss Hunter, if your mind is made up, that settles the
+question," said Holmes, smiling.
+
+"But you would not advise me to refuse?"
+
+"I confess that it is not the situation which I should like to
+see a sister of mine apply for."
+
+"What is the meaning of it all, Mr. Holmes?"
+
+"Ah, I have no data. I cannot tell. Perhaps you have yourself
+formed some opinion?"
+
+"Well, there seems to me to be only one possible solution. Mr.
+Rucastle seemed to be a very kind, good-natured man. Is it not
+possible that his wife is a lunatic, that he desires to keep the
+matter quiet for fear she should be taken to an asylum, and that
+he humours her fancies in every way in order to prevent an
+outbreak?"
+
+"That is a possible solution--in fact, as matters stand, it is
+the most probable one. But in any case it does not seem to be a
+nice household for a young lady."
+
+"But the money, Mr. Holmes, the money!"
+
+"Well, yes, of course the pay is good--too good. That is what
+makes me uneasy. Why should they give you 120 pounds a year, when
+they could have their pick for 40 pounds? There must be some
+strong reason behind."
+
+"I thought that if I told you the circumstances you would
+understand afterwards if I wanted your help. I should feel so
+much stronger if I felt that you were at the back of me."
+
+"Oh, you may carry that feeling away with you. I assure you that
+your little problem promises to be the most interesting which has
+come my way for some months. There is something distinctly novel
+about some of the features. If you should find yourself in doubt
+or in danger--"
+
+"Danger! What danger do you foresee?"
+
+Holmes shook his head gravely. "It would cease to be a danger if
+we could define it," said he. "But at any time, day or night, a
+telegram would bring me down to your help."
+
+"That is enough." She rose briskly from her chair with the
+anxiety all swept from her face. "I shall go down to Hampshire
+quite easy in my mind now. I shall write to Mr. Rucastle at once,
+sacrifice my poor hair to-night, and start for Winchester
+to-morrow." With a few grateful words to Holmes she bade us both
+good-night and bustled off upon her way.
+
+"At least," said I as we heard her quick, firm steps descending
+the stairs, "she seems to be a young lady who is very well able
+to take care of herself."
+
+"And she would need to be," said Holmes gravely. "I am much
+mistaken if we do not hear from her before many days are past."
+
+It was not very long before my friend's prediction was fulfilled.
+A fortnight went by, during which I frequently found my thoughts
+turning in her direction and wondering what strange side-alley of
+human experience this lonely woman had strayed into. The unusual
+salary, the curious conditions, the light duties, all pointed to
+something abnormal, though whether a fad or a plot, or whether
+the man were a philanthropist or a villain, it was quite beyond
+my powers to determine. As to Holmes, I observed that he sat
+frequently for half an hour on end, with knitted brows and an
+abstracted air, but he swept the matter away with a wave of his
+hand when I mentioned it. "Data! data! data!" he cried
+impatiently. "I can't make bricks without clay." And yet he would
+always wind up by muttering that no sister of his should ever
+have accepted such a situation.
+
+The telegram which we eventually received came late one night
+just as I was thinking of turning in and Holmes was settling down
+to one of those all-night chemical researches which he frequently
+indulged in, when I would leave him stooping over a retort and a
+test-tube at night and find him in the same position when I came
+down to breakfast in the morning. He opened the yellow envelope,
+and then, glancing at the message, threw it across to me.
+
+"Just look up the trains in Bradshaw," said he, and turned back
+to his chemical studies.
+
+The summons was a brief and urgent one.
+
+"Please be at the Black Swan Hotel at Winchester at midday
+to-morrow," it said. "Do come! I am at my wit's end. HUNTER."
+
+"Will you come with me?" asked Holmes, glancing up.
+
+"I should wish to."
+
+"Just look it up, then."
+
+"There is a train at half-past nine," said I, glancing over my
+Bradshaw. "It is due at Winchester at 11:30."
+
+"That will do very nicely. Then perhaps I had better postpone my
+analysis of the acetones, as we may need to be at our best in the
+morning."
+
+By eleven o'clock the next day we were well upon our way to the
+old English capital. Holmes had been buried in the morning papers
+all the way down, but after we had passed the Hampshire border he
+threw them down and began to admire the scenery. It was an ideal
+spring day, a light blue sky, flecked with little fleecy white
+clouds drifting across from west to east. The sun was shining
+very brightly, and yet there was an exhilarating nip in the air,
+which set an edge to a man's energy. All over the countryside,
+away to the rolling hills around Aldershot, the little red and
+grey roofs of the farm-steadings peeped out from amid the light
+green of the new foliage.
+
+"Are they not fresh and beautiful?" I cried with all the
+enthusiasm of a man fresh from the fogs of Baker Street.
+
+But Holmes shook his head gravely.
+
+"Do you know, Watson," said he, "that it is one of the curses of
+a mind with a turn like mine that I must look at everything with
+reference to my own special subject. You look at these scattered
+houses, and you are impressed by their beauty. I look at them,
+and the only thought which comes to me is a feeling of their
+isolation and of the impunity with which crime may be committed
+there."
+
+"Good heavens!" I cried. "Who would associate crime with these
+dear old homesteads?"
+
+"They always fill me with a certain horror. It is my belief,
+Watson, founded upon my experience, that the lowest and vilest
+alleys in London do not present a more dreadful record of sin
+than does the smiling and beautiful countryside."
+
+"You horrify me!"
+
+"But the reason is very obvious. The pressure of public opinion
+can do in the town what the law cannot accomplish. There is no
+lane so vile that the scream of a tortured child, or the thud of
+a drunkard's blow, does not beget sympathy and indignation among
+the neighbours, and then the whole machinery of justice is ever
+so close that a word of complaint can set it going, and there is
+but a step between the crime and the dock. But look at these
+lonely houses, each in its own fields, filled for the most part
+with poor ignorant folk who know little of the law. Think of the
+deeds of hellish cruelty, the hidden wickedness which may go on,
+year in, year out, in such places, and none the wiser. Had this
+lady who appeals to us for help gone to live in Winchester, I
+should never have had a fear for her. It is the five miles of
+country which makes the danger. Still, it is clear that she is
+not personally threatened."
+
+"No. If she can come to Winchester to meet us she can get away."
+
+"Quite so. She has her freedom."
+
+"What CAN be the matter, then? Can you suggest no explanation?"
+
+"I have devised seven separate explanations, each of which would
+cover the facts as far as we know them. But which of these is
+correct can only be determined by the fresh information which we
+shall no doubt find waiting for us. Well, there is the tower of
+the cathedral, and we shall soon learn all that Miss Hunter has
+to tell."
+
+The Black Swan is an inn of repute in the High Street, at no
+distance from the station, and there we found the young lady
+waiting for us. She had engaged a sitting-room, and our lunch
+awaited us upon the table.
+
+"I am so delighted that you have come," she said earnestly. "It
+is so very kind of you both; but indeed I do not know what I
+should do. Your advice will be altogether invaluable to me."
+
+"Pray tell us what has happened to you."
+
+"I will do so, and I must be quick, for I have promised Mr.
+Rucastle to be back before three. I got his leave to come into
+town this morning, though he little knew for what purpose."
+
+"Let us have everything in its due order." Holmes thrust his long
+thin legs out towards the fire and composed himself to listen.
+
+"In the first place, I may say that I have met, on the whole,
+with no actual ill-treatment from Mr. and Mrs. Rucastle. It is
+only fair to them to say that. But I cannot understand them, and
+I am not easy in my mind about them."
+
+"What can you not understand?"
+
+"Their reasons for their conduct. But you shall have it all just
+as it occurred. When I came down, Mr. Rucastle met me here and
+drove me in his dog-cart to the Copper Beeches. It is, as he
+said, beautifully situated, but it is not beautiful in itself,
+for it is a large square block of a house, whitewashed, but all
+stained and streaked with damp and bad weather. There are grounds
+round it, woods on three sides, and on the fourth a field which
+slopes down to the Southampton highroad, which curves past about
+a hundred yards from the front door. This ground in front belongs
+to the house, but the woods all round are part of Lord
+Southerton's preserves. A clump of copper beeches immediately in
+front of the hall door has given its name to the place.
+
+"I was driven over by my employer, who was as amiable as ever,
+and was introduced by him that evening to his wife and the child.
+There was no truth, Mr. Holmes, in the conjecture which seemed to
+us to be probable in your rooms at Baker Street. Mrs. Rucastle is
+not mad. I found her to be a silent, pale-faced woman, much
+younger than her husband, not more than thirty, I should think,
+while he can hardly be less than forty-five. From their
+conversation I have gathered that they have been married about
+seven years, that he was a widower, and that his only child by
+the first wife was the daughter who has gone to Philadelphia. Mr.
+Rucastle told me in private that the reason why she had left them
+was that she had an unreasoning aversion to her stepmother. As
+the daughter could not have been less than twenty, I can quite
+imagine that her position must have been uncomfortable with her
+father's young wife.
+
+"Mrs. Rucastle seemed to me to be colourless in mind as well as
+in feature. She impressed me neither favourably nor the reverse.
+She was a nonentity. It was easy to see that she was passionately
+devoted both to her husband and to her little son. Her light grey
+eyes wandered continually from one to the other, noting every
+little want and forestalling it if possible. He was kind to her
+also in his bluff, boisterous fashion, and on the whole they
+seemed to be a happy couple. And yet she had some secret sorrow,
+this woman. She would often be lost in deep thought, with the
+saddest look upon her face. More than once I have surprised her
+in tears. I have thought sometimes that it was the disposition of
+her child which weighed upon her mind, for I have never met so
+utterly spoiled and so ill-natured a little creature. He is small
+for his age, with a head which is quite disproportionately large.
+His whole life appears to be spent in an alternation between
+savage fits of passion and gloomy intervals of sulking. Giving
+pain to any creature weaker than himself seems to be his one idea
+of amusement, and he shows quite remarkable talent in planning
+the capture of mice, little birds, and insects. But I would
+rather not talk about the creature, Mr. Holmes, and, indeed, he
+has little to do with my story."
+
+"I am glad of all details," remarked my friend, "whether they
+seem to you to be relevant or not."
+
+"I shall try not to miss anything of importance. The one
+unpleasant thing about the house, which struck me at once, was
+the appearance and conduct of the servants. There are only two, a
+man and his wife. Toller, for that is his name, is a rough,
+uncouth man, with grizzled hair and whiskers, and a perpetual
+smell of drink. Twice since I have been with them he has been
+quite drunk, and yet Mr. Rucastle seemed to take no notice of it.
+His wife is a very tall and strong woman with a sour face, as
+silent as Mrs. Rucastle and much less amiable. They are a most
+unpleasant couple, but fortunately I spend most of my time in the
+nursery and my own room, which are next to each other in one
+corner of the building.
+
+"For two days after my arrival at the Copper Beeches my life was
+very quiet; on the third, Mrs. Rucastle came down just after
+breakfast and whispered something to her husband.
+
+"'Oh, yes,' said he, turning to me, 'we are very much obliged to
+you, Miss Hunter, for falling in with our whims so far as to cut
+your hair. I assure you that it has not detracted in the tiniest
+iota from your appearance. We shall now see how the electric-blue
+dress will become you. You will find it laid out upon the bed in
+your room, and if you would be so good as to put it on we should
+both be extremely obliged.'
+
+"The dress which I found waiting for me was of a peculiar shade
+of blue. It was of excellent material, a sort of beige, but it
+bore unmistakable signs of having been worn before. It could not
+have been a better fit if I had been measured for it. Both Mr.
+and Mrs. Rucastle expressed a delight at the look of it, which
+seemed quite exaggerated in its vehemence. They were waiting for
+me in the drawing-room, which is a very large room, stretching
+along the entire front of the house, with three long windows
+reaching down to the floor. A chair had been placed close to the
+central window, with its back turned towards it. In this I was
+asked to sit, and then Mr. Rucastle, walking up and down on the
+other side of the room, began to tell me a series of the funniest
+stories that I have ever listened to. You cannot imagine how
+comical he was, and I laughed until I was quite weary. Mrs.
+Rucastle, however, who has evidently no sense of humour, never so
+much as smiled, but sat with her hands in her lap, and a sad,
+anxious look upon her face. After an hour or so, Mr. Rucastle
+suddenly remarked that it was time to commence the duties of the
+day, and that I might change my dress and go to little Edward in
+the nursery.
+
+"Two days later this same performance was gone through under
+exactly similar circumstances. Again I changed my dress, again I
+sat in the window, and again I laughed very heartily at the funny
+stories of which my employer had an immense répertoire, and which
+he told inimitably. Then he handed me a yellow-backed novel, and
+moving my chair a little sideways, that my own shadow might not
+fall upon the page, he begged me to read aloud to him. I read for
+about ten minutes, beginning in the heart of a chapter, and then
+suddenly, in the middle of a sentence, he ordered me to cease and
+to change my dress.
+
+"You can easily imagine, Mr. Holmes, how curious I became as to
+what the meaning of this extraordinary performance could possibly
+be. They were always very careful, I observed, to turn my face
+away from the window, so that I became consumed with the desire
+to see what was going on behind my back. At first it seemed to be
+impossible, but I soon devised a means. My hand-mirror had been
+broken, so a happy thought seized me, and I concealed a piece of
+the glass in my handkerchief. On the next occasion, in the midst
+of my laughter, I put my handkerchief up to my eyes, and was able
+with a little management to see all that there was behind me. I
+confess that I was disappointed. There was nothing. At least that
+was my first impression. At the second glance, however, I
+perceived that there was a man standing in the Southampton Road,
+a small bearded man in a grey suit, who seemed to be looking in
+my direction. The road is an important highway, and there are
+usually people there. This man, however, was leaning against the
+railings which bordered our field and was looking earnestly up. I
+lowered my handkerchief and glanced at Mrs. Rucastle to find her
+eyes fixed upon me with a most searching gaze. She said nothing,
+but I am convinced that she had divined that I had a mirror in my
+hand and had seen what was behind me. She rose at once.
+
+"'Jephro,' said she, 'there is an impertinent fellow upon the
+road there who stares up at Miss Hunter.'
+
+"'No friend of yours, Miss Hunter?' he asked.
+
+"'No, I know no one in these parts.'
+
+"'Dear me! How very impertinent! Kindly turn round and motion to
+him to go away.'
+
+"'Surely it would be better to take no notice.'
+
+"'No, no, we should have him loitering here always. Kindly turn
+round and wave him away like that.'
+
+"I did as I was told, and at the same instant Mrs. Rucastle drew
+down the blind. That was a week ago, and from that time I have
+not sat again in the window, nor have I worn the blue dress, nor
+seen the man in the road."
+
+"Pray continue," said Holmes. "Your narrative promises to be a
+most interesting one."
+
+"You will find it rather disconnected, I fear, and there may
+prove to be little relation between the different incidents of
+which I speak. On the very first day that I was at the Copper
+Beeches, Mr. Rucastle took me to a small outhouse which stands
+near the kitchen door. As we approached it I heard the sharp
+rattling of a chain, and the sound as of a large animal moving
+about.
+
+"'Look in here!' said Mr. Rucastle, showing me a slit between two
+planks. 'Is he not a beauty?'
+
+"I looked through and was conscious of two glowing eyes, and of a
+vague figure huddled up in the darkness.
+
+"'Don't be frightened,' said my employer, laughing at the start
+which I had given. 'It's only Carlo, my mastiff. I call him mine,
+but really old Toller, my groom, is the only man who can do
+anything with him. We feed him once a day, and not too much then,
+so that he is always as keen as mustard. Toller lets him loose
+every night, and God help the trespasser whom he lays his fangs
+upon. For goodness' sake don't you ever on any pretext set your
+foot over the threshold at night, for it's as much as your life
+is worth.'
+
+"The warning was no idle one, for two nights later I happened to
+look out of my bedroom window about two o'clock in the morning.
+It was a beautiful moonlight night, and the lawn in front of the
+house was silvered over and almost as bright as day. I was
+standing, rapt in the peaceful beauty of the scene, when I was
+aware that something was moving under the shadow of the copper
+beeches. As it emerged into the moonshine I saw what it was. It
+was a giant dog, as large as a calf, tawny tinted, with hanging
+jowl, black muzzle, and huge projecting bones. It walked slowly
+across the lawn and vanished into the shadow upon the other side.
+That dreadful sentinel sent a chill to my heart which I do not
+think that any burglar could have done.
+
+"And now I have a very strange experience to tell you. I had, as
+you know, cut off my hair in London, and I had placed it in a
+great coil at the bottom of my trunk. One evening, after the
+child was in bed, I began to amuse myself by examining the
+furniture of my room and by rearranging my own little things.
+There was an old chest of drawers in the room, the two upper ones
+empty and open, the lower one locked. I had filled the first two
+with my linen, and as I had still much to pack away I was
+naturally annoyed at not having the use of the third drawer. It
+struck me that it might have been fastened by a mere oversight,
+so I took out my bunch of keys and tried to open it. The very
+first key fitted to perfection, and I drew the drawer open. There
+was only one thing in it, but I am sure that you would never
+guess what it was. It was my coil of hair.
+
+"I took it up and examined it. It was of the same peculiar tint,
+and the same thickness. But then the impossibility of the thing
+obtruded itself upon me. How could my hair have been locked in
+the drawer? With trembling hands I undid my trunk, turned out the
+contents, and drew from the bottom my own hair. I laid the two
+tresses together, and I assure you that they were identical. Was
+it not extraordinary? Puzzle as I would, I could make nothing at
+all of what it meant. I returned the strange hair to the drawer,
+and I said nothing of the matter to the Rucastles as I felt that
+I had put myself in the wrong by opening a drawer which they had
+locked.
+
+"I am naturally observant, as you may have remarked, Mr. Holmes,
+and I soon had a pretty good plan of the whole house in my head.
+There was one wing, however, which appeared not to be inhabited
+at all. A door which faced that which led into the quarters of
+the Tollers opened into this suite, but it was invariably locked.
+One day, however, as I ascended the stair, I met Mr. Rucastle
+coming out through this door, his keys in his hand, and a look on
+his face which made him a very different person to the round,
+jovial man to whom I was accustomed. His cheeks were red, his
+brow was all crinkled with anger, and the veins stood out at his
+temples with passion. He locked the door and hurried past me
+without a word or a look.
+
+"This aroused my curiosity, so when I went out for a walk in the
+grounds with my charge, I strolled round to the side from which I
+could see the windows of this part of the house. There were four
+of them in a row, three of which were simply dirty, while the
+fourth was shuttered up. They were evidently all deserted. As I
+strolled up and down, glancing at them occasionally, Mr. Rucastle
+came out to me, looking as merry and jovial as ever.
+
+"'Ah!' said he, 'you must not think me rude if I passed you
+without a word, my dear young lady. I was preoccupied with
+business matters.'
+
+"I assured him that I was not offended. 'By the way,' said I,
+'you seem to have quite a suite of spare rooms up there, and one
+of them has the shutters up.'
+
+"He looked surprised and, as it seemed to me, a little startled
+at my remark.
+
+"'Photography is one of my hobbies,' said he. 'I have made my
+dark room up there. But, dear me! what an observant young lady we
+have come upon. Who would have believed it? Who would have ever
+believed it?' He spoke in a jesting tone, but there was no jest
+in his eyes as he looked at me. I read suspicion there and
+annoyance, but no jest.
+
+"Well, Mr. Holmes, from the moment that I understood that there
+was something about that suite of rooms which I was not to know,
+I was all on fire to go over them. It was not mere curiosity,
+though I have my share of that. It was more a feeling of duty--a
+feeling that some good might come from my penetrating to this
+place. They talk of woman's instinct; perhaps it was woman's
+instinct which gave me that feeling. At any rate, it was there,
+and I was keenly on the lookout for any chance to pass the
+forbidden door.
+
+"It was only yesterday that the chance came. I may tell you that,
+besides Mr. Rucastle, both Toller and his wife find something to
+do in these deserted rooms, and I once saw him carrying a large
+black linen bag with him through the door. Recently he has been
+drinking hard, and yesterday evening he was very drunk; and when
+I came upstairs there was the key in the door. I have no doubt at
+all that he had left it there. Mr. and Mrs. Rucastle were both
+downstairs, and the child was with them, so that I had an
+admirable opportunity. I turned the key gently in the lock,
+opened the door, and slipped through.
+
+"There was a little passage in front of me, unpapered and
+uncarpeted, which turned at a right angle at the farther end.
+Round this corner were three doors in a line, the first and third
+of which were open. They each led into an empty room, dusty and
+cheerless, with two windows in the one and one in the other, so
+thick with dirt that the evening light glimmered dimly through
+them. The centre door was closed, and across the outside of it
+had been fastened one of the broad bars of an iron bed, padlocked
+at one end to a ring in the wall, and fastened at the other with
+stout cord. The door itself was locked as well, and the key was
+not there. This barricaded door corresponded clearly with the
+shuttered window outside, and yet I could see by the glimmer from
+beneath it that the room was not in darkness. Evidently there was
+a skylight which let in light from above. As I stood in the
+passage gazing at the sinister door and wondering what secret it
+might veil, I suddenly heard the sound of steps within the room
+and saw a shadow pass backward and forward against the little
+slit of dim light which shone out from under the door. A mad,
+unreasoning terror rose up in me at the sight, Mr. Holmes. My
+overstrung nerves failed me suddenly, and I turned and ran--ran
+as though some dreadful hand were behind me clutching at the
+skirt of my dress. I rushed down the passage, through the door,
+and straight into the arms of Mr. Rucastle, who was waiting
+outside.
+
+"'So,' said he, smiling, 'it was you, then. I thought that it
+must be when I saw the door open.'
+
+"'Oh, I am so frightened!' I panted.
+
+"'My dear young lady! my dear young lady!'--you cannot think how
+caressing and soothing his manner was--'and what has frightened
+you, my dear young lady?'
+
+"But his voice was just a little too coaxing. He overdid it. I
+was keenly on my guard against him.
+
+"'I was foolish enough to go into the empty wing,' I answered.
+'But it is so lonely and eerie in this dim light that I was
+frightened and ran out again. Oh, it is so dreadfully still in
+there!'
+
+"'Only that?' said he, looking at me keenly.
+
+"'Why, what did you think?' I asked.
+
+"'Why do you think that I lock this door?'
+
+"'I am sure that I do not know.'
+
+"'It is to keep people out who have no business there. Do you
+see?' He was still smiling in the most amiable manner.
+
+"'I am sure if I had known--'
+
+"'Well, then, you know now. And if you ever put your foot over
+that threshold again'--here in an instant the smile hardened into
+a grin of rage, and he glared down at me with the face of a
+demon--'I'll throw you to the mastiff.'
+
+"I was so terrified that I do not know what I did. I suppose that
+I must have rushed past him into my room. I remember nothing
+until I found myself lying on my bed trembling all over. Then I
+thought of you, Mr. Holmes. I could not live there longer without
+some advice. I was frightened of the house, of the man, of the
+woman, of the servants, even of the child. They were all horrible
+to me. If I could only bring you down all would be well. Of
+course I might have fled from the house, but my curiosity was
+almost as strong as my fears. My mind was soon made up. I would
+send you a wire. I put on my hat and cloak, went down to the
+office, which is about half a mile from the house, and then
+returned, feeling very much easier. A horrible doubt came into my
+mind as I approached the door lest the dog might be loose, but I
+remembered that Toller had drunk himself into a state of
+insensibility that evening, and I knew that he was the only one
+in the household who had any influence with the savage creature,
+or who would venture to set him free. I slipped in in safety and
+lay awake half the night in my joy at the thought of seeing you.
+I had no difficulty in getting leave to come into Winchester this
+morning, but I must be back before three o'clock, for Mr. and
+Mrs. Rucastle are going on a visit, and will be away all the
+evening, so that I must look after the child. Now I have told you
+all my adventures, Mr. Holmes, and I should be very glad if you
+could tell me what it all means, and, above all, what I should
+do."
+
+Holmes and I had listened spellbound to this extraordinary story.
+My friend rose now and paced up and down the room, his hands in
+his pockets, and an expression of the most profound gravity upon
+his face.
+
+"Is Toller still drunk?" he asked.
+
+"Yes. I heard his wife tell Mrs. Rucastle that she could do
+nothing with him."
+
+"That is well. And the Rucastles go out to-night?"
+
+"Yes."
+
+"Is there a cellar with a good strong lock?"
+
+"Yes, the wine-cellar."
+
+"You seem to me to have acted all through this matter like a very
+brave and sensible girl, Miss Hunter. Do you think that you could
+perform one more feat? I should not ask it of you if I did not
+think you a quite exceptional woman."
+
+"I will try. What is it?"
+
+"We shall be at the Copper Beeches by seven o'clock, my friend
+and I. The Rucastles will be gone by that time, and Toller will,
+we hope, be incapable. There only remains Mrs. Toller, who might
+give the alarm. If you could send her into the cellar on some
+errand, and then turn the key upon her, you would facilitate
+matters immensely."
+
+"I will do it."
+
+"Excellent! We shall then look thoroughly into the affair. Of
+course there is only one feasible explanation. You have been
+brought there to personate someone, and the real person is
+imprisoned in this chamber. That is obvious. As to who this
+prisoner is, I have no doubt that it is the daughter, Miss Alice
+Rucastle, if I remember right, who was said to have gone to
+America. You were chosen, doubtless, as resembling her in height,
+figure, and the colour of your hair. Hers had been cut off, very
+possibly in some illness through which she has passed, and so, of
+course, yours had to be sacrificed also. By a curious chance you
+came upon her tresses. The man in the road was undoubtedly some
+friend of hers--possibly her fiancé--and no doubt, as you wore
+the girl's dress and were so like her, he was convinced from your
+laughter, whenever he saw you, and afterwards from your gesture,
+that Miss Rucastle was perfectly happy, and that she no longer
+desired his attentions. The dog is let loose at night to prevent
+him from endeavouring to communicate with her. So much is fairly
+clear. The most serious point in the case is the disposition of
+the child."
+
+"What on earth has that to do with it?" I ejaculated.
+
+"My dear Watson, you as a medical man are continually gaining
+light as to the tendencies of a child by the study of the
+parents. Don't you see that the converse is equally valid. I have
+frequently gained my first real insight into the character of
+parents by studying their children. This child's disposition is
+abnormally cruel, merely for cruelty's sake, and whether he
+derives this from his smiling father, as I should suspect, or
+from his mother, it bodes evil for the poor girl who is in their
+power."
+
+"I am sure that you are right, Mr. Holmes," cried our client. "A
+thousand things come back to me which make me certain that you
+have hit it. Oh, let us lose not an instant in bringing help to
+this poor creature."
+
+"We must be circumspect, for we are dealing with a very cunning
+man. We can do nothing until seven o'clock. At that hour we shall
+be with you, and it will not be long before we solve the
+mystery."
+
+We were as good as our word, for it was just seven when we
+reached the Copper Beeches, having put up our trap at a wayside
+public-house. The group of trees, with their dark leaves shining
+like burnished metal in the light of the setting sun, were
+sufficient to mark the house even had Miss Hunter not been
+standing smiling on the door-step.
+
+"Have you managed it?" asked Holmes.
+
+A loud thudding noise came from somewhere downstairs. "That is
+Mrs. Toller in the cellar," said she. "Her husband lies snoring
+on the kitchen rug. Here are his keys, which are the duplicates
+of Mr. Rucastle's."
+
+"You have done well indeed!" cried Holmes with enthusiasm. "Now
+lead the way, and we shall soon see the end of this black
+business."
+
+We passed up the stair, unlocked the door, followed on down a
+passage, and found ourselves in front of the barricade which Miss
+Hunter had described. Holmes cut the cord and removed the
+transverse bar. Then he tried the various keys in the lock, but
+without success. No sound came from within, and at the silence
+Holmes' face clouded over.
+
+"I trust that we are not too late," said he. "I think, Miss
+Hunter, that we had better go in without you. Now, Watson, put
+your shoulder to it, and we shall see whether we cannot make our
+way in."
+
+It was an old rickety door and gave at once before our united
+strength. Together we rushed into the room. It was empty. There
+was no furniture save a little pallet bed, a small table, and a
+basketful of linen. The skylight above was open, and the prisoner
+gone.
+
+"There has been some villainy here," said Holmes; "this beauty
+has guessed Miss Hunter's intentions and has carried his victim
+off."
+
+"But how?"
+
+"Through the skylight. We shall soon see how he managed it." He
+swung himself up onto the roof. "Ah, yes," he cried, "here's the
+end of a long light ladder against the eaves. That is how he did
+it."
+
+"But it is impossible," said Miss Hunter; "the ladder was not
+there when the Rucastles went away."
+
+"He has come back and done it. I tell you that he is a clever and
+dangerous man. I should not be very much surprised if this were
+he whose step I hear now upon the stair. I think, Watson, that it
+would be as well for you to have your pistol ready."
+
+The words were hardly out of his mouth before a man appeared at
+the door of the room, a very fat and burly man, with a heavy
+stick in his hand. Miss Hunter screamed and shrunk against the
+wall at the sight of him, but Sherlock Holmes sprang forward and
+confronted him.
+
+"You villain!" said he, "where's your daughter?"
+
+The fat man cast his eyes round, and then up at the open
+skylight.
+
+"It is for me to ask you that," he shrieked, "you thieves! Spies
+and thieves! I have caught you, have I? You are in my power. I'll
+serve you!" He turned and clattered down the stairs as hard as he
+could go.
+
+"He's gone for the dog!" cried Miss Hunter.
+
+"I have my revolver," said I.
+
+"Better close the front door," cried Holmes, and we all rushed
+down the stairs together. We had hardly reached the hall when we
+heard the baying of a hound, and then a scream of agony, with a
+horrible worrying sound which it was dreadful to listen to. An
+elderly man with a red face and shaking limbs came staggering out
+at a side door.
+
+"My God!" he cried. "Someone has loosed the dog. It's not been
+fed for two days. Quick, quick, or it'll be too late!"
+
+Holmes and I rushed out and round the angle of the house, with
+Toller hurrying behind us. There was the huge famished brute, its
+black muzzle buried in Rucastle's throat, while he writhed and
+screamed upon the ground. Running up, I blew its brains out, and
+it fell over with its keen white teeth still meeting in the great
+creases of his neck. With much labour we separated them and
+carried him, living but horribly mangled, into the house. We laid
+him upon the drawing-room sofa, and having dispatched the sobered
+Toller to bear the news to his wife, I did what I could to
+relieve his pain. We were all assembled round him when the door
+opened, and a tall, gaunt woman entered the room.
+
+"Mrs. Toller!" cried Miss Hunter.
+
+"Yes, miss. Mr. Rucastle let me out when he came back before he
+went up to you. Ah, miss, it is a pity you didn't let me know
+what you were planning, for I would have told you that your pains
+were wasted."
+
+"Ha!" said Holmes, looking keenly at her. "It is clear that Mrs.
+Toller knows more about this matter than anyone else."
+
+"Yes, sir, I do, and I am ready enough to tell what I know."
+
+"Then, pray, sit down, and let us hear it for there are several
+points on which I must confess that I am still in the dark."
+
+"I will soon make it clear to you," said she; "and I'd have done
+so before now if I could ha' got out from the cellar. If there's
+police-court business over this, you'll remember that I was the
+one that stood your friend, and that I was Miss Alice's friend
+too.
+
+"She was never happy at home, Miss Alice wasn't, from the time
+that her father married again. She was slighted like and had no
+say in anything, but it never really became bad for her until
+after she met Mr. Fowler at a friend's house. As well as I could
+learn, Miss Alice had rights of her own by will, but she was so
+quiet and patient, she was, that she never said a word about them
+but just left everything in Mr. Rucastle's hands. He knew he was
+safe with her; but when there was a chance of a husband coming
+forward, who would ask for all that the law would give him, then
+her father thought it time to put a stop on it. He wanted her to
+sign a paper, so that whether she married or not, he could use
+her money. When she wouldn't do it, he kept on worrying her until
+she got brain-fever, and for six weeks was at death's door. Then
+she got better at last, all worn to a shadow, and with her
+beautiful hair cut off; but that didn't make no change in her
+young man, and he stuck to her as true as man could be."
+
+"Ah," said Holmes, "I think that what you have been good enough
+to tell us makes the matter fairly clear, and that I can deduce
+all that remains. Mr. Rucastle then, I presume, took to this
+system of imprisonment?"
+
+"Yes, sir."
+
+"And brought Miss Hunter down from London in order to get rid of
+the disagreeable persistence of Mr. Fowler."
+
+"That was it, sir."
+
+"But Mr. Fowler being a persevering man, as a good seaman should
+be, blockaded the house, and having met you succeeded by certain
+arguments, metallic or otherwise, in convincing you that your
+interests were the same as his."
+
+"Mr. Fowler was a very kind-spoken, free-handed gentleman," said
+Mrs. Toller serenely.
+
+"And in this way he managed that your good man should have no
+want of drink, and that a ladder should be ready at the moment
+when your master had gone out."
+
+"You have it, sir, just as it happened."
+
+"I am sure we owe you an apology, Mrs. Toller," said Holmes, "for
+you have certainly cleared up everything which puzzled us. And
+here comes the country surgeon and Mrs. Rucastle, so I think,
+Watson, that we had best escort Miss Hunter back to Winchester,
+as it seems to me that our locus standi now is rather a
+questionable one."
+
+And thus was solved the mystery of the sinister house with the
+copper beeches in front of the door. Mr. Rucastle survived, but
+was always a broken man, kept alive solely through the care of
+his devoted wife. They still live with their old servants, who
+probably know so much of Rucastle's past life that he finds it
+difficult to part from them. Mr. Fowler and Miss Rucastle were
+married, by special license, in Southampton the day after their
+flight, and he is now the holder of a government appointment in
+the island of Mauritius. As to Miss Violet Hunter, my friend
+Holmes, rather to my disappointment, manifested no further
+interest in her when once she had ceased to be the centre of one
+of his problems, and she is now the head of a private school at
+Walsall, where I believe that she has met with considerable success.
+
+
+
+
+
+
+
+
+
+End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by
+Arthur Conan Doyle
+
+*** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES ***
+
+***** This file should be named 1661-8.txt or 1661-8.zip *****
+This and all associated files of various formats will be found in:
+ http://www.gutenberg.org/1/6/6/1661/
+
+Produced by an anonymous Project Gutenberg volunteer and Jose Menendez
+
+Updated editions will replace the previous one--the old editions
+will be renamed.
+
+Creating the works from public domain print editions means that no
+one owns a United States copyright in these works, so the Foundation
+(and you!) can copy and distribute it in the United States without
+permission and without paying copyright royalties. Special rules,
+set forth in the General Terms of Use part of this license, apply to
+copying and distributing Project Gutenberg-tm electronic works to
+protect the PROJECT GUTENBERG-tm concept and trademark. Project
+Gutenberg is a registered trademark, and may not be used if you
+charge for the eBooks, unless you receive specific permission. If you
+do not charge anything for copies of this eBook, complying with the
+rules is very easy. You may use this eBook for nearly any purpose
+such as creation of derivative works, reports, performances and
+research. They may be modified and printed and given away--you may do
+practically ANYTHING with public domain eBooks. Redistribution is
+subject to the trademark license, especially commercial
+redistribution.
+
+
+
+*** START: FULL LICENSE ***
+
+THE FULL PROJECT GUTENBERG LICENSE
+PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
+
+To protect the Project Gutenberg-tm mission of promoting the free
+distribution of electronic works, by using or distributing this work
+(or any other work associated in any way with the phrase "Project
+Gutenberg"), you agree to comply with all the terms of the Full Project
+Gutenberg-tm License (available with this file or online at
+http://gutenberg.net/license).
+
+
+Section 1. General Terms of Use and Redistributing Project Gutenberg-tm
+electronic works
+
+1.A. By reading or using any part of this Project Gutenberg-tm
+electronic work, you indicate that you have read, understand, agree to
+and accept all the terms of this license and intellectual property
+(trademark/copyright) agreement. If you do not agree to abide by all
+the terms of this agreement, you must cease using and return or destroy
+all copies of Project Gutenberg-tm electronic works in your possession.
+If you paid a fee for obtaining a copy of or access to a Project
+Gutenberg-tm electronic work and you do not agree to be bound by the
+terms of this agreement, you may obtain a refund from the person or
+entity to whom you paid the fee as set forth in paragraph 1.E.8.
+
+1.B. "Project Gutenberg" is a registered trademark. It may only be
+used on or associated in any way with an electronic work by people who
+agree to be bound by the terms of this agreement. There are a few
+things that you can do with most Project Gutenberg-tm electronic works
+even without complying with the full terms of this agreement. See
+paragraph 1.C below. There are a lot of things you can do with Project
+Gutenberg-tm electronic works if you follow the terms of this agreement
+and help preserve free future access to Project Gutenberg-tm electronic
+works. See paragraph 1.E below.
+
+1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation"
+or PGLAF), owns a compilation copyright in the collection of Project
+Gutenberg-tm electronic works. Nearly all the individual works in the
+collection are in the public domain in the United States. If an
+individual work is in the public domain in the United States and you are
+located in the United States, we do not claim a right to prevent you from
+copying, distributing, performing, displaying or creating derivative
+works based on the work as long as all references to Project Gutenberg
+are removed. Of course, we hope that you will support the Project
+Gutenberg-tm mission of promoting free access to electronic works by
+freely sharing Project Gutenberg-tm works in compliance with the terms of
+this agreement for keeping the Project Gutenberg-tm name associated with
+the work. You can easily comply with the terms of this agreement by
+keeping this work in the same format with its attached full Project
+Gutenberg-tm License when you share it without charge with others.
+
+1.D. The copyright laws of the place where you are located also govern
+what you can do with this work. Copyright laws in most countries are in
+a constant state of change. If you are outside the United States, check
+the laws of your country in addition to the terms of this agreement
+before downloading, copying, displaying, performing, distributing or
+creating derivative works based on this work or any other Project
+Gutenberg-tm work. The Foundation makes no representations concerning
+the copyright status of any work in any country outside the United
+States.
+
+1.E. Unless you have removed all references to Project Gutenberg:
+
+1.E.1. The following sentence, with active links to, or other immediate
+access to, the full Project Gutenberg-tm License must appear prominently
+whenever any copy of a Project Gutenberg-tm work (any work on which the
+phrase "Project Gutenberg" appears, or with which the phrase "Project
+Gutenberg" is associated) is accessed, displayed, performed, viewed,
+copied or distributed:
+
+This eBook is for the use of anyone anywhere at no cost and with
+almost no restrictions whatsoever. You may copy it, give it away or
+re-use it under the terms of the Project Gutenberg License included
+with this eBook or online at www.gutenberg.net
+
+1.E.2. If an individual Project Gutenberg-tm electronic work is derived
+from the public domain (does not contain a notice indicating that it is
+posted with permission of the copyright holder), the work can be copied
+and distributed to anyone in the United States without paying any fees
+or charges. If you are redistributing or providing access to a work
+with the phrase "Project Gutenberg" associated with or appearing on the
+work, you must comply either with the requirements of paragraphs 1.E.1
+through 1.E.7 or obtain permission for the use of the work and the
+Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or
+1.E.9.
+
+1.E.3. If an individual Project Gutenberg-tm electronic work is posted
+with the permission of the copyright holder, your use and distribution
+must comply with both paragraphs 1.E.1 through 1.E.7 and any additional
+terms imposed by the copyright holder. Additional terms will be linked
+to the Project Gutenberg-tm License for all works posted with the
+permission of the copyright holder found at the beginning of this work.
+
+1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm
+License terms from this work, or any files containing a part of this
+work or any other work associated with Project Gutenberg-tm.
+
+1.E.5. Do not copy, display, perform, distribute or redistribute this
+electronic work, or any part of this electronic work, without
+prominently displaying the sentence set forth in paragraph 1.E.1 with
+active links or immediate access to the full terms of the Project
+Gutenberg-tm License.
+
+1.E.6. You may convert to and distribute this work in any binary,
+compressed, marked up, nonproprietary or proprietary form, including any
+word processing or hypertext form. However, if you provide access to or
+distribute copies of a Project Gutenberg-tm work in a format other than
+"Plain Vanilla ASCII" or other format used in the official version
+posted on the official Project Gutenberg-tm web site (www.gutenberg.net),
+you must, at no additional cost, fee or expense to the user, provide a
+copy, a means of exporting a copy, or a means of obtaining a copy upon
+request, of the work in its original "Plain Vanilla ASCII" or other
+form. Any alternate format must include the full Project Gutenberg-tm
+License as specified in paragraph 1.E.1.
+
+1.E.7. Do not charge a fee for access to, viewing, displaying,
+performing, copying or distributing any Project Gutenberg-tm works
+unless you comply with paragraph 1.E.8 or 1.E.9.
+
+1.E.8. You may charge a reasonable fee for copies of or providing
+access to or distributing Project Gutenberg-tm electronic works provided
+that
+
+- You pay a royalty fee of 20% of the gross profits you derive from
+ the use of Project Gutenberg-tm works calculated using the method
+ you already use to calculate your applicable taxes. The fee is
+ owed to the owner of the Project Gutenberg-tm trademark, but he
+ has agreed to donate royalties under this paragraph to the
+ Project Gutenberg Literary Archive Foundation. Royalty payments
+ must be paid within 60 days following each date on which you
+ prepare (or are legally required to prepare) your periodic tax
+ returns. Royalty payments should be clearly marked as such and
+ sent to the Project Gutenberg Literary Archive Foundation at the
+ address specified in Section 4, "Information about donations to
+ the Project Gutenberg Literary Archive Foundation."
+
+- You provide a full refund of any money paid by a user who notifies
+ you in writing (or by e-mail) within 30 days of receipt that s/he
+ does not agree to the terms of the full Project Gutenberg-tm
+ License. You must require such a user to return or
+ destroy all copies of the works possessed in a physical medium
+ and discontinue all use of and all access to other copies of
+ Project Gutenberg-tm works.
+
+- You provide, in accordance with paragraph 1.F.3, a full refund of any
+ money paid for a work or a replacement copy, if a defect in the
+ electronic work is discovered and reported to you within 90 days
+ of receipt of the work.
+
+- You comply with all other terms of this agreement for free
+ distribution of Project Gutenberg-tm works.
+
+1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm
+electronic work or group of works on different terms than are set
+forth in this agreement, you must obtain permission in writing from
+both the Project Gutenberg Literary Archive Foundation and Michael
+Hart, the owner of the Project Gutenberg-tm trademark. Contact the
+Foundation as set forth in Section 3 below.
+
+1.F.
+
+1.F.1. Project Gutenberg volunteers and employees expend considerable
+effort to identify, do copyright research on, transcribe and proofread
+public domain works in creating the Project Gutenberg-tm
+collection. Despite these efforts, Project Gutenberg-tm electronic
+works, and the medium on which they may be stored, may contain
+"Defects," such as, but not limited to, incomplete, inaccurate or
+corrupt data, transcription errors, a copyright or other intellectual
+property infringement, a defective or damaged disk or other medium, a
+computer virus, or computer codes that damage or cannot be read by
+your equipment.
+
+1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right
+of Replacement or Refund" described in paragraph 1.F.3, the Project
+Gutenberg Literary Archive Foundation, the owner of the Project
+Gutenberg-tm trademark, and any other party distributing a Project
+Gutenberg-tm electronic work under this agreement, disclaim all
+liability to you for damages, costs and expenses, including legal
+fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
+LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE
+PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE
+TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE
+LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR
+INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH
+DAMAGE.
+
+1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a
+defect in this electronic work within 90 days of receiving it, you can
+receive a refund of the money (if any) you paid for it by sending a
+written explanation to the person you received the work from. If you
+received the work on a physical medium, you must return the medium with
+your written explanation. The person or entity that provided you with
+the defective work may elect to provide a replacement copy in lieu of a
+refund. If you received the work electronically, the person or entity
+providing it to you may choose to give you a second opportunity to
+receive the work electronically in lieu of a refund. If the second copy
+is also defective, you may demand a refund in writing without further
+opportunities to fix the problem.
+
+1.F.4. Except for the limited right of replacement or refund set forth
+in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER
+WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
+WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.
+
+1.F.5. Some states do not allow disclaimers of certain implied
+warranties or the exclusion or limitation of certain types of damages.
+If any disclaimer or limitation set forth in this agreement violates the
+law of the state applicable to this agreement, the agreement shall be
+interpreted to make the maximum disclaimer or limitation permitted by
+the applicable state law. The invalidity or unenforceability of any
+provision of this agreement shall not void the remaining provisions.
+
+1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the
+trademark owner, any agent or employee of the Foundation, anyone
+providing copies of Project Gutenberg-tm electronic works in accordance
+with this agreement, and any volunteers associated with the production,
+promotion and distribution of Project Gutenberg-tm electronic works,
+harmless from all liability, costs and expenses, including legal fees,
+that arise directly or indirectly from any of the following which you do
+or cause to occur: (a) distribution of this or any Project Gutenberg-tm
+work, (b) alteration, modification, or additions or deletions to any
+Project Gutenberg-tm work, and (c) any Defect you cause.
+
+
+Section 2. Information about the Mission of Project Gutenberg-tm
+
+Project Gutenberg-tm is synonymous with the free distribution of
+electronic works in formats readable by the widest variety of computers
+including obsolete, old, middle-aged and new computers. It exists
+because of the efforts of hundreds of volunteers and donations from
+people in all walks of life.
+
+Volunteers and financial support to provide volunteers with the
+assistance they need are critical to reaching Project Gutenberg-tm's
+goals and ensuring that the Project Gutenberg-tm collection will
+remain freely available for generations to come. In 2001, the Project
+Gutenberg Literary Archive Foundation was created to provide a secure
+and permanent future for Project Gutenberg-tm and future generations.
+To learn more about the Project Gutenberg Literary Archive Foundation
+and how your efforts and donations can help, see Sections 3 and 4
+and the Foundation web page at http://www.pglaf.org.
+
+
+Section 3. Information about the Project Gutenberg Literary Archive
+Foundation
+
+The Project Gutenberg Literary Archive Foundation is a non profit
+501(c)(3) educational corporation organized under the laws of the
+state of Mississippi and granted tax exempt status by the Internal
+Revenue Service. The Foundation's EIN or federal tax identification
+number is 64-6221541. Its 501(c)(3) letter is posted at
+http://pglaf.org/fundraising. Contributions to the Project Gutenberg
+Literary Archive Foundation are tax deductible to the full extent
+permitted by U.S. federal laws and your state's laws.
+
+The Foundation's principal office is located at 4557 Melan Dr. S.
+Fairbanks, AK, 99712., but its volunteers and employees are scattered
+throughout numerous locations. Its business office is located at
+809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email
+business@pglaf.org. Email contact links and up to date contact
+information can be found at the Foundation's web site and official
+page at http://pglaf.org
+
+For additional contact information:
+ Dr. Gregory B. Newby
+ Chief Executive and Director
+ gbnewby@pglaf.org
+
+
+Section 4. Information about Donations to the Project Gutenberg
+Literary Archive Foundation
+
+Project Gutenberg-tm depends upon and cannot survive without wide
+spread public support and donations to carry out its mission of
+increasing the number of public domain and licensed works that can be
+freely distributed in machine readable form accessible by the widest
+array of equipment including outdated equipment. Many small donations
+($1 to $5,000) are particularly important to maintaining tax exempt
+status with the IRS.
+
+The Foundation is committed to complying with the laws regulating
+charities and charitable donations in all 50 states of the United
+States. Compliance requirements are not uniform and it takes a
+considerable effort, much paperwork and many fees to meet and keep up
+with these requirements. We do not solicit donations in locations
+where we have not received written confirmation of compliance. To
+SEND DONATIONS or determine the status of compliance for any
+particular state visit http://pglaf.org
+
+While we cannot and do not solicit contributions from states where we
+have not met the solicitation requirements, we know of no prohibition
+against accepting unsolicited donations from donors in such states who
+approach us with offers to donate.
+
+International donations are gratefully accepted, but we cannot make
+any statements concerning tax treatment of donations received from
+outside the United States. U.S. laws alone swamp our small staff.
+
+Please check the Project Gutenberg Web pages for current donation
+methods and addresses. Donations are accepted in a number of other
+ways including including checks, online payments and credit card
+donations. To donate, please visit: http://pglaf.org/donate
+
+
+Section 5. General Information About Project Gutenberg-tm electronic
+works.
+
+Professor Michael S. Hart is the originator of the Project Gutenberg-tm
+concept of a library of electronic works that could be freely shared
+with anyone. For thirty years, he produced and distributed Project
+Gutenberg-tm eBooks with only a loose network of volunteer support.
+
+
+Project Gutenberg-tm eBooks are often created from several printed
+editions, all of which are confirmed as Public Domain in the U.S.
+unless a copyright notice is included. Thus, we do not necessarily
+keep eBooks in compliance with any particular paper edition.
+
+
+Most people start at our Web site which has the main PG search facility:
+
+ http://www.gutenberg.net
+
+This Web site includes information about Project Gutenberg-tm,
+including how to make donations to the Project Gutenberg Literary
+Archive Foundation, how to help produce our new eBooks, and how to
+subscribe to our email newsletter to hear about new eBooks.
diff --git a/hyracks/hyracks-examples/text-example/textserver/data/file2.txt b/hyracks/hyracks-examples/text-example/textserver/data/file2.txt
index a25d303..f2eff1c 100644
--- a/hyracks/hyracks-examples/text-example/textserver/data/file2.txt
+++ b/hyracks/hyracks-examples/text-example/textserver/data/file2.txt
@@ -1,10216 +1,10216 @@
-Project Gutenberg's Memoirs of Sherlock Holmes, by Sir Arthur Conan Doyle
-
-This eBook is for the use of anyone anywhere at no cost and with
-almost no restrictions whatsoever. You may copy it, give it away or
-re-use it under the terms of the Project Gutenberg License included
-with this eBook or online at www.gutenberg.org
-
-
-Title: Memoirs of Sherlock Holmes
-
-Author: Sir Arthur Conan Doyle
-
-Posting Date: July 31, 2008 [EBook #834]
-Release Date: March, 1997
-[This file last updated on August 16, 2010]
-
-Language: English
-
+Project Gutenberg's Memoirs of Sherlock Holmes, by Sir Arthur Conan Doyle
-*** START OF THIS PROJECT GUTENBERG EBOOK MEMOIRS OF SHERLOCK HOLMES ***
-
-
-
-
-Produced by Angela M. Cable
-
-
-
-
-
-MEMOIRS OF SHERLOCK HOLMES
-
-by Sir Arthur Conan Doyle
-
-
-
-
-Adventure I. Silver Blaze
-
-
-"I am afraid, Watson, that I shall have to go," said Holmes, as we sat
-down together to our breakfast one morning.
-
-"Go! Where to?"
-
-"To Dartmoor; to King's Pyland."
-
-I was not surprised. Indeed, my only wonder was that he had not already
-been mixed up in this extraordinary case, which was the one topic of
-conversation through the length and breadth of England. For a whole day
-my companion had rambled about the room with his chin upon his chest and
-his brows knitted, charging and recharging his pipe with the strongest
-black tobacco, and absolutely deaf to any of my questions or remarks.
-Fresh editions of every paper had been sent up by our news agent, only
-to be glanced over and tossed down into a corner. Yet, silent as he was,
-I knew perfectly well what it was over which he was brooding. There was
-but one problem before the public which could challenge his powers of
-analysis, and that was the singular disappearance of the favorite for
-the Wessex Cup, and the tragic murder of its trainer. When, therefore,
-he suddenly announced his intention of setting out for the scene of the
-drama it was only what I had both expected and hoped for.
-
-"I should be most happy to go down with you if I should not be in the
-way," said I.
-
-"My dear Watson, you would confer a great favor upon me by coming. And
-I think that your time will not be misspent, for there are points about
-the case which promise to make it an absolutely unique one. We have, I
-think, just time to catch our train at Paddington, and I will go further
-into the matter upon our journey. You would oblige me by bringing with
-you your very excellent field-glass."
-
-And so it happened that an hour or so later I found myself in the
-corner of a first-class carriage flying along en route for Exeter, while
-Sherlock Holmes, with his sharp, eager face framed in his ear-flapped
-travelling-cap, dipped rapidly into the bundle of fresh papers which he
-had procured at Paddington. We had left Reading far behind us before
-he thrust the last one of them under the seat, and offered me his
-cigar-case.
-
-"We are going well," said he, looking out the window and glancing at his
-watch. "Our rate at present is fifty-three and a half miles an hour."
-
-"I have not observed the quarter-mile posts," said I.
-
-"Nor have I. But the telegraph posts upon this line are sixty yards
-apart, and the calculation is a simple one. I presume that you
-have looked into this matter of the murder of John Straker and the
-disappearance of Silver Blaze?"
-
-"I have seen what the Telegraph and the Chronicle have to say."
-
-"It is one of those cases where the art of the reasoner should be
-used rather for the sifting of details than for the acquiring of fresh
-evidence. The tragedy has been so uncommon, so complete and of such
-personal importance to so many people, that we are suffering from a
-plethora of surmise, conjecture, and hypothesis. The difficulty is to
-detach the framework of fact--of absolute undeniable fact--from the
-embellishments of theorists and reporters. Then, having established
-ourselves upon this sound basis, it is our duty to see what inferences
-may be drawn and what are the special points upon which the whole
-mystery turns. On Tuesday evening I received telegrams from both Colonel
-Ross, the owner of the horse, and from Inspector Gregory, who is looking
-after the case, inviting my cooperation."
-
-"Tuesday evening!" I exclaimed. "And this is Thursday morning. Why
-didn't you go down yesterday?"
-
-"Because I made a blunder, my dear Watson--which is, I am afraid, a more
-common occurrence than any one would think who only knew me through your
-memoirs. The fact is that I could not believe it possible that the most
-remarkable horse in England could long remain concealed, especially in
-so sparsely inhabited a place as the north of Dartmoor. From hour to
-hour yesterday I expected to hear that he had been found, and that
-his abductor was the murderer of John Straker. When, however, another
-morning had come, and I found that beyond the arrest of young Fitzroy
-Simpson nothing had been done, I felt that it was time for me to take
-action. Yet in some ways I feel that yesterday has not been wasted."
-
-"You have formed a theory, then?"
-
-"At least I have got a grip of the essential facts of the case. I shall
-enumerate them to you, for nothing clears up a case so much as stating
-it to another person, and I can hardly expect your co-operation if I do
-not show you the position from which we start."
-
-I lay back against the cushions, puffing at my cigar, while Holmes,
-leaning forward, with his long, thin forefinger checking off the points
-upon the palm of his left hand, gave me a sketch of the events which had
-led to our journey.
-
-"Silver Blaze," said he, "is from the Somomy stock, and holds as
-brilliant a record as his famous ancestor. He is now in his fifth year,
-and has brought in turn each of the prizes of the turf to Colonel Ross,
-his fortunate owner. Up to the time of the catastrophe he was the first
-favorite for the Wessex Cup, the betting being three to one on him. He
-has always, however, been a prime favorite with the racing public, and
-has never yet disappointed them, so that even at those odds enormous
-sums of money have been laid upon him. It is obvious, therefore, that
-there were many people who had the strongest interest in preventing
-Silver Blaze from being there at the fall of the flag next Tuesday.
-
-"The fact was, of course, appreciated at King's Pyland, where the
-Colonel's training-stable is situated. Every precaution was taken to
-guard the favorite. The trainer, John Straker, is a retired jockey
-who rode in Colonel Ross's colors before he became too heavy for the
-weighing-chair. He has served the Colonel for five years as jockey and
-for seven as trainer, and has always shown himself to be a zealous and
-honest servant. Under him were three lads; for the establishment was a
-small one, containing only four horses in all. One of these lads sat up
-each night in the stable, while the others slept in the loft. All three
-bore excellent characters. John Straker, who is a married man, lived
-in a small villa about two hundred yards from the stables. He has no
-children, keeps one maid-servant, and is comfortably off. The country
-round is very lonely, but about half a mile to the north there is a
-small cluster of villas which have been built by a Tavistock contractor
-for the use of invalids and others who may wish to enjoy the pure
-Dartmoor air. Tavistock itself lies two miles to the west, while
-across the moor, also about two miles distant, is the larger training
-establishment of Mapleton, which belongs to Lord Backwater, and is
-managed by Silas Brown. In every other direction the moor is a complete
-wilderness, inhabited only by a few roaming gypsies. Such was the
-general situation last Monday night when the catastrophe occurred.
-
-"On that evening the horses had been exercised and watered as usual, and
-the stables were locked up at nine o'clock. Two of the lads walked up
-to the trainer's house, where they had supper in the kitchen, while the
-third, Ned Hunter, remained on guard. At a few minutes after nine
-the maid, Edith Baxter, carried down to the stables his supper, which
-consisted of a dish of curried mutton. She took no liquid, as there was
-a water-tap in the stables, and it was the rule that the lad on duty
-should drink nothing else. The maid carried a lantern with her, as it
-was very dark and the path ran across the open moor.
-
-"Edith Baxter was within thirty yards of the stables, when a man
-appeared out of the darkness and called to her to stop. As he stepped
-into the circle of yellow light thrown by the lantern she saw that he
-was a person of gentlemanly bearing, dressed in a gray suit of tweeds,
-with a cloth cap. He wore gaiters, and carried a heavy stick with a knob
-to it. She was most impressed, however, by the extreme pallor of his
-face and by the nervousness of his manner. His age, she thought, would
-be rather over thirty than under it.
-
-"'Can you tell me where I am?' he asked. 'I had almost made up my mind
-to sleep on the moor, when I saw the light of your lantern.'
-
-"'You are close to the King's Pyland training-stables,' said she.
-
-"'Oh, indeed! What a stroke of luck!' he cried. 'I understand that a
-stable-boy sleeps there alone every night. Perhaps that is his supper
-which you are carrying to him. Now I am sure that you would not be too
-proud to earn the price of a new dress, would you?' He took a piece of
-white paper folded up out of his waistcoat pocket. 'See that the boy
-has this to-night, and you shall have the prettiest frock that money can
-buy.'
-
-"She was frightened by the earnestness of his manner, and ran past him
-to the window through which she was accustomed to hand the meals. It was
-already opened, and Hunter was seated at the small table inside. She had
-begun to tell him of what had happened, when the stranger came up again.
-
-"'Good-evening,' said he, looking through the window. 'I wanted to have
-a word with you.' The girl has sworn that as he spoke she noticed the
-corner of the little paper packet protruding from his closed hand.
-
-"'What business have you here?' asked the lad.
-
-"'It's business that may put something into your pocket,' said the
-other. 'You've two horses in for the Wessex Cup--Silver Blaze and
-Bayard. Let me have the straight tip and you won't be a loser. Is it a
-fact that at the weights Bayard could give the other a hundred yards in
-five furlongs, and that the stable have put their money on him?'
-
-"'So, you're one of those damned touts!' cried the lad. 'I'll show you
-how we serve them in King's Pyland.' He sprang up and rushed across the
-stable to unloose the dog. The girl fled away to the house, but as she
-ran she looked back and saw that the stranger was leaning through the
-window. A minute later, however, when Hunter rushed out with the hound
-he was gone, and though he ran all round the buildings he failed to find
-any trace of him."
-
-"One moment," I asked. "Did the stable-boy, when he ran out with the
-dog, leave the door unlocked behind him?"
-
-"Excellent, Watson, excellent!" murmured my companion. "The importance
-of the point struck me so forcibly that I sent a special wire to
-Dartmoor yesterday to clear the matter up. The boy locked the door
-before he left it. The window, I may add, was not large enough for a man
-to get through.
-
-"Hunter waited until his fellow-grooms had returned, when he sent a
-message to the trainer and told him what had occurred. Straker was
-excited at hearing the account, although he does not seem to have quite
-realized its true significance. It left him, however, vaguely uneasy,
-and Mrs. Straker, waking at one in the morning, found that he was
-dressing. In reply to her inquiries, he said that he could not sleep on
-account of his anxiety about the horses, and that he intended to walk
-down to the stables to see that all was well. She begged him to remain
-at home, as she could hear the rain pattering against the window, but in
-spite of her entreaties he pulled on his large mackintosh and left the
-house.
-
-"Mrs. Straker awoke at seven in the morning, to find that her husband
-had not yet returned. She dressed herself hastily, called the maid, and
-set off for the stables. The door was open; inside, huddled together
-upon a chair, Hunter was sunk in a state of absolute stupor, the
-favorite's stall was empty, and there were no signs of his trainer.
-
-"The two lads who slept in the chaff-cutting loft above the harness-room
-were quickly aroused. They had heard nothing during the night, for they
-are both sound sleepers. Hunter was obviously under the influence of
-some powerful drug, and as no sense could be got out of him, he was left
-to sleep it off while the two lads and the two women ran out in search
-of the absentees. They still had hopes that the trainer had for some
-reason taken out the horse for early exercise, but on ascending the
-knoll near the house, from which all the neighboring moors were visible,
-they not only could see no signs of the missing favorite, but they
-perceived something which warned them that they were in the presence of
-a tragedy.
-
-"About a quarter of a mile from the stables John Straker's overcoat was
-flapping from a furze-bush. Immediately beyond there was a bowl-shaped
-depression in the moor, and at the bottom of this was found the dead
-body of the unfortunate trainer. His head had been shattered by a savage
-blow from some heavy weapon, and he was wounded on the thigh, where
-there was a long, clean cut, inflicted evidently by some very sharp
-instrument. It was clear, however, that Straker had defended himself
-vigorously against his assailants, for in his right hand he held a small
-knife, which was clotted with blood up to the handle, while in his left
-he clasped a red and black silk cravat, which was recognized by the maid
-as having been worn on the preceding evening by the stranger who had
-visited the stables. Hunter, on recovering from his stupor, was also
-quite positive as to the ownership of the cravat. He was equally certain
-that the same stranger had, while standing at the window, drugged his
-curried mutton, and so deprived the stables of their watchman. As to the
-missing horse, there were abundant proofs in the mud which lay at the
-bottom of the fatal hollow that he had been there at the time of the
-struggle. But from that morning he has disappeared, and although a large
-reward has been offered, and all the gypsies of Dartmoor are on the
-alert, no news has come of him. Finally, an analysis has shown that
-the remains of his supper left by the stable-lad contain an appreciable
-quantity of powdered opium, while the people at the house partook of the
-same dish on the same night without any ill effect.
-
-"Those are the main facts of the case, stripped of all surmise, and
-stated as baldly as possible. I shall now recapitulate what the police
-have done in the matter.
-
-"Inspector Gregory, to whom the case has been committed, is an extremely
-competent officer. Were he but gifted with imagination he might rise to
-great heights in his profession. On his arrival he promptly found and
-arrested the man upon whom suspicion naturally rested. There was little
-difficulty in finding him, for he inhabited one of those villas which I
-have mentioned. His name, it appears, was Fitzroy Simpson. He was a man
-of excellent birth and education, who had squandered a fortune upon the
-turf, and who lived now by doing a little quiet and genteel book-making
-in the sporting clubs of London. An examination of his betting-book
-shows that bets to the amount of five thousand pounds had been
-registered by him against the favorite. On being arrested he volunteered
-that statement that he had come down to Dartmoor in the hope of
-getting some information about the King's Pyland horses, and also about
-Desborough, the second favorite, which was in charge of Silas Brown at
-the Mapleton stables. He did not attempt to deny that he had acted as
-described upon the evening before, but declared that he had no sinister
-designs, and had simply wished to obtain first-hand information. When
-confronted with his cravat, he turned very pale, and was utterly unable
-to account for its presence in the hand of the murdered man. His wet
-clothing showed that he had been out in the storm of the night before,
-and his stick, which was a Penang-lawyer weighted with lead, was just
-such a weapon as might, by repeated blows, have inflicted the terrible
-injuries to which the trainer had succumbed. On the other hand, there
-was no wound upon his person, while the state of Straker's knife would
-show that one at least of his assailants must bear his mark upon him.
-There you have it all in a nutshell, Watson, and if you can give me any
-light I shall be infinitely obliged to you."
-
-I had listened with the greatest interest to the statement which Holmes,
-with characteristic clearness, had laid before me. Though most of the
-facts were familiar to me, I had not sufficiently appreciated their
-relative importance, nor their connection to each other.
-
-"Is it not possible," I suggested, "that the incised wound upon Straker
-may have been caused by his own knife in the convulsive struggles which
-follow any brain injury?"
-
-"It is more than possible; it is probable," said Holmes. "In that case
-one of the main points in favor of the accused disappears."
-
-"And yet," said I, "even now I fail to understand what the theory of the
-police can be."
-
-"I am afraid that whatever theory we state has very grave objections to
-it," returned my companion. "The police imagine, I take it, that this
-Fitzroy Simpson, having drugged the lad, and having in some way obtained
-a duplicate key, opened the stable door and took out the horse, with
-the intention, apparently, of kidnapping him altogether. His bridle is
-missing, so that Simpson must have put this on. Then, having left the
-door open behind him, he was leading the horse away over the moor, when
-he was either met or overtaken by the trainer. A row naturally ensued.
-Simpson beat out the trainer's brains with his heavy stick without
-receiving any injury from the small knife which Straker used in
-self-defence, and then the thief either led the horse on to some secret
-hiding-place, or else it may have bolted during the struggle, and be
-now wandering out on the moors. That is the case as it appears to
-the police, and improbable as it is, all other explanations are more
-improbable still. However, I shall very quickly test the matter when I
-am once upon the spot, and until then I cannot really see how we can get
-much further than our present position."
-
-It was evening before we reached the little town of Tavistock, which
-lies, like the boss of a shield, in the middle of the huge circle of
-Dartmoor. Two gentlemen were awaiting us in the station--the one a tall,
-fair man with lion-like hair and beard and curiously penetrating light
-blue eyes; the other a small, alert person, very neat and dapper, in a
-frock-coat and gaiters, with trim little side-whiskers and an eye-glass.
-The latter was Colonel Ross, the well-known sportsman; the other,
-Inspector Gregory, a man who was rapidly making his name in the English
-detective service.
-
-"I am delighted that you have come down, Mr. Holmes," said the Colonel.
-"The Inspector here has done all that could possibly be suggested, but I
-wish to leave no stone unturned in trying to avenge poor Straker and in
-recovering my horse."
-
-"Have there been any fresh developments?" asked Holmes.
-
-"I am sorry to say that we have made very little progress," said the
-Inspector. "We have an open carriage outside, and as you would no doubt
-like to see the place before the light fails, we might talk it over as
-we drive."
-
-A minute later we were all seated in a comfortable landau, and were
-rattling through the quaint old Devonshire city. Inspector Gregory was
-full of his case, and poured out a stream of remarks, while Holmes threw
-in an occasional question or interjection. Colonel Ross leaned back with
-his arms folded and his hat tilted over his eyes, while I listened with
-interest to the dialogue of the two detectives. Gregory was formulating
-his theory, which was almost exactly what Holmes had foretold in the
-train.
-
-"The net is drawn pretty close round Fitzroy Simpson," he remarked, "and
-I believe myself that he is our man. At the same time I recognize that
-the evidence is purely circumstantial, and that some new development may
-upset it."
-
-"How about Straker's knife?"
-
-"We have quite come to the conclusion that he wounded himself in his
-fall."
-
-"My friend Dr. Watson made that suggestion to me as we came down. If so,
-it would tell against this man Simpson."
-
-"Undoubtedly. He has neither a knife nor any sign of a wound. The
-evidence against him is certainly very strong. He had a great interest
-in the disappearance of the favorite. He lies under suspicion of having
-poisoned the stable-boy, he was undoubtedly out in the storm, he was
-armed with a heavy stick, and his cravat was found in the dead man's
-hand. I really think we have enough to go before a jury."
-
-Holmes shook his head. "A clever counsel would tear it all to rags,"
-said he. "Why should he take the horse out of the stable? If he wished
-to injure it why could he not do it there? Has a duplicate key been
-found in his possession? What chemist sold him the powdered opium? Above
-all, where could he, a stranger to the district, hide a horse, and such
-a horse as this? What is his own explanation as to the paper which he
-wished the maid to give to the stable-boy?"
-
-"He says that it was a ten-pound note. One was found in his purse. But
-your other difficulties are not so formidable as they seem. He is not
-a stranger to the district. He has twice lodged at Tavistock in the
-summer. The opium was probably brought from London. The key, having
-served its purpose, would be hurled away. The horse may be at the bottom
-of one of the pits or old mines upon the moor."
-
-"What does he say about the cravat?"
-
-"He acknowledges that it is his, and declares that he had lost it. But a
-new element has been introduced into the case which may account for his
-leading the horse from the stable."
-
-Holmes pricked up his ears.
-
-"We have found traces which show that a party of gypsies encamped on
-Monday night within a mile of the spot where the murder took place. On
-Tuesday they were gone. Now, presuming that there was some understanding
-between Simpson and these gypsies, might he not have been leading the
-horse to them when he was overtaken, and may they not have him now?"
-
-"It is certainly possible."
-
-"The moor is being scoured for these gypsies. I have also examined every
-stable and out-house in Tavistock, and for a radius of ten miles."
-
-"There is another training-stable quite close, I understand?"
-
-"Yes, and that is a factor which we must certainly not neglect. As
-Desborough, their horse, was second in the betting, they had an interest
-in the disappearance of the favorite. Silas Brown, the trainer, is known
-to have had large bets upon the event, and he was no friend to poor
-Straker. We have, however, examined the stables, and there is nothing to
-connect him with the affair."
-
-"And nothing to connect this man Simpson with the interests of the
-Mapleton stables?"
-
-"Nothing at all."
-
-Holmes leaned back in the carriage, and the conversation ceased. A few
-minutes later our driver pulled up at a neat little red-brick villa with
-overhanging eaves which stood by the road. Some distance off, across a
-paddock, lay a long gray-tiled out-building. In every other direction
-the low curves of the moor, bronze-colored from the fading ferns,
-stretched away to the sky-line, broken only by the steeples of
-Tavistock, and by a cluster of houses away to the westward which marked
-the Mapleton stables. We all sprang out with the exception of Holmes,
-who continued to lean back with his eyes fixed upon the sky in front of
-him, entirely absorbed in his own thoughts. It was only when I touched
-his arm that he roused himself with a violent start and stepped out of
-the carriage.
-
-"Excuse me," said he, turning to Colonel Ross, who had looked at him in
-some surprise. "I was day-dreaming." There was a gleam in his eyes and a
-suppressed excitement in his manner which convinced me, used as I was
-to his ways, that his hand was upon a clue, though I could not imagine
-where he had found it.
-
-"Perhaps you would prefer at once to go on to the scene of the crime,
-Mr. Holmes?" said Gregory.
-
-"I think that I should prefer to stay here a little and go into one or
-two questions of detail. Straker was brought back here, I presume?"
-
-"Yes; he lies upstairs. The inquest is to-morrow."
-
-"He has been in your service some years, Colonel Ross?"
-
-"I have always found him an excellent servant."
-
-"I presume that you made an inventory of what he had in his pockets at
-the time of his death, Inspector?"
-
-"I have the things themselves in the sitting-room, if you would care to
-see them."
-
-"I should be very glad." We all filed into the front room and sat round
-the central table while the Inspector unlocked a square tin box and laid
-a small heap of things before us. There was a box of vestas, two inches
-of tallow candle, an A D P brier-root pipe, a pouch of seal-skin with
-half an ounce of long-cut Cavendish, a silver watch with a gold chain,
-five sovereigns in gold, an aluminum pencil-case, a few papers, and an
-ivory-handled knife with a very delicate, inflexible blade marked Weiss
-& Co., London.
-
-"This is a very singular knife," said Holmes, lifting it up and
-examining it minutely. "I presume, as I see blood-stains upon it, that
-it is the one which was found in the dead man's grasp. Watson, this
-knife is surely in your line?"
-
-"It is what we call a cataract knife," said I.
-
-"I thought so. A very delicate blade devised for very delicate work.
-A strange thing for a man to carry with him upon a rough expedition,
-especially as it would not shut in his pocket."
-
-"The tip was guarded by a disk of cork which we found beside his body,"
-said the Inspector. "His wife tells us that the knife had lain upon the
-dressing-table, and that he had picked it up as he left the room. It was
-a poor weapon, but perhaps the best that he could lay his hands on at
-the moment."
-
-"Very possible. How about these papers?"
-
-"Three of them are receipted hay-dealers' accounts. One of them is a
-letter of instructions from Colonel Ross. This other is a milliner's
-account for thirty-seven pounds fifteen made out by Madame Lesurier,
-of Bond Street, to William Derbyshire. Mrs. Straker tells us that
-Derbyshire was a friend of her husband's and that occasionally his
-letters were addressed here."
-
-"Madam Derbyshire had somewhat expensive tastes," remarked Holmes,
-glancing down the account. "Twenty-two guineas is rather heavy for a
-single costume. However there appears to be nothing more to learn, and
-we may now go down to the scene of the crime."
-
-As we emerged from the sitting-room a woman, who had been waiting in
-the passage, took a step forward and laid her hand upon the Inspector's
-sleeve. Her face was haggard and thin and eager, stamped with the print
-of a recent horror.
-
-"Have you got them? Have you found them?" she panted.
-
-"No, Mrs. Straker. But Mr. Holmes here has come from London to help us,
-and we shall do all that is possible."
-
-"Surely I met you in Plymouth at a garden-party some little time ago,
-Mrs. Straker?" said Holmes.
-
-"No, sir; you are mistaken."
-
-"Dear me! Why, I could have sworn to it. You wore a costume of
-dove-colored silk with ostrich-feather trimming."
-
-"I never had such a dress, sir," answered the lady.
-
-"Ah, that quite settles it," said Holmes. And with an apology he
-followed the Inspector outside. A short walk across the moor took us to
-the hollow in which the body had been found. At the brink of it was the
-furze-bush upon which the coat had been hung.
-
-"There was no wind that night, I understand," said Holmes.
-
-"None; but very heavy rain."
-
-"In that case the overcoat was not blown against the furze-bush, but
-placed there."
-
-"Yes, it was laid across the bush."
-
-"You fill me with interest, I perceive that the ground has been trampled
-up a good deal. No doubt many feet have been here since Monday night."
-
-"A piece of matting has been laid here at the side, and we have all
-stood upon that."
-
-"Excellent."
-
-"In this bag I have one of the boots which Straker wore, one of Fitzroy
-Simpson's shoes, and a cast horseshoe of Silver Blaze."
-
-"My dear Inspector, you surpass yourself!" Holmes took the bag, and,
-descending into the hollow, he pushed the matting into a more central
-position. Then stretching himself upon his face and leaning his chin
-upon his hands, he made a careful study of the trampled mud in front of
-him. "Hullo!" said he, suddenly. "What's this?" It was a wax vesta half
-burned, which was so coated with mud that it looked at first like a
-little chip of wood.
-
-"I cannot think how I came to overlook it," said the Inspector, with an
-expression of annoyance.
-
-"It was invisible, buried in the mud. I only saw it because I was
-looking for it."
-
-"What! You expected to find it?"
-
-"I thought it not unlikely."
-
-He took the boots from the bag, and compared the impressions of each of
-them with marks upon the ground. Then he clambered up to the rim of the
-hollow, and crawled about among the ferns and bushes.
-
-"I am afraid that there are no more tracks," said the Inspector. "I
-have examined the ground very carefully for a hundred yards in each
-direction."
-
-"Indeed!" said Holmes, rising. "I should not have the impertinence to
-do it again after what you say. But I should like to take a little walk
-over the moor before it grows dark, that I may know my ground to-morrow,
-and I think that I shall put this horseshoe into my pocket for luck."
-
-Colonel Ross, who had shown some signs of impatience at my companion's
-quiet and systematic method of work, glanced at his watch. "I wish you
-would come back with me, Inspector," said he. "There are several points
-on which I should like your advice, and especially as to whether we do
-not owe it to the public to remove our horse's name from the entries for
-the Cup."
-
-"Certainly not," cried Holmes, with decision. "I should let the name
-stand."
-
-The Colonel bowed. "I am very glad to have had your opinion, sir," said
-he. "You will find us at poor Straker's house when you have finished
-your walk, and we can drive together into Tavistock."
-
-He turned back with the Inspector, while Holmes and I walked slowly
-across the moor. The sun was beginning to sink behind the stables of
-Mapleton, and the long, sloping plain in front of us was tinged with
-gold, deepening into rich, ruddy browns where the faded ferns and
-brambles caught the evening light. But the glories of the landscape were
-all wasted upon my companion, who was sunk in the deepest thought.
-
-"It's this way, Watson," said he at last. "We may leave the question
-of who killed John Straker for the instant, and confine ourselves to
-finding out what has become of the horse. Now, supposing that he broke
-away during or after the tragedy, where could he have gone to? The horse
-is a very gregarious creature. If left to himself his instincts would
-have been either to return to King's Pyland or go over to Mapleton. Why
-should he run wild upon the moor? He would surely have been seen by now.
-And why should gypsies kidnap him? These people always clear out when
-they hear of trouble, for they do not wish to be pestered by the police.
-They could not hope to sell such a horse. They would run a great risk
-and gain nothing by taking him. Surely that is clear."
-
-"Where is he, then?"
-
-"I have already said that he must have gone to King's Pyland or to
-Mapleton. He is not at King's Pyland. Therefore he is at Mapleton. Let
-us take that as a working hypothesis and see what it leads us to. This
-part of the moor, as the Inspector remarked, is very hard and dry. But
-it falls away towards Mapleton, and you can see from here that there
-is a long hollow over yonder, which must have been very wet on Monday
-night. If our supposition is correct, then the horse must have crossed
-that, and there is the point where we should look for his tracks."
-
-We had been walking briskly during this conversation, and a few more
-minutes brought us to the hollow in question. At Holmes' request I
-walked down the bank to the right, and he to the left, but I had not
-taken fifty paces before I heard him give a shout, and saw him waving
-his hand to me. The track of a horse was plainly outlined in the soft
-earth in front of him, and the shoe which he took from his pocket
-exactly fitted the impression.
-
-"See the value of imagination," said Holmes. "It is the one quality
-which Gregory lacks. We imagined what might have happened, acted upon
-the supposition, and find ourselves justified. Let us proceed."
-
-We crossed the marshy bottom and passed over a quarter of a mile of dry,
-hard turf. Again the ground sloped, and again we came on the tracks.
-Then we lost them for half a mile, but only to pick them up once more
-quite close to Mapleton. It was Holmes who saw them first, and he stood
-pointing with a look of triumph upon his face. A man's track was visible
-beside the horse's.
-
-"The horse was alone before," I cried.
-
-"Quite so. It was alone before. Hullo, what is this?"
-
-The double track turned sharp off and took the direction of King's
-Pyland. Holmes whistled, and we both followed along after it. His eyes
-were on the trail, but I happened to look a little to one side, and
-saw to my surprise the same tracks coming back again in the opposite
-direction.
-
-"One for you, Watson," said Holmes, when I pointed it out. "You have
-saved us a long walk, which would have brought us back on our own
-traces. Let us follow the return track."
-
-We had not to go far. It ended at the paving of asphalt which led up
-to the gates of the Mapleton stables. As we approached, a groom ran out
-from them.
-
-"We don't want any loiterers about here," said he.
-
-"I only wished to ask a question," said Holmes, with his finger and
-thumb in his waistcoat pocket. "Should I be too early to see your
-master, Mr. Silas Brown, if I were to call at five o'clock to-morrow
-morning?"
-
-"Bless you, sir, if any one is about he will be, for he is always
-the first stirring. But here he is, sir, to answer your questions for
-himself. No, sir, no; it is as much as my place is worth to let him see
-me touch your money. Afterwards, if you like."
-
-As Sherlock Holmes replaced the half-crown which he had drawn from his
-pocket, a fierce-looking elderly man strode out from the gate with a
-hunting-crop swinging in his hand.
-
-"What's this, Dawson!" he cried. "No gossiping! Go about your business!
-And you, what the devil do you want here?"
-
-"Ten minutes' talk with you, my good sir," said Holmes in the sweetest
-of voices.
-
-"I've no time to talk to every gadabout. We want no stranger here. Be
-off, or you may find a dog at your heels."
-
-Holmes leaned forward and whispered something in the trainer's ear. He
-started violently and flushed to the temples.
-
-"It's a lie!" he shouted, "an infernal lie!"
-
-"Very good. Shall we argue about it here in public or talk it over in
-your parlor?"
-
-"Oh, come in if you wish to."
-
-Holmes smiled. "I shall not keep you more than a few minutes, Watson,"
-said he. "Now, Mr. Brown, I am quite at your disposal."
-
-It was twenty minutes, and the reds had all faded into grays before
-Holmes and the trainer reappeared. Never have I seen such a change as
-had been brought about in Silas Brown in that short time. His face was
-ashy pale, beads of perspiration shone upon his brow, and his hands
-shook until the hunting-crop wagged like a branch in the wind. His
-bullying, overbearing manner was all gone too, and he cringed along at
-my companion's side like a dog with its master.
-
-"Your instructions will be done. It shall all be done," said he.
-
-"There must be no mistake," said Holmes, looking round at him. The other
-winced as he read the menace in his eyes.
-
-"Oh no, there shall be no mistake. It shall be there. Should I change it
-first or not?"
-
-Holmes thought a little and then burst out laughing. "No, don't," said
-he; "I shall write to you about it. No tricks, now, or--"
-
-"Oh, you can trust me, you can trust me!"
-
-"Yes, I think I can. Well, you shall hear from me to-morrow." He turned
-upon his heel, disregarding the trembling hand which the other held out
-to him, and we set off for King's Pyland.
-
-"A more perfect compound of the bully, coward, and sneak than Master
-Silas Brown I have seldom met with," remarked Holmes as we trudged along
-together.
-
-"He has the horse, then?"
-
-"He tried to bluster out of it, but I described to him so exactly what
-his actions had been upon that morning that he is convinced that I was
-watching him. Of course you observed the peculiarly square toes in the
-impressions, and that his own boots exactly corresponded to them.
-Again, of course no subordinate would have dared to do such a thing.
-I described to him how, when according to his custom he was the first
-down, he perceived a strange horse wandering over the moor. How he went
-out to it, and his astonishment at recognizing, from the white forehead
-which has given the favorite its name, that chance had put in his power
-the only horse which could beat the one upon which he had put his money.
-Then I described how his first impulse had been to lead him back to
-King's Pyland, and how the devil had shown him how he could hide the
-horse until the race was over, and how he had led it back and concealed
-it at Mapleton. When I told him every detail he gave it up and thought
-only of saving his own skin."
-
-"But his stables had been searched?"
-
-"Oh, an old horse-faker like him has many a dodge."
-
-"But are you not afraid to leave the horse in his power now, since he
-has every interest in injuring it?"
-
-"My dear fellow, he will guard it as the apple of his eye. He knows that
-his only hope of mercy is to produce it safe."
-
-"Colonel Ross did not impress me as a man who would be likely to show
-much mercy in any case."
-
-"The matter does not rest with Colonel Ross. I follow my own methods,
-and tell as much or as little as I choose. That is the advantage of
-being unofficial. I don't know whether you observed it, Watson, but the
-Colonel's manner has been just a trifle cavalier to me. I am inclined
-now to have a little amusement at his expense. Say nothing to him about
-the horse."
-
-"Certainly not without your permission."
-
-"And of course this is all quite a minor point compared to the question
-of who killed John Straker."
-
-"And you will devote yourself to that?"
-
-"On the contrary, we both go back to London by the night train."
-
-I was thunderstruck by my friend's words. We had only been a few hours
-in Devonshire, and that he should give up an investigation which he had
-begun so brilliantly was quite incomprehensible to me. Not a word more
-could I draw from him until we were back at the trainer's house. The
-Colonel and the Inspector were awaiting us in the parlor.
-
-"My friend and I return to town by the night-express," said Holmes. "We
-have had a charming little breath of your beautiful Dartmoor air."
-
-The Inspector opened his eyes, and the Colonel's lip curled in a sneer.
-
-"So you despair of arresting the murderer of poor Straker," said he.
-
-Holmes shrugged his shoulders. "There are certainly grave difficulties
-in the way," said he. "I have every hope, however, that your horse
-will start upon Tuesday, and I beg that you will have your jockey in
-readiness. Might I ask for a photograph of Mr. John Straker?"
-
-The Inspector took one from an envelope and handed it to him.
-
-"My dear Gregory, you anticipate all my wants. If I might ask you to
-wait here for an instant, I have a question which I should like to put
-to the maid."
-
-"I must say that I am rather disappointed in our London consultant,"
-said Colonel Ross, bluntly, as my friend left the room. "I do not see
-that we are any further than when he came."
-
-"At least you have his assurance that your horse will run," said I.
-
-"Yes, I have his assurance," said the Colonel, with a shrug of his
-shoulders. "I should prefer to have the horse."
-
-I was about to make some reply in defence of my friend when he entered
-the room again.
-
-"Now, gentlemen," said he, "I am quite ready for Tavistock."
-
-As we stepped into the carriage one of the stable-lads held the door
-open for us. A sudden idea seemed to occur to Holmes, for he leaned
-forward and touched the lad upon the sleeve.
-
-"You have a few sheep in the paddock," he said. "Who attends to them?"
-
-"I do, sir."
-
-"Have you noticed anything amiss with them of late?"
-
-"Well, sir, not of much account; but three of them have gone lame, sir."
-
-I could see that Holmes was extremely pleased, for he chuckled and
-rubbed his hands together.
-
-"A long shot, Watson; a very long shot," said he, pinching my arm.
-"Gregory, let me recommend to your attention this singular epidemic
-among the sheep. Drive on, coachman!"
-
-Colonel Ross still wore an expression which showed the poor opinion
-which he had formed of my companion's ability, but I saw by the
-Inspector's face that his attention had been keenly aroused.
-
-"You consider that to be important?" he asked.
-
-"Exceedingly so."
-
-"Is there any point to which you would wish to draw my attention?"
-
-"To the curious incident of the dog in the night-time."
-
-"The dog did nothing in the night-time."
-
-"That was the curious incident," remarked Sherlock Holmes.
-
-
-Four days later Holmes and I were again in the train, bound for
-Winchester to see the race for the Wessex Cup. Colonel Ross met us by
-appointment outside the station, and we drove in his drag to the course
-beyond the town. His face was grave, and his manner was cold in the
-extreme.
-
-"I have seen nothing of my horse," said he.
-
-"I suppose that you would know him when you saw him?" asked Holmes.
-
-The Colonel was very angry. "I have been on the turf for twenty years,
-and never was asked such a question as that before," said he. "A
-child would know Silver Blaze, with his white forehead and his mottled
-off-foreleg."
-
-"How is the betting?"
-
-"Well, that is the curious part of it. You could have got fifteen to one
-yesterday, but the price has become shorter and shorter, until you can
-hardly get three to one now."
-
-"Hum!" said Holmes. "Somebody knows something, that is clear."
-
-As the drag drew up in the enclosure near the grand stand I glanced at
-the card to see the entries.
-
-Wessex Plate [it ran] 50 sovs each h ft with 1000 sovs added for four
-and five year olds. Second, L300. Third, L200. New course (one mile and
-five furlongs). Mr. Heath Newton's The Negro. Red cap. Cinnamon jacket.
-Colonel Wardlaw's Pugilist. Pink cap. Blue and black jacket. Lord
-Backwater's Desborough. Yellow cap and sleeves. Colonel Ross's Silver
-Blaze. Black cap. Red jacket. Duke of Balmoral's Iris. Yellow and black
-stripes. Lord Singleford's Rasper. Purple cap. Black sleeves.
-
-"We scratched our other one, and put all hopes on your word," said the
-Colonel. "Why, what is that? Silver Blaze favorite?"
-
-"Five to four against Silver Blaze!" roared the ring. "Five to four
-against Silver Blaze! Five to fifteen against Desborough! Five to four
-on the field!"
-
-"There are the numbers up," I cried. "They are all six there."
-
-"All six there? Then my horse is running," cried the Colonel in great
-agitation. "But I don't see him. My colors have not passed."
-
-"Only five have passed. This must be he."
-
-As I spoke a powerful bay horse swept out from the weighing enclosure
-and cantered past us, bearing on its back the well-known black and red
-of the Colonel.
-
-"That's not my horse," cried the owner. "That beast has not a white hair
-upon its body. What is this that you have done, Mr. Holmes?"
-
-"Well, well, let us see how he gets on," said my friend, imperturbably.
-For a few minutes he gazed through my field-glass. "Capital! An
-excellent start!" he cried suddenly. "There they are, coming round the
-curve!"
-
-From our drag we had a superb view as they came up the straight. The six
-horses were so close together that a carpet could have covered them,
-but half way up the yellow of the Mapleton stable showed to the front.
-Before they reached us, however, Desborough's bolt was shot, and the
-Colonel's horse, coming away with a rush, passed the post a good six
-lengths before its rival, the Duke of Balmoral's Iris making a bad
-third.
-
-"It's my race, anyhow," gasped the Colonel, passing his hand over his
-eyes. "I confess that I can make neither head nor tail of it. Don't you
-think that you have kept up your mystery long enough, Mr. Holmes?"
-
-"Certainly, Colonel, you shall know everything. Let us all go round and
-have a look at the horse together. Here he is," he continued, as we made
-our way into the weighing enclosure, where only owners and their friends
-find admittance. "You have only to wash his face and his leg in spirits
-of wine, and you will find that he is the same old Silver Blaze as
-ever."
-
-"You take my breath away!"
-
-"I found him in the hands of a faker, and took the liberty of running
-him just as he was sent over."
-
-"My dear sir, you have done wonders. The horse looks very fit and well.
-It never went better in its life. I owe you a thousand apologies
-for having doubted your ability. You have done me a great service by
-recovering my horse. You would do me a greater still if you could lay
-your hands on the murderer of John Straker."
-
-"I have done so," said Holmes quietly.
-
-The Colonel and I stared at him in amazement. "You have got him! Where
-is he, then?"
-
-"He is here."
-
-"Here! Where?"
-
-"In my company at the present moment."
-
-The Colonel flushed angrily. "I quite recognize that I am under
-obligations to you, Mr. Holmes," said he, "but I must regard what you
-have just said as either a very bad joke or an insult."
-
-Sherlock Holmes laughed. "I assure you that I have not associated
-you with the crime, Colonel," said he. "The real murderer is standing
-immediately behind you." He stepped past and laid his hand upon the
-glossy neck of the thoroughbred.
-
-"The horse!" cried both the Colonel and myself.
-
-"Yes, the horse. And it may lessen his guilt if I say that it was
-done in self-defence, and that John Straker was a man who was entirely
-unworthy of your confidence. But there goes the bell, and as I stand
-to win a little on this next race, I shall defer a lengthy explanation
-until a more fitting time."
-
-
-
-We had the corner of a Pullman car to ourselves that evening as we
-whirled back to London, and I fancy that the journey was a short one
-to Colonel Ross as well as to myself, as we listened to our
-companion's narrative of the events which had occurred at the Dartmoor
-training-stables upon the Monday night, and the means by which he had
-unravelled them.
-
-"I confess," said he, "that any theories which I had formed from
-the newspaper reports were entirely erroneous. And yet there were
-indications there, had they not been overlaid by other details which
-concealed their true import. I went to Devonshire with the conviction
-that Fitzroy Simpson was the true culprit, although, of course, I saw
-that the evidence against him was by no means complete. It was while I
-was in the carriage, just as we reached the trainer's house, that the
-immense significance of the curried mutton occurred to me. You may
-remember that I was distrait, and remained sitting after you had all
-alighted. I was marvelling in my own mind how I could possibly have
-overlooked so obvious a clue."
-
-"I confess," said the Colonel, "that even now I cannot see how it helps
-us."
-
-"It was the first link in my chain of reasoning. Powdered opium is by no
-means tasteless. The flavor is not disagreeable, but it is perceptible.
-Were it mixed with any ordinary dish the eater would undoubtedly detect
-it, and would probably eat no more. A curry was exactly the medium
-which would disguise this taste. By no possible supposition could
-this stranger, Fitzroy Simpson, have caused curry to be served in
-the trainer's family that night, and it is surely too monstrous a
-coincidence to suppose that he happened to come along with powdered
-opium upon the very night when a dish happened to be served which would
-disguise the flavor. That is unthinkable. Therefore Simpson becomes
-eliminated from the case, and our attention centers upon Straker and
-his wife, the only two people who could have chosen curried mutton for
-supper that night. The opium was added after the dish was set aside
-for the stable-boy, for the others had the same for supper with no ill
-effects. Which of them, then, had access to that dish without the maid
-seeing them?
-
-"Before deciding that question I had grasped the significance of the
-silence of the dog, for one true inference invariably suggests others.
-The Simpson incident had shown me that a dog was kept in the stables,
-and yet, though some one had been in and had fetched out a horse, he
-had not barked enough to arouse the two lads in the loft. Obviously the
-midnight visitor was some one whom the dog knew well.
-
-"I was already convinced, or almost convinced, that John Straker went
-down to the stables in the dead of the night and took out Silver Blaze.
-For what purpose? For a dishonest one, obviously, or why should he drug
-his own stable-boy? And yet I was at a loss to know why. There have been
-cases before now where trainers have made sure of great sums of money
-by laying against their own horses, through agents, and then preventing
-them from winning by fraud. Sometimes it is a pulling jockey. Sometimes
-it is some surer and subtler means. What was it here? I hoped that the
-contents of his pockets might help me to form a conclusion.
-
-"And they did so. You cannot have forgotten the singular knife which was
-found in the dead man's hand, a knife which certainly no sane man would
-choose for a weapon. It was, as Dr. Watson told us, a form of knife
-which is used for the most delicate operations known in surgery. And it
-was to be used for a delicate operation that night. You must know, with
-your wide experience of turf matters, Colonel Ross, that it is possible
-to make a slight nick upon the tendons of a horse's ham, and to do it
-subcutaneously, so as to leave absolutely no trace. A horse so treated
-would develop a slight lameness, which would be put down to a strain in
-exercise or a touch of rheumatism, but never to foul play."
-
-"Villain! Scoundrel!" cried the Colonel.
-
-"We have here the explanation of why John Straker wished to take the
-horse out on to the moor. So spirited a creature would have certainly
-roused the soundest of sleepers when it felt the prick of the knife. It
-was absolutely necessary to do it in the open air."
-
-"I have been blind!" cried the Colonel. "Of course that was why he
-needed the candle, and struck the match."
-
-"Undoubtedly. But in examining his belongings I was fortunate enough to
-discover not only the method of the crime, but even its motives. As a
-man of the world, Colonel, you know that men do not carry other people's
-bills about in their pockets. We have most of us quite enough to do to
-settle our own. I at once concluded that Straker was leading a double
-life, and keeping a second establishment. The nature of the bill showed
-that there was a lady in the case, and one who had expensive tastes.
-Liberal as you are with your servants, one can hardly expect that they
-can buy twenty-guinea walking dresses for their ladies. I questioned
-Mrs. Straker as to the dress without her knowing it, and having
-satisfied myself that it had never reached her, I made a note of the
-milliner's address, and felt that by calling there with Straker's
-photograph I could easily dispose of the mythical Derbyshire.
-
-"From that time on all was plain. Straker had led out the horse to a
-hollow where his light would be invisible. Simpson in his flight had
-dropped his cravat, and Straker had picked it up--with some idea,
-perhaps, that he might use it in securing the horse's leg. Once in the
-hollow, he had got behind the horse and had struck a light; but the
-creature frightened at the sudden glare, and with the strange instinct
-of animals feeling that some mischief was intended, had lashed out, and
-the steel shoe had struck Straker full on the forehead. He had already,
-in spite of the rain, taken off his overcoat in order to do his delicate
-task, and so, as he fell, his knife gashed his thigh. Do I make it
-clear?"
-
-"Wonderful!" cried the Colonel. "Wonderful! You might have been there!"
-
-"My final shot was, I confess a very long one. It struck me that so
-astute a man as Straker would not undertake this delicate tendon-nicking
-without a little practice. What could he practice on? My eyes fell upon
-the sheep, and I asked a question which, rather to my surprise, showed
-that my surmise was correct.
-
-"When I returned to London I called upon the milliner, who had
-recognized Straker as an excellent customer of the name of Derbyshire,
-who had a very dashing wife, with a strong partiality for expensive
-dresses. I have no doubt that this woman had plunged him over head and
-ears in debt, and so led him into this miserable plot."
-
-"You have explained all but one thing," cried the Colonel. "Where was
-the horse?"
-
-"Ah, it bolted, and was cared for by one of your neighbors. We must have
-an amnesty in that direction, I think. This is Clapham Junction, if I am
-not mistaken, and we shall be in Victoria in less than ten minutes. If
-you care to smoke a cigar in our rooms, Colonel, I shall be happy to
-give you any other details which might interest you."
-
-
-
-
-Adventure II. The Yellow Face
-
-
-[In publishing these short sketches based upon the numerous cases in
-which my companion's singular gifts have made us the listeners to, and
-eventually the actors in, some strange drama, it is only natural that I
-should dwell rather upon his successes than upon his failures. And this
-not so much for the sake of his reputation--for, indeed, it was when
-he was at his wits' end that his energy and his versatility were most
-admirable--but because where he failed it happened too often that no one
-else succeeded, and that the tale was left forever without a conclusion.
-Now and again, however, it chanced that even when he erred, the truth
-was still discovered. I have noted of some half-dozen cases of the
-kind; the Adventure of the Musgrave Ritual and that which I am about to
-recount are the two which present the strongest features of interest.]
-
-Sherlock Holmes was a man who seldom took exercise for exercise's sake.
-Few men were capable of greater muscular effort, and he was undoubtedly
-one of the finest boxers of his weight that I have ever seen; but he
-looked upon aimless bodily exertion as a waste of energy, and he seldom
-bestirred himself save when there was some professional object to be
-served. Then he was absolutely untiring and indefatigable. That he
-should have kept himself in training under such circumstances is
-remarkable, but his diet was usually of the sparest, and his habits
-were simple to the verge of austerity. Save for the occasional use of
-cocaine, he had no vices, and he only turned to the drug as a protest
-against the monotony of existence when cases were scanty and the papers
-uninteresting.
-
-One day in early spring he had so far relaxed as to go for a walk with
-me in the Park, where the first faint shoots of green were breaking out
-upon the elms, and the sticky spear-heads of the chestnuts were just
-beginning to burst into their five-fold leaves. For two hours we rambled
-about together, in silence for the most part, as befits two men who know
-each other intimately. It was nearly five before we were back in Baker
-Street once more.
-
-"Beg pardon, sir," said our page-boy, as he opened the door. "There's
-been a gentleman here asking for you, sir."
-
-Holmes glanced reproachfully at me. "So much for afternoon walks!" said
-he. "Has this gentleman gone, then?"
-
-"Yes, sir."
-
-"Didn't you ask him in?"
-
-"Yes, sir; he came in."
-
-"How long did he wait?"
-
-"Half an hour, sir. He was a very restless gentleman, sir, a-walkin'
-and a-stampin' all the time he was here. I was waitin' outside the door,
-sir, and I could hear him. At last he outs into the passage, and he
-cries, 'Is that man never goin' to come?' Those were his very words,
-sir. 'You'll only need to wait a little longer,' says I. 'Then I'll wait
-in the open air, for I feel half choked,' says he. 'I'll be back before
-long.' And with that he ups and he outs, and all I could say wouldn't
-hold him back."
-
-"Well, well, you did your best," said Holmes, as we walked into our
-room. "It's very annoying, though, Watson. I was badly in need of
-a case, and this looks, from the man's impatience, as if it were of
-importance. Hullo! That's not your pipe on the table. He must have
-left his behind him. A nice old brier with a good long stem of what the
-tobacconists call amber. I wonder how many real amber mouthpieces there
-are in London? Some people think that a fly in it is a sign. Well, he
-must have been disturbed in his mind to leave a pipe behind him which he
-evidently values highly."
-
-"How do you know that he values it highly?" I asked.
-
-"Well, I should put the original cost of the pipe at seven and sixpence.
-Now it has, you see, been twice mended, once in the wooden stem and once
-in the amber. Each of these mends, done, as you observe, with silver
-bands, must have cost more than the pipe did originally. The man must
-value the pipe highly when he prefers to patch it up rather than buy a
-new one with the same money."
-
-"Anything else?" I asked, for Holmes was turning the pipe about in his
-hand, and staring at it in his peculiar pensive way.
-
-He held it up and tapped on it with his long, thin fore-finger, as a
-professor might who was lecturing on a bone.
-
-"Pipes are occasionally of extraordinary interest," said he. "Nothing
-has more individuality, save perhaps watches and bootlaces. The
-indications here, however, are neither very marked nor very important.
-The owner is obviously a muscular man, left-handed, with an excellent
-set of teeth, careless in his habits, and with no need to practise
-economy."
-
-My friend threw out the information in a very offhand way, but I saw
-that he cocked his eye at me to see if I had followed his reasoning.
-
-"You think a man must be well-to-do if he smokes a seven-shilling pipe,"
-said I.
-
-"This is Grosvenor mixture at eightpence an ounce," Holmes answered,
-knocking a little out on his palm. "As he might get an excellent smoke
-for half the price, he has no need to practise economy."
-
-"And the other points?"
-
-"He has been in the habit of lighting his pipe at lamps and gas-jets.
-You can see that it is quite charred all down one side. Of course a
-match could not have done that. Why should a man hold a match to the
-side of his pipe? But you cannot light it at a lamp without getting the
-bowl charred. And it is all on the right side of the pipe. From that I
-gather that he is a left-handed man. You hold your own pipe to the lamp,
-and see how naturally you, being right-handed, hold the left side to the
-flame. You might do it once the other way, but not as a constancy. This
-has always been held so. Then he has bitten through his amber. It takes
-a muscular, energetic fellow, and one with a good set of teeth, to do
-that. But if I am not mistaken I hear him upon the stair, so we shall
-have something more interesting than his pipe to study."
-
-An instant later our door opened, and a tall young man entered the room.
-He was well but quietly dressed in a dark-gray suit, and carried a brown
-wide-awake in his hand. I should have put him at about thirty, though he
-was really some years older.
-
-"I beg your pardon," said he, with some embarrassment; "I suppose I
-should have knocked. Yes, of course I should have knocked. The fact
-is that I am a little upset, and you must put it all down to that." He
-passed his hand over his forehead like a man who is half dazed, and then
-fell rather than sat down upon a chair.
-
-"I can see that you have not slept for a night or two," said Holmes,
-in his easy, genial way. "That tries a man's nerves more than work, and
-more even than pleasure. May I ask how I can help you?"
-
-"I wanted your advice, sir. I don't know what to do and my whole life
-seems to have gone to pieces."
-
-"You wish to employ me as a consulting detective?"
-
-"Not that only. I want your opinion as a judicious man--as a man of the
-world. I want to know what I ought to do next. I hope to God you'll be
-able to tell me."
-
-He spoke in little, sharp, jerky outbursts, and it seemed to me that to
-speak at all was very painful to him, and that his will all through was
-overriding his inclinations.
-
-"It's a very delicate thing," said he. "One does not like to speak of
-one's domestic affairs to strangers. It seems dreadful to discuss the
-conduct of one's wife with two men whom I have never seen before. It's
-horrible to have to do it. But I've got to the end of my tether, and I
-must have advice."
-
-"My dear Mr. Grant Munro--" began Holmes.
-
-Our visitor sprang from his chair. "What!" he cried, "you know my name?"
-
-"If you wish to preserve your incognito," said Holmes, smiling, "I would
-suggest that you cease to write your name upon the lining of your
-hat, or else that you turn the crown towards the person whom you are
-addressing. I was about to say that my friend and I have listened to a
-good many strange secrets in this room, and that we have had the good
-fortune to bring peace to many troubled souls. I trust that we may do as
-much for you. Might I beg you, as time may prove to be of importance, to
-furnish me with the facts of your case without further delay?"
-
-Our visitor again passed his hand over his forehead, as if he found it
-bitterly hard. From every gesture and expression I could see that he was
-a reserved, self-contained man, with a dash of pride in his nature, more
-likely to hide his wounds than to expose them. Then suddenly, with a
-fierce gesture of his closed hand, like one who throws reserve to the
-winds, he began.
-
-"The facts are these, Mr. Holmes," said he. "I am a married man, and
-have been so for three years. During that time my wife and I have loved
-each other as fondly and lived as happily as any two that ever were
-joined. We have not had a difference, not one, in thought or word or
-deed. And now, since last Monday, there has suddenly sprung up a barrier
-between us, and I find that there is something in her life and in her
-thought of which I know as little as if she were the woman who brushes
-by me in the street. We are estranged, and I want to know why.
-
-"Now there is one thing that I want to impress upon you before I go
-any further, Mr. Holmes. Effie loves me. Don't let there be any mistake
-about that. She loves me with her whole heart and soul, and never more
-than now. I know it. I feel it. I don't want to argue about that. A man
-can tell easily enough when a woman loves him. But there's this secret
-between us, and we can never be the same until it is cleared."
-
-"Kindly let me have the facts, Mr. Munro," said Holmes, with some
-impatience.
-
-"I'll tell you what I know about Effie's history. She was a widow when
-I met her first, though quite young--only twenty-five. Her name then was
-Mrs. Hebron. She went out to America when she was young, and lived in
-the town of Atlanta, where she married this Hebron, who was a lawyer
-with a good practice. They had one child, but the yellow fever broke out
-badly in the place, and both husband and child died of it. I have seen
-his death certificate. This sickened her of America, and she came back
-to live with a maiden aunt at Pinner, in Middlesex. I may mention that
-her husband had left her comfortably off, and that she had a capital of
-about four thousand five hundred pounds, which had been so well invested
-by him that it returned an average of seven per cent. She had only been
-six months at Pinner when I met her; we fell in love with each other,
-and we married a few weeks afterwards.
-
-"I am a hop merchant myself, and as I have an income of seven or
-eight hundred, we found ourselves comfortably off, and took a nice
-eighty-pound-a-year villa at Norbury. Our little place was very
-countrified, considering that it is so close to town. We had an inn and
-two houses a little above us, and a single cottage at the other side of
-the field which faces us, and except those there were no houses until
-you got half way to the station. My business took me into town at
-certain seasons, but in summer I had less to do, and then in our country
-home my wife and I were just as happy as could be wished. I tell you
-that there never was a shadow between us until this accursed affair
-began.
-
-"There's one thing I ought to tell you before I go further. When we
-married, my wife made over all her property to me--rather against my
-will, for I saw how awkward it would be if my business affairs went
-wrong. However, she would have it so, and it was done. Well, about six
-weeks ago she came to me.
-
-"'Jack,' said she, 'when you took my money you said that if ever I
-wanted any I was to ask you for it.'
-
-"'Certainly,' said I. 'It's all your own.'
-
-"'Well,' said she, 'I want a hundred pounds.'
-
-"I was a bit staggered at this, for I had imagined it was simply a new
-dress or something of the kind that she was after.
-
-"'What on earth for?' I asked.
-
-"'Oh,' said she, in her playful way, 'you said that you were only my
-banker, and bankers never ask questions, you know.'
-
-"'If you really mean it, of course you shall have the money,' said I.
-
-"'Oh, yes, I really mean it.'
-
-"'And you won't tell me what you want it for?'
-
-"'Some day, perhaps, but not just at present, Jack.'
-
-"So I had to be content with that, though it was the first time that
-there had ever been any secret between us. I gave her a check, and I
-never thought any more of the matter. It may have nothing to do with
-what came afterwards, but I thought it only right to mention it.
-
-"Well, I told you just now that there is a cottage not far from our
-house. There is just a field between us, but to reach it you have to
-go along the road and then turn down a lane. Just beyond it is a nice
-little grove of Scotch firs, and I used to be very fond of strolling
-down there, for trees are always a neighborly kind of things. The
-cottage had been standing empty this eight months, and it was a pity,
-for it was a pretty two-storied place, with an old-fashioned porch and
-honeysuckle about it. I have stood many a time and thought what a neat
-little homestead it would make.
-
-"Well, last Monday evening I was taking a stroll down that way, when
-I met an empty van coming up the lane, and saw a pile of carpets and
-things lying about on the grass-plot beside the porch. It was clear that
-the cottage had at last been let. I walked past it, and wondered what
-sort of folk they were who had come to live so near us. And as I looked
-I suddenly became aware that a face was watching me out of one of the
-upper windows.
-
-"I don't know what there was about that face, Mr. Holmes, but it seemed
-to send a chill right down my back. I was some little way off, so that
-I could not make out the features, but there was something unnatural and
-inhuman about the face. That was the impression that I had, and I moved
-quickly forwards to get a nearer view of the person who was watching
-me. But as I did so the face suddenly disappeared, so suddenly that it
-seemed to have been plucked away into the darkness of the room. I stood
-for five minutes thinking the business over, and trying to analyze my
-impressions. I could not tell if the face were that of a man or a
-woman. It had been too far from me for that. But its color was what had
-impressed me most. It was of a livid chalky white, and with something
-set and rigid about it which was shockingly unnatural. So disturbed
-was I that I determined to see a little more of the new inmates of
-the cottage. I approached and knocked at the door, which was instantly
-opened by a tall, gaunt woman with a harsh, forbidding face.
-
-"'What may you be wantin'?' she asked, in a Northern accent.
-
-"'I am your neighbor over yonder,' said I, nodding towards my house. 'I
-see that you have only just moved in, so I thought that if I could be of
-any help to you in any--'
-
-"'Ay, we'll just ask ye when we want ye,' said she, and shut the door
-in my face. Annoyed at the churlish rebuff, I turned my back and walked
-home. All evening, though I tried to think of other things, my mind
-would still turn to the apparition at the window and the rudeness of the
-woman. I determined to say nothing about the former to my wife, for
-she is a nervous, highly strung woman, and I had no wish that she would
-share the unpleasant impression which had been produced upon myself. I
-remarked to her, however, before I fell asleep, that the cottage was now
-occupied, to which she returned no reply.
-
-"I am usually an extremely sound sleeper. It has been a standing jest
-in the family that nothing could ever wake me during the night. And yet
-somehow on that particular night, whether it may have been the slight
-excitement produced by my little adventure or not I know not, but
-I slept much more lightly than usual. Half in my dreams I was dimly
-conscious that something was going on in the room, and gradually became
-aware that my wife had dressed herself and was slipping on her mantle
-and her bonnet. My lips were parted to murmur out some sleepy words of
-surprise or remonstrance at this untimely preparation, when suddenly my
-half-opened eyes fell upon her face, illuminated by the candle-light,
-and astonishment held me dumb. She wore an expression such as I had
-never seen before--such as I should have thought her incapable of
-assuming. She was deadly pale and breathing fast, glancing furtively
-towards the bed as she fastened her mantle, to see if she had disturbed
-me. Then, thinking that I was still asleep, she slipped noiselessly from
-the room, and an instant later I heard a sharp creaking which could only
-come from the hinges of the front door. I sat up in bed and rapped my
-knuckles against the rail to make certain that I was truly awake. Then
-I took my watch from under the pillow. It was three in the morning. What
-on this earth could my wife be doing out on the country road at three in
-the morning?
-
-"I had sat for about twenty minutes turning the thing over in my mind
-and trying to find some possible explanation. The more I thought, the
-more extraordinary and inexplicable did it appear. I was still puzzling
-over it when I heard the door gently close again, and her footsteps
-coming up the stairs.
-
-"'Where in the world have you been, Effie?' I asked as she entered.
-
-"She gave a violent start and a kind of gasping cry when I spoke, and
-that cry and start troubled me more than all the rest, for there was
-something indescribably guilty about them. My wife had always been
-a woman of a frank, open nature, and it gave me a chill to see her
-slinking into her own room, and crying out and wincing when her own
-husband spoke to her.
-
-"'You awake, Jack!' she cried, with a nervous laugh. 'Why, I thought
-that nothing could awake you.'
-
-"'Where have you been?' I asked, more sternly.
-
-"'I don't wonder that you are surprised,' said she, and I could see that
-her fingers were trembling as she undid the fastenings of her mantle.
-'Why, I never remember having done such a thing in my life before. The
-fact is that I felt as though I were choking, and had a perfect longing
-for a breath of fresh air. I really think that I should have fainted if
-I had not gone out. I stood at the door for a few minutes, and now I am
-quite myself again.'
-
-"All the time that she was telling me this story she never once looked
-in my direction, and her voice was quite unlike her usual tones. It
-was evident to me that she was saying what was false. I said nothing
-in reply, but turned my face to the wall, sick at heart, with my mind
-filled with a thousand venomous doubts and suspicions. What was it that
-my wife was concealing from me? Where had she been during that strange
-expedition? I felt that I should have no peace until I knew, and yet I
-shrank from asking her again after once she had told me what was false.
-All the rest of the night I tossed and tumbled, framing theory after
-theory, each more unlikely than the last.
-
-"I should have gone to the City that day, but I was too disturbed in my
-mind to be able to pay attention to business matters. My wife seemed
-to be as upset as myself, and I could see from the little questioning
-glances which she kept shooting at me that she understood that I
-disbelieved her statement, and that she was at her wits' end what to do.
-We hardly exchanged a word during breakfast, and immediately afterwards
-I went out for a walk, that I might think the matter out in the fresh
-morning air.
-
-"I went as far as the Crystal Palace, spent an hour in the grounds, and
-was back in Norbury by one o'clock. It happened that my way took me past
-the cottage, and I stopped for an instant to look at the windows, and to
-see if I could catch a glimpse of the strange face which had looked
-out at me on the day before. As I stood there, imagine my surprise, Mr.
-Holmes, when the door suddenly opened and my wife walked out.
-
-"I was struck dumb with astonishment at the sight of her; but my
-emotions were nothing to those which showed themselves upon her face
-when our eyes met. She seemed for an instant to wish to shrink back
-inside the house again; and then, seeing how useless all concealment
-must be, she came forward, with a very white face and frightened eyes
-which belied the smile upon her lips.
-
-"'Ah, Jack,' she said, 'I have just been in to see if I can be of any
-assistance to our new neighbors. Why do you look at me like that, Jack?
-You are not angry with me?'
-
-"'So,' said I, 'this is where you went during the night.'
-
-"'What do you mean?' she cried.
-
-"'You came here. I am sure of it. Who are these people, that you should
-visit them at such an hour?'
-
-"'I have not been here before.'
-
-"'How can you tell me what you know is false?' I cried. 'Your very voice
-changes as you speak. When have I ever had a secret from you? I shall
-enter that cottage, and I shall probe the matter to the bottom.'
-
-"'No, no, Jack, for God's sake!' she gasped, in uncontrollable emotion.
-Then, as I approached the door, she seized my sleeve and pulled me back
-with convulsive strength.
-
-"'I implore you not to do this, Jack,' she cried. 'I swear that I will
-tell you everything some day, but nothing but misery can come of it if
-you enter that cottage.' Then, as I tried to shake her off, she clung to
-me in a frenzy of entreaty.
-
-"'Trust me, Jack!' she cried. 'Trust me only this once. You will never
-have cause to regret it. You know that I would not have a secret from
-you if it were not for your own sake. Our whole lives are at stake in
-this. If you come home with me, all will be well. If you force your way
-into that cottage, all is over between us.'
-
-"There was such earnestness, such despair, in her manner that her words
-arrested me, and I stood irresolute before the door.
-
-"'I will trust you on one condition, and on one condition only,' said I
-at last. 'It is that this mystery comes to an end from now. You are
-at liberty to preserve your secret, but you must promise me that there
-shall be no more nightly visits, no more doings which are kept from my
-knowledge. I am willing to forget those which are passed if you will
-promise that there shall be no more in the future.'
-
-"'I was sure that you would trust me,' she cried, with a great sigh of
-relief. 'It shall be just as you wish. Come away--oh, come away up to
-the house.'
-
-"Still pulling at my sleeve, she led me away from the cottage. As we
-went I glanced back, and there was that yellow livid face watching us
-out of the upper window. What link could there be between that creature
-and my wife? Or how could the coarse, rough woman whom I had seen the
-day before be connected with her? It was a strange puzzle, and yet I
-knew that my mind could never know ease again until I had solved it.
-
-"For two days after this I stayed at home, and my wife appeared to abide
-loyally by our engagement, for, as far as I know, she never stirred out
-of the house. On the third day, however, I had ample evidence that
-her solemn promise was not enough to hold her back from this secret
-influence which drew her away from her husband and her duty.
-
-"I had gone into town on that day, but I returned by the 2.40 instead of
-the 3.36, which is my usual train. As I entered the house the maid ran
-into the hall with a startled face.
-
-"'Where is your mistress?' I asked.
-
-"'I think that she has gone out for a walk,' she answered.
-
-"My mind was instantly filled with suspicion. I rushed upstairs to make
-sure that she was not in the house. As I did so I happened to glance out
-of one of the upper windows, and saw the maid with whom I had just been
-speaking running across the field in the direction of the cottage. Then
-of course I saw exactly what it all meant. My wife had gone over there,
-and had asked the servant to call her if I should return. Tingling with
-anger, I rushed down and hurried across, determined to end the matter
-once and forever. I saw my wife and the maid hurrying back along the
-lane, but I did not stop to speak with them. In the cottage lay the
-secret which was casting a shadow over my life. I vowed that, come what
-might, it should be a secret no longer. I did not even knock when I
-reached it, but turned the handle and rushed into the passage.
-
-"It was all still and quiet upon the ground floor. In the kitchen a
-kettle was singing on the fire, and a large black cat lay coiled up in
-the basket; but there was no sign of the woman whom I had seen before.
-I ran into the other room, but it was equally deserted. Then I rushed up
-the stairs, only to find two other rooms empty and deserted at the top.
-There was no one at all in the whole house. The furniture and pictures
-were of the most common and vulgar description, save in the one chamber
-at the window of which I had seen the strange face. That was comfortable
-and elegant, and all my suspicions rose into a fierce bitter flame when
-I saw that on the mantelpiece stood a copy of a full-length photograph
-of my wife, which had been taken at my request only three months ago.
-
-"I stayed long enough to make certain that the house was absolutely
-empty. Then I left it, feeling a weight at my heart such as I had never
-had before. My wife came out into the hall as I entered my house; but I
-was too hurt and angry to speak with her, and pushing past her, I made
-my way into my study. She followed me, however, before I could close the
-door.
-
-"'I am sorry that I broke my promise, Jack,' said she; 'but if you knew
-all the circumstances I am sure that you would forgive me.'
-
-"'Tell me everything, then,' said I.
-
-"'I cannot, Jack, I cannot,' she cried.
-
-"'Until you tell me who it is that has been living in that cottage, and
-who it is to whom you have given that photograph, there can never be any
-confidence between us,' said I, and breaking away from her, I left the
-house. That was yesterday, Mr. Holmes, and I have not seen her since,
-nor do I know anything more about this strange business. It is the first
-shadow that has come between us, and it has so shaken me that I do not
-know what I should do for the best. Suddenly this morning it occurred to
-me that you were the man to advise me, so I have hurried to you now, and
-I place myself unreservedly in your hands. If there is any point which I
-have not made clear, pray question me about it. But, above all, tell me
-quickly what I am to do, for this misery is more than I can bear."
-
-Holmes and I had listened with the utmost interest to this extraordinary
-statement, which had been delivered in the jerky, broken fashion of a
-man who is under the influence of extreme emotions. My companion sat
-silent for some time, with his chin upon his hand, lost in thought.
-
-"Tell me," said he at last, "could you swear that this was a man's face
-which you saw at the window?"
-
-"Each time that I saw it I was some distance away from it, so that it is
-impossible for me to say."
-
-"You appear, however, to have been disagreeably impressed by it."
-
-"It seemed to be of an unnatural color, and to have a strange rigidity
-about the features. When I approached, it vanished with a jerk."
-
-"How long is it since your wife asked you for a hundred pounds?"
-
-"Nearly two months."
-
-"Have you ever seen a photograph of her first husband?"
-
-"No; there was a great fire at Atlanta very shortly after his death, and
-all her papers were destroyed."
-
-"And yet she had a certificate of death. You say that you saw it."
-
-"Yes; she got a duplicate after the fire."
-
-"Did you ever meet any one who knew her in America?"
-
-"No."
-
-"Did she ever talk of revisiting the place?"
-
-"No."
-
-"Or get letters from it?"
-
-"No."
-
-"Thank you. I should like to think over the matter a little now. If the
-cottage is now permanently deserted we may have some difficulty. If, on
-the other hand, as I fancy is more likely, the inmates were warned of
-your coming, and left before you entered yesterday, then they may be
-back now, and we should clear it all up easily. Let me advise you, then,
-to return to Norbury, and to examine the windows of the cottage again.
-If you have reason to believe that it is inhabited, do not force your
-way in, but send a wire to my friend and me. We shall be with you within
-an hour of receiving it, and we shall then very soon get to the bottom
-of the business."
-
-"And if it is still empty?"
-
-"In that case I shall come out to-morrow and talk it over with you.
-Good-by; and, above all, do not fret until you know that you really have
-a cause for it."
-
-"I am afraid that this is a bad business, Watson," said my companion, as
-he returned after accompanying Mr. Grant Munro to the door. "What do you
-make of it?"
-
-"It had an ugly sound," I answered.
-
-"Yes. There's blackmail in it, or I am much mistaken."
-
-"And who is the blackmailer?"
-
-"Well, it must be the creature who lives in the only comfortable room
-in the place, and has her photograph above his fireplace. Upon my word,
-Watson, there is something very attractive about that livid face at the
-window, and I would not have missed the case for worlds."
-
-"You have a theory?"
-
-"Yes, a provisional one. But I shall be surprised if it does not turn
-out to be correct. This woman's first husband is in that cottage."
-
-"Why do you think so?"
-
-"How else can we explain her frenzied anxiety that her second one should
-not enter it? The facts, as I read them, are something like this:
-This woman was married in America. Her husband developed some hateful
-qualities; or shall we say that he contracted some loathsome disease,
-and became a leper or an imbecile? She flies from him at last, returns
-to England, changes her name, and starts her life, as she thinks,
-afresh. She has been married three years, and believes that her position
-is quite secure, having shown her husband the death certificate of
-some man whose name she has assumed, when suddenly her whereabouts
-is discovered by her first husband; or, we may suppose, by some
-unscrupulous woman who has attached herself to the invalid. They write
-to the wife, and threaten to come and expose her. She asks for a hundred
-pounds, and endeavors to buy them off. They come in spite of it, and
-when the husband mentions casually to the wife that there are new-comers
-in the cottage, she knows in some way that they are her pursuers. She
-waits until her husband is asleep, and then she rushes down to endeavor
-to persuade them to leave her in peace. Having no success, she goes
-again next morning, and her husband meets her, as he has told us, as
-she comes out. She promises him then not to go there again, but two days
-afterwards the hope of getting rid of those dreadful neighbors was too
-strong for her, and she made another attempt, taking down with her the
-photograph which had probably been demanded from her. In the midst of
-this interview the maid rushed in to say that the master had come home,
-on which the wife, knowing that he would come straight down to the
-cottage, hurried the inmates out at the back door, into the grove of
-fir-trees, probably, which was mentioned as standing near. In this way
-he found the place deserted. I shall be very much surprised, however, if
-it is still so when he reconnoitres it this evening. What do you think
-of my theory?"
-
-"It is all surmise."
-
-"But at least it covers all the facts. When new facts come to our
-knowledge which cannot be covered by it, it will be time enough to
-reconsider it. We can do nothing more until we have a message from our
-friend at Norbury."
-
-But we had not a very long time to wait for that. It came just as we had
-finished our tea. "The cottage is still tenanted," it said. "Have seen
-the face again at the window. Will meet the seven o'clock train, and
-will take no steps until you arrive."
-
-
-He was waiting on the platform when we stepped out, and we could see in
-the light of the station lamps that he was very pale, and quivering with
-agitation.
-
-"They are still there, Mr. Holmes," said he, laying his hand hard upon
-my friend's sleeve. "I saw lights in the cottage as I came down. We
-shall settle it now once and for all."
-
-"What is your plan, then?" asked Holmes, as he walked down the dark
-tree-lined road.
-
-"I am going to force my way in and see for myself who is in the house. I
-wish you both to be there as witnesses."
-
-"You are quite determined to do this, in spite of your wife's warning
-that it is better that you should not solve the mystery?"
-
-"Yes, I am determined."
-
-"Well, I think that you are in the right. Any truth is better than
-indefinite doubt. We had better go up at once. Of course, legally, we
-are putting ourselves hopelessly in the wrong; but I think that it is
-worth it."
-
-It was a very dark night, and a thin rain began to fall as we turned
-from the high road into a narrow lane, deeply rutted, with hedges on
-either side. Mr. Grant Munro pushed impatiently forward, however, and we
-stumbled after him as best we could.
-
-"There are the lights of my house," he murmured, pointing to a glimmer
-among the trees. "And here is the cottage which I am going to enter."
-
-We turned a corner in the lane as he spoke, and there was the building
-close beside us. A yellow bar falling across the black foreground showed
-that the door was not quite closed, and one window in the upper story
-was brightly illuminated. As we looked, we saw a dark blur moving across
-the blind.
-
-"There is that creature!" cried Grant Munro. "You can see for yourselves
-that some one is there. Now follow me, and we shall soon know all."
-
-We approached the door; but suddenly a woman appeared out of the shadow
-and stood in the golden track of the lamp-light. I could not see her
-face in the darkness, but her arms were thrown out in an attitude of
-entreaty.
-
-"For God's sake, don't Jack!" she cried. "I had a presentiment that you
-would come this evening. Think better of it, dear! Trust me again, and
-you will never have cause to regret it."
-
-"I have trusted you too long, Effie," he cried, sternly. "Leave go of
-me! I must pass you. My friends and I are going to settle this matter
-once and forever!" He pushed her to one side, and we followed closely
-after him. As he threw the door open an old woman ran out in front of
-him and tried to bar his passage, but he thrust her back, and an instant
-afterwards we were all upon the stairs. Grant Munro rushed into the
-lighted room at the top, and we entered at his heels.
-
-It was a cosey, well-furnished apartment, with two candles burning upon
-the table and two upon the mantelpiece. In the corner, stooping over a
-desk, there sat what appeared to be a little girl. Her face was turned
-away as we entered, but we could see that she was dressed in a red
-frock, and that she had long white gloves on. As she whisked round
-to us, I gave a cry of surprise and horror. The face which she turned
-towards us was of the strangest livid tint, and the features were
-absolutely devoid of any expression. An instant later the mystery was
-explained. Holmes, with a laugh, passed his hand behind the child's
-ear, a mask peeled off from her countenance, and there was a little coal
-black negress, with all her white teeth flashing in amusement at our
-amazed faces. I burst out laughing, out of sympathy with her merriment;
-but Grant Munro stood staring, with his hand clutching his throat.
-
-"My God!" he cried. "What can be the meaning of this?"
-
-"I will tell you the meaning of it," cried the lady, sweeping into
-the room with a proud, set face. "You have forced me, against my own
-judgment, to tell you, and now we must both make the best of it. My
-husband died at Atlanta. My child survived."
-
-"Your child?"
-
-She drew a large silver locket from her bosom. "You have never seen this
-open."
-
-"I understood that it did not open."
-
-She touched a spring, and the front hinged back. There was a portrait
-within of a man strikingly handsome and intelligent-looking, but bearing
-unmistakable signs upon his features of his African descent.
-
-"That is John Hebron, of Atlanta," said the lady, "and a nobler man
-never walked the earth. I cut myself off from my race in order to wed
-him, but never once while he lived did I for an instant regret it. It
-was our misfortune that our only child took after his people rather than
-mine. It is often so in such matches, and little Lucy is darker far than
-ever her father was. But dark or fair, she is my own dear little girlie,
-and her mother's pet." The little creature ran across at the words and
-nestled up against the lady's dress. "When I left her in America," she
-continued, "it was only because her health was weak, and the change
-might have done her harm. She was given to the care of a faithful Scotch
-woman who had once been our servant. Never for an instant did I dream
-of disowning her as my child. But when chance threw you in my way, Jack,
-and I learned to love you, I feared to tell you about my child. God
-forgive me, I feared that I should lose you, and I had not the courage
-to tell you. I had to choose between you, and in my weakness I turned
-away from my own little girl. For three years I have kept her existence
-a secret from you, but I heard from the nurse, and I knew that all was
-well with her. At last, however, there came an overwhelming desire to
-see the child once more. I struggled against it, but in vain. Though I
-knew the danger, I determined to have the child over, if it were but
-for a few weeks. I sent a hundred pounds to the nurse, and I gave her
-instructions about this cottage, so that she might come as a neighbor,
-without my appearing to be in any way connected with her. I pushed my
-precautions so far as to order her to keep the child in the house during
-the daytime, and to cover up her little face and hands so that even
-those who might see her at the window should not gossip about there
-being a black child in the neighborhood. If I had been less cautious
-I might have been more wise, but I was half crazy with fear that you
-should learn the truth.
-
-"It was you who told me first that the cottage was occupied. I should
-have waited for the morning, but I could not sleep for excitement, and
-so at last I slipped out, knowing how difficult it is to awake you. But
-you saw me go, and that was the beginning of my troubles. Next day you
-had my secret at your mercy, but you nobly refrained from pursuing your
-advantage. Three days later, however, the nurse and child only just
-escaped from the back door as you rushed in at the front one. And now
-to-night you at last know all, and I ask you what is to become of us, my
-child and me?" She clasped her hands and waited for an answer.
-
-It was a long ten minutes before Grant Munro broke the silence, and
-when his answer came it was one of which I love to think. He lifted
-the little child, kissed her, and then, still carrying her, he held his
-other hand out to his wife and turned towards the door.
-
-"We can talk it over more comfortably at home," said he. "I am not a
-very good man, Effie, but I think that I am a better one than you have
-given me credit for being."
-
-Holmes and I followed them down the lane, and my friend plucked at my
-sleeve as we came out.
-
-"I think," said he, "that we shall be of more use in London than in
-Norbury."
-
-Not another word did he say of the case until late that night, when he
-was turning away, with his lighted candle, for his bedroom.
-
-"Watson," said he, "if it should ever strike you that I am getting a
-little over-confident in my powers, or giving less pains to a case
-than it deserves, kindly whisper 'Norbury' in my ear, and I shall be
-infinitely obliged to you."
-
-
-
-
-Adventure III. The Stock-Broker's Clerk
-
-
-Shortly after my marriage I had bought a connection in the Paddington
-district. Old Mr. Farquhar, from whom I purchased it, had at one time an
-excellent general practice; but his age, and an affliction of the nature
-of St. Vitus's dance from which he suffered, had very much thinned it.
-The public not unnaturally goes on the principle that he who would heal
-others must himself be whole, and looks askance at the curative powers
-of the man whose own case is beyond the reach of his drugs. Thus as my
-predecessor weakened his practice declined, until when I purchased
-it from him it had sunk from twelve hundred to little more than three
-hundred a year. I had confidence, however, in my own youth and energy,
-and was convinced that in a very few years the concern would be as
-flourishing as ever.
-
-For three months after taking over the practice I was kept very closely
-at work, and saw little of my friend Sherlock Holmes, for I was too busy
-to visit Baker Street, and he seldom went anywhere himself save upon
-professional business. I was surprised, therefore, when, one morning in
-June, as I sat reading the British Medical Journal after breakfast, I
-heard a ring at the bell, followed by the high, somewhat strident tones
-of my old companion's voice.
-
-"Ah, my dear Watson," said he, striding into the room, "I am very
-delighted to see you! I trust that Mrs. Watson has entirely recovered
-from all the little excitements connected with our adventure of the Sign
-of Four."
-
-"Thank you, we are both very well," said I, shaking him warmly by the
-hand.
-
-"And I hope, also," he continued, sitting down in the rocking-chair,
-"that the cares of medical practice have not entirely obliterated the
-interest which you used to take in our little deductive problems."
-
-"On the contrary," I answered, "it was only last night that I was
-looking over my old notes, and classifying some of our past results."
-
-"I trust that you don't consider your collection closed."
-
-"Not at all. I should wish nothing better than to have some more of such
-experiences."
-
-"To-day, for example?"
-
-"Yes, to-day, if you like."
-
-"And as far off as Birmingham?"
-
-"Certainly, if you wish it."
-
-"And the practice?"
-
-"I do my neighbor's when he goes. He is always ready to work off the
-debt."
-
-"Ha! Nothing could be better," said Holmes, leaning back in his chair
-and looking keenly at me from under his half closed lids. "I perceive
-that you have been unwell lately. Summer colds are always a little
-trying."
-
-"I was confined to the house by a severe chill for three days last week.
-I thought, however, that I had cast off every trace of it."
-
-"So you have. You look remarkably robust."
-
-"How, then, did you know of it?"
-
-"My dear fellow, you know my methods."
-
-"You deduced it, then?"
-
-"Certainly."
-
-"And from what?"
-
-"From your slippers."
-
-I glanced down at the new patent leathers which I was wearing. "How on
-earth--" I began, but Holmes answered my question before it was asked.
-
-"Your slippers are new," he said. "You could not have had them more than
-a few weeks. The soles which you are at this moment presenting to me are
-slightly scorched. For a moment I thought they might have got wet and
-been burned in the drying. But near the instep there is a small circular
-wafer of paper with the shopman's hieroglyphics upon it. Damp would of
-course have removed this. You had, then, been sitting with your feet
-outstretched to the fire, which a man would hardly do even in so wet a
-June as this if he were in his full health."
-
-Like all Holmes's reasoning the thing seemed simplicity itself when it
-was once explained. He read the thought upon my features, and his smile
-had a tinge of bitterness.
-
-"I am afraid that I rather give myself away when I explain," said he.
-"Results without causes are much more impressive. You are ready to come
-to Birmingham, then?"
-
-"Certainly. What is the case?"
-
-"You shall hear it all in the train. My client is outside in a
-four-wheeler. Can you come at once?"
-
-"In an instant." I scribbled a note to my neighbor, rushed upstairs to
-explain the matter to my wife, and joined Holmes upon the door-step.
-
-"Your neighbor is a doctor," said he, nodding at the brass plate.
-
-"Yes; he bought a practice as I did."
-
-"An old-established one?"
-
-"Just the same as mine. Both have been ever since the houses were
-built."
-
-"Ah! Then you got hold of the best of the two."
-
-"I think I did. But how do you know?"
-
-"By the steps, my boy. Yours are worn three inches deeper than his. But
-this gentleman in the cab is my client, Mr. Hall Pycroft. Allow me to
-introduce you to him. Whip your horse up, cabby, for we have only just
-time to catch our train."
-
-The man whom I found myself facing was a well built, fresh-complexioned
-young fellow, with a frank, honest face and a slight, crisp, yellow
-mustache. He wore a very shiny top hat and a neat suit of sober black,
-which made him look what he was--a smart young City man, of the class
-who have been labeled cockneys, but who give us our crack volunteer
-regiments, and who turn out more fine athletes and sportsmen than any
-body of men in these islands. His round, ruddy face was naturally full
-of cheeriness, but the corners of his mouth seemed to me to be pulled
-down in a half-comical distress. It was not, however, until we were
-all in a first-class carriage and well started upon our journey to
-Birmingham that I was able to learn what the trouble was which had
-driven him to Sherlock Holmes.
-
-"We have a clear run here of seventy minutes," Holmes remarked. "I
-want you, Mr. Hall Pycroft, to tell my friend your very interesting
-experience exactly as you have told it to me, or with more detail if
-possible. It will be of use to me to hear the succession of events
-again. It is a case, Watson, which may prove to have something in it, or
-may prove to have nothing, but which, at least, presents those unusual
-and outré features which are as dear to you as they are to me. Now, Mr.
-Pycroft, I shall not interrupt you again."
-
-Our young companion looked at me with a twinkle in his eye.
-
-"The worst of the story is," said he, "that I show myself up as such a
-confounded fool. Of course it may work out all right, and I don't see
-that I could have done otherwise; but if I have lost my crib and get
-nothing in exchange I shall feel what a soft Johnnie I have been. I'm
-not very good at telling a story, Dr. Watson, but it is like this with
-me:
-
-"I used to have a billet at Coxon & Woodhouse's, of Draper's Gardens,
-but they were let in early in the spring through the Venezuelan loan,
-as no doubt you remember, and came a nasty cropper. I had been with them
-five years, and old Coxon gave me a ripping good testimonial when
-the smash came, but of course we clerks were all turned adrift, the
-twenty-seven of us. I tried here and tried there, but there were lots of
-other chaps on the same lay as myself, and it was a perfect frost for a
-long time. I had been taking three pounds a week at Coxon's, and I had
-saved about seventy of them, but I soon worked my way through that and
-out at the other end. I was fairly at the end of my tether at last,
-and could hardly find the stamps to answer the advertisements or the
-envelopes to stick them to. I had worn out my boots paddling up office
-stairs, and I seemed just as far from getting a billet as ever.
-
-"At last I saw a vacancy at Mawson & Williams's, the great stock-broking
-firm in Lombard Street. I dare say E. C. Is not much in your line, but
-I can tell you that this is about the richest house in London.
-The advertisement was to be answered by letter only. I sent in my
-testimonial and application, but without the least hope of getting it.
-Back came an answer by return, saying that if I would appear next Monday
-I might take over my new duties at once, provided that my appearance was
-satisfactory. No one knows how these things are worked. Some people say
-that the manager just plunges his hand into the heap and takes the first
-that comes. Anyhow it was my innings that time, and I don't ever wish to
-feel better pleased. The screw was a pound a week rise, and the duties
-just about the same as at Coxon's.
-
-"And now I come to the queer part of the business. I was in diggings out
-Hampstead way, 17 Potter's Terrace. Well, I was sitting doing a smoke
-that very evening after I had been promised the appointment, when up
-came my landlady with a card which had 'Arthur Pinner, Financial Agent,'
-printed upon it. I had never heard the name before and could not imagine
-what he wanted with me; but, of course, I asked her to show him up. In
-he walked, a middle-sized, dark-haired, dark-eyed, black-bearded man,
-with a touch of the Sheeny about his nose. He had a brisk kind of way
-with him and spoke sharply, like a man who knew the value of time."
-
-"'Mr. Hall Pycroft, I believe?'" said he.
-
-"'Yes, sir,' I answered, pushing a chair towards him.
-
-"'Lately engaged at Coxon & Woodhouse's?'
-
-"'Yes, sir.'
-
-"'And now on the staff of Mawson's.'
-
-"'Quite so.'
-
-"'Well,' said he, 'the fact is that I have heard some really
-extraordinary stories about your financial ability. You remember Parker,
-who used to be Coxon's manager? He can never say enough about it.'
-
-"Of course I was pleased to hear this. I had always been pretty sharp in
-the office, but I had never dreamed that I was talked about in the City
-in this fashion.
-
-"'You have a good memory?' said he.
-
-"'Pretty fair,' I answered, modestly.
-
-"'Have you kept in touch with the market while you have been out of
-work?' he asked.
-
-"'Yes. I read the stock exchange list every morning.'
-
-"'Now that shows real application!' he cried. 'That is the way to
-prosper! You won't mind my testing you, will you? Let me see. How are
-Ayrshires?'
-
-"'A hundred and six and a quarter to a hundred and five and
-seven-eighths.'
-
-"'And New Zealand consolidated?'
-
-"'A hundred and four.
-
-"'And British Broken Hills?'
-
-"'Seven to seven-and-six.'
-
-"'Wonderful!' he cried, with his hands up. 'This quite fits in with all
-that I had heard. My boy, my boy, you are very much too good to be a
-clerk at Mawson's!'
-
-"This outburst rather astonished me, as you can think. 'Well,' said I,
-'other people don't think quite so much of me as you seem to do, Mr.
-Pinner. I had a hard enough fight to get this berth, and I am very glad
-to have it.'
-
-"'Pooh, man; you should soar above it. You are not in your true sphere.
-Now, I'll tell you how it stands with me. What I have to offer is little
-enough when measured by your ability, but when compared with Mawson's,
-it's light to dark. Let me see. When do you go to Mawson's?'
-
-"'On Monday.'
-
-"'Ha, ha! I think I would risk a little sporting flutter that you don't
-go there at all.'
-
-"'Not go to Mawson's?'
-
-"'No, sir. By that day you will be the business manager of the
-Franco-Midland Hardware Company, Limited, with a hundred and thirty-four
-branches in the towns and villages of France, not counting one in
-Brussels and one in San Remo.'
-
-"This took my breath away. 'I never heard of it,' said I.
-
-"'Very likely not. It has been kept very quiet, for the capital was all
-privately subscribed, and it's too good a thing to let the public
-into. My brother, Harry Pinner, is promoter, and joins the board after
-allotment as managing director. He knew I was in the swim down here, and
-asked me to pick up a good man cheap. A young, pushing man with plenty
-of snap about him. Parker spoke of you, and that brought me here
-to-night. We can only offer you a beggarly five hundred to start with.'
-
-"'Five hundred a year!' I shouted.
-
-"'Only that at the beginning; but you are to have an overriding
-commission of one per cent on all business done by your agents, and you
-may take my word for it that this will come to more than your salary.'
-
-"'But I know nothing about hardware.'
-
-"'Tut, my boy; you know about figures.'
-
-"My head buzzed, and I could hardly sit still in my chair. But suddenly
-a little chill of doubt came upon me.
-
-"'I must be frank with you,' said I. 'Mawson only gives me two hundred,
-but Mawson is safe. Now, really, I know so little about your company
-that--'
-
-"'Ah, smart, smart!' he cried, in a kind of ecstasy of delight. 'You
-are the very man for us. You are not to be talked over, and quite right,
-too. Now, here's a note for a hundred pounds, and if you think that we
-can do business you may just slip it into your pocket as an advance upon
-your salary.'
-
-"'That is very handsome,' said I. 'When should I take over my new
-duties?'
-
-"'Be in Birmingham to-morrow at one,' said he. 'I have a note in my
-pocket here which you will take to my brother. You will find him at
-126b Corporation Street, where the temporary offices of the company
-are situated. Of course he must confirm your engagement, but between
-ourselves it will be all right.'
-
-"'Really, I hardly know how to express my gratitude, Mr. Pinner,' said
-I.
-
-"'Not at all, my boy. You have only got your deserts. There are one or
-two small things--mere formalities--which I must arrange with you.
-You have a bit of paper beside you there. Kindly write upon it "I am
-perfectly willing to act as business manager to the Franco-Midland
-Hardware Company, Limited, at a minimum salary of L500."'
-
-"I did as he asked, and he put the paper in his pocket.
-
-"'There is one other detail,' said he. 'What do you intend to do about
-Mawson's?'
-
-"I had forgotten all about Mawson's in my joy. 'I'll write and resign,'
-said I.
-
-"'Precisely what I don't want you to do. I had a row over you with
-Mawson's manager. I had gone up to ask him about you, and he was very
-offensive; accused me of coaxing you away from the service of the firm,
-and that sort of thing. At last I fairly lost my temper. "If you want
-good men you should pay them a good price," said I.'
-
-"'He would rather have our small price than your big one,' said he.
-
-"'I'll lay you a fiver,' said I, 'that when he has my offer you'll never
-so much as hear from him again.'
-
-"'Done!' said he. 'We picked him out of the gutter, and he won't leave
-us so easily.' Those were his very words."
-
-"'The impudent scoundrel!' I cried. 'I've never so much as seen him in
-my life. Why should I consider him in any way? I shall certainly not
-write if you would rather I didn't.'
-
-"'Good! That's a promise,' said he, rising from his chair. 'Well, I'm
-delighted to have got so good a man for my brother. Here's your advance
-of a hundred pounds, and here is the letter. Make a note of the address,
-126b Corporation Street, and remember that one o'clock to-morrow is
-your appointment. Good-night; and may you have all the fortune that you
-deserve!'
-
-"That's just about all that passed between us, as near as I can
-remember. You can imagine, Dr. Watson, how pleased I was at such an
-extraordinary bit of good fortune. I sat up half the night hugging
-myself over it, and next day I was off to Birmingham in a train that
-would take me in plenty time for my appointment. I took my things to
-a hotel in New Street, and then I made my way to the address which had
-been given me.
-
-"It was a quarter of an hour before my time, but I thought that would
-make no difference. 126b was a passage between two large shops, which
-led to a winding stone stair, from which there were many flats, let as
-offices to companies or professional men. The names of the occupants
-were painted at the bottom on the wall, but there was no such name as
-the Franco-Midland Hardware Company, Limited. I stood for a few minutes
-with my heart in my boots, wondering whether the whole thing was an
-elaborate hoax or not, when up came a man and addressed me. He was very
-like the chap I had seen the night before, the same figure and voice,
-but he was clean shaven and his hair was lighter.
-
-"'Are you Mr. Hall Pycroft?' he asked.
-
-"'Yes,' said I.
-
-"'Oh! I was expecting you, but you are a trifle before your time. I had
-a note from my brother this morning in which he sang your praises very
-loudly.'
-
-"'I was just looking for the offices when you came.
-
-"'We have not got our name up yet, for we only secured these temporary
-premises last week. Come up with me, and we will talk the matter over.'
-
-"I followed him to the top of a very lofty stair, and there, right under
-the slates, were a couple of empty, dusty little rooms, uncarpeted and
-uncurtained, into which he led me. I had thought of a great office with
-shining tables and rows of clerks, such as I was used to, and I dare say
-I stared rather straight at the two deal chairs and one little table,
-which, with a ledger and a waste paper basket, made up the whole
-furniture.
-
-"'Don't be disheartened, Mr. Pycroft,' said my new acquaintance, seeing
-the length of my face. 'Rome was not built in a day, and we have lots of
-money at our backs, though we don't cut much dash yet in offices. Pray
-sit down, and let me have your letter.'
-
-"I gave it to him, and he read it over very carefully.
-
-"'You seem to have made a vast impression upon my brother Arthur,' said
-he; 'and I know that he is a pretty shrewd judge. He swears by London,
-you know; and I by Birmingham; but this time I shall follow his advice.
-Pray consider yourself definitely engaged."
-
-"'What are my duties?' I asked.
-
-"'You will eventually manage the great depot in Paris, which will pour
-a flood of English crockery into the shops of a hundred and thirty-four
-agents in France. The purchase will be completed in a week, and
-meanwhile you will remain in Birmingham and make yourself useful.'
-
-"'How?'
-
-"For answer, he took a big red book out of a drawer.
-
-"'This is a directory of Paris,' said he, 'with the trades after the
-names of the people. I want you to take it home with you, and to mark
-off all the hardware sellers, with their addresses. It would be of the
-greatest use to me to have them.'
-
-"'Surely there are classified lists?' I suggested.
-
-"'Not reliable ones. Their system is different from ours. Stick at it,
-and let me have the lists by Monday, at twelve. Good-day, Mr. Pycroft.
-If you continue to show zeal and intelligence you will find the company
-a good master.'
-
-"I went back to the hotel with the big book under my arm, and with very
-conflicting feelings in my breast. On the one hand, I was definitely
-engaged and had a hundred pounds in my pocket; on the other, the look
-of the offices, the absence of name on the wall, and other of the points
-which would strike a business man had left a bad impression as to the
-position of my employers. However, come what might, I had my money, so I
-settled down to my task. All Sunday I was kept hard at work, and yet by
-Monday I had only got as far as H. I went round to my employer, found
-him in the same dismantled kind of room, and was told to keep at
-it until Wednesday, and then come again. On Wednesday it was still
-unfinished, so I hammered away until Friday--that is, yesterday. Then I
-brought it round to Mr. Harry Pinner.
-
-"'Thank you very much,' said he; 'I fear that I underrated the
-difficulty of the task. This list will be of very material assistance to
-me.'
-
-"'It took some time,' said I.
-
-"'And now,' said he, 'I want you to make a list of the furniture shops,
-for they all sell crockery.'
-
-"'Very good.'
-
-"'And you can come up to-morrow evening, at seven, and let me know how
-you are getting on. Don't overwork yourself. A couple of hours at Day's
-Music Hall in the evening would do you no harm after your labors.' He
-laughed as he spoke, and I saw with a thrill that his second tooth upon
-the left-hand side had been very badly stuffed with gold."
-
-
-Sherlock Holmes rubbed his hands with delight, and I stared with
-astonishment at our client.
-
-"You may well look surprised, Dr. Watson; but it is this way," said he:
-"When I was speaking to the other chap in London, at the time that he
-laughed at my not going to Mawson's, I happened to notice that his tooth
-was stuffed in this very identical fashion. The glint of the gold in
-each case caught my eye, you see. When I put that with the voice and
-figure being the same, and only those things altered which might be
-changed by a razor or a wig, I could not doubt that it was the same man.
-Of course you expect two brothers to be alike, but not that they should
-have the same tooth stuffed in the same way. He bowed me out, and I
-found myself in the street, hardly knowing whether I was on my head or
-my heels. Back I went to my hotel, put my head in a basin of cold water,
-and tried to think it out. Why had he sent me from London to Birmingham?
-Why had he got there before me? And why had he written a letter from
-himself to himself? It was altogether too much for me, and I could make
-no sense of it. And then suddenly it struck me that what was dark to me
-might be very light to Mr. Sherlock Holmes. I had just time to get up to
-town by the night train to see him this morning, and to bring you both
-back with me to Birmingham."
-
-There was a pause after the stock-broker's clerk had concluded his
-surprising experience. Then Sherlock Holmes cocked his eye at me,
-leaning back on the cushions with a pleased and yet critical face, like
-a connoisseur who has just taken his first sip of a comet vintage.
-
-"Rather fine, Watson, is it not?" said he. "There are points in it which
-please me. I think that you will agree with me that an interview with
-Mr. Arthur Harry Pinner in the temporary offices of the Franco-Midland
-Hardware Company, Limited, would be a rather interesting experience for
-both of us."
-
-"But how can we do it?" I asked.
-
-"Oh, easily enough," said Hall Pycroft, cheerily. "You are two friends
-of mine who are in want of a billet, and what could be more natural than
-that I should bring you both round to the managing director?"
-
-"Quite so, of course," said Holmes. "I should like to have a look at
-the gentleman, and see if I can make anything of his little game.
-What qualities have you, my friend, which would make your services
-so valuable? or is it possible that--" He began biting his nails and
-staring blankly out of the window, and we hardly drew another word from
-him until we were in New Street.
-
-At seven o'clock that evening we were walking, the three of us, down
-Corporation Street to the company's offices.
-
-"It is no use our being at all before our time," said our client. "He
-only comes there to see me, apparently, for the place is deserted up to
-the very hour he names."
-
-"That is suggestive," remarked Holmes.
-
-"By Jove, I told you so!" cried the clerk. "That's he walking ahead of
-us there."
-
-He pointed to a smallish, dark, well-dressed man who was bustling along
-the other side of the road. As we watched him he looked across at a boy
-who was bawling out the latest edition of the evening paper, and running
-over among the cabs and busses, he bought one from him. Then, clutching
-it in his hand, he vanished through a door-way.
-
-"There he goes!" cried Hall Pycroft. "These are the company's offices
-into which he has gone. Come with me, and I'll fix it up as easily as
-possible."
-
-Following his lead, we ascended five stories, until we found ourselves
-outside a half-opened door, at which our client tapped. A voice within
-bade us enter, and we entered a bare, unfurnished room such as Hall
-Pycroft had described. At the single table sat the man whom we had seen
-in the street, with his evening paper spread out in front of him, and as
-he looked up at us it seemed to me that I had never looked upon a face
-which bore such marks of grief, and of something beyond grief--of a
-horror such as comes to few men in a lifetime. His brow glistened with
-perspiration, his cheeks were of the dull, dead white of a fish's belly,
-and his eyes were wild and staring. He looked at his clerk as though he
-failed to recognize him, and I could see by the astonishment depicted
-upon our conductor's face that this was by no means the usual appearance
-of his employer.
-
-"You look ill, Mr. Pinner!" he exclaimed.
-
-"Yes, I am not very well," answered the other, making obvious efforts
-to pull himself together, and licking his dry lips before he spoke. "Who
-are these gentlemen whom you have brought with you?"
-
-"One is Mr. Harris, of Bermondsey, and the other is Mr. Price, of this
-town," said our clerk, glibly. "They are friends of mine and gentlemen
-of experience, but they have been out of a place for some little time,
-and they hoped that perhaps you might find an opening for them in the
-company's employment."
-
-"Very possibly! Very possibly!" cried Mr. Pinner with a ghastly smile.
-"Yes, I have no doubt that we shall be able to do something for you.
-What is your particular line, Mr. Harris?"
-
-"I am an accountant," said Holmes.
-
-"Ah yes, we shall want something of the sort. And you, Mr. Price?"
-
-"A clerk," said I.
-
-"I have every hope that the company may accommodate you. I will let you
-know about it as soon as we come to any conclusion. And now I beg that
-you will go. For God's sake leave me to myself!"
-
-These last words were shot out of him, as though the constraint which
-he was evidently setting upon himself had suddenly and utterly burst
-asunder. Holmes and I glanced at each other, and Hall Pycroft took a
-step towards the table.
-
-"You forget, Mr. Pinner, that I am here by appointment to receive some
-directions from you," said he.
-
-"Certainly, Mr. Pycroft, certainly," the other resumed in a calmer tone.
-"You may wait here a moment; and there is no reason why your friends
-should not wait with you. I will be entirely at your service in three
-minutes, if I might trespass upon your patience so far." He rose with a
-very courteous air, and, bowing to us, he passed out through a door at
-the farther end of the room, which he closed behind him.
-
-"What now?" whispered Holmes. "Is he giving us the slip?"
-
-"Impossible," answered Pycroft.
-
-"Why so?"
-
-"That door leads into an inner room."
-
-"There is no exit?"
-
-"None."
-
-"Is it furnished?"
-
-"It was empty yesterday."
-
-"Then what on earth can he be doing? There is something which I don't
-understand in this manner. If ever a man was three parts mad with
-terror, that man's name is Pinner. What can have put the shivers on
-him?"
-
-"He suspects that we are detectives," I suggested.
-
-"That's it," cried Pycroft.
-
-Holmes shook his head. "He did not turn pale. He was pale when we
-entered the room," said he. "It is just possible that--"
-
-His words were interrupted by a sharp rat-tat from the direction of the
-inner door.
-
-"What the deuce is he knocking at his own door for?" cried the clerk.
-
-Again and much louder came the rat-tat-tat. We all gazed expectantly at
-the closed door. Glancing at Holmes, I saw his face turn rigid, and he
-leaned forward in intense excitement. Then suddenly came a low guggling,
-gargling sound, and a brisk drumming upon woodwork. Holmes sprang
-frantically across the room and pushed at the door. It was fastened on
-the inner side. Following his example, we threw ourselves upon it with
-all our weight. One hinge snapped, then the other, and down came the
-door with a crash. Rushing over it, we found ourselves in the inner
-room. It was empty.
-
-But it was only for a moment that we were at fault. At one corner, the
-corner nearest the room which we had left, there was a second door.
-Holmes sprang to it and pulled it open. A coat and waistcoat were lying
-on the floor, and from a hook behind the door, with his own braces
-round his neck, was hanging the managing director of the Franco-Midland
-Hardware Company. His knees were drawn up, his head hung at a dreadful
-angle to his body, and the clatter of his heels against the door made
-the noise which had broken in upon our conversation. In an instant I
-had caught him round the waist, and held him up while Holmes and Pycroft
-untied the elastic bands which had disappeared between the livid creases
-of skin. Then we carried him into the other room, where he lay with
-a clay-colored face, puffing his purple lips in and out with every
-breath--a dreadful wreck of all that he had been but five minutes
-before.
-
-"What do you think of him, Watson?" asked Holmes.
-
-I stooped over him and examined him. His pulse was feeble and
-intermittent, but his breathing grew longer, and there was a little
-shivering of his eyelids, which showed a thin white slit of ball
-beneath.
-
-"It has been touch and go with him," said I, "but he'll live now. Just
-open that window, and hand me the water carafe." I undid his collar,
-poured the cold water over his face, and raised and sank his arms until
-he drew a long, natural breath. "It's only a question of time now," said
-I, as I turned away from him.
-
-Holmes stood by the table, with his hands deep in his trouser's pockets
-and his chin upon his breast.
-
-"I suppose we ought to call the police in now," said he. "And yet I
-confess that I'd like to give them a complete case when they come."
-
-"It's a blessed mystery to me," cried Pycroft, scratching his head.
-"Whatever they wanted to bring me all the way up here for, and then--"
-
-"Pooh! All that is clear enough," said Holmes impatiently. "It is this
-last sudden move."
-
-"You understand the rest, then?"
-
-"I think that it is fairly obvious. What do you say, Watson?"
-
-I shrugged my shoulders. "I must confess that I am out of my depths,"
-said I.
-
-"Oh surely if you consider the events at first they can only point to
-one conclusion."
-
-"What do you make of them?"
-
-"Well, the whole thing hinges upon two points. The first is the making
-of Pycroft write a declaration by which he entered the service of this
-preposterous company. Do you not see how very suggestive that is?"
-
-"I am afraid I miss the point."
-
-"Well, why did they want him to do it? Not as a business matter, for
-these arrangements are usually verbal, and there was no earthly business
-reason why this should be an exception. Don't you see, my young friend,
-that they were very anxious to obtain a specimen of your handwriting,
-and had no other way of doing it?"
-
-"And why?"
-
-"Quite so. Why? When we answer that we have made some progress with our
-little problem. Why? There can be only one adequate reason. Some one
-wanted to learn to imitate your writing, and had to procure a specimen
-of it first. And now if we pass on to the second point we find that each
-throws light upon the other. That point is the request made by Pinner
-that you should not resign your place, but should leave the manager of
-this important business in the full expectation that a Mr. Hall Pycroft,
-whom he had never seen, was about to enter the office upon the Monday
-morning."
-
-"My God!" cried our client, "what a blind beetle I have been!"
-
-"Now you see the point about the handwriting. Suppose that some one
-turned up in your place who wrote a completely different hand from that
-in which you had applied for the vacancy, of course the game would have
-been up. But in the interval the rogue had learned to imitate you,
-and his position was therefore secure, as I presume that nobody in the
-office had ever set eyes upon you."
-
-"Not a soul," groaned Hall Pycroft.
-
-"Very good. Of course it was of the utmost importance to prevent you
-from thinking better of it, and also to keep you from coming into
-contact with any one who might tell you that your double was at work
-in Mawson's office. Therefore they gave you a handsome advance on your
-salary, and ran you off to the Midlands, where they gave you enough work
-to do to prevent your going to London, where you might have burst their
-little game up. That is all plain enough."
-
-"But why should this man pretend to be his own brother?"
-
-"Well, that is pretty clear also. There are evidently only two of them
-in it. The other is impersonating you at the office. This one acted
-as your engager, and then found that he could not find you an employer
-without admitting a third person into his plot. That he was most
-unwilling to do. He changed his appearance as far as he could, and
-trusted that the likeness, which you could not fail to observe, would be
-put down to a family resemblance. But for the happy chance of the gold
-stuffing, your suspicions would probably never have been aroused."
-
-Hall Pycroft shook his clinched hands in the air. "Good Lord!" he cried,
-"while I have been fooled in this way, what has this other Hall Pycroft
-been doing at Mawson's? What should we do, Mr. Holmes? Tell me what to
-do."
-
-"We must wire to Mawson's."
-
-"They shut at twelve on Saturdays."
-
-"Never mind. There may be some door-keeper or attendant--"
-
-"Ah yes, they keep a permanent guard there on account of the value of
-the securities that they hold. I remember hearing it talked of in the
-City."
-
-"Very good; we shall wire to him, and see if all is well, and if a clerk
-of your name is working there. That is clear enough; but what is not so
-clear is why at sight of us one of the rogues should instantly walk out
-of the room and hang himself."
-
-"The paper!" croaked a voice behind us. The man was sitting up, blanched
-and ghastly, with returning reason in his eyes, and hands which rubbed
-nervously at the broad red band which still encircled his throat.
-
-"The paper! Of course!" yelled Holmes, in a paroxysm of excitement.
-"Idiot that I was! I thought so much of our visit that the paper never
-entered my head for an instant. To be sure, the secret must be there."
-He flattened it out upon the table, and a cry of triumph burst from his
-lips. "Look at this, Watson," he cried. "It is a London paper, an early
-edition of the Evening Standard. Here is what we want. Look at the
-headlines: 'Crime in the City. Murder at Mawson & Williams's. Gigantic
-attempted Robbery. Capture of the Criminal.' Here, Watson, we are all
-equally anxious to hear it, so kindly read it aloud to us."
-
-It appeared from its position in the paper to have been the one event of
-importance in town, and the account of it ran in this way:
-
-"A desperate attempt at robbery, culminating in the death of one man and
-the capture of the criminal, occurred this afternoon in the City. For
-some time back Mawson & Williams, the famous financial house, have been
-the guardians of securities which amount in the aggregate to a sum of
-considerably over a million sterling. So conscious was the manager of
-the responsibility which devolved upon him in consequence of the great
-interests at stake that safes of the very latest construction have
-been employed, and an armed watchman has been left day and night in the
-building. It appears that last week a new clerk named Hall Pycroft was
-engaged by the firm. This person appears to have been none other that
-Beddington, the famous forger and cracksman, who, with his brother, had
-only recently emerged from a five years' spell of penal servitude. By
-some means, which are not yet clear, he succeeded in winning, under a
-false name, this official position in the office, which he utilized in
-order to obtain moulding of various locks, and a thorough knowledge of
-the position of the strong room and the safes.
-
-"It is customary at Mawson's for the clerks to leave at midday on
-Saturday. Sergeant Tuson, of the City Police, was somewhat surprised,
-therefore to see a gentleman with a carpet bag come down the steps at
-twenty minutes past one. His suspicions being aroused, the sergeant
-followed the man, and with the aid of Constable Pollock succeeded, after
-a most desperate resistance, in arresting him. It was at once clear
-that a daring and gigantic robbery had been committed. Nearly a hundred
-thousand pounds' worth of American railway bonds, with a large amount
-of scrip in mines and other companies, was discovered in the bag. On
-examining the premises the body of the unfortunate watchman was found
-doubled up and thrust into the largest of the safes, where it would not
-have been discovered until Monday morning had it not been for the prompt
-action of Sergeant Tuson. The man's skull had been shattered by a
-blow from a poker delivered from behind. There could be no doubt
-that Beddington had obtained entrance by pretending that he had left
-something behind him, and having murdered the watchman, rapidly rifled
-the large safe, and then made off with his booty. His brother, who
-usually works with him, has not appeared in this job as far as can
-at present be ascertained, although the police are making energetic
-inquiries as to his whereabouts."
-
-"Well, we may save the police some little trouble in that direction,"
-said Holmes, glancing at the haggard figure huddled up by the window.
-"Human nature is a strange mixture, Watson. You see that even a villain
-and murderer can inspire such affection that his brother turns to
-suicide when he learns that his neck is forfeited. However, we have
-no choice as to our action. The doctor and I will remain on guard, Mr.
-Pycroft, if you will have the kindness to step out for the police."
-
-
-
-
-Adventure IV. The "_Gloria Scott_"
-
-
-"I have some papers here," said my friend Sherlock Holmes, as we sat
-one winter's night on either side of the fire, "which I really think,
-Watson, that it would be worth your while to glance over. These are the
-documents in the extraordinary case of the Gloria Scott, and this is the
-message which struck Justice of the Peace Trevor dead with horror when
-he read it."
-
-He had picked from a drawer a little tarnished cylinder, and, undoing
-the tape, he handed me a short note scrawled upon a half-sheet of
-slate-gray paper.
-
-"The supply of game for London is going steadily up," it ran.
-"Head-keeper Hudson, we believe, has been now told to receive all orders
-for fly-paper and for preservation of your hen-pheasant's life."
-
-As I glanced up from reading this enigmatical message, I saw Holmes
-chuckling at the expression upon my face.
-
-"You look a little bewildered," said he.
-
-"I cannot see how such a message as this could inspire horror. It seems
-to me to be rather grotesque than otherwise."
-
-"Very likely. Yet the fact remains that the reader, who was a fine,
-robust old man, was knocked clean down by it as if it had been the butt
-end of a pistol."
-
-"You arouse my curiosity," said I. "But why did you say just now that
-there were very particular reasons why I should study this case?"
-
-"Because it was the first in which I was ever engaged."
-
-I had often endeavored to elicit from my companion what had first turned
-his mind in the direction of criminal research, but had never caught him
-before in a communicative humor. Now he sat forward in this arm-chair
-and spread out the documents upon his knees. Then he lit his pipe and
-sat for some time smoking and turning them over.
-
-"You never heard me talk of Victor Trevor?" he asked. "He was the only
-friend I made during the two years I was at college. I was never a very
-sociable fellow, Watson, always rather fond of moping in my rooms and
-working out my own little methods of thought, so that I never mixed
-much with the men of my year. Bar fencing and boxing I had few athletic
-tastes, and then my line of study was quite distinct from that of the
-other fellows, so that we had no points of contact at all. Trevor was
-the only man I knew, and that only through the accident of his bull
-terrier freezing on to my ankle one morning as I went down to chapel.
-
-"It was a prosaic way of forming a friendship, but it was effective.
-I was laid by the heels for ten days, but Trevor used to come in to
-inquire after me. At first it was only a minute's chat, but soon his
-visits lengthened, and before the end of the term we were close friends.
-He was a hearty, full-blooded fellow, full of spirits and energy,
-the very opposite to me in most respects, but we had some subjects
-in common, and it was a bond of union when I found that he was as
-friendless as I. Finally, he invited me down to his father's place at
-Donnithorpe, in Norfolk, and I accepted his hospitality for a month of
-the long vacation.
-
-"Old Trevor was evidently a man of some wealth and consideration, a
-J.P., and a landed proprietor. Donnithorpe is a little hamlet just to
-the north of Langmere, in the country of the Broads. The house was
-an old-fashioned, wide-spread, oak-beamed brick building, with a fine
-lime-lined avenue leading up to it. There was excellent wild-duck
-shooting in the fens, remarkably good fishing, a small but select
-library, taken over, as I understood, from a former occupant, and a
-tolerable cook, so that he would be a fastidious man who could not put
-in a pleasant month there.
-
-"Trevor senior was a widower, and my friend his only son.
-
-"There had been a daughter, I heard, but she had died of diphtheria
-while on a visit to Birmingham. The father interested me extremely.
-He was a man of little culture, but with a considerable amount of rude
-strength, both physically and mentally. He knew hardly any books, but
-he had traveled far, had seen much of the world. And had remembered
-all that he had learned. In person he was a thick-set, burly man with
-a shock of grizzled hair, a brown, weather-beaten face, and blue eyes
-which were keen to the verge of fierceness. Yet he had a reputation for
-kindness and charity on the country-side, and was noted for the leniency
-of his sentences from the bench.
-
-"One evening, shortly after my arrival, we were sitting over a glass of
-port after dinner, when young Trevor began to talk about those habits
-of observation and inference which I had already formed into a system,
-although I had not yet appreciated the part which they were to play in
-my life. The old man evidently thought that his son was exaggerating in
-his description of one or two trivial feats which I had performed.
-
-"'Come, now, Mr. Holmes,' said he, laughing good-humoredly. 'I'm an
-excellent subject, if you can deduce anything from me.'
-
-"'I fear there is not very much,' I answered; 'I might suggest that
-you have gone about in fear of some personal attack within the last
-twelvemonth.'
-
-"The laugh faded from his lips, and he stared at me in great surprise.
-
-"'Well, that's true enough,' said he. 'You know, Victor,' turning to his
-son, 'when we broke up that poaching gang they swore to knife us, and
-Sir Edward Holly has actually been attacked. I've always been on my
-guard since then, though I have no idea how you know it.'
-
-"'You have a very handsome stick,' I answered. 'By the inscription I
-observed that you had not had it more than a year. But you have taken
-some pains to bore the head of it and pour melted lead into the hole so
-as to make it a formidable weapon. I argued that you would not take such
-precautions unless you had some danger to fear.'
-
-"'Anything else?' he asked, smiling.
-
-"'You have boxed a good deal in your youth.'
-
-"'Right again. How did you know it? Is my nose knocked a little out of
-the straight?'
-
-"'No,' said I. 'It is your ears. They have the peculiar flattening and
-thickening which marks the boxing man.'
-
-"'Anything else?'
-
-"'You have done a good deal of digging by your callosities.'
-
-"'Made all my money at the gold fields.'
-
-"'You have been in New Zealand.'
-
-"'Right again.'
-
-"'You have visited Japan.'
-
-"'Quite true.'
-
-"'And you have been most intimately associated with some one whose
-initials were J. A., and whom you afterwards were eager to entirely
-forget.'
-
-"Mr. Trevor stood slowly up, fixed his large blue eyes upon me with a
-strange wild stare, and then pitched forward, with his face among the
-nutshells which strewed the cloth, in a dead faint.
-
-"You can imagine, Watson, how shocked both his son and I were. His
-attack did not last long, however, for when we undid his collar, and
-sprinkled the water from one of the finger-glasses over his face, he
-gave a gasp or two and sat up.
-
-"'Ah, boys,' said he, forcing a smile, 'I hope I haven't frightened you.
-Strong as I look, there is a weak place in my heart, and it does not
-take much to knock me over. I don't know how you manage this, Mr.
-Holmes, but it seems to me that all the detectives of fact and of fancy
-would be children in your hands. That's your line of life, sir, and you
-may take the word of a man who has seen something of the world.'
-
-"And that recommendation, with the exaggerated estimate of my ability
-with which he prefaced it, was, if you will believe me, Watson, the very
-first thing which ever made me feel that a profession might be made
-out of what had up to that time been the merest hobby. At the moment,
-however, I was too much concerned at the sudden illness of my host to
-think of anything else.
-
-"'I hope that I have said nothing to pain you?' said I.
-
-"'Well, you certainly touched upon rather a tender point. Might I ask
-how you know, and how much you know?' He spoke now in a half-jesting
-fashion, but a look of terror still lurked at the back of his eyes.
-
-"'It is simplicity itself,' said I. 'When you bared your arm to draw
-that fish into the boat I saw that J. A. Had been tattooed in the bend
-of the elbow. The letters were still legible, but it was perfectly clear
-from their blurred appearance, and from the staining of the skin round
-them, that efforts had been made to obliterate them. It was obvious,
-then, that those initials had once been very familiar to you, and that
-you had afterwards wished to forget them.'
-
-"What an eye you have!" he cried, with a sigh of relief. 'It is just as
-you say. But we won't talk of it. Of all ghosts the ghosts of our old
-lovers are the worst. Come into the billiard-room and have a quiet
-cigar.'
-
-
-"From that day, amid all his cordiality, there was always a touch of
-suspicion in Mr. Trevor's manner towards me. Even his son remarked it.
-'You've given the governor such a turn,' said he, 'that he'll never be
-sure again of what you know and what you don't know.' He did not mean
-to show it, I am sure, but it was so strongly in his mind that it peeped
-out at every action. At last I became so convinced that I was causing
-him uneasiness that I drew my visit to a close. On the very day,
-however, before I left, and incident occurred which proved in the sequel
-to be of importance.
-
-"We were sitting out upon the lawn on garden chairs, the three of us,
-basking in the sun and admiring the view across the Broads, when a maid
-came out to say that there was a man at the door who wanted to see Mr.
-Trevor.
-
-"'What is his name?' asked my host.
-
-"'He would not give any.'
-
-"'What does he want, then?'
-
-"'He says that you know him, and that he only wants a moment's
-conversation.'
-
-"'Show him round here.' An instant afterwards there appeared a little
-wizened fellow with a cringing manner and a shambling style of
-walking. He wore an open jacket, with a splotch of tar on the sleeve,
-a red-and-black check shirt, dungaree trousers, and heavy boots badly
-worn. His face was thin and brown and crafty, with a perpetual smile
-upon it, which showed an irregular line of yellow teeth, and his
-crinkled hands were half closed in a way that is distinctive of sailors.
-As he came slouching across the lawn I heard Mr. Trevor make a sort of
-hiccoughing noise in his throat, and jumping out of his chair, he ran
-into the house. He was back in a moment, and I smelt a strong reek of
-brandy as he passed me.
-
-"'Well, my man,' said he. 'What can I do for you?'
-
-"The sailor stood looking at him with puckered eyes, and with the same
-loose-lipped smile upon his face.
-
-"'You don't know me?' he asked.
-
-"'Why, dear me, it is surely Hudson,' said Mr. Trevor in a tone of
-surprise.
-
-"'Hudson it is, sir,' said the seaman. 'Why, it's thirty year and more
-since I saw you last. Here you are in your house, and me still picking
-my salt meat out of the harness cask.'
-
-"'Tut, you will find that I have not forgotten old times,' cried Mr.
-Trevor, and, walking towards the sailor, he said something in a low
-voice. 'Go into the kitchen,' he continued out loud, 'and you will get
-food and drink. I have no doubt that I shall find you a situation.'
-
-"'Thank you, sir,' said the seaman, touching his fore-lock. 'I'm just
-off a two-yearer in an eight-knot tramp, short-handed at that, and I
-wants a rest. I thought I'd get it either with Mr. Beddoes or with you.'
-
-"'Ah!' cried Trevor. 'You know where Mr. Beddoes is?'
-
-"'Bless you, sir, I know where all my old friends are,' said the
-fellow with a sinister smile, and he slouched off after the maid to the
-kitchen. Mr. Trevor mumbled something to us about having been shipmate
-with the man when he was going back to the diggings, and then, leaving
-us on the lawn, he went indoors. An hour later, when we entered the
-house, we found him stretched dead drunk upon the dining-room sofa. The
-whole incident left a most ugly impression upon my mind, and I was
-not sorry next day to leave Donnithorpe behind me, for I felt that my
-presence must be a source of embarrassment to my friend.
-
-"All this occurred during the first month of the long vacation. I went
-up to my London rooms, where I spent seven weeks working out a few
-experiments in organic chemistry. One day, however, when the autumn was
-far advanced and the vacation drawing to a close, I received a telegram
-from my friend imploring me to return to Donnithorpe, and saying that
-he was in great need of my advice and assistance. Of course I dropped
-everything and set out for the North once more.
-
-"He met me with the dog-cart at the station, and I saw at a glance that
-the last two months had been very trying ones for him. He had grown thin
-and careworn, and had lost the loud, cheery manner for which he had been
-remarkable.
-
-"'The governor is dying,' were the first words he said.
-
-"'Impossible!' I cried. 'What is the matter?'
-
-"'Apoplexy. Nervous shock, He's been on the verge all day. I doubt if we
-shall find him alive.'
-
-"I was, as you may think, Watson, horrified at this unexpected news.
-
-"'What has caused it?' I asked.
-
-"'Ah, that is the point. Jump in and we can talk it over while we drive.
-You remember that fellow who came upon the evening before you left us?'
-
-"'Perfectly.'
-
-"'Do you know who it was that we let into the house that day?'
-
-"'I have no idea.'
-
-"'It was the devil, Holmes,' he cried.
-
-"I stared at him in astonishment.
-
-"'Yes, it was the devil himself. We have not had a peaceful hour
-since--not one. The governor has never held up his head from that
-evening, and now the life has been crushed out of him and his heart
-broken, all through this accursed Hudson.'
-
-"'What power had he, then?'
-
-"'Ah, that is what I would give so much to know. The kindly, charitable,
-good old governor--how could he have fallen into the clutches of such a
-ruffian! But I am so glad that you have come, Holmes. I trust very much
-to your judgment and discretion, and I know that you will advise me for
-the best.'
-
-"We were dashing along the smooth white country road, with the long
-stretch of the Broads in front of us glimmering in the red light of the
-setting sun. From a grove upon our left I could already see the high
-chimneys and the flag-staff which marked the squire's dwelling.
-
-"'My father made the fellow gardener,' said my companion, 'and then, as
-that did not satisfy him, he was promoted to be butler. The house seemed
-to be at his mercy, and he wandered about and did what he chose in it.
-The maids complained of his drunken habits and his vile language. The
-dad raised their wages all round to recompense them for the annoyance.
-The fellow would take the boat and my father's best gun and treat
-himself to little shooting trips. And all this with such a sneering,
-leering, insolent face that I would have knocked him down twenty times
-over if he had been a man of my own age. I tell you, Holmes, I have
-had to keep a tight hold upon myself all this time; and now I am asking
-myself whether, if I had let myself go a little more, I might not have
-been a wiser man.
-
-"'Well, matters went from bad to worse with us, and this animal Hudson
-became more and more intrusive, until at last, on making some insolent
-reply to my father in my presence one day, I took him by the shoulders
-and turned him out of the room. He slunk away with a livid face and two
-venomous eyes which uttered more threats than his tongue could do. I
-don't know what passed between the poor dad and him after that, but the
-dad came to me next day and asked me whether I would mind apologizing to
-Hudson. I refused, as you can imagine, and asked my father how he
-could allow such a wretch to take such liberties with himself and his
-household.
-
-"'"Ah, my boy," said he, "it is all very well to talk, but you don't
-know how I am placed. But you shall know, Victor. I'll see that you
-shall know, come what may. You wouldn't believe harm of your poor old
-father, would you, lad?" He was very much moved, and shut himself up
-in the study all day, where I could see through the window that he was
-writing busily.
-
-"'That evening there came what seemed to me to be a grand release,
-for Hudson told us that he was going to leave us. He walked into the
-dining-room as we sat after dinner, and announced his intention in the
-thick voice of a half-drunken man.
-
-"'"I've had enough of Norfolk," said he. "I'll run down to Mr. Beddoes
-in Hampshire. He'll be as glad to see me as you were, I dare say."
-
-"'"You're not going away in an unkind spirit, Hudson, I hope," said my
-father, with a tameness which made my blood boil.
-
-"'"I've not had my 'pology," said he sulkily, glancing in my direction.
-
-"'"Victor, you will acknowledge that you have used this worthy fellow
-rather roughly," said the dad, turning to me.
-
-"'"On the contrary, I think that we have both shown extraordinary
-patience towards him," I answered.
-
-"'"Oh, you do, do you?" he snarls. "Very good, mate. We'll see about
-that!"
-
-"'He slouched out of the room, and half an hour afterwards left the
-house, leaving my father in a state of pitiable nervousness. Night after
-night I heard him pacing his room, and it was just as he was recovering
-his confidence that the blow did at last fall.'
-
-"'And how?' I asked eagerly.
-
-"'In a most extraordinary fashion. A letter arrived for my father
-yesterday evening, bearing the Fordingbridge post-mark. My father read
-it, clapped both his hands to his head, and began running round the room
-in little circles like a man who has been driven out of his senses. When
-I at last drew him down on to the sofa, his mouth and eyelids were all
-puckered on one side, and I saw that he had a stroke. Dr. Fordham came
-over at once. We put him to bed; but the paralysis has spread, he has
-shown no sign of returning consciousness, and I think that we shall
-hardly find him alive.'
-
-"'You horrify me, Trevor!' I cried. 'What then could have been in this
-letter to cause so dreadful a result?'
-
-"'Nothing. There lies the inexplicable part of it. The message was
-absurd and trivial. Ah, my God, it is as I feared!'
-
-"As he spoke we came round the curve of the avenue, and saw in the
-fading light that every blind in the house had been drawn down. As
-we dashed up to the door, my friend's face convulsed with grief, a
-gentleman in black emerged from it.
-
-"'When did it happen, doctor?' asked Trevor.
-
-"'Almost immediately after you left.'
-
-"'Did he recover consciousness?'
-
-"'For an instant before the end.'
-
-"'Any message for me.'
-
-"'Only that the papers were in the back drawer of the Japanese cabinet.'
-
-"My friend ascended with the doctor to the chamber of death, while I
-remained in the study, turning the whole matter over and over in my
-head, and feeling as sombre as ever I had done in my life. What was the
-past of this Trevor, pugilist, traveler, and gold-digger, and how had he
-placed himself in the power of this acid-faced seaman? Why, too, should
-he faint at an allusion to the half-effaced initials upon his arm, and
-die of fright when he had a letter from Fordingham? Then I remembered
-that Fordingham was in Hampshire, and that this Mr. Beddoes, whom the
-seaman had gone to visit and presumably to blackmail, had also been
-mentioned as living in Hampshire. The letter, then, might either come
-from Hudson, the seaman, saying that he had betrayed the guilty secret
-which appeared to exist, or it might come from Beddoes, warning an old
-confederate that such a betrayal was imminent. So far it seemed clear
-enough. But then how could this letter be trivial and grotesque, as
-describe by the son? He must have misread it. If so, it must have been
-one of those ingenious secret codes which mean one thing while they seem
-to mean another. I must see this letter. If there were a hidden meaning
-in it, I was confident that I could pluck it forth. For an hour I sat
-pondering over it in the gloom, until at last a weeping maid brought in
-a lamp, and close at her heels came my friend Trevor, pale but composed,
-with these very papers which lie upon my knee held in his grasp. He sat
-down opposite to me, drew the lamp to the edge of the table, and handed
-me a short note scribbled, as you see, upon a single sheet of gray
-paper. 'The supply of game for London is going steadily up,' it ran.
-'Head-keeper Hudson, we believe, has been now told to receive all orders
-for fly-paper and for preservation of your hen-pheasant's life.'
-
-"I dare say my face looked as bewildered as yours did just now when
-first I read this message. Then I reread it very carefully. It was
-evidently as I had thought, and some secret meaning must lie buried
-in this strange combination of words. Or could it be that there was
-a prearranged significance to such phrases as 'fly-paper' and
-'hen-pheasant'? Such a meaning would be arbitrary and could not be
-deduced in any way. And yet I was loath to believe that this was the
-case, and the presence of the word Hudson seemed to show that the
-subject of the message was as I had guessed, and that it was from
-Beddoes rather than the sailor. I tried it backwards, but the
-combination 'life pheasant's hen' was not encouraging. Then I tried
-alternate words, but neither 'the of for' nor 'supply game London'
-promised to throw any light upon it.
-
-"And then in an instant the key of the riddle was in my hands, and I saw
-that every third word, beginning with the first, would give a message
-which might well drive old Trevor to despair.
-
-"It was short and terse, the warning, as I now read it to my companion:
-
-"'The game is up. Hudson has told all. Fly for your life.'
-
-"Victor Trevor sank his face into his shaking hands. 'It must be that,
-I suppose,' said he. "This is worse than death, for it means disgrace
-as well. But what is the meaning of these "head-keepers" and
-"hen-pheasants"?'
-
-"'It means nothing to the message, but it might mean a good deal to us
-if we had no other means of discovering the sender. You see that he has
-begun by writing "The...game...is," and so on. Afterwards he had, to
-fulfill the prearranged cipher, to fill in any two words in each space.
-He would naturally use the first words which came to his mind, and
-if there were so many which referred to sport among them, you may
-be tolerably sure that he is either an ardent shot or interested in
-breeding. Do you know anything of this Beddoes?'
-
-"'Why, now that you mention it,' said he, 'I remember that my poor
-father used to have an invitation from him to shoot over his preserves
-every autumn.'
-
-"'Then it is undoubtedly from him that the note comes,' said I. 'It only
-remains for us to find out what this secret was which the sailor Hudson
-seems to have held over the heads of these two wealthy and respected
-men.'
-
-"'Alas, Holmes, I fear that it is one of sin and shame!' cried my
-friend. 'But from you I shall have no secrets. Here is the statement
-which was drawn up by my father when he knew that the danger from Hudson
-had become imminent. I found it in the Japanese cabinet, as he told the
-doctor. Take it and read it to me, for I have neither the strength nor
-the courage to do it myself.'
-
-"These are the very papers, Watson, which he handed to me, and I will
-read them to you, as I read them in the old study that night to him.
-They are endorsed outside, as you see, 'Some particulars of the voyage
-of the bark _Gloria Scott_, from her leaving Falmouth on the 8th
-October, 1855, to her destruction in N. Lat. 15 degrees 20', W. Long.
-25 degrees 14' on Nov. 6th.' It is in the form of a letter, and runs in
-this way:
-
-"'My dear, dear son, now that approaching disgrace begins to darken the
-closing years of my life, I can write with all truth and honesty that it
-is not the terror of the law, it is not the loss of my position in the
-county, nor is it my fall in the eyes of all who have known me, which
-cuts me to the heart; but it is the thought that you should come to
-blush for me--you who love me and who have seldom, I hope, had reason to
-do other than respect me. But if the blow falls which is forever hanging
-over me, then I should wish you to read this, that you may know straight
-from me how far I have been to blame. On the other hand, if all should
-go well (which may kind God Almighty grant!), then if by any chance this
-paper should be still undestroyed and should fall into your hands, I
-conjure you, by all you hold sacred, by the memory of your dear mother,
-and by the love which had been between us, to hurl it into the fire and
-to never give one thought to it again.
-
-"'If then your eye goes on to read this line, I know that I shall
-already have been exposed and dragged from my home, or as is more
-likely, for you know that my heart is weak, by lying with my tongue
-sealed forever in death. In either case the time for suppression is
-past, and every word which I tell you is the naked truth, and this I
-swear as I hope for mercy.
-
-"'My name, dear lad, is not Trevor. I was James Armitage in my younger
-days, and you can understand now the shock that it was to me a few weeks
-ago when your college friend addressed me in words which seemed to imply
-that he had surprised my secret. As Armitage it was that I entered a
-London banking-house, and as Armitage I was convicted of breaking my
-country's laws, and was sentenced to transportation. Do not think very
-harshly of me, laddie. It was a debt of honor, so called, which I had
-to pay, and I used money which was not my own to do it, in the certainty
-that I could replace it before there could be any possibility of its
-being missed. But the most dreadful ill-luck pursued me. The money which
-I had reckoned upon never came to hand, and a premature examination of
-accounts exposed my deficit. The case might have been dealt leniently
-with, but the laws were more harshly administered thirty years ago than
-now, and on my twenty-third birthday I found myself chained as a felon
-with thirty-seven other convicts in 'tween-decks of the bark _Gloria
-Scott_, bound for Australia.
-
-"'It was the year '55 when the Crimean war was at its height, and the
-old convict ships had been largely used as transports in the Black
-Sea. The government was compelled, therefore, to use smaller and less
-suitable vessels for sending out their prisoners. The Gloria Scott
-had been in the Chinese tea-trade, but she was an old-fashioned,
-heavy-bowed, broad-beamed craft, and the new clippers had cut her
-out. She was a five-hundred-ton boat; and besides her thirty-eight
-jail-birds, she carried twenty-six of a crew, eighteen soldiers, a
-captain, three mates, a doctor, a chaplain, and four warders. Nearly a
-hundred souls were in her, all told, when we set sail from Falmouth.
-
-"'The partitions between the cells of the convicts, instead of being of
-thick oak, as is usual in convict-ships, were quite thin and frail.
-The man next to me, upon the aft side, was one whom I had particularly
-noticed when we were led down the quay. He was a young man with a
-clear, hairless face, a long, thin nose, and rather nut-cracker jaws.
-He carried his head very jauntily in the air, had a swaggering style
-of walking, and was, above all else, remarkable for his extraordinary
-height. I don't think any of our heads would have come up to his
-shoulder, and I am sure that he could not have measured less than six
-and a half feet. It was strange among so many sad and weary faces to see
-one which was full of energy and resolution. The sight of it was to me
-like a fire in a snow-storm. I was glad, then, to find that he was my
-neighbor, and gladder still when, in the dead of the night, I heard a
-whisper close to my ear, and found that he had managed to cut an opening
-in the board which separated us.
-
-"'"Hullo, chummy!" said he, "what's your name, and what are you here
-for?"
-
-"'I answered him, and asked in turn who I was talking with.
-
-"'"I'm Jack Prendergast," said he, "and by God! You'll learn to bless my
-name before you've done with me."
-
-"'I remembered hearing of his case, for it was one which had made an
-immense sensation throughout the country some time before my own arrest.
-He was a man of good family and of great ability, but of incurably
-vicious habits, who had by an ingenious system of fraud obtained huge
-sums of money from the leading London merchants.
-
-"'"Ha, ha! You remember my case!" said he proudly.
-
-"'"Very well, indeed."
-
-"'"Then maybe you remember something queer about it?"
-
-"'"What was that, then?"
-
-"'"I'd had nearly a quarter of a million, hadn't I?"
-
-"'"So it was said."
-
-"'"But none was recovered, eh?"
-
-"'"No."
-
-"'"Well, where d'ye suppose the balance is?" he asked.
-
-"'"I have no idea," said I.
-
-"'"Right between my finger and thumb," he cried. "By God! I've got more
-pounds to my name than you've hairs on your head. And if you've money,
-my son, and know how to handle it and spread it, you can do anything.
-Now, you don't think it likely that a man who could do anything is going
-to wear his breeches out sitting in the stinking hold of a rat-gutted,
-beetle-ridden, mouldy old coffin of a Chin China coaster. No, sir, such
-a man will look after himself and will look after his chums. You may lay
-to that! You hold on to him, and you may kiss the book that he'll haul
-you through."
-
-"'That was his style of talk, and at first I thought it meant nothing;
-but after a while, when he had tested me and sworn me in with all
-possible solemnity, he let me understand that there really was a plot
-to gain command of the vessel. A dozen of the prisoners had hatched it
-before they came aboard, Prendergast was the leader, and his money was
-the motive power.
-
-"'"I'd a partner," said he, "a rare good man, as true as a stock to a
-barrel. He's got the dibbs, he has, and where do you think he is at this
-moment? Why, he's the chaplain of this ship--the chaplain, no less! He
-came aboard with a black coat, and his papers right, and money enough in
-his box to buy the thing right up from keel to main-truck. The crew
-are his, body and soul. He could buy 'em at so much a gross with a cash
-discount, and he did it before ever they signed on. He's got two of the
-warders and Mereer, the second mate, and he'd get the captain himself,
-if he thought him worth it."
-
-"'"What are we to do, then?" I asked.
-
-"'"What do you think?" said he. "We'll make the coats of some of these
-soldiers redder than ever the tailor did."
-
-"'"But they are armed," said I.
-
-"'"And so shall we be, my boy. There's a brace of pistols for every
-mother's son of us, and if we can't carry this ship, with the crew at
-our back, it's time we were all sent to a young misses' boarding-school.
-You speak to your mate upon the left to-night, and see if he is to be
-trusted."
-
-"'I did so, and found my other neighbor to be a young fellow in much
-the same position as myself, whose crime had been forgery. His name was
-Evans, but he afterwards changed it, like myself, and he is now a rich
-and prosperous man in the south of England. He was ready enough to join
-the conspiracy, as the only means of saving ourselves, and before we had
-crossed the Bay there were only two of the prisoners who were not in the
-secret. One of these was of weak mind, and we did not dare to trust him,
-and the other was suffering from jaundice, and could not be of any use
-to us.
-
-"'From the beginning there was really nothing to prevent us from taking
-possession of the ship. The crew were a set of ruffians, specially
-picked for the job. The sham chaplain came into our cells to exhort us,
-carrying a black bag, supposed to be full of tracts, and so often did
-he come that by the third day we had each stowed away at the foot of our
-beds a file, a brace of pistols, a pound of powder, and twenty slugs.
-Two of the warders were agents of Prendergast, and the second mate was
-his right-hand man. The captain, the two mates, two warders Lieutenant
-Martin, his eighteen soldiers, and the doctor were all that we had
-against us. Yet, safe as it was, we determined to neglect no precaution,
-and to make our attack suddenly by night. It came, however, more quickly
-than we expected, and in this way.
-
-"'One evening, about the third week after our start, the doctor had come
-down to see one of the prisoners who was ill, and putting his hand down
-on the bottom of his bunk he felt the outline of the pistols. If he had
-been silent he might have blown the whole thing, but he was a nervous
-little chap, so he gave a cry of surprise and turned so pale that the
-man knew what was up in an instant and seized him. He was gagged before
-he could give the alarm, and tied down upon the bed. He had unlocked
-the door that led to the deck, and we were through it in a rush. The two
-sentries were shot down, and so was a corporal who came running to see
-what was the matter. There were two more soldiers at the door of the
-state-room, and their muskets seemed not to be loaded, for they never
-fired upon us, and they were shot while trying to fix their bayonets.
-Then we rushed on into the captain's cabin, but as we pushed open the
-door there was an explosion from within, and there he lay with his
-brains smeared over the chart of the Atlantic which was pinned upon the
-table, while the chaplain stood with a smoking pistol in his hand at
-his elbow. The two mates had both been seized by the crew, and the whole
-business seemed to be settled.
-
-"'The state-room was next the cabin, and we flocked in there and flopped
-down on the settees, all speaking together, for we were just mad with
-the feeling that we were free once more. There were lockers all round,
-and Wilson, the sham chaplain, knocked one of them in, and pulled out a
-dozen of brown sherry. We cracked off the necks of the bottles, poured
-the stuff out into tumblers, and were just tossing them off, when in an
-instant without warning there came the roar of muskets in our ears, and
-the saloon was so full of smoke that we could not see across the table.
-When it cleared again the place was a shambles. Wilson and eight others
-were wriggling on the top of each other on the floor, and the blood and
-the brown sherry on that table turn me sick now when I think of it. We
-were so cowed by the sight that I think we should have given the job up
-if it had not been for Prendergast. He bellowed like a bull and rushed
-for the door with all that were left alive at his heels. Out we ran,
-and there on the poop were the lieutenant and ten of his men. The swing
-skylights above the saloon table had been a bit open, and they had fired
-on us through the slit. We got on them before they could load, and they
-stood to it like men; but we had the upper hand of them, and in five
-minutes it was all over. My God! Was there ever a slaughter-house
-like that ship! Prendergast was like a raging devil, and he picked the
-soldiers up as if they had been children and threw them overboard alive
-or dead. There was one sergeant that was horribly wounded and yet kept
-on swimming for a surprising time, until some one in mercy blew out his
-brains. When the fighting was over there was no one left of our enemies
-except just the warders the mates, and the doctor.
-
-"'It was over them that the great quarrel arose. There were many of us
-who were glad enough to win back our freedom, and yet who had no wish
-to have murder on our souls. It was one thing to knock the soldiers over
-with their muskets in their hands, and it was another to stand by while
-men were being killed in cold blood. Eight of us, five convicts and
-three sailors, said that we would not see it done. But there was no
-moving Prendergast and those who were with him. Our only chance of
-safety lay in making a clean job of it, said he, and he would not leave
-a tongue with power to wag in a witness-box. It nearly came to our
-sharing the fate of the prisoners, but at last he said that if we wished
-we might take a boat and go. We jumped at the offer, for we were already
-sick of these bloodthirsty doings, and we saw that there would be worse
-before it was done. We were given a suit of sailor togs each, a barrel
-of water, two casks, one of junk and one of biscuits, and a compass.
-Prendergast threw us over a chart, told us that we were shipwrecked
-mariners whose ship had foundered in Lat. 15 degrees and Long 25 degrees
-west, and then cut the painter and let us go.
-
-"'And now I come to the most surprising part of my story, my dear son.
-The seamen had hauled the fore-yard aback during the rising, but now as
-we left them they brought it square again, and as there was a light wind
-from the north and east the bark began to draw slowly away from us. Our
-boat lay, rising and falling, upon the long, smooth rollers, and Evans
-and I, who were the most educated of the party, were sitting in the
-sheets working out our position and planning what coast we should make
-for. It was a nice question, for the Cape de Verdes were about five
-hundred miles to the north of us, and the African coast about seven
-hundred to the east. On the whole, as the wind was coming round to the
-north, we thought that Sierra Leone might be best, and turned our head
-in that direction, the bark being at that time nearly hull down on our
-starboard quarter. Suddenly as we looked at her we saw a dense black
-cloud of smoke shoot up from her, which hung like a monstrous tree upon
-the sky line. A few seconds later a roar like thunder burst upon our
-ears, and as the smoke thinned away there was no sign left of the
-_Gloria Scott_. In an instant we swept the boat's head round again and
-pulled with all our strength for the place where the haze still trailing
-over the water marked the scene of this catastrophe.
-
-"'It was a long hour before we reached it, and at first we feared that
-we had come too late to save any one. A splintered boat and a number of
-crates and fragments of spars rising and falling on the waves showed us
-where the vessel had foundered; but there was no sign of life, and we
-had turned away in despair when we heard a cry for help, and saw at some
-distance a piece of wreckage with a man lying stretched across it. When
-we pulled him aboard the boat he proved to be a young seaman of the
-name of Hudson, who was so burned and exhausted that he could give us no
-account of what had happened until the following morning.
-
-"'It seemed that after we had left, Prendergast and his gang had
-proceeded to put to death the five remaining prisoners. The two warders
-had been shot and thrown overboard, and so also had the third mate.
-Prendergast then descended into the 'tween-decks and with his own hands
-cut the throat of the unfortunate surgeon. There only remained the first
-mate, who was a bold and active man. When he saw the convict approaching
-him with the bloody knife in his hand he kicked off his bonds, which he
-had somehow contrived to loosen, and rushing down the deck he plunged
-into the after-hold. A dozen convicts, who descended with their pistols
-in search of him, found him with a match-box in his hand seated beside
-an open powder-barrel, which was one of a hundred carried on board, and
-swearing that he would blow all hands up if he were in any way molested.
-An instant later the explosion occurred, though Hudson thought it was
-caused by the misdirected bullet of one of the convicts rather than the
-mate's match. Be the cause what it may, it was the end of the _Gloria
-Scott_ and of the rabble who held command of her.
-
-"'Such, in a few words, my dear boy, is the history of this terrible
-business in which I was involved. Next day we were picked up by the brig
-_Hotspur_, bound for Australia, whose captain found no difficulty in
-believing that we were the survivors of a passenger ship which had
-foundered. The transport ship Gloria Scott was set down by the Admiralty
-as being lost at sea, and no word has ever leaked out as to her true
-fate. After an excellent voyage the _Hotspur_ landed us at Sydney, where
-Evans and I changed our names and made our way to the diggings,
-where, among the crowds who were gathered from all nations, we had no
-difficulty in losing our former identities. The rest I need not relate.
-We prospered, we traveled, we came back as rich colonials to England,
-and we bought country estates. For more than twenty years we have
-led peaceful and useful lives, and we hoped that our past was forever
-buried. Imagine, then, my feelings when in the seaman who came to us I
-recognized instantly the man who had been picked off the wreck. He had
-tracked us down somehow, and had set himself to live upon our fears. You
-will understand now how it was that I strove to keep the peace with him,
-and you will in some measure sympathize with me in the fears which fill
-me, now that he has gone from me to his other victim with threats upon
-his tongue.'
-
-"Underneath is written in a hand so shaky as to be hardly legible,
-'Beddoes writes in cipher to say H. Has told all. Sweet Lord, have mercy
-on our souls!'
-
-"That was the narrative which I read that night to young Trevor, and I
-think, Watson, that under the circumstances it was a dramatic one.
-The good fellow was heart-broken at it, and went out to the Terai tea
-planting, where I hear that he is doing well. As to the sailor and
-Beddoes, neither of them was ever heard of again after that day on which
-the letter of warning was written. They both disappeared utterly and
-completely. No complaint had been lodged with the police, so that
-Beddoes had mistaken a threat for a deed. Hudson had been seen lurking
-about, and it was believed by the police that he had done away with
-Beddoes and had fled. For myself I believe that the truth was exactly
-the opposite. I think that it is most probable that Beddoes, pushed to
-desperation and believing himself to have been already betrayed, had
-revenged himself upon Hudson, and had fled from the country with as much
-money as he could lay his hands on. Those are the facts of the case,
-Doctor, and if they are of any use to your collection, I am sure that
-they are very heartily at your service."
-
-
-
-
-Adventure V. The Musgrave Ritual
-
-
-An anomaly which often struck me in the character of my friend Sherlock
-Holmes was that, although in his methods of thought he was the neatest
-and most methodical of mankind, and although also he affected a certain
-quiet primness of dress, he was none the less in his personal habits one
-of the most untidy men that ever drove a fellow-lodger to distraction.
-Not that I am in the least conventional in that respect myself. The
-rough-and-tumble work in Afghanistan, coming on the top of a natural
-Bohemianism of disposition, has made me rather more lax than befits a
-medical man. But with me there is a limit, and when I find a man who
-keeps his cigars in the coal-scuttle, his tobacco in the toe end of
-a Persian slipper, and his unanswered correspondence transfixed by a
-jack-knife into the very centre of his wooden mantelpiece, then I begin
-to give myself virtuous airs. I have always held, too, that pistol
-practice should be distinctly an open-air pastime; and when Holmes, in
-one of his queer humors, would sit in an arm-chair with his hair-trigger
-and a hundred Boxer cartridges, and proceed to adorn the opposite
-wall with a patriotic V. R. done in bullet-pocks, I felt strongly that
-neither the atmosphere nor the appearance of our room was improved by
-it.
-
-Our chambers were always full of chemicals and of criminal relics which
-had a way of wandering into unlikely positions, and of turning up in
-the butter-dish or in even less desirable places. But his papers were
-my great crux. He had a horror of destroying documents, especially those
-which were connected with his past cases, and yet it was only once in
-every year or two that he would muster energy to docket and arrange
-them; for, as I have mentioned somewhere in these incoherent memoirs,
-the outbursts of passionate energy when he performed the remarkable
-feats with which his name is associated were followed by reactions of
-lethargy during which he would lie about with his violin and his books,
-hardly moving save from the sofa to the table. Thus month after month
-his papers accumulated, until every corner of the room was stacked with
-bundles of manuscript which were on no account to be burned, and which
-could not be put away save by their owner. One winter's night, as we
-sat together by the fire, I ventured to suggest to him that, as he had
-finished pasting extracts into his common-place book, he might employ
-the next two hours in making our room a little more habitable. He could
-not deny the justice of my request, so with a rather rueful face he went
-off to his bedroom, from which he returned presently pulling a large tin
-box behind him. This he placed in the middle of the floor and, squatting
-down upon a stool in front of it, he threw back the lid. I could see
-that it was already a third full of bundles of paper tied up with red
-tape into separate packages.
-
-"There are cases enough here, Watson," said he, looking at me with
-mischievous eyes. "I think that if you knew all that I had in this box
-you would ask me to pull some out instead of putting others in."
-
-"These are the records of your early work, then?" I asked. "I have often
-wished that I had notes of those cases."
-
-"Yes, my boy, these were all done prematurely before my biographer
-had come to glorify me." He lifted bundle after bundle in a tender,
-caressing sort of way. "They are not all successes, Watson," said he.
-"But there are some pretty little problems among them. Here's the record
-of the Tarleton murders, and the case of Vamberry, the wine merchant,
-and the adventure of the old Russian woman, and the singular affair
-of the aluminium crutch, as well as a full account of Ricoletti of the
-club-foot, and his abominable wife. And here--ah, now, this really is
-something a little recherché."
-
-He dived his arm down to the bottom of the chest, and brought up a small
-wooden box with a sliding lid, such as children's toys are kept in. From
-within he produced a crumpled piece of paper, and old-fashioned brass
-key, a peg of wood with a ball of string attached to it, and three rusty
-old disks of metal.
-
-"Well, my boy, what do you make of this lot?" he asked, smiling at my
-expression.
-
-"It is a curious collection."
-
-"Very curious, and the story that hangs round it will strike you as
-being more curious still."
-
-"These relics have a history then?"
-
-"So much so that they are history."
-
-"What do you mean by that?"
-
-Sherlock Holmes picked them up one by one, and laid them along the edge
-of the table. Then he reseated himself in his chair and looked them over
-with a gleam of satisfaction in his eyes.
-
-"These," said he, "are all that I have left to remind me of the
-adventure of the Musgrave Ritual."
-
-I had heard him mention the case more than once, though I had never been
-able to gather the details. "I should be so glad," said I, "if you would
-give me an account of it."
-
-"And leave the litter as it is?" he cried, mischievously. "Your tidiness
-won't bear much strain after all, Watson. But I should be glad that you
-should add this case to your annals, for there are points in it which
-make it quite unique in the criminal records of this or, I believe,
-of any other country. A collection of my trifling achievements would
-certainly be incomplete which contained no account of this very singular
-business.
-
-"You may remember how the affair of the _Gloria Scott_, and my
-conversation with the unhappy man whose fate I told you of, first turned
-my attention in the direction of the profession which has become my
-life's work. You see me now when my name has become known far and
-wide, and when I am generally recognized both by the public and by the
-official force as being a final court of appeal in doubtful cases.
-Even when you knew me first, at the time of the affair which you have
-commemorated in 'A Study in Scarlet,' I had already established a
-considerable, though not a very lucrative, connection. You can hardly
-realize, then, how difficult I found it at first, and how long I had to
-wait before I succeeded in making any headway.
-
-"When I first came up to London I had rooms in Montague Street, just
-round the corner from the British Museum, and there I waited, filling in
-my too abundant leisure time by studying all those branches of science
-which might make me more efficient. Now and again cases came in my way,
-principally through the introduction of old fellow-students, for during
-my last years at the University there was a good deal of talk there
-about myself and my methods. The third of these cases was that of the
-Musgrave Ritual, and it is to the interest which was aroused by that
-singular chain of events, and the large issues which proved to be at
-stake, that I trace my first stride towards the position which I now
-hold.
-
-"Reginald Musgrave had been in the same college as myself, and I had
-some slight acquaintance with him. He was not generally popular among
-the undergraduates, though it always seemed to me that what was set down
-as pride was really an attempt to cover extreme natural diffidence.
-In appearance he was a man of exceedingly aristocratic type, thin,
-high-nosed, and large-eyed, with languid and yet courtly manners. He was
-indeed a scion of one of the very oldest families in the kingdom,
-though his branch was a cadet one which had separated from the northern
-Musgraves some time in the sixteenth century, and had established itself
-in western Sussex, where the Manor House of Hurlstone is perhaps the
-oldest inhabited building in the county. Something of his birth place
-seemed to cling to the man, and I never looked at his pale, keen face
-or the poise of his head without associating him with gray archways and
-mullioned windows and all the venerable wreckage of a feudal keep. Once
-or twice we drifted into talk, and I can remember that more than once he
-expressed a keen interest in my methods of observation and inference.
-
-"For four years I had seen nothing of him until one morning he walked
-into my room in Montague Street. He had changed little, was dressed like
-a young man of fashion--he was always a bit of a dandy--and preserved
-the same quiet, suave manner which had formerly distinguished him.
-
-"'How has all gone with you Musgrave?' I asked, after we had cordially
-shaken hands.
-
-"'You probably heard of my poor father's death,' said he; 'he was
-carried off about two years ago. Since then I have of course had the
-Hurlstone estates to manage, and as I am member for my district as well,
-my life has been a busy one. But I understand, Holmes, that you are
-turning to practical ends those powers with which you used to amaze us?'
-
-"'Yes,' said I, 'I have taken to living by my wits.'
-
-"'I am delighted to hear it, for your advice at present would be
-exceedingly valuable to me. We have had some very strange doings at
-Hurlstone, and the police have been able to throw no light upon the
-matter. It is really the most extraordinary and inexplicable business.'
-
-"You can imagine with what eagerness I listened to him, Watson, for
-the very chance for which I had been panting during all those months
-of inaction seemed to have come within my reach. In my inmost heart I
-believed that I could succeed where others failed, and now I had the
-opportunity to test myself.
-
-"'Pray, let me have the details,' I cried.
-
-"Reginald Musgrave sat down opposite to me, and lit the cigarette which
-I had pushed towards him.
-
-"'You must know,' said he, 'that though I am a bachelor, I have to keep
-up a considerable staff of servants at Hurlstone, for it is a rambling
-old place, and takes a good deal of looking after. I preserve, too, and
-in the pheasant months I usually have a house-party, so that it would
-not do to be short-handed. Altogether there are eight maids, the cook,
-the butler, two footmen, and a boy. The garden and the stables of course
-have a separate staff.
-
-"'Of these servants the one who had been longest in our service was
-Brunton the butler. He was a young school-master out of place when he
-was first taken up by my father, but he was a man of great energy and
-character, and he soon became quite invaluable in the household. He was
-a well-grown, handsome man, with a splendid forehead, and though he has
-been with us for twenty years he cannot be more than forty now. With
-his personal advantages and his extraordinary gifts--for he can speak
-several languages and play nearly every musical instrument--it is
-wonderful that he should have been satisfied so long in such a position,
-but I suppose that he was comfortable, and lacked energy to make any
-change. The butler of Hurlstone is always a thing that is remembered by
-all who visit us.
-
-"'But this paragon has one fault. He is a bit of a Don Juan, and you can
-imagine that for a man like him it is not a very difficult part to play
-in a quiet country district. When he was married it was all right, but
-since he has been a widower we have had no end of trouble with him. A
-few months ago we were in hopes that he was about to settle down again
-for he became engaged to Rachel Howells, our second house-maid; but he
-has thrown her over since then and taken up with Janet Tregellis, the
-daughter of the head game-keeper. Rachel--who is a very good girl, but
-of an excitable Welsh temperament--had a sharp touch of brain-fever,
-and goes about the house now--or did until yesterday--like a black-eyed
-shadow of her former self. That was our first drama at Hurlstone; but a
-second one came to drive it from our minds, and it was prefaced by the
-disgrace and dismissal of butler Brunton.
-
-"'This was how it came about. I have said that the man was intelligent,
-and this very intelligence has caused his ruin, for it seems to have
-led to an insatiable curiosity about things which did not in the least
-concern him. I had no idea of the lengths to which this would carry him,
-until the merest accident opened my eyes to it.
-
-"'I have said that the house is a rambling one. One day last week--on
-Thursday night, to be more exact--I found that I could not sleep,
-having foolishly taken a cup of strong café noir after my dinner. After
-struggling against it until two in the morning, I felt that it was quite
-hopeless, so I rose and lit the candle with the intention of continuing
-a novel which I was reading. The book, however, had been left in the
-billiard-room, so I pulled on my dressing-gown and started off to get
-it.
-
-"'In order to reach the billiard-room I had to descend a flight of
-stairs and then to cross the head of a passage which led to the library
-and the gun-room. You can imagine my surprise when, as I looked down
-this corridor, I saw a glimmer of light coming from the open door of the
-library. I had myself extinguished the lamp and closed the door before
-coming to bed. Naturally my first thought was of burglars. The corridors
-at Hurlstone have their walls largely decorated with trophies of old
-weapons. From one of these I picked a battle-axe, and then, leaving my
-candle behind me, I crept on tiptoe down the passage and peeped in at
-the open door.
-
-"'Brunton, the butler, was in the library. He was sitting, fully
-dressed, in an easy-chair, with a slip of paper which looked like a
-map upon his knee, and his forehead sunk forward upon his hand in deep
-thought. I stood dumb with astonishment, watching him from the darkness.
-A small taper on the edge of the table shed a feeble light which
-sufficed to show me that he was fully dressed. Suddenly, as I looked,
-he rose from his chair, and walking over to a bureau at the side, he
-unlocked it and drew out one of the drawers. From this he took a paper,
-and returning to his seat he flattened it out beside the taper on the
-edge of the table, and began to study it with minute attention. My
-indignation at this calm examination of our family documents overcame
-me so far that I took a step forward, and Brunton, looking up, saw me
-standing in the doorway. He sprang to his feet, his face turned livid
-with fear, and he thrust into his breast the chart-like paper which he
-had been originally studying.
-
-"'"So!" said I. "This is how you repay the trust which we have reposed
-in you. You will leave my service to-morrow."
-
-"'He bowed with the look of a man who is utterly crushed, and slunk past
-me without a word. The taper was still on the table, and by its light
-I glanced to see what the paper was which Brunton had taken from the
-bureau. To my surprise it was nothing of any importance at all,
-but simply a copy of the questions and answers in the singular old
-observance called the Musgrave Ritual. It is a sort of ceremony peculiar
-to our family, which each Musgrave for centuries past has gone through
-on his coming of age--a thing of private interest, and perhaps of some
-little importance to the archaeologist, like our own blazonings and
-charges, but of no practical use whatever.'
-
-"'We had better come back to the paper afterwards,' said I.
-
-"'If you think it really necessary,' he answered, with some hesitation.
-'To continue my statement, however: I relocked the bureau, using the key
-which Brunton had left, and I had turned to go when I was surprised to
-find that the butler had returned, and was standing before me.
-
-"'"Mr. Musgrave, sir," he cried, in a voice which was hoarse with
-emotion, "I can't bear disgrace, sir. I've always been proud above my
-station in life, and disgrace would kill me. My blood will be on your
-head, sir--it will, indeed--if you drive me to despair. If you cannot
-keep me after what has passed, then for God's sake let me give you
-notice and leave in a month, as if of my own free will. I could stand
-that, Mr. Musgrave, but not to be cast out before all the folk that I
-know so well."
-
-"'"You don't deserve much consideration, Brunton," I answered. "Your
-conduct has been most infamous. However, as you have been a long time in
-the family, I have no wish to bring public disgrace upon you. A month,
-however is too long. Take yourself away in a week, and give what reason
-you like for going."
-
-"'"Only a week, sir?" he cried, in a despairing voice. "A fortnight--say
-at least a fortnight!"
-
-"'"A week," I repeated, "and you may consider yourself to have been very
-leniently dealt with."
-
-"'He crept away, his face sunk upon his breast, like a broken man, while
-I put out the light and returned to my room.
-
-
-"'"For two days after this Brunton was most assiduous in his attention
-to his duties. I made no allusion to what had passed, and waited with
-some curiosity to see how he would cover his disgrace. On the third
-morning, however he did not appear, as was his custom, after breakfast
-to receive my instructions for the day. As I left the dining-room I
-happened to meet Rachel Howells, the maid. I have told you that she had
-only recently recovered from an illness, and was looking so wretchedly
-pale and wan that I remonstrated with her for being at work.
-
-"'"You should be in bed," I said. "Come back to your duties when you are
-stronger."
-
-"'She looked at me with so strange an expression that I began to suspect
-that her brain was affected.
-
-"'"I am strong enough, Mr. Musgrave," said she.
-
-"'"We will see what the doctor says," I answered. "You must stop work
-now, and when you go downstairs just say that I wish to see Brunton."
-
-"'"The butler is gone," said she.
-
-"'"Gone! Gone where?"
-
-"'"He is gone. No one has seen him. He is not in his room. Oh, yes, he
-is gone, he is gone!" She fell back against the wall with shriek after
-shriek of laughter, while I, horrified at this sudden hysterical attack,
-rushed to the bell to summon help. The girl was taken to her room, still
-screaming and sobbing, while I made inquiries about Brunton. There was
-no doubt about it that he had disappeared. His bed had not been slept
-in, he had been seen by no one since he had retired to his room the
-night before, and yet it was difficult to see how he could have left
-the house, as both windows and doors were found to be fastened in the
-morning. His clothes, his watch, and even his money were in his room,
-but the black suit which he usually wore was missing. His slippers,
-too, were gone, but his boots were left behind. Where then could butler
-Brunton have gone in the night, and what could have become of him now?
-
-"'Of course we searched the house from cellar to garret, but there was
-no trace of him. It is, as I have said, a labyrinth of an old house,
-especially the original wing, which is now practically uninhabited; but
-we ransacked every room and cellar without discovering the least sign
-of the missing man. It was incredible to me that he could have gone away
-leaving all his property behind him, and yet where could he be? I called
-in the local police, but without success. Rain had fallen on the night
-before and we examined the lawn and the paths all round the house, but
-in vain. Matters were in this state, when a new development quite drew
-our attention away from the original mystery.
-
-"'For two days Rachel Howells had been so ill, sometimes delirious,
-sometimes hysterical, that a nurse had been employed to sit up with her
-at night. On the third night after Brunton's disappearance, the nurse,
-finding her patient sleeping nicely, had dropped into a nap in the
-arm-chair, when she woke in the early morning to find the bed empty, the
-window open, and no signs of the invalid. I was instantly aroused, and,
-with the two footmen, started off at once in search of the missing girl.
-It was not difficult to tell the direction which she had taken, for,
-starting from under her window, we could follow her footmarks easily
-across the lawn to the edge of the mere, where they vanished close to
-the gravel path which leads out of the grounds. The lake there is eight
-feet deep, and you can imagine our feelings when we saw that the trail
-of the poor demented girl came to an end at the edge of it.
-
-"'Of course, we had the drags at once, and set to work to recover the
-remains, but no trace of the body could we find. On the other hand, we
-brought to the surface an object of a most unexpected kind. It was a
-linen bag which contained within it a mass of old rusted and discolored
-metal and several dull-colored pieces of pebble or glass. This strange
-find was all that we could get from the mere, and, although we made
-every possible search and inquiry yesterday, we know nothing of the fate
-either of Rachel Howells or of Richard Brunton. The county police are at
-their wits' end, and I have come up to you as a last resource.'
-
-"You can imagine, Watson, with what eagerness I listened to this
-extraordinary sequence of events, and endeavored to piece them together,
-and to devise some common thread upon which they might all hang. The
-butler was gone. The maid was gone. The maid had loved the butler, but
-had afterwards had cause to hate him. She was of Welsh blood, fiery
-and passionate. She had been terribly excited immediately after his
-disappearance. She had flung into the lake a bag containing some
-curious contents. These were all factors which had to be taken into
-consideration, and yet none of them got quite to the heart of the
-matter. What was the starting-point of this chain of events? There lay
-the end of this tangled line.
-
-"'I must see that paper, Musgrave,' said I, 'which this butler of your
-thought it worth his while to consult, even at the risk of the loss of
-his place.'
-
-"'It is rather an absurd business, this ritual of ours,' he answered.
-'But it has at least the saving grace of antiquity to excuse it. I have
-a copy of the questions and answers here if you care to run your eye
-over them.'
-
-"He handed me the very paper which I have here, Watson, and this is the
-strange catechism to which each Musgrave had to submit when he came to
-man's estate. I will read you the questions and answers as they stand.
-
-"'Whose was it?'
-
-"'His who is gone.'
-
-"'Who shall have it?'
-
-"'He who will come.'
-
-"'Where was the sun?'
-
-"'Over the oak.'
-
-"'Where was the shadow?'
-
-"'Under the elm.'
-
-"How was it stepped?'
-
-"'North by ten and by ten, east by five and by five, south by two and by
-two, west by one and by one, and so under.'
-
-"'What shall we give for it?'
-
-"'All that is ours.'
-
-"'Why should we give it?'
-
-"'For the sake of the trust.'
-
-"'The original has no date, but is in the spelling of the middle of the
-seventeenth century,' remarked Musgrave. 'I am afraid, however, that it
-can be of little help to you in solving this mystery.'
-
-"'At least,' said I, 'it gives us another mystery, and one which is even
-more interesting than the first. It may be that the solution of the one
-may prove to be the solution of the other. You will excuse me, Musgrave,
-if I say that your butler appears to me to have been a very clever man,
-and to have had a clearer insight than ten generations of his masters.'
-
-"'I hardly follow you,' said Musgrave. 'The paper seems to me to be of
-no practical importance.'
-
-"'But to me it seems immensely practical, and I fancy that Brunton took
-the same view. He had probably seen it before that night on which you
-caught him.'
-
-"'It is very possible. We took no pains to hide it.'
-
-"'He simply wished, I should imagine, to refresh his memory upon that
-last occasion. He had, as I understand, some sort of map or chart which
-he was comparing with the manuscript, and which he thrust into his
-pocket when you appeared.'
-
-"'That is true. But what could he have to do with this old family custom
-of ours, and what does this rigmarole mean?'
-
-"'I don't think that we should have much difficulty in determining
-that,' said I; 'with your permission we will take the first train down
-to Sussex, and go a little more deeply into the matter upon the spot.'
-
-
-"The same afternoon saw us both at Hurlstone. Possibly you have seen
-pictures and read descriptions of the famous old building, so I will
-confine my account of it to saying that it is built in the shape of
-an L, the long arm being the more modern portion, and the shorter the
-ancient nucleus, from which the other had developed. Over the low,
-heavily-lintelled door, in the centre of this old part, is chiseled the
-date, 1607, but experts are agreed that the beams and stone-work are
-really much older than this. The enormously thick walls and tiny windows
-of this part had in the last century driven the family into building the
-new wing, and the old one was used now as a store-house and a cellar,
-when it was used at all. A splendid park with fine old timber surrounds
-the house, and the lake, to which my client had referred, lay close to
-the avenue, about two hundred yards from the building.
-
-"I was already firmly convinced, Watson, that there were not three
-separate mysteries here, but one only, and that if I could read the
-Musgrave Ritual aright I should hold in my hand the clue which would
-lead me to the truth concerning both the butler Brunton and the maid
-Howells. To that then I turned all my energies. Why should this servant
-be so anxious to master this old formula? Evidently because he saw
-something in it which had escaped all those generations of country
-squires, and from which he expected some personal advantage. What was it
-then, and how had it affected his fate?
-
-"It was perfectly obvious to me, on reading the ritual, that the
-measurements must refer to some spot to which the rest of the document
-alluded, and that if we could find that spot, we should be in a fair way
-towards finding what the secret was which the old Musgraves had thought
-it necessary to embalm in so curious a fashion. There were two guides
-given us to start with, an oak and an elm. As to the oak there could be
-no question at all. Right in front of the house, upon the left-hand
-side of the drive, there stood a patriarch among oaks, one of the most
-magnificent trees that I have ever seen.
-
-"'That was there when your ritual was drawn up,' said I, as we drove
-past it.
-
-"'It was there at the Norman Conquest in all probability,' he answered.
-'It has a girth of twenty-three feet.'
-
-"'Have you any old elms?' I asked.
-
-"'There used to be a very old one over yonder but it was struck by
-lightning ten years ago, and we cut down the stump.'
-
-"'You can see where it used to be?'
-
-"'Oh, yes.'
-
-"'There are no other elms?'
-
-"'No old ones, but plenty of beeches.'
-
-"'I should like to see where it grew.'
-
-"We had driven up in a dog-cart, and my client led me away at once,
-without our entering the house, to the scar on the lawn where the
-elm had stood. It was nearly midway between the oak and the house. My
-investigation seemed to be progressing.
-
-"'I suppose it is impossible to find out how high the elm was?' I asked.
-
-"'I can give you it at once. It was sixty-four feet.'
-
-"'How do you come to know it?' I asked, in surprise.
-
-"'When my old tutor used to give me an exercise in trigonometry, it
-always took the shape of measuring heights. When I was a lad I worked
-out every tree and building in the estate.'
-
-"This was an unexpected piece of luck. My data were coming more quickly
-than I could have reasonably hoped.
-
-"'Tell me,' I asked, 'did your butler ever ask you such a question?'
-
-"Reginald Musgrave looked at me in astonishment. 'Now that you call it
-to my mind,' he answered, 'Brunton did ask me about the height of the
-tree some months ago, in connection with some little argument with the
-groom.'
-
-"This was excellent news, Watson, for it showed me that I was on the
-right road. I looked up at the sun. It was low in the heavens, and I
-calculated that in less than an hour it would lie just above the topmost
-branches of the old oak. One condition mentioned in the Ritual would
-then be fulfilled. And the shadow of the elm must mean the farther end
-of the shadow, otherwise the trunk would have been chosen as the guide.
-I had, then, to find where the far end of the shadow would fall when the
-sun was just clear of the oak."
-
-"That must have been difficult, Holmes, when the elm was no longer
-there."
-
-"Well, at least I knew that if Brunton could do it, I could also.
-Besides, there was no real difficulty. I went with Musgrave to his study
-and whittled myself this peg, to which I tied this long string with a
-knot at each yard. Then I took two lengths of a fishing-rod, which came
-to just six feet, and I went back with my client to where the elm had
-been. The sun was just grazing the top of the oak. I fastened the rod
-on end, marked out the direction of the shadow, and measured it. It was
-nine feet in length.
-
-"Of course the calculation now was a simple one. If a rod of six feet
-threw a shadow of nine, a tree of sixty-four feet would throw one of
-ninety-six, and the line of the one would of course be the line of the
-other. I measured out the distance, which brought me almost to the
-wall of the house, and I thrust a peg into the spot. You can imagine
-my exultation, Watson, when within two inches of my peg I saw a conical
-depression in the ground. I knew that it was the mark made by Brunton in
-his measurements, and that I was still upon his trail.
-
-"From this starting-point I proceeded to step, having first taken the
-cardinal points by my pocket-compass. Ten steps with each foot took me
-along parallel with the wall of the house, and again I marked my spot
-with a peg. Then I carefully paced off five to the east and two to the
-south. It brought me to the very threshold of the old door. Two steps
-to the west meant now that I was to go two paces down the stone-flagged
-passage, and this was the place indicated by the Ritual.
-
-"Never have I felt such a cold chill of disappointment, Watson. For a
-moment is seemed to me that there must be some radical mistake in my
-calculations. The setting sun shone full upon the passage floor, and I
-could see that the old, foot-worn gray stones with which it was paved
-were firmly cemented together, and had certainly not been moved for many
-a long year. Brunton had not been at work here. I tapped upon the floor,
-but it sounded the same all over, and there was no sign of any crack
-or crevice. But, fortunately, Musgrave, who had begun to appreciate the
-meaning of my proceedings, and who was now as excited as myself, took
-out his manuscript to check my calculation.
-
-"'And under,' he cried. 'You have omitted the "and under."'
-
-"I had thought that it meant that we were to dig, but now, of course,
-I saw at once that I was wrong. 'There is a cellar under this then?' I
-cried.
-
-"'Yes, and as old as the house. Down here, through this door.'
-
-"We went down a winding stone stair, and my companion, striking a match,
-lit a large lantern which stood on a barrel in the corner. In an instant
-it was obvious that we had at last come upon the true place, and that we
-had not been the only people to visit the spot recently.
-
-"It had been used for the storage of wood, but the billets, which had
-evidently been littered over the floor, were now piled at the sides, so
-as to leave a clear space in the middle. In this space lay a large and
-heavy flagstone with a rusted iron ring in the centre to which a thick
-shepherd's-check muffler was attached.
-
-"'By Jove!' cried my client. 'That's Brunton's muffler. I have seen it
-on him, and could swear to it. What has the villain been doing here?'
-
-"At my suggestion a couple of the county police were summoned to be
-present, and I then endeavored to raise the stone by pulling on the
-cravat. I could only move it slightly, and it was with the aid of one
-of the constables that I succeeded at last in carrying it to one side.
-A black hole yawned beneath into which we all peered, while Musgrave,
-kneeling at the side, pushed down the lantern.
-
-"A small chamber about seven feet deep and four feet square lay open to
-us. At one side of this was a squat, brass-bound wooden box, the lid of
-which was hinged upwards, with this curious old-fashioned key projecting
-from the lock. It was furred outside by a thick layer of dust, and damp
-and worms had eaten through the wood, so that a crop of livid fungi
-was growing on the inside of it. Several discs of metal, old coins
-apparently, such as I hold here, were scattered over the bottom of the
-box, but it contained nothing else.
-
-"At the moment, however, we had no thought for the old chest, for our
-eyes were riveted upon that which crouched beside it. It was the figure
-of a man, clad in a suit of black, who squatted down upon his hams with
-his forehead sunk upon the edge of the box and his two arms thrown out
-on each side of it. The attitude had drawn all the stagnant blood to
-the face, and no man could have recognized that distorted liver-colored
-countenance; but his height, his dress, and his hair were all sufficient
-to show my client, when we had drawn the body up, that it was indeed his
-missing butler. He had been dead some days, but there was no wound or
-bruise upon his person to show how he had met his dreadful end. When
-his body had been carried from the cellar we found ourselves still
-confronted with a problem which was almost as formidable as that with
-which we had started.
-
-"I confess that so far, Watson, I had been disappointed in my
-investigation. I had reckoned upon solving the matter when once I had
-found the place referred to in the Ritual; but now I was there, and was
-apparently as far as ever from knowing what it was which the family had
-concealed with such elaborate precautions. It is true that I had thrown
-a light upon the fate of Brunton, but now I had to ascertain how that
-fate had come upon him, and what part had been played in the matter by
-the woman who had disappeared. I sat down upon a keg in the corner and
-thought the whole matter carefully over.
-
-"You know my methods in such cases, Watson. I put myself in the man's
-place and, having first gauged his intelligence, I try to imagine how I
-should myself have proceeded under the same circumstances. In this
-case the matter was simplified by Brunton's intelligence being quite
-first-rate, so that it was unnecessary to make any allowance for the
-personal equation, as the astronomers have dubbed it. He knew that
-something valuable was concealed. He had spotted the place. He found
-that the stone which covered it was just too heavy for a man to move
-unaided. What would he do next? He could not get help from outside, even
-if he had some one whom he could trust, without the unbarring of doors
-and considerable risk of detection. It was better, if he could, to have
-his helpmate inside the house. But whom could he ask? This girl had been
-devoted to him. A man always finds it hard to realize that he may have
-finally lost a woman's love, however badly he may have treated her. He
-would try by a few attentions to make his peace with the girl Howells,
-and then would engage her as his accomplice. Together they would come at
-night to the cellar, and their united force would suffice to raise the
-stone. So far I could follow their actions as if I had actually seen
-them.
-
-"But for two of them, and one a woman, it must have been heavy work the
-raising of that stone. A burly Sussex policeman and I had found it no
-light job. What would they do to assist them? Probably what I should
-have done myself. I rose and examined carefully the different billets
-of wood which were scattered round the floor. Almost at once I came
-upon what I expected. One piece, about three feet in length, had a very
-marked indentation at one end, while several were flattened at the sides
-as if they had been compressed by some considerable weight. Evidently,
-as they had dragged the stone up they had thrust the chunks of wood into
-the chink, until at last, when the opening was large enough to crawl
-through, they would hold it open by a billet placed lengthwise, which
-might very well become indented at the lower end, since the whole weight
-of the stone would press it down on to the edge of this other slab. So
-far I was still on safe ground.
-
-"And now how was I to proceed to reconstruct this midnight drama?
-Clearly, only one could fit into the hole, and that one was Brunton. The
-girl must have waited above. Brunton then unlocked the box, handed up
-the contents presumably--since they were not to be found--and then--and
-then what happened?
-
-"What smouldering fire of vengeance had suddenly sprung into flame in
-this passionate Celtic woman's soul when she saw the man who had wronged
-her--wronged her, perhaps, far more than we suspected--in her power?
-Was it a chance that the wood had slipped, and that the stone had shut
-Brunton into what had become his sepulchre? Had she only been guilty of
-silence as to his fate? Or had some sudden blow from her hand dashed the
-support away and sent the slab crashing down into its place? Be that
-as it might, I seemed to see that woman's figure still clutching at her
-treasure trove and flying wildly up the winding stair, with her ears
-ringing perhaps with the muffled screams from behind her and with the
-drumming of frenzied hands against the slab of stone which was choking
-her faithless lover's life out.
-
-"Here was the secret of her blanched face, her shaken nerves, her peals
-of hysterical laughter on the next morning. But what had been in the
-box? What had she done with that? Of course, it must have been the old
-metal and pebbles which my client had dragged from the mere. She had
-thrown them in there at the first opportunity to remove the last trace
-of her crime.
-
-"For twenty minutes I had sat motionless, thinking the matter out.
-Musgrave still stood with a very pale face, swinging his lantern and
-peering down into the hole.
-
-"'These are coins of Charles the First,' said he, holding out the few
-which had been in the box; 'you see we were right in fixing our date for
-the Ritual.'
-
-"'We may find something else of Charles the First,' I cried, as the
-probable meaning of the first two questions of the Ritual broke suddenly
-upon me. 'Let me see the contents of the bag which you fished from the
-mere.'
-
-
-"We ascended to his study, and he laid the debris before me. I could
-understand his regarding it as of small importance when I looked at it,
-for the metal was almost black and the stones lustreless and dull. I
-rubbed one of them on my sleeve, however, and it glowed afterwards like
-a spark in the dark hollow of my hand. The metal work was in the form
-of a double ring, but it had been bent and twisted out of its original
-shape.
-
-"'You must bear in mind,' said I, 'that the royal party made head in
-England even after the death of the king, and that when they at last
-fled they probably left many of their most precious possessions buried
-behind them, with the intention of returning for them in more peaceful
-times.'
-
-"'My ancestor, Sir Ralph Musgrave, was a prominent Cavalier and the
-right-hand man of Charles the Second in his wanderings,' said my friend.
-
-"'Ah, indeed!' I answered. 'Well now, I think that really should give us
-the last link that we wanted. I must congratulate you on coming into
-the possession, though in rather a tragic manner of a relic which is of
-great intrinsic value, but of even greater importance as an historical
-curiosity.'
-
-"'What is it, then?' he gasped in astonishment.
-
-"'It is nothing less than the ancient crown of the kings of England.'
-
-"'The crown!'
-
-"'Precisely. Consider what the Ritual says: How does it run? "Whose was
-it?" "His who is gone." That was after the execution of Charles. Then,
-"Who shall have it?" "He who will come." That was Charles the Second,
-whose advent was already foreseen. There can, I think, be no doubt that
-this battered and shapeless diadem once encircled the brows of the royal
-Stuarts.'
-
-"'And how came it in the pond?'
-
-"'Ah, that is a question that will take some time to answer.' And with
-that I sketched out to him the whole long chain of surmise and of proof
-which I had constructed. The twilight had closed in and the moon was
-shining brightly in the sky before my narrative was finished.
-
-"'And how was it then that Charles did not get his crown when he
-returned?' asked Musgrave, pushing back the relic into its linen bag.
-
-"'Ah, there you lay your finger upon the one point which we shall
-probably never be able to clear up. It is likely that the Musgrave who
-held the secret died in the interval, and by some oversight left this
-guide to his descendant without explaining the meaning of it. From that
-day to this it has been handed down from father to son, until at last
-it came within reach of a man who tore its secret out of it and lost his
-life in the venture.'
-
-
-"And that's the story of the Musgrave Ritual, Watson. They have the
-crown down at Hurlstone--though they had some legal bother and a
-considerable sum to pay before they were allowed to retain it. I am sure
-that if you mentioned my name they would be happy to show it to you. Of
-the woman nothing was ever heard, and the probability is that she got
-away out of England and carried herself and the memory of her crime to
-some land beyond the seas."
-
-
-
-
-Adventure VI. The Reigate Puzzle
-
-
-It was some time before the health of my friend Mr. Sherlock Holmes
-recovered from the strain caused by his immense exertions in the spring
-of '87. The whole question of the Netherland-Sumatra Company and of the
-colossal schemes of Baron Maupertuis are too recent in the minds of the
-public, and are too intimately concerned with politics and finance to be
-fitting subjects for this series of sketches. They led, however, in an
-indirect fashion to a singular and complex problem which gave my friend
-an opportunity of demonstrating the value of a fresh weapon among the
-many with which he waged his life-long battle against crime.
-
-On referring to my notes I see that it was upon the 14th of April that
-I received a telegram from Lyons which informed me that Holmes was
-lying ill in the Hotel Dulong. Within twenty-four hours I was in his
-sick-room, and was relieved to find that there was nothing formidable in
-his symptoms. Even his iron constitution, however, had broken down
-under the strain of an investigation which had extended over two months,
-during which period he had never worked less than fifteen hours a day,
-and had more than once, as he assured me, kept to his task for five days
-at a stretch. Even the triumphant issue of his labors could not save him
-from reaction after so terrible an exertion, and at a time when Europe
-was ringing with his name and when his room was literally ankle-deep
-with congratulatory telegrams I found him a prey to the blackest
-depression. Even the knowledge that he had succeeded where the police of
-three countries had failed, and that he had outmanoeuvred at every point
-the most accomplished swindler in Europe, was insufficient to rouse him
-from his nervous prostration.
-
-Three days later we were back in Baker Street together; but it was
-evident that my friend would be much the better for a change, and the
-thought of a week of spring time in the country was full of attractions
-to me also. My old friend, Colonel Hayter, who had come under my
-professional care in Afghanistan, had now taken a house near Reigate in
-Surrey, and had frequently asked me to come down to him upon a visit. On
-the last occasion he had remarked that if my friend would only come
-with me he would be glad to extend his hospitality to him also. A little
-diplomacy was needed, but when Holmes understood that the establishment
-was a bachelor one, and that he would be allowed the fullest freedom,
-he fell in with my plans and a week after our return from Lyons we were
-under the Colonel's roof. Hayter was a fine old soldier who had seen
-much of the world, and he soon found, as I had expected, that Holmes and
-he had much in common.
-
-On the evening of our arrival we were sitting in the Colonel's gun-room
-after dinner, Holmes stretched upon the sofa, while Hayter and I looked
-over his little armory of Eastern weapons.
-
-"By the way," said he suddenly, "I think I'll take one of these pistols
-upstairs with me in case we have an alarm."
-
-"An alarm!" said I.
-
-"Yes, we've had a scare in this part lately. Old Acton, who is one of
-our county magnates, had his house broken into last Monday. No great
-damage done, but the fellows are still at large."
-
-"No clue?" asked Holmes, cocking his eye at the Colonel.
-
-"None as yet. But the affair is a petty one, one of our little country
-crimes, which must seem too small for your attention, Mr. Holmes, after
-this great international affair."
-
-Holmes waved away the compliment, though his smile showed that it had
-pleased him.
-
-"Was there any feature of interest?"
-
-"I fancy not. The thieves ransacked the library and got very little for
-their pains. The whole place was turned upside down, drawers burst open,
-and presses ransacked, with the result that an odd volume of Pope's
-'Homer,' two plated candlesticks, an ivory letter-weight, a small oak
-barometer, and a ball of twine are all that have vanished."
-
-"What an extraordinary assortment!" I exclaimed.
-
-"Oh, the fellows evidently grabbed hold of everything they could get."
-
-Holmes grunted from the sofa.
-
-"The county police ought to make something of that," said he; "why, it
-is surely obvious that--"
-
-But I held up a warning finger.
-
-"You are here for a rest, my dear fellow. For Heaven's sake don't get
-started on a new problem when your nerves are all in shreds."
-
-Holmes shrugged his shoulders with a glance of comic resignation towards
-the Colonel, and the talk drifted away into less dangerous channels.
-
-It was destined, however, that all my professional caution should be
-wasted, for next morning the problem obtruded itself upon us in such a
-way that it was impossible to ignore it, and our country visit took a
-turn which neither of us could have anticipated. We were at breakfast
-when the Colonel's butler rushed in with all his propriety shaken out of
-him.
-
-"Have you heard the news, sir?" he gasped. "At the Cunningham's sir!"
-
-"Burglary!" cried the Colonel, with his coffee-cup in mid-air.
-
-"Murder!"
-
-The Colonel whistled. "By Jove!" said he. "Who's killed, then? The J.P.
-or his son?"
-
-"Neither, sir. It was William the coachman. Shot through the heart, sir,
-and never spoke again."
-
-"Who shot him, then?"
-
-"The burglar, sir. He was off like a shot and got clean away. He'd just
-broke in at the pantry window when William came on him and met his end
-in saving his master's property."
-
-"What time?"
-
-"It was last night, sir, somewhere about twelve."
-
-"Ah, then, we'll step over afterwards," said the Colonel, coolly
-settling down to his breakfast again. "It's a baddish business," he
-added when the butler had gone; "he's our leading man about here, is old
-Cunningham, and a very decent fellow too. He'll be cut up over this, for
-the man has been in his service for years and was a good servant. It's
-evidently the same villains who broke into Acton's."
-
-"And stole that very singular collection," said Holmes, thoughtfully.
-
-"Precisely."
-
-"Hum! It may prove the simplest matter in the world, but all the same
-at first glance this is just a little curious, is it not? A gang of
-burglars acting in the country might be expected to vary the scene of
-their operations, and not to crack two cribs in the same district within
-a few days. When you spoke last night of taking precautions I remember
-that it passed through my mind that this was probably the last parish
-in England to which the thief or thieves would be likely to turn their
-attention--which shows that I have still much to learn."
-
-"I fancy it's some local practitioner," said the Colonel. "In that case,
-of course, Acton's and Cunningham's are just the places he would go for,
-since they are far the largest about here."
-
-"And richest?"
-
-"Well, they ought to be, but they've had a lawsuit for some years which
-has sucked the blood out of both of them, I fancy. Old Acton has some
-claim on half Cunningham's estate, and the lawyers have been at it with
-both hands."
-
-"If it's a local villain there should not be much difficulty in running
-him down," said Holmes with a yawn. "All right, Watson, I don't intend
-to meddle."
-
-"Inspector Forrester, sir," said the butler, throwing open the door.
-
-The official, a smart, keen-faced young fellow, stepped into the room.
-"Good-morning, Colonel," said he; "I hope I don't intrude, but we hear
-that Mr. Holmes of Baker Street is here."
-
-The Colonel waved his hand towards my friend, and the Inspector bowed.
-
-"We thought that perhaps you would care to step across, Mr. Holmes."
-
-"The fates are against you, Watson," said he, laughing. "We were
-chatting about the matter when you came in, Inspector. Perhaps you
-can let us have a few details." As he leaned back in his chair in the
-familiar attitude I knew that the case was hopeless.
-
-"We had no clue in the Acton affair. But here we have plenty to go on,
-and there's no doubt it is the same party in each case. The man was
-seen."
-
-"Ah!"
-
-"Yes, sir. But he was off like a deer after the shot that killed poor
-William Kirwan was fired. Mr. Cunningham saw him from the bedroom
-window, and Mr. Alec Cunningham saw him from the back passage. It was
-quarter to twelve when the alarm broke out. Mr. Cunningham had just got
-into bed, and Mr. Alec was smoking a pipe in his dressing-gown. They
-both heard William the coachman calling for help, and Mr. Alec ran down
-to see what was the matter. The back door was open, and as he came to
-the foot of the stairs he saw two men wrestling together outside. One of
-them fired a shot, the other dropped, and the murderer rushed across the
-garden and over the hedge. Mr. Cunningham, looking out of his bedroom,
-saw the fellow as he gained the road, but lost sight of him at once. Mr.
-Alec stopped to see if he could help the dying man, and so the villain
-got clean away. Beyond the fact that he was a middle-sized man and
-dressed in some dark stuff, we have no personal clue; but we are making
-energetic inquiries, and if he is a stranger we shall soon find him
-out."
-
-"What was this William doing there? Did he say anything before he died?"
-
-"Not a word. He lives at the lodge with his mother, and as he was a
-very faithful fellow we imagine that he walked up to the house with
-the intention of seeing that all was right there. Of course this Acton
-business has put every one on their guard. The robber must have just
-burst open the door--the lock has been forced--when William came upon
-him."
-
-"Did William say anything to his mother before going out?"
-
-"She is very old and deaf, and we can get no information from her. The
-shock has made her half-witted, but I understand that she was never
-very bright. There is one very important circumstance, however. Look at
-this!"
-
-He took a small piece of torn paper from a note-book and spread it out
-upon his knee.
-
-"This was found between the finger and thumb of the dead man. It appears
-to be a fragment torn from a larger sheet. You will observe that the
-hour mentioned upon it is the very time at which the poor fellow met his
-fate. You see that his murderer might have torn the rest of the sheet
-from him or he might have taken this fragment from the murderer. It
-reads almost as though it were an appointment."
-
-Holmes took up the scrap of paper, a fac-simile of which is here
-reproduced.
-
- d at quarter to twelve learn what maybe
-
-"Presuming that it is an appointment," continued the Inspector, "it is
-of course a conceivable theory that this William Kirwan--though he had
-the reputation of being an honest man, may have been in league with the
-thief. He may have met him there, may even have helped him to break in
-the door, and then they may have fallen out between themselves."
-
-"This writing is of extraordinary interest," said Holmes, who had been
-examining it with intense concentration. "These are much deeper waters
-than I had thought." He sank his head upon his hands, while the Inspector
-smiled at the effect which his case had had upon the famous London
-specialist.
-
-"Your last remark," said Holmes, presently, "as to the possibility of
-there being an understanding between the burglar and the servant, and
-this being a note of appointment from one to the other, is an ingenious
-and not entirely impossible supposition. But this writing opens up--" He
-sank his head into his hands again and remained for some minutes in the
-deepest thought. When he raised his face again, I was surprised to see
-that his cheek was tinged with color, and his eyes as bright as before
-his illness. He sprang to his feet with all his old energy.
-
-"I'll tell you what," said he, "I should like to have a quiet little
-glance into the details of this case. There is something in it which
-fascinates me extremely. If you will permit me, Colonel, I will leave my
-friend Watson and you, and I will step round with the Inspector to test
-the truth of one or two little fancies of mine. I will be with you again
-in half an hour."
-
-An hour and half had elapsed before the Inspector returned alone.
-
-"Mr. Holmes is walking up and down in the field outside," said he. "He
-wants us all four to go up to the house together."
-
-"To Mr. Cunningham's?"
-
-"Yes, sir."
-
-"What for?"
-
-The Inspector shrugged his shoulders. "I don't quite know, sir. Between
-ourselves, I think Mr. Holmes had not quite got over his illness yet.
-He's been behaving very queerly, and he is very much excited."
-
-"I don't think you need alarm yourself," said I. "I have usually found
-that there was method in his madness."
-
-"Some folks might say there was madness in his method," muttered the
-Inspector. "But he's all on fire to start, Colonel, so we had best go
-out if you are ready."
-
-We found Holmes pacing up and down in the field, his chin sunk upon his
-breast, and his hands thrust into his trousers pockets.
-
-"The matter grows in interest," said he. "Watson, your country-trip has
-been a distinct success. I have had a charming morning."
-
-"You have been up to the scene of the crime, I understand," said the
-Colonel.
-
-"Yes; the Inspector and I have made quite a little reconnaissance
-together."
-
-"Any success?"
-
-"Well, we have seen some very interesting things. I'll tell you what we
-did as we walk. First of all, we saw the body of this unfortunate man.
-He certainly died from a revolver wound as reported."
-
-"Had you doubted it, then?"
-
-"Oh, it is as well to test everything. Our inspection was not wasted. We
-then had an interview with Mr. Cunningham and his son, who were able
-to point out the exact spot where the murderer had broken through the
-garden-hedge in his flight. That was of great interest."
-
-"Naturally."
-
-"Then we had a look at this poor fellow's mother. We could get no
-information from her, however, as she is very old and feeble."
-
-"And what is the result of your investigations?"
-
-"The conviction that the crime is a very peculiar one. Perhaps our visit
-now may do something to make it less obscure. I think that we are both
-agreed, Inspector that the fragment of paper in the dead man's hand,
-bearing, as it does, the very hour of his death written upon it, is of
-extreme importance."
-
-"It should give a clue, Mr. Holmes."
-
-"It does give a clue. Whoever wrote that note was the man who brought
-William Kirwan out of his bed at that hour. But where is the rest of
-that sheet of paper?"
-
-"I examined the ground carefully in the hope of finding it," said the
-Inspector.
-
-"It was torn out of the dead man's hand. Why was some one so anxious to
-get possession of it? Because it incriminated him. And what would he do
-with it? Thrust it into his pocket, most likely, never noticing that a
-corner of it had been left in the grip of the corpse. If we could get
-the rest of that sheet it is obvious that we should have gone a long way
-towards solving the mystery."
-
-"Yes, but how can we get at the criminal's pocket before we catch the
-criminal?"
-
-"Well, well, it was worth thinking over. Then there is another obvious
-point. The note was sent to William. The man who wrote it could not have
-taken it; otherwise, of course, he might have delivered his own message
-by word of mouth. Who brought the note, then? Or did it come through the
-post?"
-
-"I have made inquiries," said the Inspector. "William received a letter
-by the afternoon post yesterday. The envelope was destroyed by him."
-
-"Excellent!" cried Holmes, clapping the Inspector on the back. "You've
-seen the postman. It is a pleasure to work with you. Well, here is the
-lodge, and if you will come up, Colonel, I will show you the scene of
-the crime."
-
-We passed the pretty cottage where the murdered man had lived, and
-walked up an oak-lined avenue to the fine old Queen Anne house, which
-bears the date of Malplaquet upon the lintel of the door. Holmes and
-the Inspector led us round it until we came to the side gate, which is
-separated by a stretch of garden from the hedge which lines the road. A
-constable was standing at the kitchen door.
-
-"Throw the door open, officer," said Holmes. "Now, it was on those
-stairs that young Mr. Cunningham stood and saw the two men struggling
-just where we are. Old Mr. Cunningham was at that window--the second on
-the left--and he saw the fellow get away just to the left of that bush.
-Then Mr. Alec ran out and knelt beside the wounded man. The ground is
-very hard, you see, and there are no marks to guide us." As he spoke two
-men came down the garden path, from round the angle of the house. The
-one was an elderly man, with a strong, deep-lined, heavy-eyed face; the
-other a dashing young fellow, whose bright, smiling expression and showy
-dress were in strange contract with the business which had brought us
-there.
-
-"Still at it, then?" said he to Holmes. "I thought you Londoners were
-never at fault. You don't seem to be so very quick, after all."
-
-"Ah, you must give us a little time," said Holmes good-humoredly.
-
-"You'll want it," said young Alec Cunningham. "Why, I don't see that we
-have any clue at all."
-
-"There's only one," answered the Inspector. "We thought that if we could
-only find--Good heavens, Mr. Holmes! What is the matter?"
-
-My poor friend's face had suddenly assumed the most dreadful expression.
-His eyes rolled upwards, his features writhed in agony, and with a
-suppressed groan he dropped on his face upon the ground. Horrified
-at the suddenness and severity of the attack, we carried him into the
-kitchen, where he lay back in a large chair, and breathed heavily for
-some minutes. Finally, with a shamefaced apology for his weakness, he
-rose once more.
-
-"Watson would tell you that I have only just recovered from a severe
-illness," he explained. "I am liable to these sudden nervous attacks."
-
-"Shall I send you home in my trap?" asked old Cunningham.
-
-"Well, since I am here, there is one point on which I should like to
-feel sure. We can very easily verify it."
-
-"What was it?"
-
-"Well, it seems to me that it is just possible that the arrival of
-this poor fellow William was not before, but after, the entrance of
-the burglary into the house. You appear to take it for granted that,
-although the door was forced, the robber never got in."
-
-"I fancy that is quite obvious," said Mr. Cunningham, gravely. "Why, my
-son Alec had not yet gone to bed, and he would certainly have heard any
-one moving about."
-
-"Where was he sitting?"
-
-"I was smoking in my dressing-room."
-
-"Which window is that?"
-
-"The last on the left next my father's."
-
-"Both of your lamps were lit, of course?"
-
-"Undoubtedly."
-
-"There are some very singular points here," said Holmes, smiling. "Is
-it not extraordinary that a burglary--and a burglar who had had some
-previous experience--should deliberately break into a house at a time
-when he could see from the lights that two of the family were still
-afoot?"
-
-"He must have been a cool hand."
-
-"Well, of course, if the case were not an odd one we should not have
-been driven to ask you for an explanation," said young Mr. Alec. "But as
-to your ideas that the man had robbed the house before William tackled
-him, I think it a most absurd notion. Wouldn't we have found the place
-disarranged, and missed the things which he had taken?"
-
-"It depends on what the things were," said Holmes. "You must remember
-that we are dealing with a burglar who is a very peculiar fellow, and
-who appears to work on lines of his own. Look, for example, at the
-queer lot of things which he took from Acton's--what was it?--a ball of
-string, a letter-weight, and I don't know what other odds and ends."
-
-"Well, we are quite in your hands, Mr. Holmes," said old Cunningham.
-"Anything which you or the Inspector may suggest will most certainly be
-done."
-
-"In the first place," said Holmes, "I should like you to offer a
-reward--coming from yourself, for the officials may take a little time
-before they would agree upon the sum, and these things cannot be done
-too promptly. I have jotted down the form here, if you would not mind
-signing it. Fifty pounds was quite enough, I thought."
-
-"I would willingly give five hundred," said the J.P., taking the slip
-of paper and the pencil which Holmes handed to him. "This is not quite
-correct, however," he added, glancing over the document.
-
-"I wrote it rather hurriedly."
-
-"You see you begin, 'Whereas, at about a quarter to one on Tuesday
-morning an attempt was made,' and so on. It was at a quarter to twelve,
-as a matter of fact."
-
-I was pained at the mistake, for I knew how keenly Holmes would feel any
-slip of the kind. It was his specialty to be accurate as to fact, but
-his recent illness had shaken him, and this one little incident was
-enough to show me that he was still far from being himself. He was
-obviously embarrassed for an instant, while the Inspector raised his
-eyebrows, and Alec Cunningham burst into a laugh. The old gentleman
-corrected the mistake, however, and handed the paper back to Holmes.
-
-"Get it printed as soon as possible," he said; "I think your idea is an
-excellent one."
-
-Holmes put the slip of paper carefully away into his pocket-book.
-
-"And now," said he, "it really would be a good thing that we should all
-go over the house together and make certain that this rather erratic
-burglar did not, after all, carry anything away with him."
-
-Before entering, Holmes made an examination of the door which had been
-forced. It was evident that a chisel or strong knife had been thrust
-in, and the lock forced back with it. We could see the marks in the wood
-where it had been pushed in.
-
-"You don't use bars, then?" he asked.
-
-"We have never found it necessary."
-
-"You don't keep a dog?"
-
-"Yes, but he is chained on the other side of the house."
-
-"When do the servants go to bed?"
-
-"About ten."
-
-"I understand that William was usually in bed also at that hour."
-
-"Yes."
-
-"It is singular that on this particular night he should have been up.
-Now, I should be very glad if you would have the kindness to show us
-over the house, Mr. Cunningham."
-
-A stone-flagged passage, with the kitchens branching away from it, led
-by a wooden staircase directly to the first floor of the house. It came
-out upon the landing opposite to a second more ornamental stair which
-came up from the front hall. Out of this landing opened the drawing-room
-and several bedrooms, including those of Mr. Cunningham and his son.
-Holmes walked slowly, taking keen note of the architecture of the house.
-I could tell from his expression that he was on a hot scent, and yet
-I could not in the least imagine in what direction his inferences were
-leading him.
-
-"My good sir," said Mr. Cunningham with some impatience, "this is surely
-very unnecessary. That is my room at the end of the stairs, and my
-son's is the one beyond it. I leave it to your judgment whether it was
-possible for the thief to have come up here without disturbing us."
-
-"You must try round and get on a fresh scent, I fancy," said the son
-with a rather malicious smile.
-
-"Still, I must ask you to humor me a little further. I should like, for
-example, to see how far the windows of the bedrooms command the front.
-This, I understand is your son's room"--he pushed open the door--"and
-that, I presume, is the dressing-room in which he sat smoking when the
-alarm was given. Where does the window of that look out to?" He stepped
-across the bedroom, pushed open the door, and glanced round the other
-chamber.
-
-"I hope that you are satisfied now?" said Mr. Cunningham, tartly.
-
-"Thank you, I think I have seen all that I wished."
-
-"Then if it is really necessary we can go into my room."
-
-"If it is not too much trouble."
-
-The J. P. shrugged his shoulders, and led the way into his own chamber,
-which was a plainly furnished and commonplace room. As we moved across
-it in the direction of the window, Holmes fell back until he and I were
-the last of the group. Near the foot of the bed stood a dish of oranges
-and a carafe of water. As we passed it Holmes, to my unutterable
-astonishment, leaned over in front of me and deliberately knocked the
-whole thing over. The glass smashed into a thousand pieces and the fruit
-rolled about into every corner of the room.
-
-"You've done it now, Watson," said he, coolly. "A pretty mess you've
-made of the carpet."
-
-I stooped in some confusion and began to pick up the fruit,
-understanding for some reason my companion desired me to take the blame
-upon myself. The others did the same, and set the table on its legs
-again.
-
-"Hullo!" cried the Inspector, "where's he got to?"
-
-Holmes had disappeared.
-
-"Wait here an instant," said young Alec Cunningham. "The fellow is off
-his head, in my opinion. Come with me, father, and see where he has got
-to!"
-
-They rushed out of the room, leaving the Inspector, the Colonel, and me
-staring at each other.
-
-"'Pon my word, I am inclined to agree with Master Alec," said the
-official. "It may be the effect of this illness, but it seems to me
-that--"
-
-His words were cut short by a sudden scream of "Help! Help! Murder!"
-With a thrill I recognized the voice of that of my friend. I rushed
-madly from the room on to the landing. The cries, which had sunk down
-into a hoarse, inarticulate shouting, came from the room which we had
-first visited. I dashed in, and on into the dressing-room beyond. The
-two Cunninghams were bending over the prostrate figure of Sherlock
-Holmes, the younger clutching his throat with both hands, while the
-elder seemed to be twisting one of his wrists. In an instant the three
-of us had torn them away from him, and Holmes staggered to his feet,
-very pale and evidently greatly exhausted.
-
-"Arrest these men, Inspector," he gasped.
-
-"On what charge?"
-
-"That of murdering their coachman, William Kirwan."
-
-The Inspector stared about him in bewilderment. "Oh, come now, Mr.
-Holmes," said he at last, "I'm sure you don't really mean to--"
-
-"Tut, man, look at their faces!" cried Holmes, curtly.
-
-Never certainly have I seen a plainer confession of guilt upon human
-countenances. The older man seemed numbed and dazed with a heavy, sullen
-expression upon his strongly-marked face. The son, on the other hand,
-had dropped all that jaunty, dashing style which had characterized him,
-and the ferocity of a dangerous wild beast gleamed in his dark eyes
-and distorted his handsome features. The Inspector said nothing, but,
-stepping to the door, he blew his whistle. Two of his constables came at
-the call.
-
-"I have no alternative, Mr. Cunningham," said he. "I trust that this may
-all prove to be an absurd mistake, but you can see that--Ah, would you?
-Drop it!" He struck out with his hand, and a revolver which the younger
-man was in the act of cocking clattered down upon the floor.
-
-"Keep that," said Holmes, quietly putting his foot upon it; "you will
-find it useful at the trial. But this is what we really wanted." He held
-up a little crumpled piece of paper.
-
-"The remainder of the sheet!" cried the Inspector.
-
-"Precisely."
-
-"And where was it?"
-
-"Where I was sure it must be. I'll make the whole matter clear to you
-presently. I think, Colonel, that you and Watson might return now, and
-I will be with you again in an hour at the furthest. The Inspector and I
-must have a word with the prisoners, but you will certainly see me back
-at luncheon time."
-
-
-Sherlock Holmes was as good as his word, for about one o'clock he
-rejoined us in the Colonel's smoking-room. He was accompanied by a
-little elderly gentleman, who was introduced to me as the Mr. Acton
-whose house had been the scene of the original burglary.
-
-"I wished Mr. Acton to be present while I demonstrated this small matter
-to you," said Holmes, "for it is natural that he should take a keen
-interest in the details. I am afraid, my dear Colonel, that you must
-regret the hour that you took in such a stormy petrel as I am."
-
-"On the contrary," answered the Colonel, warmly, "I consider it the
-greatest privilege to have been permitted to study your methods of
-working. I confess that they quite surpass my expectations, and that I
-am utterly unable to account for your result. I have not yet seen the
-vestige of a clue."
-
-"I am afraid that my explanation may disillusion you but it has always
-been my habit to hide none of my methods, either from my friend Watson
-or from any one who might take an intelligent interest in them. But,
-first, as I am rather shaken by the knocking about which I had in
-the dressing-room, I think that I shall help myself to a dash of your
-brandy, Colonel. My strength had been rather tried of late."
-
-"I trust that you had no more of those nervous attacks."
-
-Sherlock Holmes laughed heartily. "We will come to that in its turn,"
-said he. "I will lay an account of the case before you in its due order,
-showing you the various points which guided me in my decision. Pray
-interrupt me if there is any inference which is not perfectly clear to
-you.
-
-"It is of the highest importance in the art of detection to be able
-to recognize, out of a number of facts, which are incidental and which
-vital. Otherwise your energy and attention must be dissipated instead of
-being concentrated. Now, in this case there was not the slightest doubt
-in my mind from the first that the key of the whole matter must be
-looked for in the scrap of paper in the dead man's hand.
-
-"Before going into this, I would draw your attention to the fact that,
-if Alec Cunningham's narrative was correct, and if the assailant, after
-shooting William Kirwan, had instantly fled, then it obviously could not
-be he who tore the paper from the dead man's hand. But if it was not he,
-it must have been Alec Cunningham himself, for by the time that the old
-man had descended several servants were upon the scene. The point is a
-simple one, but the Inspector had overlooked it because he had started
-with the supposition that these county magnates had had nothing to do
-with the matter. Now, I make a point of never having any prejudices,
-and of following docilely wherever fact may lead me, and so, in the
-very first stage of the investigation, I found myself looking a little
-askance at the part which had been played by Mr. Alec Cunningham.
-
-"And now I made a very careful examination of the corner of paper which
-the Inspector had submitted to us. It was at once clear to me that it
-formed part of a very remarkable document. Here it is. Do you not now
-observe something very suggestive about it?"
-
-"It has a very irregular look," said the Colonel.
-
-"My dear sir," cried Holmes, "there cannot be the least doubt in the
-world that it has been written by two persons doing alternate words.
-When I draw your attention to the strong t's of 'at' and 'to', and ask
-you to compare them with the weak ones of 'quarter' and 'twelve,' you
-will instantly recognize the fact. A very brief analysis of these
-four words would enable you to say with the utmost confidence that the
-'learn' and the 'maybe' are written in the stronger hand, and the 'what'
-in the weaker."
-
-"By Jove, it's as clear as day!" cried the Colonel. "Why on earth should
-two men write a letter in such a fashion?"
-
-"Obviously the business was a bad one, and one of the men who distrusted
-the other was determined that, whatever was done, each should have an
-equal hand in it. Now, of the two men, it is clear that the one who
-wrote the 'at' and 'to' was the ringleader."
-
-"How do you get at that?"
-
-"We might deduce it from the mere character of the one hand as compared
-with the other. But we have more assured reasons than that for supposing
-it. If you examine this scrap with attention you will come to the
-conclusion that the man with the stronger hand wrote all his words
-first, leaving blanks for the other to fill up. These blanks were not
-always sufficient, and you can see that the second man had a squeeze
-to fit his 'quarter' in between the 'at' and the 'to,' showing that the
-latter were already written. The man who wrote all his words first is
-undoubtedly the man who planned the affair."
-
-"Excellent!" cried Mr. Acton.
-
-"But very superficial," said Holmes. "We come now, however, to a point
-which is of importance. You may not be aware that the deduction of a
-man's age from his writing is one which has brought to considerable
-accuracy by experts. In normal cases one can place a man in his true
-decade with tolerable confidence. I say normal cases, because ill-health
-and physical weakness reproduce the signs of old age, even when the
-invalid is a youth. In this case, looking at the bold, strong hand of
-the one, and the rather broken-backed appearance of the other, which
-still retains its legibility although the t's have begun to lose their
-crossing, we can say that the one was a young man and the other was
-advanced in years without being positively decrepit."
-
-"Excellent!" cried Mr. Acton again.
-
-"There is a further point, however, which is subtler and of greater
-interest. There is something in common between these hands. They belong
-to men who are blood-relatives. It may be most obvious to you in the
-Greek e's, but to me there are many small points which indicate the same
-thing. I have no doubt at all that a family mannerism can be traced in
-these two specimens of writing. I am only, of course, giving you
-the leading results now of my examination of the paper. There were
-twenty-three other deductions which would be of more interest to experts
-than to you. They all tend to deepen the impression upon my mind that
-the Cunninghams, father and son, had written this letter.
-
-"Having got so far, my next step was, of course, to examine into the
-details of the crime, and to see how far they would help us. I went up
-to the house with the Inspector, and saw all that was to be seen. The
-wound upon the dead man was, as I was able to determine with absolute
-confidence, fired from a revolver at the distance of something over
-four yards. There was no powder-blackening on the clothes. Evidently,
-therefore, Alec Cunningham had lied when he said that the two men were
-struggling when the shot was fired. Again, both father and son agreed
-as to the place where the man escaped into the road. At that point,
-however, as it happens, there is a broadish ditch, moist at the bottom.
-As there were no indications of bootmarks about this ditch, I was
-absolutely sure not only that the Cunninghams had again lied, but that
-there had never been any unknown man upon the scene at all.
-
-"And now I have to consider the motive of this singular crime. To get
-at this, I endeavored first of all to solve the reason of the original
-burglary at Mr. Acton's. I understood, from something which the Colonel
-told us, that a lawsuit had been going on between you, Mr. Acton, and
-the Cunninghams. Of course, it instantly occurred to me that they had
-broken into your library with the intention of getting at some document
-which might be of importance in the case."
-
-"Precisely so," said Mr. Acton. "There can be no possible doubt as to
-their intentions. I have the clearest claim upon half of their present
-estate, and if they could have found a single paper--which, fortunately,
-was in the strong-box of my solicitors--they would undoubtedly have
-crippled our case."
-
-"There you are," said Holmes, smiling. "It was a dangerous, reckless
-attempt, in which I seem to trace the influence of young Alec. Having
-found nothing they tried to divert suspicion by making it appear to be
-an ordinary burglary, to which end they carried off whatever they could
-lay their hands upon. That is all clear enough, but there was much that
-was still obscure. What I wanted above all was to get the missing part
-of that note. I was certain that Alec had torn it out of the dead man's
-hand, and almost certain that he must have thrust it into the pocket of
-his dressing-gown. Where else could he have put it? The only question
-was whether it was still there. It was worth an effort to find out, and
-for that object we all went up to the house.
-
-"The Cunninghams joined us, as you doubtless remember, outside the
-kitchen door. It was, of course, of the very first importance that they
-should not be reminded of the existence of this paper, otherwise they
-would naturally destroy it without delay. The Inspector was about to
-tell them the importance which we attached to it when, by the luckiest
-chance in the world, I tumbled down in a sort of fit and so changed the
-conversation.
-
-"Good heavens!" cried the Colonel, laughing, "do you mean to say all our
-sympathy was wasted and your fit an imposture?"
-
-"Speaking professionally, it was admirably done," cried I, looking in
-amazement at this man who was forever confounding me with some new phase
-of his astuteness.
-
-"It is an art which is often useful," said he. "When I recovered I
-managed, by a device which had perhaps some little merit of ingenuity,
-to get old Cunningham to write the word 'twelve,' so that I might
-compare it with the 'twelve' upon the paper."
-
-"Oh, what an ass I have been!" I exclaimed.
-
-"I could see that you were commiserating me over my weakness," said
-Holmes, laughing. "I was sorry to cause you the sympathetic pain which
-I know that you felt. We then went upstairs together, and having entered
-the room and seen the dressing-gown hanging up behind the door, I
-contrived, by upsetting a table, to engage their attention for the
-moment, and slipped back to examine the pockets. I had hardly got the
-paper, however--which was, as I had expected, in one of them--when the
-two Cunninghams were on me, and would, I verily believe, have murdered
-me then and there but for your prompt and friendly aid. As it is, I feel
-that young man's grip on my throat now, and the father has twisted my
-wrist round in the effort to get the paper out of my hand. They saw that
-I must know all about it, you see, and the sudden change from absolute
-security to complete despair made them perfectly desperate.
-
-"I had a little talk with old Cunningham afterwards as to the motive of
-the crime. He was tractable enough, though his son was a perfect demon,
-ready to blow out his own or anybody else's brains if he could have got
-to his revolver. When Cunningham saw that the case against him was so
-strong he lost all heart and made a clean breast of everything. It seems
-that William had secretly followed his two masters on the night when
-they made their raid upon Mr. Acton's, and having thus got them into
-his power, proceeded, under threats of exposure, to levy blackmail upon
-them. Mr. Alec, however, was a dangerous man to play games of that
-sort with. It was a stroke of positive genius on his part to see in the
-burglary scare which was convulsing the country side an opportunity of
-plausibly getting rid of the man whom he feared. William was decoyed up
-and shot, and had they only got the whole of the note and paid a little
-more attention to detail in the accessories, it is very possible that
-suspicion might never have been aroused."
-
-"And the note?" I asked.
-
-Sherlock Holmes placed the subjoined paper before us.
-
- If you will only come around to the east gate you it will
- very much surprise you and be of the greatest service to you
- and also to Annie Morrison. But say nothing to anyone upon
- the matter.
-
-"It is very much the sort of thing that I expected," said he. "Of
-course, we do not yet know what the relations may have been between Alec
-Cunningham, William Kirwan, and Annie Morrison. The results shows that
-the trap was skillfully baited. I am sure that you cannot fail to be
-delighted with the traces of heredity shown in the p's and in the tails
-of the g's. The absence of the i-dots in the old man's writing is also
-most characteristic. Watson, I think our quiet rest in the country has
-been a distinct success, and I shall certainly return much invigorated
-to Baker Street to-morrow."
-
-
-
-
-Adventure VII. The Crooked Man
-
-
-One summer night, a few months after my marriage, I was seated by my own
-hearth smoking a last pipe and nodding over a novel, for my day's work
-had been an exhausting one. My wife had already gone upstairs, and the
-sound of the locking of the hall door some time before told me that the
-servants had also retired. I had risen from my seat and was knocking out
-the ashes of my pipe when I suddenly heard the clang of the bell.
-
-I looked at the clock. It was a quarter to twelve. This could not be
-a visitor at so late an hour. A patient, evidently, and possibly an
-all-night sitting. With a wry face I went out into the hall and opened
-the door. To my astonishment it was Sherlock Holmes who stood upon my
-step.
-
-"Ah, Watson," said he, "I hoped that I might not be too late to catch
-you."
-
-"My dear fellow, pray come in."
-
-"You look surprised, and no wonder! Relieved, too, I fancy! Hum! You
-still smoke the Arcadia mixture of your bachelor days then! There's no
-mistaking that fluffy ash upon your coat. It's easy to tell that you
-have been accustomed to wear a uniform, Watson. You'll never pass as
-a pure-bred civilian as long as you keep that habit of carrying your
-handkerchief in your sleeve. Could you put me up to-night?"
-
-"With pleasure."
-
-"You told me that you had bachelor quarters for one, and I see that you
-have no gentleman visitor at present. Your hat-stand proclaims as much."
-
-"I shall be delighted if you will stay."
-
-"Thank you. I'll fill the vacant peg then. Sorry to see that you've had
-the British workman in the house. He's a token of evil. Not the drains,
-I hope?"
-
-"No, the gas."
-
-"Ah! He has left two nail-marks from his boot upon your linoleum
-just where the light strikes it. No, thank you, I had some supper at
-Waterloo, but I'll smoke a pipe with you with pleasure."
-
-I handed him my pouch, and he seated himself opposite to me and smoked
-for some time in silence. I was well aware that nothing but business
-of importance would have brought him to me at such an hour, so I waited
-patiently until he should come round to it.
-
-"I see that you are professionally rather busy just now," said he,
-glancing very keenly across at me.
-
-"Yes, I've had a busy day," I answered. "It may seem very foolish in
-your eyes," I added, "but really I don't know how you deduced it."
-
-Holmes chuckled to himself.
-
-"I have the advantage of knowing your habits, my dear Watson," said he.
-"When your round is a short one you walk, and when it is a long one you
-use a hansom. As I perceive that your boots, although used, are by
-no means dirty, I cannot doubt that you are at present busy enough to
-justify the hansom."
-
-"Excellent!" I cried.
-
-"Elementary," said he. "It is one of those instances where the reasoner
-can produce an effect which seems remarkable to his neighbor, because
-the latter has missed the one little point which is the basis of the
-deduction. The same may be said, my dear fellow, for the effect of
-some of these little sketches of yours, which is entirely meretricious,
-depending as it does upon your retaining in your own hands some factors
-in the problem which are never imparted to the reader. Now, at present
-I am in the position of these same readers, for I hold in this hand
-several threads of one of the strangest cases which ever perplexed a
-man's brain, and yet I lack the one or two which are needful to complete
-my theory. But I'll have them, Watson, I'll have them!" His eyes kindled
-and a slight flush sprang into his thin cheeks. For an instant only.
-When I glanced again his face had resumed that red-Indian composure
-which had made so many regard him as a machine rather than a man.
-
-"The problem presents features of interest," said he. "I may even say
-exceptional features of interest. I have already looked into the matter,
-and have come, as I think, within sight of my solution. If you could
-accompany me in that last step you might be of considerable service to
-me."
-
-"I should be delighted."
-
-"Could you go as far as Aldershot to-morrow?"
-
-"I have no doubt Jackson would take my practice."
-
-"Very good. I want to start by the 11.10 from Waterloo."
-
-"That would give me time."
-
-"Then, if you are not too sleepy, I will give you a sketch of what has
-happened, and of what remains to be done."
-
-"I was sleepy before you came. I am quite wakeful now."
-
-"I will compress the story as far as may be done without omitting
-anything vital to the case. It is conceivable that you may even have
-read some account of the matter. It is the supposed murder of Colonel
-Barclay, of the Royal Munsters, at Aldershot, which I am investigating."
-
-"I have heard nothing of it."
-
-"It has not excited much attention yet, except locally. The facts are
-only two days old. Briefly they are these:
-
-"The Royal Munsters is, as you know, one of the most famous Irish
-regiments in the British army. It did wonders both in the Crimea and the
-Mutiny, and has since that time distinguished itself upon every possible
-occasion. It was commanded up to Monday night by James Barclay,
-a gallant veteran, who started as a full private, was raised to
-commissioned rank for his bravery at the time of the Mutiny, and so
-lived to command the regiment in which he had once carried a musket.
-
-"Colonel Barclay had married at the time when he was a sergeant, and
-his wife, whose maiden name was Miss Nancy Devoy, was the daughter of a
-former color-sergeant in the same corps. There was, therefore, as can
-be imagined, some little social friction when the young couple (for
-they were still young) found themselves in their new surroundings. They
-appear, however, to have quickly adapted themselves, and Mrs. Barclay
-has always, I understand, been as popular with the ladies of the
-regiment as her husband was with his brother officers. I may add that
-she was a woman of great beauty, and that even now, when she has been
-married for upwards of thirty years, she is still of a striking and
-queenly appearance.
-
-"Colonel Barclay's family life appears to have been a uniformly happy
-one. Major Murphy, to whom I owe most of my facts, assures me that he
-has never heard of any misunderstanding between the pair. On the whole,
-he thinks that Barclay's devotion to his wife was greater than his
-wife's to Barclay. He was acutely uneasy if he were absent from her for
-a day. She, on the other hand, though devoted and faithful, was less
-obtrusively affectionate. But they were regarded in the regiment as
-the very model of a middle-aged couple. There was absolutely nothing in
-their mutual relations to prepare people for the tragedy which was to
-follow.
-
-"Colonel Barclay himself seems to have had some singular traits in his
-character. He was a dashing, jovial old soldier in his usual mood,
-but there were occasions on which he seemed to show himself capable
-of considerable violence and vindictiveness. This side of his nature,
-however, appears never to have been turned towards his wife. Another
-fact, which had struck Major Murphy and three out of five of the other
-officers with whom I conversed, was the singular sort of depression
-which came upon him at times. As the major expressed it, the smile had
-often been struck from his mouth, as if by some invisible hand, when he
-has been joining the gayeties and chaff of the mess-table. For days on
-end, when the mood was on him, he has been sunk in the deepest gloom.
-This and a certain tinge of superstition were the only unusual traits
-in his character which his brother officers had observed. The latter
-peculiarity took the form of a dislike to being left alone, especially
-after dark. This puerile feature in a nature which was conspicuously
-manly had often given rise to comment and conjecture.
-
-"The first battalion of the Royal Munsters (which is the old 117th) has
-been stationed at Aldershot for some years. The married officers live
-out of barracks, and the Colonel has during all this time occupied a
-villa called Lachine, about half a mile from the north camp. The house
-stands in its own grounds, but the west side of it is not more than
-thirty yards from the high-road. A coachman and two maids form the
-staff of servants. These with their master and mistress were the sole
-occupants of Lachine, for the Barclays had no children, nor was it usual
-for them to have resident visitors.
-
-"Now for the events at Lachine between nine and ten on the evening of
-last Monday."
-
-"Mrs. Barclay was, it appears, a member of the Roman Catholic Church,
-and had interested herself very much in the establishment of the Guild
-of St. George, which was formed in connection with the Watt Street
-Chapel for the purpose of supplying the poor with cast-off clothing.
-A meeting of the Guild had been held that evening at eight, and Mrs.
-Barclay had hurried over her dinner in order to be present at it. When
-leaving the house she was heard by the coachman to make some commonplace
-remark to her husband, and to assure him that she would be back before
-very long. She then called for Miss Morrison, a young lady who lives
-in the next villa, and the two went off together to their meeting. It
-lasted forty minutes, and at a quarter-past nine Mrs. Barclay returned
-home, having left Miss Morrison at her door as she passed.
-
-"There is a room which is used as a morning-room at Lachine. This faces
-the road and opens by a large glass folding-door on to the lawn. The
-lawn is thirty yards across, and is only divided from the highway by
-a low wall with an iron rail above it. It was into this room that Mrs.
-Barclay went upon her return. The blinds were not down, for the room was
-seldom used in the evening, but Mrs. Barclay herself lit the lamp and
-then rang the bell, asking Jane Stewart, the house-maid, to bring her
-a cup of tea, which was quite contrary to her usual habits. The Colonel
-had been sitting in the dining-room, but hearing that his wife had
-returned he joined her in the morning-room. The coachman saw him cross
-the hall and enter it. He was never seen again alive.
-
-"The tea which had been ordered was brought up at the end of ten
-minutes; but the maid, as she approached the door, was surprised to
-hear the voices of her master and mistress in furious altercation. She
-knocked without receiving any answer, and even turned the handle, but
-only to find that the door was locked upon the inside. Naturally enough
-she ran down to tell the cook, and the two women with the coachman came
-up into the hall and listened to the dispute which was still raging.
-They all agreed that only two voices were to be heard, those of Barclay
-and of his wife. Barclay's remarks were subdued and abrupt, so that none
-of them were audible to the listeners. The lady's, on the other hand,
-were most bitter, and when she raised her voice could be plainly heard.
-'You coward!' she repeated over and over again. 'What can be done now?
-What can be done now? Give me back my life. I will never so much as
-breathe the same air with you again! You coward! You coward!' Those were
-scraps of her conversation, ending in a sudden dreadful cry in the man's
-voice, with a crash, and a piercing scream from the woman. Convinced
-that some tragedy had occurred, the coachman rushed to the door and
-strove to force it, while scream after scream issued from within. He was
-unable, however, to make his way in, and the maids were too distracted
-with fear to be of any assistance to him. A sudden thought struck him,
-however, and he ran through the hall door and round to the lawn upon
-which the long French windows open. One side of the window was open,
-which I understand was quite usual in the summer-time, and he passed
-without difficulty into the room. His mistress had ceased to scream and
-was stretched insensible upon a couch, while with his feet tilted over
-the side of an arm-chair, and his head upon the ground near the corner
-of the fender, was lying the unfortunate soldier stone dead in a pool of
-his own blood.
-
-"Naturally, the coachman's first thought, on finding that he could do
-nothing for his master, was to open the door. But here an unexpected and
-singular difficulty presented itself. The key was not in the inner side
-of the door, nor could he find it anywhere in the room. He went out
-again, therefore, through the window, and having obtained the help of
-a policeman and of a medical man, he returned. The lady, against whom
-naturally the strongest suspicion rested, was removed to her room, still
-in a state of insensibility. The Colonel's body was then placed upon the
-sofa, and a careful examination made of the scene of the tragedy.
-
-"The injury from which the unfortunate veteran was suffering was found
-to be a jagged cut some two inches long at the back part of his head,
-which had evidently been caused by a violent blow from a blunt weapon.
-Nor was it difficult to guess what that weapon may have been. Upon the
-floor, close to the body, was lying a singular club of hard carved wood
-with a bone handle. The Colonel possessed a varied collection of weapons
-brought from the different countries in which he had fought, and it
-is conjectured by the police that his club was among his trophies. The
-servants deny having seen it before, but among the numerous curiosities
-in the house it is possible that it may have been overlooked. Nothing
-else of importance was discovered in the room by the police, save the
-inexplicable fact that neither upon Mrs. Barclay's person nor upon that
-of the victim nor in any part of the room was the missing key to
-be found. The door had eventually to be opened by a locksmith from
-Aldershot.
-
-"That was the state of things, Watson, when upon the Tuesday morning I,
-at the request of Major Murphy, went down to Aldershot to supplement
-the efforts of the police. I think that you will acknowledge that the
-problem was already one of interest, but my observations soon made me
-realize that it was in truth much more extraordinary than would at first
-sight appear.
-
-"Before examining the room I cross-questioned the servants, but only
-succeeded in eliciting the facts which I have already stated. One other
-detail of interest was remembered by Jane Stewart, the housemaid. You
-will remember that on hearing the sound of the quarrel she descended and
-returned with the other servants. On that first occasion, when she was
-alone, she says that the voices of her master and mistress were sunk
-so low that she could hear hardly anything, and judged by their tones
-rather than their words that they had fallen out. On my pressing her,
-however, she remembered that she heard the word David uttered twice by
-the lady. The point is of the utmost importance as guiding us towards
-the reason of the sudden quarrel. The Colonel's name, you remember, was
-James.
-
-"There was one thing in the case which had made the deepest impression
-both upon the servants and the police. This was the contortion of the
-Colonel's face. It had set, according to their account, into the most
-dreadful expression of fear and horror which a human countenance is
-capable of assuming. More than one person fainted at the mere sight
-of him, so terrible was the effect. It was quite certain that he had
-foreseen his fate, and that it had caused him the utmost horror. This,
-of course, fitted in well enough with the police theory, if the Colonel
-could have seen his wife making a murderous attack upon him. Nor was
-the fact of the wound being on the back of his head a fatal objection to
-this, as he might have turned to avoid the blow. No information could
-be got from the lady herself, who was temporarily insane from an acute
-attack of brain-fever.
-
-"From the police I learned that Miss Morrison, who you remember went out
-that evening with Mrs. Barclay, denied having any knowledge of what it
-was which had caused the ill-humor in which her companion had returned.
-
-"Having gathered these facts, Watson, I smoked several pipes over them,
-trying to separate those which were crucial from others which were
-merely incidental. There could be no question that the most distinctive
-and suggestive point in the case was the singular disappearance of the
-door-key. A most careful search had failed to discover it in the room.
-Therefore it must have been taken from it. But neither the Colonel
-nor the Colonel's wife could have taken it. That was perfectly clear.
-Therefore a third person must have entered the room. And that third
-person could only have come in through the window. It seemed to me that
-a careful examination of the room and the lawn might possibly reveal
-some traces of this mysterious individual. You know my methods, Watson.
-There was not one of them which I did not apply to the inquiry. And it
-ended by my discovering traces, but very different ones from those which
-I had expected. There had been a man in the room, and he had crossed
-the lawn coming from the road. I was able to obtain five very clear
-impressions of his foot-marks: one in the roadway itself, at the point
-where he had climbed the low wall, two on the lawn, and two very faint
-ones upon the stained boards near the window where he had entered.
-He had apparently rushed across the lawn, for his toe-marks were much
-deeper than his heels. But it was not the man who surprised me. It was
-his companion."
-
-"His companion!"
-
-Holmes pulled a large sheet of tissue-paper out of his pocket and
-carefully unfolded it upon his knee.
-
-"What do you make of that?" he asked.
-
-The paper was covered with he tracings of the foot-marks of some small
-animal. It had five well-marked foot-pads, an indication of long nails,
-and the whole print might be nearly as large as a dessert-spoon.
-
-"It's a dog," said I.
-
-"Did you ever hear of a dog running up a curtain? I found distinct
-traces that this creature had done so."
-
-"A monkey, then?"
-
-"But it is not the print of a monkey."
-
-"What can it be, then?"
-
-"Neither dog nor cat nor monkey nor any creature that we are familiar
-with. I have tried to reconstruct it from the measurements. Here are
-four prints where the beast has been standing motionless. You see that
-it is no less than fifteen inches from fore-foot to hind. Add to that
-the length of neck and head, and you get a creature not much less than
-two feet long--probably more if there is any tail. But now observe this
-other measurement. The animal has been moving, and we have the length
-of its stride. In each case it is only about three inches. You have an
-indication, you see, of a long body with very short legs attached to it.
-It has not been considerate enough to leave any of its hair behind it.
-But its general shape must be what I have indicated, and it can run up a
-curtain, and it is carnivorous."
-
-"How do you deduce that?"
-
-"Because it ran up the curtain. A canary's cage was hanging in the
-window, and its aim seems to have been to get at the bird."
-
-"Then what was the beast?"
-
-"Ah, if I could give it a name it might go a long way towards solving
-the case. On the whole, it was probably some creature of the weasel and
-stoat tribe--and yet it is larger than any of these that I have seen."
-
-"But what had it to do with the crime?"
-
-"That, also, is still obscure. But we have learned a good deal, you
-perceive. We know that a man stood in the road looking at the quarrel
-between the Barclays--the blinds were up and the room lighted. We know,
-also, that he ran across the lawn, entered the room, accompanied by a
-strange animal, and that he either struck the Colonel or, as is equally
-possible, that the Colonel fell down from sheer fright at the sight of
-him, and cut his head on the corner of the fender. Finally, we have the
-curious fact that the intruder carried away the key with him when he
-left."
-
-"Your discoveries seem to have left the business more obscure that it
-was before," said I.
-
-"Quite so. They undoubtedly showed that the affair was much deeper than
-was at first conjectured. I thought the matter over, and I came to
-the conclusion that I must approach the case from another aspect. But
-really, Watson, I am keeping you up, and I might just as well tell you
-all this on our way to Aldershot to-morrow."
-
-"Thank you, you have gone rather too far to stop."
-
-"It is quite certain that when Mrs. Barclay left the house at half-past
-seven she was on good terms with her husband. She was never, as I think
-I have said, ostentatiously affectionate, but she was heard by the
-coachman chatting with the Colonel in a friendly fashion. Now, it was
-equally certain that, immediately on her return, she had gone to the
-room in which she was least likely to see her husband, had flown to tea
-as an agitated woman will, and finally, on his coming in to her, had
-broken into violent recriminations. Therefore something had occurred
-between seven-thirty and nine o'clock which had completely altered her
-feelings towards him. But Miss Morrison had been with her during the
-whole of that hour and a half. It was absolutely certain, therefore, in
-spite of her denial, that she must know something of the matter.
-
-"My first conjecture was, that possibly there had been some passages
-between this young lady and the old soldier, which the former had now
-confessed to the wife. That would account for the angry return, and
-also for the girl's denial that anything had occurred. Nor would it be
-entirely incompatible with most of the words overhead. But there was the
-reference to David, and there was the known affection of the Colonel for
-his wife, to weigh against it, to say nothing of the tragic intrusion
-of this other man, which might, of course, be entirely disconnected with
-what had gone before. It was not easy to pick one's steps, but, on the
-whole, I was inclined to dismiss the idea that there had been anything
-between the Colonel and Miss Morrison, but more than ever convinced that
-the young lady held the clue as to what it was which had turned Mrs.
-Barclay to hatred of her husband. I took the obvious course, therefore,
-of calling upon Miss M., of explaining to her that I was perfectly
-certain that she held the facts in her possession, and of assuring her
-that her friend, Mrs. Barclay, might find herself in the dock upon a
-capital charge unless the matter were cleared up.
-
-"Miss Morrison is a little ethereal slip of a girl, with timid eyes
-and blond hair, but I found her by no means wanting in shrewdness and
-common-sense. She sat thinking for some time after I had spoken, and
-then, turning to me with a brisk air of resolution, she broke into a
-remarkable statement which I will condense for your benefit.
-
-"'I promised my friend that I would say nothing of the matter, and a
-promise is a promise,' said she; 'but if I can really help her when
-so serious a charge is laid against her, and when her own mouth, poor
-darling, is closed by illness, then I think I am absolved from my
-promise. I will tell you exactly what happened upon Monday evening.
-
-"'We were returning from the Watt Street Mission about a quarter to nine
-o'clock. On our way we had to pass through Hudson Street, which is
-a very quiet thoroughfare. There is only one lamp in it, upon the
-left-hand side, and as we approached this lamp I saw a man coming
-towards us with his back very bent, and something like a box slung over
-one of his shoulders. He appeared to be deformed, for he carried his
-head low and walked with his knees bent. We were passing him when he
-raised his face to look at us in the circle of light thrown by the lamp,
-and as he did so he stopped and screamed out in a dreadful voice, "My
-God, it's Nancy!" Mrs. Barclay turned as white as death, and would have
-fallen down had the dreadful-looking creature not caught hold of her. I
-was going to call for the police, but she, to my surprise, spoke quite
-civilly to the fellow.
-
-"'"I thought you had been dead this thirty years, Henry," said she, in a
-shaking voice.
-
-"'"So I have," said he, and it was awful to hear the tones that he said
-it in. He had a very dark, fearsome face, and a gleam in his eyes that
-comes back to me in my dreams. His hair and whiskers were shot with
-gray, and his face was all crinkled and puckered like a withered apple.
-
-"'"Just walk on a little way, dear," said Mrs. Barclay; "I want to have
-a word with this man. There is nothing to be afraid of." She tried to
-speak boldly, but she was still deadly pale and could hardly get her
-words out for the trembling of her lips.
-
-"'I did as she asked me, and they talked together for a few minutes.
-Then she came down the street with her eyes blazing, and I saw the
-crippled wretch standing by the lamp-post and shaking his clenched fists
-in the air as if he were mad with rage. She never said a word until we
-were at the door here, when she took me by the hand and begged me to
-tell no one what had happened.
-
-"'"It's an old acquaintance of mine who has come down in the world,"
-said she. When I promised her I would say nothing she kissed me, and I
-have never seen her since. I have told you now the whole truth, and if
-I withheld it from the police it is because I did not realize then the
-danger in which my dear friend stood. I know that it can only be to her
-advantage that everything should be known.'
-
-"There was her statement, Watson, and to me, as you can imagine, it was
-like a light on a dark night. Everything which had been disconnected
-before began at once to assume its true place, and I had a shadowy
-presentiment of the whole sequence of events. My next step obviously was
-to find the man who had produced such a remarkable impression upon Mrs.
-Barclay. If he were still in Aldershot it should not be a very difficult
-matter. There are not such a very great number of civilians, and a
-deformed man was sure to have attracted attention. I spent a day in the
-search, and by evening--this very evening, Watson--I had run him down.
-The man's name is Henry Wood, and he lives in lodgings in this same
-street in which the ladies met him. He has only been five days in the
-place. In the character of a registration-agent I had a most interesting
-gossip with his landlady. The man is by trade a conjurer and performer,
-going round the canteens after nightfall, and giving a little
-entertainment at each. He carries some creature about with him in that
-box; about which the landlady seemed to be in considerable trepidation,
-for she had never seen an animal like it. He uses it in some of his
-tricks according to her account. So much the woman was able to tell me,
-and also that it was a wonder the man lived, seeing how twisted he was,
-and that he spoke in a strange tongue sometimes, and that for the last
-two nights she had heard him groaning and weeping in his bedroom. He
-was all right, as far as money went, but in his deposit he had given her
-what looked like a bad florin. She showed it to me, Watson, and it was
-an Indian rupee.
-
-"So now, my dear fellow, you see exactly how we stand and why it is I
-want you. It is perfectly plain that after the ladies parted from this
-man he followed them at a distance, that he saw the quarrel between
-husband and wife through the window, that he rushed in, and that
-the creature which he carried in his box got loose. That is all very
-certain. But he is the only person in this world who can tell us exactly
-what happened in that room."
-
-"And you intend to ask him?"
-
-"Most certainly--but in the presence of a witness."
-
-"And I am the witness?"
-
-"If you will be so good. If he can clear the matter up, well and good.
-If he refuses, we have no alternative but to apply for a warrant."
-
-"But how do you know he'll be there when we return?"
-
-"You may be sure that I took some precautions. I have one of my Baker
-Street boys mounting guard over him who would stick to him like a burr,
-go where he might. We shall find him in Hudson Street to-morrow, Watson,
-and meanwhile I should be the criminal myself if I kept you out of bed
-any longer."
-
-It was midday when we found ourselves at the scene of the tragedy, and,
-under my companion's guidance, we made our way at once to Hudson Street.
-In spite of his capacity for concealing his emotions, I could easily see
-that Holmes was in a state of suppressed excitement, while I was myself
-tingling with that half-sporting, half-intellectual pleasure which
-I invariably experienced when I associated myself with him in his
-investigations.
-
-"This is the street," said he, as we turned into a short thoroughfare
-lined with plain two-storied brick houses. "Ah, here is Simpson to
-report."
-
-"He's in all right, Mr. Holmes," cried a small street Arab, running up
-to us.
-
-"Good, Simpson!" said Holmes, patting him on the head. "Come along,
-Watson. This is the house." He sent in his card with a message that he
-had come on important business, and a moment later we were face to face
-with the man whom we had come to see. In spite of the warm weather he
-was crouching over a fire, and the little room was like an oven. The
-man sat all twisted and huddled in his chair in a way which gave an
-indescribably impression of deformity; but the face which he turned
-towards us, though worn and swarthy, must at some time have been
-remarkable for its beauty. He looked suspiciously at us now out of
-yellow-shot, bilious eyes, and, without speaking or rising, he waved
-towards two chairs.
-
-"Mr. Henry Wood, late of India, I believe," said Holmes, affably. "I've
-come over this little matter of Colonel Barclay's death."
-
-"What should I know about that?"
-
-"That's what I want to ascertain. You know, I suppose, that unless the
-matter is cleared up, Mrs. Barclay, who is an old friend of yours, will
-in all probability be tried for murder."
-
-The man gave a violent start.
-
-"I don't know who you are," he cried, "nor how you come to know what you
-do know, but will you swear that this is true that you tell me?"
-
-"Why, they are only waiting for her to come to her senses to arrest
-her."
-
-"My God! Are you in the police yourself?"
-
-"No."
-
-"What business is it of yours, then?"
-
-"It's every man's business to see justice done."
-
-"You can take my word that she is innocent."
-
-"Then you are guilty."
-
-"No, I am not."
-
-"Who killed Colonel James Barclay, then?"
-
-"It was a just providence that killed him. But, mind you this, that if
-I had knocked his brains out, as it was in my heart to do, he would have
-had no more than his due from my hands. If his own guilty conscience had
-not struck him down it is likely enough that I might have had his blood
-upon my soul. You want me to tell the story. Well, I don't know why I
-shouldn't, for there's no cause for me to be ashamed of it.
-
-"It was in this way, sir. You see me now with my back like a camel and
-my ribs all awry, but there was a time when Corporal Henry Wood was the
-smartest man in the 117th foot. We were in India then, in cantonments,
-at a place we'll call Bhurtee. Barclay, who died the other day, was
-sergeant in the same company as myself, and the belle of the regiment,
-ay, and the finest girl that ever had the breath of life between her
-lips, was Nancy Devoy, the daughter of the color-sergeant. There were
-two men that loved her, and one that she loved, and you'll smile when
-you look at this poor thing huddled before the fire, and hear me say
-that it was for my good looks that she loved me.
-
-"Well, though I had her heart, her father was set upon her marrying
-Barclay. I was a harum-scarum, reckless lad, and he had had an
-education, and was already marked for the sword-belt. But the girl held
-true to me, and it seemed that I would have had her when the Mutiny
-broke out, and all hell was loose in the country.
-
-"We were shut up in Bhurtee, the regiment of us with half a battery of
-artillery, a company of Sikhs, and a lot of civilians and women-folk.
-There were ten thousand rebels round us, and they were as keen as a set
-of terriers round a rat-cage. About the second week of it our water gave
-out, and it was a question whether we could communicate with General
-Neill's column, which was moving up country. It was our only chance, for
-we could not hope to fight our way out with all the women and children,
-so I volunteered to go out and to warn General Neill of our danger. My
-offer was accepted, and I talked it over with Sergeant Barclay, who was
-supposed to know the ground better than any other man, and who drew up
-a route by which I might get through the rebel lines. At ten o'clock the
-same night I started off upon my journey. There were a thousand lives to
-save, but it was of only one that I was thinking when I dropped over the
-wall that night.
-
-"My way ran down a dried-up watercourse, which we hoped would screen
-me from the enemy's sentries; but as I crept round the corner of it
-I walked right into six of them, who were crouching down in the dark
-waiting for me. In an instant I was stunned with a blow and bound hand
-and foot. But the real blow was to my heart and not to my head, for as
-I came to and listened to as much as I could understand of their talk,
-I heard enough to tell me that my comrade, the very man who had arranged
-the way that I was to take, had betrayed me by means of a native servant
-into the hands of the enemy.
-
-"Well, there's no need for me to dwell on that part of it. You know now
-what James Barclay was capable of. Bhurtee was relieved by Neill next
-day, but the rebels took me away with them in their retreat, and it was
-many a long year before ever I saw a white face again. I was tortured
-and tried to get away, and was captured and tortured again. You can see
-for yourselves the state in which I was left. Some of them that fled
-into Nepaul took me with them, and then afterwards I was up past
-Darjeeling. The hill-folk up there murdered the rebels who had me, and
-I became their slave for a time until I escaped; but instead of going
-south I had to go north, until I found myself among the Afghans. There
-I wandered about for many a year, and at last came back to the Punjab,
-where I lived mostly among the natives and picked up a living by the
-conjuring tricks that I had learned. What use was it for me, a wretched
-cripple, to go back to England or to make myself known to my old
-comrades? Even my wish for revenge would not make me do that. I had
-rather that Nancy and my old pals should think of Harry Wood as having
-died with a straight back, than see him living and crawling with a stick
-like a chimpanzee. They never doubted that I was dead, and I meant that
-they never should. I heard that Barclay had married Nancy, and that he
-was rising rapidly in the regiment, but even that did not make me speak.
-
-"But when one gets old one has a longing for home. For years I've been
-dreaming of the bright green fields and the hedges of England. At last I
-determined to see them before I died. I saved enough to bring me across,
-and then I came here where the soldiers are, for I know their ways and
-how to amuse them and so earn enough to keep me."
-
-"Your narrative is most interesting," said Sherlock Holmes. "I have
-already heard of your meeting with Mrs. Barclay, and your mutual
-recognition. You then, as I understand, followed her home and saw
-through the window an altercation between her husband and her, in which
-she doubtless cast his conduct to you in his teeth. Your own feelings
-overcame you, and you ran across the lawn and broke in upon them."
-
-"I did, sir, and at the sight of me he looked as I have never seen a man
-look before, and over he went with his head on the fender. But he was
-dead before he fell. I read death on his face as plain as I can read
-that text over the fire. The bare sight of me was like a bullet through
-his guilty heart."
-
-"And then?"
-
-"Then Nancy fainted, and I caught up the key of the door from her hand,
-intending to unlock it and get help. But as I was doing it it seemed to
-me better to leave it alone and get away, for the thing might look black
-against me, and any way my secret would be out if I were taken. In my
-haste I thrust the key into my pocket, and dropped my stick while I was
-chasing Teddy, who had run up the curtain. When I got him into his box,
-from which he had slipped, I was off as fast as I could run."
-
-"Who's Teddy?" asked Holmes.
-
-The man leaned over and pulled up the front of a kind of hutch in
-the corner. In an instant out there slipped a beautiful reddish-brown
-creature, thin and lithe, with the legs of a stoat, a long, thin nose,
-and a pair of the finest red eyes that ever I saw in an animal's head.
-
-"It's a mongoose," I cried.
-
-"Well, some call them that, and some call them ichneumon," said the
-man. "Snake-catcher is what I call them, and Teddy is amazing quick on
-cobras. I have one here without the fangs, and Teddy catches it every
-night to please the folk in the canteen.
-
-"Any other point, sir?"
-
-"Well, we may have to apply to you again if Mrs. Barclay should prove to
-be in serious trouble."
-
-"In that case, of course, I'd come forward."
-
-"But if not, there is no object in raking up this scandal against a
-dead man, foully as he has acted. You have at least the satisfaction
-of knowing that for thirty years of his life his conscience bitterly
-reproached him for this wicked deed. Ah, there goes Major Murphy on the
-other side of the street. Good-by, Wood. I want to learn if anything has
-happened since yesterday."
-
-We were in time to overtake the major before he reached the corner.
-
-"Ah, Holmes," he said: "I suppose you have heard that all this fuss has
-come to nothing?"
-
-"What then?"
-
-"The inquest is just over. The medical evidence showed conclusively
-that death was due to apoplexy. You see it was quite a simple case after
-all."
-
-"Oh, remarkably superficial," said Holmes, smiling. "Come, Watson, I
-don't think we shall be wanted in Aldershot any more."
-
-"There's one thing," said I, as we walked down to the station. "If the
-husband's name was James, and the other was Henry, what was this talk
-about David?"
-
-"That one word, my dear Watson, should have told me the whole story had
-I been the ideal reasoner which you are so fond of depicting. It was
-evidently a term of reproach."
-
-"Of reproach?"
-
-"Yes; David strayed a little occasionally, you know, and on one occasion
-in the same direction as Sergeant James Barclay. You remember the small
-affair of Uriah and Bathsheba? My biblical knowledge is a trifle rusty,
-I fear, but you will find the story in the first or second of Samuel."
-
-
-
-
-Adventure VIII. The Resident Patient
-
-
-Glancing over the somewhat incoherent series of Memoirs with which I
-have endeavored to illustrate a few of the mental peculiarities of my
-friend Mr. Sherlock Holmes, I have been struck by the difficulty which I
-have experienced in picking out examples which shall in every way answer
-my purpose. For in those cases in which Holmes has performed some tour
-de force of analytical reasoning, and has demonstrated the value of his
-peculiar methods of investigation, the facts themselves have often been
-so slight or so commonplace that I could not feel justified in laying
-them before the public. On the other hand, it has frequently happened
-that he has been concerned in some research where the facts have been of
-the most remarkable and dramatic character, but where the share which he
-has himself taken in determining their causes has been less pronounced
-than I, as his biographer, could wish. The small matter which I have
-chronicled under the heading of "A Study in Scarlet," and that other
-later one connected with the loss of the Gloria Scott, may serve as
-examples of this Scylla and Charybdis which are forever threatening the
-historian. It may be that in the business of which I am now about to
-write the part which my friend played is not sufficiently accentuated;
-and yet the whole train of circumstances is so remarkable that I cannot
-bring myself to omit it entirely from this series.
-
-It had been a close, rainy day in October. Our blinds were half-drawn,
-and Holmes lay curled upon the sofa, reading and re-reading a letter
-which he had received by the morning post. For myself, my term of
-service in India had trained me to stand heat better than cold, and
-a thermometer of 90 was no hardship. But the paper was uninteresting.
-Parliament had risen. Everybody was out of town, and I yearned for the
-glades of the New Forest or the shingle of Southsea. A depleted bank
-account had caused me to postpone my holiday, and as to my companion,
-neither the country nor the sea presented the slightest attraction to
-him. He loved to lie in the very centre of five millions of people, with
-his filaments stretching out and running through them, responsive to
-every little rumor or suspicion of unsolved crime. Appreciation of
-Nature found no place among his many gifts, and his only change was
-when he turned his mind from the evil-doer of the town to track down his
-brother of the country.
-
-Finding that Holmes was too absorbed for conversation, I had tossed
-aside the barren paper, and leaning back in my chair, I fell into a
-brown study. Suddenly my companion's voice broke in upon my thoughts.
-
-"You are right, Watson," said he. "It does seem a very preposterous way
-of settling a dispute."
-
-"Most preposterous!" I exclaimed, and then, suddenly realizing how
-he had echoed the inmost thought of my soul, I sat up in my chair and
-stared at him in blank amazement.
-
-"What is this, Holmes?" I cried. "This is beyond anything which I could
-have imagined."
-
-He laughed heartily at my perplexity.
-
-"You remember," said he, "that some little time ago, when I read you the
-passage in one of Poe's sketches, in which a close reasoner follows the
-unspoken thought of his companion, you were inclined to treat the
-matter as a mere tour de force of the author. On my remarking that I
-was constantly in the habit of doing the same thing you expressed
-incredulity."
-
-"Oh, no!"
-
-"Perhaps not with your tongue, my dear Watson, but certainly with your
-eyebrows. So when I saw you throw down your paper and enter upon a train
-of thought, I was very happy to have the opportunity of reading it
-off, and eventually of breaking into it, as a proof that I had been in
-rapport with you."
-
-But I was still far from satisfied. "In the example which you read to
-me," said I, "the reasoner drew his conclusions from the actions of the
-man whom he observed. If I remember right, he stumbled over a heap
-of stones, looked up at the stars, and so on. But I have been seated
-quietly in my chair, and what clues can I have given you?"
-
-"You do yourself an injustice. The features are given to man as the
-means by which he shall express his emotions, and yours are faithful
-servants."
-
-"Do you mean to say that you read my train of thoughts from my
-features?"
-
-"Your features, and especially your eyes. Perhaps you cannot yourself
-recall how your reverie commenced?"
-
-"No, I cannot."
-
-"Then I will tell you. After throwing down your paper, which was the
-action which drew my attention to you, you sat for half a minute with
-a vacant expression. Then your eyes fixed themselves upon your
-newly-framed picture of General Gordon, and I saw by the alteration in
-your face that a train of thought had been started. But it did not lead
-very far. Your eyes turned across to the unframed portrait of Henry Ward
-Beecher which stands upon the top of your books. You then glanced up at
-the wall, and of course your meaning was obvious. You were thinking
-that if the portrait were framed it would just cover that bare space and
-correspond with Gordon's picture over there."
-
-"You have followed me wonderfully!" I exclaimed.
-
-"So far I could hardly have gone astray. But now your thoughts went
-back to Beecher, and you looked hard across as if you were studying
-the character in his features. Then your eyes ceased to pucker, but
-you continued to look across, and your face was thoughtful. You were
-recalling the incidents of Beecher's career. I was well aware that you
-could not do this without thinking of the mission which he undertook
-on behalf of the North at the time of the Civil War, for I remember
-you expressing your passionate indignation at the way in which he was
-received by the more turbulent of our people. You felt so strongly about
-it that I knew you could not think of Beecher without thinking of that
-also. When a moment later I saw your eyes wander away from the picture,
-I suspected that your mind had now turned to the Civil War, and when
-I observed that your lips set, your eyes sparkled, and your hands
-clinched, I was positive that you were indeed thinking of the gallantry
-which was shown by both sides in that desperate struggle. But then,
-again, your face grew sadder; you shook your head. You were dwelling
-upon the sadness and horror and useless waste of life. Your hand stole
-towards your own old wound, and a smile quivered on your lips,
-which showed me that the ridiculous side of this method of settling
-international questions had forced itself upon your mind. At this point
-I agreed with you that it was preposterous, and was glad to find that
-all my deductions had been correct."
-
-"Absolutely!" said I. "And now that you have explained it, I confess
-that I am as amazed as before."
-
-"It was very superficial, my dear Watson, I assure you. I should not
-have intruded it upon your attention had you not shown some incredulity
-the other day. But the evening has brought a breeze with it. What do you
-say to a ramble through London?"
-
-I was weary of our little sitting-room and gladly acquiesced. For
-three hours we strolled about together, watching the ever-changing
-kaleidoscope of life as it ebbs and flows through Fleet Street and the
-Strand. His characteristic talk, with its keen observance of detail
-and subtle power of inference held me amused and enthralled. It was ten
-o'clock before we reached Baker Street again. A brougham was waiting at
-our door.
-
-"Hum! A doctor's--general practitioner, I perceive," said Holmes. "Not
-been long in practice, but has had a good deal to do. Come to consult
-us, I fancy! Lucky we came back!"
-
-I was sufficiently conversant with Holmes's methods to be able to follow
-his reasoning, and to see that the nature and state of the various
-medical instruments in the wicker basket which hung in the lamplight
-inside the brougham had given him the data for his swift deduction.
-The light in our window above showed that this late visit was indeed
-intended for us. With some curiosity as to what could have sent a
-brother medico to us at such an hour, I followed Holmes into our
-sanctum.
-
-A pale, taper-faced man with sandy whiskers rose up from a chair by the
-fire as we entered. His age may not have been more than three or four
-and thirty, but his haggard expression and unhealthy hue told of a life
-which has sapped his strength and robbed him of his youth. His manner
-was nervous and shy, like that of a sensitive gentleman, and the thin
-white hand which he laid on the mantelpiece as he rose was that of an
-artist rather than of a surgeon. His dress was quiet and sombre--a black
-frock-coat, dark trousers, and a touch of color about his necktie.
-
-"Good-evening, doctor," said Holmes, cheerily. "I am glad to see that
-you have only been waiting a very few minutes."
-
-"You spoke to my coachman, then?"
-
-"No, it was the candle on the side-table that told me. Pray resume your
-seat and let me know how I can serve you."
-
-"My name is Doctor Percy Trevelyan," said our visitor, "and I live at
-403 Brook Street."
-
-"Are you not the author of a monograph upon obscure nervous lesions?" I
-asked.
-
-His pale cheeks flushed with pleasure at hearing that his work was known
-to me.
-
-"I so seldom hear of the work that I thought it was quite dead," said
-he. "My publishers gave me a most discouraging account of its sale. You
-are yourself, I presume, a medical man?"
-
-"A retired army surgeon."
-
-"My own hobby has always been nervous disease. I should wish to make it
-an absolute specialty, but, of course, a man must take what he can get
-at first. This, however, is beside the question, Mr. Sherlock Holmes,
-and I quite appreciate how valuable your time is. The fact is that a
-very singular train of events has occurred recently at my house in Brook
-Street, and to-night they came to such a head that I felt it was quite
-impossible for me to wait another hour before asking for your advice and
-assistance."
-
-Sherlock Holmes sat down and lit his pipe. "You are very welcome
-to both," said he. "Pray let me have a detailed account of what the
-circumstances are which have disturbed you."
-
-"One or two of them are so trivial," said Dr. Trevelyan, "that really
-I am almost ashamed to mention them. But the matter is so inexplicable,
-and the recent turn which it has taken is so elaborate, that I shall
-lay it all before you, and you shall judge what is essential and what is
-not.
-
-"I am compelled, to begin with, to say something of my own college
-career. I am a London University man, you know, and I am sure that your
-will not think that I am unduly singing my own praises if I say that my
-student career was considered by my professors to be a very promising
-one. After I had graduated I continued to devote myself to research,
-occupying a minor position in King's College Hospital, and I was
-fortunate enough to excite considerable interest by my research into the
-pathology of catalepsy, and finally to win the Bruce Pinkerton prize and
-medal by the monograph on nervous lesions to which your friend has
-just alluded. I should not go too far if I were to say that there was a
-general impression at that time that a distinguished career lay before
-me.
-
-"But the one great stumbling-block lay in my want of capital. As you
-will readily understand, a specialist who aims high is compelled to
-start in one of a dozen streets in the Cavendish Square quarter, all
-of which entail enormous rents and furnishing expenses. Besides this
-preliminary outlay, he must be prepared to keep himself for some years,
-and to hire a presentable carriage and horse. To do this was quite
-beyond my power, and I could only hope that by economy I might in ten
-years' time save enough to enable me to put up my plate. Suddenly,
-however, an unexpected incident opened up quite a new prospect to me.
-
-"This was a visit from a gentleman of the name of Blessington, who was a
-complete stranger to me. He came up to my room one morning, and plunged
-into business in an instant.
-
-"'You are the same Percy Trevelyan who has had so distinguished a career
-and won a great prize lately?' said he.
-
-"I bowed.
-
-"'Answer me frankly,' he continued, 'for you will find it to your
-interest to do so. You have all the cleverness which makes a successful
-man. Have you the tact?'
-
-"I could not help smiling at the abruptness of the question.
-
-"'I trust that I have my share,' I said.
-
-"'Any bad habits? Not drawn towards drink, eh?'
-
-"'Really, sir!' I cried.
-
-"'Quite right! That's all right! But I was bound to ask. With all these
-qualities, why are you not in practice?'
-
-"I shrugged my shoulders.
-
-"'Come, come!' said he, in his bustling way. 'It's the old story. More
-in your brains than in your pocket, eh? What would you say if I were to
-start you in Brook Street?'
-
-"I stared at him in astonishment.
-
-"'Oh, it's for my sake, not for yours,' he cried. 'I'll be perfectly
-frank with you, and if it suits you it will suit me very well. I have a
-few thousands to invest, d'ye see, and I think I'll sink them in you.'
-
-"'But why?' I gasped.
-
-"'Well, it's just like any other speculation, and safer than most.'
-
-"'What am I to do, then?'
-
-"'I'll tell you. I'll take the house, furnish it, pay the maids, and run
-the whole place. All you have to do is just to wear out your chair in
-the consulting-room. I'll let you have pocket-money and everything. Then
-you hand over to me three quarters of what you earn, and you keep the
-other quarter for yourself.'
-
-"This was the strange proposal, Mr. Holmes, with which the man
-Blessington approached me. I won't weary you with the account of how
-we bargained and negotiated. It ended in my moving into the house next
-Lady-day, and starting in practice on very much the same conditions as
-he had suggested. He came himself to live with me in the character of a
-resident patient. His heart was weak, it appears, and he needed constant
-medical supervision. He turned the two best rooms of the first floor
-into a sitting-room and bedroom for himself. He was a man of singular
-habits, shunning company and very seldom going out. His life was
-irregular, but in one respect he was regularity itself. Every evening,
-at the same hour, he walked into the consulting-room, examined the
-books, put down five and three-pence for every guinea that I had earned,
-and carried the rest off to the strong-box in his own room.
-
-"I may say with confidence that he never had occasion to regret his
-speculation. From the first it was a success. A few good cases and the
-reputation which I had won in the hospital brought me rapidly to the
-front, and during the last few years I have made him a rich man.
-
-"So much, Mr. Holmes, for my past history and my relations with Mr.
-Blessington. It only remains for me now to tell you what has occurred to
-bring me here to-night.
-
-"Some weeks ago Mr. Blessington came down to me in, as it seemed to me,
-a state of considerable agitation. He spoke of some burglary which, he
-said, had been committed in the West End, and he appeared, I remember,
-to be quite unnecessarily excited about it, declaring that a day should
-not pass before we should add stronger bolts to our windows and doors.
-For a week he continued to be in a peculiar state of restlessness,
-peering continually out of the windows, and ceasing to take the short
-walk which had usually been the prelude to his dinner. From his manner
-it struck me that he was in mortal dread of something or somebody, but
-when I questioned him upon the point he became so offensive that I was
-compelled to drop the subject. Gradually, as time passed, his fears
-appeared to die away, and he had renewed his former habits, when a fresh
-event reduced him to the pitiable state of prostration in which he now
-lies.
-
-"What happened was this. Two days ago I received the letter which I now
-read to you. Neither address nor date is attached to it.
-
-"'A Russian nobleman who is now resident in England,' it runs, 'would
-be glad to avail himself of the professional assistance of Dr. Percy
-Trevelyan. He has been for some years a victim to cataleptic attacks, on
-which, as is well known, Dr. Trevelyan is an authority. He proposes to
-call at about quarter past six to-morrow evening, if Dr. Trevelyan will
-make it convenient to be at home.'
-
-"This letter interested me deeply, because the chief difficulty in the
-study of catalepsy is the rareness of the disease. You may believe,
-then, that I was in my consulting-room when, at the appointed hour, the
-page showed in the patient.
-
-"He was an elderly man, thin, demure, and commonplace--by no means the
-conception one forms of a Russian nobleman. I was much more struck by
-the appearance of his companion. This was a tall young man, surprisingly
-handsome, with a dark, fierce face, and the limbs and chest of a
-Hercules. He had his hand under the other's arm as they entered, and
-helped him to a chair with a tenderness which one would hardly have
-expected from his appearance.
-
-"'You will excuse my coming in, doctor,' said he to me, speaking English
-with a slight lisp. 'This is my father, and his health is a matter of
-the most overwhelming importance to me.'
-
-"I was touched by this filial anxiety. 'You would, perhaps, care to
-remain during the consultation?' said I.
-
-"'Not for the world,' he cried with a gesture of horror. 'It is more
-painful to me than I can express. If I were to see my father in one of
-these dreadful seizures I am convinced that I should never survive
-it. My own nervous system is an exceptionally sensitive one. With your
-permission, I will remain in the waiting-room while you go into my
-father's case.'
-
-"To this, of course, I assented, and the young man withdrew. The patient
-and I then plunged into a discussion of his case, of which I took
-exhaustive notes. He was not remarkable for intelligence, and his
-answers were frequently obscure, which I attributed to his limited
-acquaintance with our language. Suddenly, however, as I sat writing,
-he ceased to give any answer at all to my inquiries, and on my turning
-towards him I was shocked to see that he was sitting bolt upright in his
-chair, staring at me with a perfectly blank and rigid face. He was again
-in the grip of his mysterious malady.
-
-"My first feeling, as I have just said, was one of pity and horror.
-My second, I fear, was rather one of professional satisfaction. I made
-notes of my patient's pulse and temperature, tested the rigidity of his
-muscles, and examined his reflexes. There was nothing markedly abnormal
-in any of these conditions, which harmonized with my former experiences.
-I had obtained good results in such cases by the inhalation of nitrite
-of amyl, and the present seemed an admirable opportunity of testing
-its virtues. The bottle was downstairs in my laboratory, so leaving my
-patient seated in his chair, I ran down to get it. There was some little
-delay in finding it--five minutes, let us say--and then I returned.
-Imagine my amazement to find the room empty and the patient gone.
-
-"Of course, my first act was to run into the waiting-room. The son had
-gone also. The hall door had been closed, but not shut. My page who
-admits patients is a new boy and by no means quick. He waits downstairs,
-and runs up to show patients out when I ring the consulting-room bell.
-He had heard nothing, and the affair remained a complete mystery. Mr.
-Blessington came in from his walk shortly afterwards, but I did not say
-anything to him upon the subject, for, to tell the truth, I have got in
-the way of late of holding as little communication with him as possible.
-
-"Well, I never thought that I should see anything more of the Russian
-and his son, so you can imagine my amazement when, at the very same hour
-this evening, they both came marching into my consulting-room, just as
-they had done before.
-
-"'I feel that I owe you a great many apologies for my abrupt departure
-yesterday, doctor,' said my patient.
-
-"'I confess that I was very much surprised at it,' said I.
-
-"'Well, the fact is,' he remarked, 'that when I recover from these
-attacks my mind is always very clouded as to all that has gone before. I
-woke up in a strange room, as it seemed to me, and made my way out into
-the street in a sort of dazed way when you were absent.'
-
-"'And I,' said the son, 'seeing my father pass the door of the
-waiting-room, naturally thought that the consultation had come to an
-end. It was not until we had reached home that I began to realize the
-true state of affairs.'
-
-"'Well,' said I, laughing, 'there is no harm done except that you
-puzzled me terribly; so if you, sir, would kindly step into the
-waiting-room I shall be happy to continue our consultation which was
-brought to so abrupt an ending.'
-
-"'For half an hour or so I discussed that old gentleman's symptoms with
-him, and then, having prescribed for him, I saw him go off upon the arm
-of his son.
-
-"I have told you that Mr. Blessington generally chose this hour of the
-day for his exercise. He came in shortly afterwards and passed upstairs.
-An instant later I heard him running down, and he burst into my
-consulting-room like a man who is mad with panic.
-
-"'Who has been in my room?' he cried.
-
-"'No one,' said I.
-
-"'It's a lie! He yelled. 'Come up and look!'
-
-"I passed over the grossness of his language, as he seemed half out of
-his mind with fear. When I went upstairs with him he pointed to several
-footprints upon the light carpet.
-
-"'D'you mean to say those are mine?' he cried.
-
-"They were certainly very much larger than any which he could have made,
-and were evidently quite fresh. It rained hard this afternoon, as you
-know, and my patients were the only people who called. It must have been
-the case, then, that the man in the waiting-room had, for some unknown
-reason, while I was busy with the other, ascended to the room of my
-resident patient. Nothing had been touched or taken, but there were the
-footprints to prove that the intrusion was an undoubted fact.
-
-"Mr. Blessington seemed more excited over the matter than I should have
-thought possible, though of course it was enough to disturb anybody's
-peace of mind. He actually sat crying in an arm-chair, and I could
-hardly get him to speak coherently. It was his suggestion that I should
-come round to you, and of course I at once saw the propriety of it,
-for certainly the incident is a very singular one, though he appears to
-completely overrate its importance. If you would only come back with me
-in my brougham, you would at least be able to soothe him, though I
-can hardly hope that you will be able to explain this remarkable
-occurrence."
-
-Sherlock Holmes had listened to this long narrative with an intentness
-which showed me that his interest was keenly aroused. His face was as
-impassive as ever, but his lids had drooped more heavily over his eyes,
-and his smoke had curled up more thickly from his pipe to emphasize each
-curious episode in the doctor's tale. As our visitor concluded, Holmes
-sprang up without a word, handed me my hat, picked his own from the
-table, and followed Dr. Trevelyan to the door. Within a quarter of an
-hour we had been dropped at the door of the physician's residence
-in Brook Street, one of those sombre, flat-faced houses which one
-associates with a West-End practice. A small page admitted us, and we
-began at once to ascend the broad, well-carpeted stair.
-
-But a singular interruption brought us to a standstill. The light at
-the top was suddenly whisked out, and from the darkness came a reedy,
-quivering voice.
-
-"I have a pistol," it cried. "I give you my word that I'll fire if you
-come any nearer."
-
-"This really grows outrageous, Mr. Blessington," cried Dr. Trevelyan.
-
-"Oh, then it is you, doctor," said the voice, with a great heave of
-relief. "But those other gentlemen, are they what they pretend to be?"
-
-We were conscious of a long scrutiny out of the darkness.
-
-"Yes, yes, it's all right," said the voice at last. "You can come up,
-and I am sorry if my precautions have annoyed you."
-
-He relit the stair gas as he spoke, and we saw before us a
-singular-looking man, whose appearance, as well as his voice, testified
-to his jangled nerves. He was very fat, but had apparently at some time
-been much fatter, so that the skin hung about his face in loose pouches,
-like the cheeks of a blood-hound. He was of a sickly color, and his
-thin, sandy hair seemed to bristle up with the intensity of his emotion.
-In his hand he held a pistol, but he thrust it into his pocket as we
-advanced.
-
-"Good-evening, Mr. Holmes," said he. "I am sure I am very much obliged
-to you for coming round. No one ever needed your advice more than I do.
-I suppose that Dr. Trevelyan has told you of this most unwarrantable
-intrusion into my rooms."
-
-"Quite so," said Holmes. "Who are these two men Mr. Blessington, and why
-do they wish to molest you?"
-
-"Well, well," said the resident patient, in a nervous fashion, "of
-course it is hard to say that. You can hardly expect me to answer that,
-Mr. Holmes."
-
-"Do you mean that you don't know?"
-
-"Come in here, if you please. Just have the kindness to step in here."
-
-He led the way into his bedroom, which was large and comfortably
-furnished.
-
-"You see that," said he, pointing to a big black box at the end of his
-bed. "I have never been a very rich man, Mr. Holmes--never made but
-one investment in my life, as Dr. Trevelyan would tell you. But I don't
-believe in bankers. I would never trust a banker, Mr. Holmes. Between
-ourselves, what little I have is in that box, so you can understand what
-it means to me when unknown people force themselves into my rooms."
-
-Holmes looked at Blessington in his questioning way and shook his head.
-
-"I cannot possibly advise you if you try to deceive me," said he.
-
-"But I have told you everything."
-
-Holmes turned on his heel with a gesture of disgust. "Good-night, Dr.
-Trevelyan," said he.
-
-"And no advice for me?" cried Blessington, in a breaking voice.
-
-"My advice to you, sir, is to speak the truth."
-
-A minute later we were in the street and walking for home. We had
-crossed Oxford Street and were half way down Harley Street before I
-could get a word from my companion.
-
-"Sorry to bring you out on such a fool's errand, Watson," he said at
-last. "It is an interesting case, too, at the bottom of it."
-
-"I can make little of it," I confessed.
-
-"Well, it is quite evident that there are two men--more, perhaps, but
-at least two--who are determined for some reason to get at this fellow
-Blessington. I have no doubt in my mind that both on the first and on
-the second occasion that young man penetrated to Blessington's room,
-while his confederate, by an ingenious device, kept the doctor from
-interfering."
-
-"And the catalepsy?"
-
-"A fraudulent imitation, Watson, though I should hardly dare to hint as
-much to our specialist. It is a very easy complaint to imitate. I have
-done it myself."
-
-"And then?"
-
-"By the purest chance Blessington was out on each occasion. Their reason
-for choosing so unusual an hour for a consultation was obviously to
-insure that there should be no other patient in the waiting-room. It
-just happened, however, that this hour coincided with Blessington's
-constitutional, which seems to show that they were not very well
-acquainted with his daily routine. Of course, if they had been merely
-after plunder they would at least have made some attempt to search for
-it. Besides, I can read in a man's eye when it is his own skin that he
-is frightened for. It is inconceivable that this fellow could have made
-two such vindictive enemies as these appear to be without knowing of it.
-I hold it, therefore, to be certain that he does know who these men are,
-and that for reasons of his own he suppresses it. It is just possible
-that to-morrow may find him in a more communicative mood."
-
-"Is there not one alternative," I suggested, "grotesquely improbably,
-no doubt, but still just conceivable? Might the whole story of the
-cataleptic Russian and his son be a concoction of Dr. Trevelyan's, who
-has, for his own purposes, been in Blessington's rooms?"
-
-I saw in the gaslight that Holmes wore an amused smile at this brilliant
-departure of mine.
-
-"My dear fellow," said he, "it was one of the first solutions which
-occurred to me, but I was soon able to corroborate the doctor's tale.
-This young man has left prints upon the stair-carpet which made it quite
-superfluous for me to ask to see those which he had made in the room.
-When I tell you that his shoes were square-toed instead of being pointed
-like Blessington's, and were quite an inch and a third longer than the
-doctor's, you will acknowledge that there can be no doubt as to his
-individuality. But we may sleep on it now, for I shall be surprised if
-we do not hear something further from Brook Street in the morning."
-
-
-Sherlock Holmes's prophecy was soon fulfilled, and in a dramatic
-fashion. At half-past seven next morning, in the first glimmer of
-daylight, I found him standing by my bedside in his dressing-gown.
-
-"There's a brougham waiting for us, Watson," said he.
-
-"What's the matter, then?"
-
-"The Brook Street business."
-
-"Any fresh news?"
-
-"Tragic, but ambiguous," said he, pulling up the blind. "Look at this--a
-sheet from a note-book, with 'For God's sake come at once--P. T.,'
-scrawled upon it in pencil. Our friend, the doctor, was hard put to
-it when he wrote this. Come along, my dear fellow, for it's an urgent
-call."
-
-In a quarter of an hour or so we were back at the physician's house. He
-came running out to meet us with a face of horror.
-
-"Oh, such a business!" he cried, with his hands to his temples.
-
-"What then?"
-
-"Blessington has committed suicide!"
-
-Holmes whistled.
-
-"Yes, he hanged himself during the night."
-
-We had entered, and the doctor had preceded us into what was evidently
-his waiting-room.
-
-"I really hardly know what I am doing," he cried. "The police are
-already upstairs. It has shaken me most dreadfully."
-
-"When did you find it out?"
-
-"He has a cup of tea taken in to him early every morning. When the maid
-entered, about seven, there the unfortunate fellow was hanging in the
-middle of the room. He had tied his cord to the hook on which the heavy
-lamp used to hang, and he had jumped off from the top of the very box
-that he showed us yesterday."
-
-Holmes stood for a moment in deep thought.
-
-"With your permission," said he at last, "I should like to go upstairs
-and look into the matter."
-
-We both ascended, followed by the doctor.
-
-It was a dreadful sight which met us as we entered the bedroom door. I
-have spoken of the impression of flabbiness which this man Blessington
-conveyed. As he dangled from the hook it was exaggerated and intensified
-until he was scarce human in his appearance. The neck was drawn out
-like a plucked chicken's, making the rest of him seem the more obese and
-unnatural by the contrast. He was clad only in his long night-dress, and
-his swollen ankles and ungainly feet protruded starkly from beneath it.
-Beside him stood a smart-looking police-inspector, who was taking notes
-in a pocket-book.
-
-"Ah, Mr. Holmes," said he, heartily, as my friend entered, "I am
-delighted to see you."
-
-"Good-morning, Lanner," answered Holmes; "you won't think me an
-intruder, I am sure. Have you heard of the events which led up to this
-affair?"
-
-"Yes, I heard something of them."
-
-"Have you formed any opinion?"
-
-"As far as I can see, the man has been driven out of his senses by
-fright. The bed has been well slept in, you see. There's his impression
-deep enough. It's about five in the morning, you know, that suicides are
-most common. That would be about his time for hanging himself. It seems
-to have been a very deliberate affair."
-
-"I should say that he has been dead about three hours, judging by the
-rigidity of the muscles," said I.
-
-"Noticed anything peculiar about the room?" asked Holmes.
-
-"Found a screw-driver and some screws on the wash-hand stand. Seems to
-have smoked heavily during the night, too. Here are four cigar-ends that
-I picked out of the fireplace."
-
-"Hum!" said Holmes, "have you got his cigar-holder?"
-
-"No, I have seen none."
-
-"His cigar-case, then?"
-
-"Yes, it was in his coat-pocket."
-
-Holmes opened it and smelled the single cigar which it contained.
-
-"Oh, this is an Havana, and these others are cigars of the peculiar sort
-which are imported by the Dutch from their East Indian colonies. They
-are usually wrapped in straw, you know, and are thinner for their length
-than any other brand." He picked up the four ends and examined them with
-his pocket-lens.
-
-"Two of these have been smoked from a holder and two without," said he.
-"Two have been cut by a not very sharp knife, and two have had the ends
-bitten off by a set of excellent teeth. This is no suicide, Mr. Lanner.
-It is a very deeply planned and cold-blooded murder."
-
-"Impossible!" cried the inspector.
-
-"And why?"
-
-"Why should any one murder a man in so clumsy a fashion as by hanging
-him?"
-
-"That is what we have to find out."
-
-"How could they get in?"
-
-"Through the front door."
-
-"It was barred in the morning."
-
-"Then it was barred after them."
-
-"How do you know?"
-
-"I saw their traces. Excuse me a moment, and I may be able to give you
-some further information about it."
-
-He went over to the door, and turning the lock he examined it in his
-methodical way. Then he took out the key, which was on the inside, and
-inspected that also. The bed, the carpet, the chairs the mantelpiece,
-the dead body, and the rope were each in turn examined, until at last he
-professed himself satisfied, and with my aid and that of the inspector
-cut down the wretched object and laid it reverently under a sheet.
-
-"How about this rope?" he asked.
-
-"It is cut off this," said Dr. Trevelyan, drawing a large coil from
-under the bed. "He was morbidly nervous of fire, and always kept this
-beside him, so that he might escape by the window in case the stairs
-were burning."
-
-"That must have saved them trouble," said Holmes, thoughtfully. "Yes,
-the actual facts are very plain, and I shall be surprised if by the
-afternoon I cannot give you the reasons for them as well. I will take
-this photograph of Blessington, which I see upon the mantelpiece, as it
-may help me in my inquiries."
-
-"But you have told us nothing!" cried the doctor.
-
-"Oh, there can be no doubt as to the sequence of events," said Holmes.
-"There were three of them in it: the young man, the old man, and a
-third, to whose identity I have no clue. The first two, I need hardly
-remark, are the same who masqueraded as the Russian count and his son,
-so we can give a very full description of them. They were admitted by
-a confederate inside the house. If I might offer you a word of advice,
-Inspector, it would be to arrest the page, who, as I understand, has
-only recently come into your service, Doctor."
-
-"The young imp cannot be found," said Dr. Trevelyan; "the maid and the
-cook have just been searching for him."
-
-Holmes shrugged his shoulders.
-
-"He has played a not unimportant part in this drama," said he. "The
-three men having ascended the stairs, which they did on tiptoe, the
-elder man first, the younger man second, and the unknown man in the
-rear--"
-
-"My dear Holmes!" I ejaculated.
-
-"Oh, there could be no question as to the superimposing of the
-footmarks. I had the advantage of learning which was which last night.
-They ascended, then, to Mr. Blessington's room, the door of which they
-found to be locked. With the help of a wire, however, they forced round
-the key. Even without the lens you will perceive, by the scratches on
-this ward, where the pressure was applied.
-
-"On entering the room their first proceeding must have been to gag Mr.
-Blessington. He may have been asleep, or he may have been so paralyzed
-with terror as to have been unable to cry out. These walls are thick,
-and it is conceivable that his shriek, if he had time to utter one, was
-unheard.
-
-"Having secured him, it is evident to me that a consultation of some
-sort was held. Probably it was something in the nature of a judicial
-proceeding. It must have lasted for some time, for it was then that
-these cigars were smoked. The older man sat in that wicker chair; it
-was he who used the cigar-holder. The younger man sat over yonder; he
-knocked his ash off against the chest of drawers. The third fellow paced
-up and down. Blessington, I think, sat upright in the bed, but of that I
-cannot be absolutely certain.
-
-"Well, it ended by their taking Blessington and hanging him. The matter
-was so prearranged that it is my belief that they brought with them
-some sort of block or pulley which might serve as a gallows. That
-screw-driver and those screws were, as I conceive, for fixing it up.
-Seeing the hook, however they naturally saved themselves the trouble.
-Having finished their work they made off, and the door was barred behind
-them by their confederate."
-
-We had all listened with the deepest interest to this sketch of the
-night's doings, which Holmes had deduced from signs so subtle and minute
-that, even when he had pointed them out to us, we could scarcely follow
-him in his reasoning. The inspector hurried away on the instant to make
-inquiries about the page, while Holmes and I returned to Baker Street
-for breakfast.
-
-"I'll be back by three," said he, when we had finished our meal. "Both
-the inspector and the doctor will meet me here at that hour, and I hope
-by that time to have cleared up any little obscurity which the case may
-still present."
-
-
-Our visitors arrived at the appointed time, but it was a quarter to
-four before my friend put in an appearance. From his expression as he
-entered, however, I could see that all had gone well with him.
-
-"Any news, Inspector?"
-
-"We have got the boy, sir."
-
-"Excellent, and I have got the men."
-
-"You have got them!" we cried, all three.
-
-"Well, at least I have got their identity. This so-called Blessington
-is, as I expected, well known at headquarters, and so are his
-assailants. Their names are Biddle, Hayward, and Moffat."
-
-"The Worthingdon bank gang," cried the inspector.
-
-"Precisely," said Holmes.
-
-"Then Blessington must have been Sutton."
-
-"Exactly," said Holmes.
-
-"Why, that makes it as clear as crystal," said the inspector.
-
-But Trevelyan and I looked at each other in bewilderment.
-
-"You must surely remember the great Worthingdon bank business," said
-Holmes. "Five men were in it--these four and a fifth called Cartwright.
-Tobin, the care-taker, was murdered, and the thieves got away with seven
-thousand pounds. This was in 1875. They were all five arrested, but the
-evidence against them was by no means conclusive. This Blessington or
-Sutton, who was the worst of the gang, turned informer. On his evidence
-Cartwright was hanged and the other three got fifteen years apiece. When
-they got out the other day, which was some years before their full term,
-they set themselves, as you perceive, to hunt down the traitor and to
-avenge the death of their comrade upon him. Twice they tried to get at
-him and failed; a third time, you see, it came off. Is there anything
-further which I can explain, Dr. Trevelyan?"
-
-"I think you have made it all remarkable clear," said the doctor. "No
-doubt the day on which he was perturbed was the day when he had seen of
-their release in the newspapers."
-
-"Quite so. His talk about a burglary was the merest blind."
-
-"But why could he not tell you this?"
-
-"Well, my dear sir, knowing the vindictive character of his old
-associates, he was trying to hide his own identity from everybody as
-long as he could. His secret was a shameful one, and he could not bring
-himself to divulge it. However, wretch as he was, he was still living
-under the shield of British law, and I have no doubt, Inspector, that
-you will see that, though that shield may fail to guard, the sword of
-justice is still there to avenge."
-
-
-Such were the singular circumstances in connection with the Resident
-Patient and the Brook Street Doctor. From that night nothing has
-been seen of the three murderers by the police, and it is surmised
-at Scotland Yard that they were among the passengers of the ill-fated
-steamer Norah Creina, which was lost some years ago with all hands
-upon the Portuguese coast, some leagues to the north of Oporto. The
-proceedings against the page broke down for want of evidence, and the
-Brook Street Mystery, as it was called, has never until now been fully
-dealt with in any public print.
-
-
-
-
-Adventure IX. The Greek Interpreter
-
-
-During my long and intimate acquaintance with Mr. Sherlock Holmes I had
-never heard him refer to his relations, and hardly ever to his own early
-life. This reticence upon his part had increased the somewhat inhuman
-effect which he produced upon me, until sometimes I found myself
-regarding him as an isolated phenomenon, a brain without a heart, as
-deficient in human sympathy as he was pre-eminent in intelligence. His
-aversion to women and his disinclination to form new friendships were
-both typical of his unemotional character, but not more so than his
-complete suppression of every reference to his own people. I had come to
-believe that he was an orphan with no relatives living, but one day, to
-my very great surprise, he began to talk to me about his brother.
-
-It was after tea on a summer evening, and the conversation, which had
-roamed in a desultory, spasmodic fashion from golf clubs to the causes
-of the change in the obliquity of the ecliptic, came round at last
-to the question of atavism and hereditary aptitudes. The point under
-discussion was, how far any singular gift in an individual was due to
-his ancestry and how far to his own early training.
-
-"In your own case," said I, "from all that you have told me, it seems
-obvious that your faculty of observation and your peculiar facility for
-deduction are due to your own systematic training."
-
-"To some extent," he answered, thoughtfully. "My ancestors were country
-squires, who appear to have led much the same life as is natural to
-their class. But, none the less, my turn that way is in my veins, and
-may have come with my grandmother, who was the sister of Vernet, the
-French artist. Art in the blood is liable to take the strangest forms."
-
-"But how do you know that it is hereditary?"
-
-"Because my brother Mycroft possesses it in a larger degree than I do."
-
-This was news to me indeed. If there were another man with such singular
-powers in England, how was it that neither police nor public had heard
-of him? I put the question, with a hint that it was my companion's
-modesty which made him acknowledge his brother as his superior. Holmes
-laughed at my suggestion.
-
-"My dear Watson," said he, "I cannot agree with those who rank modesty
-among the virtues. To the logician all things should be seen exactly as
-they are, and to underestimate one's self is as much a departure from
-truth as to exaggerate one's own powers. When I say, therefore, that
-Mycroft has better powers of observation than I, you may take it that I
-am speaking the exact and literal truth."
-
-"Is he your junior?"
-
-"Seven years my senior."
-
-"How comes it that he is unknown?"
-
-"Oh, he is very well known in his own circle."
-
-"Where, then?"
-
-"Well, in the Diogenes Club, for example."
-
-I had never heard of the institution, and my face must have proclaimed
-as much, for Sherlock Holmes pulled out his watch.
-
-"The Diogenes Club is the queerest club in London, and Mycroft one of
-the queerest men. He's always there from quarter to five to twenty to
-eight. It's six now, so if you care for a stroll this beautiful evening
-I shall be very happy to introduce you to two curiosities."
-
-Five minutes later we were in the street, walking towards Regent's
-Circus.
-
-"You wonder," said my companion, "why it is that Mycroft does not use
-his powers for detective work. He is incapable of it."
-
-"But I thought you said--"
-
-"I said that he was my superior in observation and deduction. If the
-art of the detective began and ended in reasoning from an arm-chair, my
-brother would be the greatest criminal agent that ever lived. But he has
-no ambition and no energy. He will not even go out of his way to verify
-his own solutions, and would rather be considered wrong than take the
-trouble to prove himself right. Again and again I have taken a problem
-to him, and have received an explanation which has afterwards proved to
-be the correct one. And yet he was absolutely incapable of working out
-the practical points which must be gone into before a case could be laid
-before a judge or jury."
-
-"It is not his profession, then?"
-
-"By no means. What is to me a means of livelihood is to him the merest
-hobby of a dilettante. He has an extraordinary faculty for figures, and
-audits the books in some of the government departments. Mycroft lodges
-in Pall Mall, and he walks round the corner into Whitehall every morning
-and back every evening. From year's end to year's end he takes no other
-exercise, and is seen nowhere else, except only in the Diogenes Club,
-which is just opposite his rooms."
-
-"I cannot recall the name."
-
-"Very likely not. There are many men in London, you know, who, some from
-shyness, some from misanthropy, have no wish for the company of their
-fellows. Yet they are not averse to comfortable chairs and the latest
-periodicals. It is for the convenience of these that the Diogenes Club
-was started, and it now contains the most unsociable and unclubable men
-in town. No member is permitted to take the least notice of any
-other one. Save in the Stranger's Room, no talking is, under any
-circumstances, allowed, and three offences, if brought to the notice of
-the committee, render the talker liable to expulsion. My brother was one
-of the founders, and I have myself found it a very soothing atmosphere."
-
-We had reached Pall Mall as we talked, and were walking down it from the
-St. James's end. Sherlock Holmes stopped at a door some little distance
-from the Carlton, and, cautioning me not to speak, he led the way into
-the hall. Through the glass paneling I caught a glimpse of a large and
-luxurious room, in which a considerable number of men were sitting about
-and reading papers, each in his own little nook. Holmes showed me into a
-small chamber which looked out into Pall Mall, and then, leaving me for
-a minute, he came back with a companion whom I knew could only be his
-brother.
-
-Mycroft Holmes was a much larger and stouter man than Sherlock. His body
-was absolutely corpulent, but his face, though massive, had preserved
-something of the sharpness of expression which was so remarkable in that
-of his brother. His eyes, which were of a peculiarly light, watery gray,
-seemed to always retain that far-away, introspective look which I had
-only observed in Sherlock's when he was exerting his full powers.
-
-"I am glad to meet you, sir," said he, putting out a broad, fat hand
-like the flipper of a seal. "I hear of Sherlock everywhere since you
-became his chronicler. By the way, Sherlock, I expected to see you round
-last week, to consult me over that Manor House case. I thought you might
-be a little out of your depth."
-
-"No, I solved it," said my friend, smiling.
-
-"It was Adams, of course."
-
-"Yes, it was Adams."
-
-"I was sure of it from the first." The two sat down together in the
-bow-window of the club. "To any one who wishes to study mankind this is
-the spot," said Mycroft. "Look at the magnificent types! Look at these
-two men who are coming towards us, for example."
-
-"The billiard-marker and the other?"
-
-"Precisely. What do you make of the other?"
-
-The two men had stopped opposite the window. Some chalk marks over the
-waistcoat pocket were the only signs of billiards which I could see
-in one of them. The other was a very small, dark fellow, with his hat
-pushed back and several packages under his arm.
-
-"An old soldier, I perceive," said Sherlock.
-
-"And very recently discharged," remarked the brother.
-
-"Served in India, I see."
-
-"And a non-commissioned officer."
-
-"Royal Artillery, I fancy," said Sherlock.
-
-"And a widower."
-
-"But with a child."
-
-"Children, my dear boy, children."
-
-"Come," said I, laughing, "this is a little too much."
-
-"Surely," answered Holmes, "it is not hard to say that a man with that
-bearing, expression of authority, and sunbaked skin, is a soldier, is
-more than a private, and is not long from India."
-
-"That he has not left the service long is shown by his still wearing his
-ammunition boots, as they are called," observed Mycroft.
-
-"He had not the cavalry stride, yet he wore his hat on one side, as
-is shown by the lighter skin of that side of his brow. His weight is
-against his being a sapper. He is in the artillery."
-
-"Then, of course, his complete mourning shows that he has lost some one
-very dear. The fact that he is doing his own shopping looks as though
-it were his wife. He has been buying things for children, you perceive.
-There is a rattle, which shows that one of them is very young. The wife
-probably died in childbed. The fact that he has a picture-book under his
-arm shows that there is another child to be thought of."
-
-I began to understand what my friend meant when he said that his brother
-possessed even keener faculties that he did himself. He glanced across
-at me and smiled. Mycroft took snuff from a tortoise-shell box, and
-brushed away the wandering grains from his coat front with a large, red
-silk handkerchief.
-
-"By the way, Sherlock," said he, "I have had something quite after your
-own heart--a most singular problem--submitted to my judgment. I really
-had not the energy to follow it up save in a very incomplete fashion,
-but it gave me a basis for some pleasing speculation. If you would care
-to hear the facts--"
-
-"My dear Mycroft, I should be delighted."
-
-The brother scribbled a note upon a leaf of his pocket-book, and,
-ringing the bell, he handed it to the waiter.
-
-"I have asked Mr. Melas to step across," said he. "He lodges on the
-floor above me, and I have some slight acquaintance with him, which led
-him to come to me in his perplexity. Mr. Melas is a Greek by extraction,
-as I understand, and he is a remarkable linguist. He earns his living
-partly as interpreter in the law courts and partly by acting as guide to
-any wealthy Orientals who may visit the Northumberland Avenue hotels. I
-think I will leave him to tell his very remarkable experience in his own
-fashion."
-
-A few minutes later we were joined by a short, stout man whose olive
-face and coal-black hair proclaimed his Southern origin, though his
-speech was that of an educated Englishman. He shook hands eagerly
-with Sherlock Holmes, and his dark eyes sparkled with pleasure when he
-understood that the specialist was anxious to hear his story.
-
-"I do not believe that the police credit me--on my word, I do not," said
-he in a wailing voice. "Just because they have never heard of it before,
-they think that such a thing cannot be. But I know that I shall never
-be easy in my mind until I know what has become of my poor man with the
-sticking-plaster upon his face."
-
-"I am all attention," said Sherlock Holmes.
-
-"This is Wednesday evening," said Mr. Melas. "Well then, it was Monday
-night--only two days ago, you understand--that all this happened. I am
-an interpreter, as perhaps my neighbor there has told you. I interpret
-all languages--or nearly all--but as I am a Greek by birth and with a
-Grecian name, it is with that particular tongue that I am principally
-associated. For many years I have been the chief Greek interpreter in
-London, and my name is very well known in the hotels.
-
-"It happens not unfrequently that I am sent for at strange hours by
-foreigners who get into difficulties, or by travelers who arrive late
-and wish my services. I was not surprised, therefore, on Monday night
-when a Mr. Latimer, a very fashionably dressed young man, came up to my
-rooms and asked me to accompany him in a cab which was waiting at the
-door. A Greek friend had come to see him upon business, he said, and
-as he could speak nothing but his own tongue, the services of an
-interpreter were indispensable. He gave me to understand that his house
-was some little distance off, in Kensington, and he seemed to be in a
-great hurry, bustling me rapidly into the cab when we had descended to
-the street.
-
-"I say into the cab, but I soon became doubtful as to whether it was not
-a carriage in which I found myself. It was certainly more roomy than
-the ordinary four-wheeled disgrace to London, and the fittings, though
-frayed, were of rich quality. Mr. Latimer seated himself opposite to me
-and we started off through Charing Cross and up the Shaftesbury Avenue.
-We had come out upon Oxford Street and I had ventured some remark as to
-this being a roundabout way to Kensington, when my words were arrested
-by the extraordinary conduct of my companion.
-
-"He began by drawing a most formidable-looking bludgeon loaded with lead
-from his pocket, and switching it backward and forward several times,
-as if to test its weight and strength. Then he placed it without a word
-upon the seat beside him. Having done this, he drew up the windows on
-each side, and I found to my astonishment that they were covered with
-paper so as to prevent my seeing through them.
-
-"'I am sorry to cut off your view, Mr. Melas,' said he. 'The fact is
-that I have no intention that you should see what the place is to which
-we are driving. It might possibly be inconvenient to me if you could
-find your way there again.'
-
-"As you can imagine, I was utterly taken aback by such an address. My
-companion was a powerful, broad-shouldered young fellow, and, apart from
-the weapon, I should not have had the slightest chance in a struggle
-with him.
-
-"'This is very extraordinary conduct, Mr. Latimer,' I stammered. 'You
-must be aware that what you are doing is quite illegal.'
-
-"'It is somewhat of a liberty, no doubt,' said he, 'but we'll make it
-up to you. I must warn you, however, Mr. Melas, that if at any time
-to-night you attempt to raise an alarm or do anything which is against
-my interests, you will find it a very serious thing. I beg you to
-remember that no one knows where you are, and that, whether you are in
-this carriage or in my house, you are equally in my power.'
-
-"His words were quiet, but he had a rasping way of saying them which
-was very menacing. I sat in silence wondering what on earth could be
-his reason for kidnapping me in this extraordinary fashion. Whatever it
-might be, it was perfectly clear that there was no possible use in my
-resisting, and that I could only wait to see what might befall.
-
-"For nearly two hours we drove without my having the least clue as to
-where we were going. Sometimes the rattle of the stones told of a paved
-causeway, and at others our smooth, silent course suggested asphalt;
-but, save by this variation in sound, there was nothing at all which
-could in the remotest way help me to form a guess as to where we were.
-The paper over each window was impenetrable to light, and a blue curtain
-was drawn across the glass work in front. It was a quarter-past seven
-when we left Pall Mall, and my watch showed me that it was ten minutes
-to nine when we at last came to a standstill. My companion let down
-the window, and I caught a glimpse of a low, arched doorway with a lamp
-burning above it. As I was hurried from the carriage it swung open, and
-I found myself inside the house, with a vague impression of a lawn
-and trees on each side of me as I entered. Whether these were private
-grounds, however, or bona-fide country was more than I could possibly
-venture to say.
-
-"There was a colored gas-lamp inside which was turned so low that I
-could see little save that the hall was of some size and hung with
-pictures. In the dim light I could make out that the person who had
-opened the door was a small, mean-looking, middle-aged man with rounded
-shoulders. As he turned towards us the glint of the light showed me that
-he was wearing glasses.
-
-"'Is this Mr. Melas, Harold?' said he.
-
-"'Yes.'
-
-"'Well done, well done! No ill-will, Mr. Melas, I hope, but we could not
-get on without you. If you deal fair with us you'll not regret it,
-but if you try any tricks, God help you!' He spoke in a nervous, jerky
-fashion, and with little giggling laughs in between, but somehow he
-impressed me with fear more than the other.
-
-"'What do you want with me?' I asked.
-
-"'Only to ask a few questions of a Greek gentleman who is visiting us,
-and to let us have the answers. But say no more than you are told to
-say, or--' here came the nervous giggle again--'you had better never
-have been born.'
-
-"As he spoke he opened a door and showed the way into a room which
-appeared to be very richly furnished, but again the only light was
-afforded by a single lamp half-turned down. The chamber was certainly
-large, and the way in which my feet sank into the carpet as I stepped
-across it told me of its richness. I caught glimpses of velvet chairs, a
-high white marble mantel-piece, and what seemed to be a suit of Japanese
-armor at one side of it. There was a chair just under the lamp, and the
-elderly man motioned that I should sit in it. The younger had left
-us, but he suddenly returned through another door, leading with him
-a gentleman clad in some sort of loose dressing-gown who moved slowly
-towards us. As he came into the circle of dim light which enables me to
-see him more clearly I was thrilled with horror at his appearance. He
-was deadly pale and terribly emaciated, with the protruding, brilliant
-eyes of a man whose spirit was greater than his strength. But what
-shocked me more than any signs of physical weakness was that his face
-was grotesquely criss-crossed with sticking-plaster, and that one large
-pad of it was fastened over his mouth.
-
-"'Have you the slate, Harold?' cried the older man, as this strange
-being fell rather than sat down into a chair. 'Are his hands loose? Now,
-then, give him the pencil. You are to ask the questions, Mr. Melas, and
-he will write the answers. Ask him first of all whether he is prepared
-to sign the papers?'
-
-"The man's eyes flashed fire.
-
-"'Never!' he wrote in Greek upon the slate.
-
-"'On no condition?' I asked, at the bidding of our tyrant.
-
-"'Only if I see her married in my presence by a Greek priest whom I
-know.'
-
-"The man giggled in his venomous way.
-
-"'You know what awaits you, then?'
-
-"'I care nothing for myself.'
-
-"These are samples of the questions and answers which made up our
-strange half-spoken, half-written conversation. Again and again I had to
-ask him whether he would give in and sign the documents. Again and again
-I had the same indignant reply. But soon a happy thought came to me. I
-took to adding on little sentences of my own to each question, innocent
-ones at first, to test whether either of our companions knew anything
-of the matter, and then, as I found that they showed no signs I played a
-more dangerous game. Our conversation ran something like this:
-
-"'You can do no good by this obstinacy. Who are you?'
-
-"'I care not. I am a stranger in London.'
-
-"'Your fate will be upon your own head. How long have you been here?'
-
-"'Let it be so. Three weeks.'
-
-"'The property can never be yours. What ails you?'
-
-"'It shall not go to villains. They are starving me.'
-
-"'You shall go free if you sign. What house is this?'
-
-"'I will never sign. I do not know.'
-
-"'You are not doing her any service. What is your name?'
-
-"'Let me hear her say so. Kratides.'
-
-"'You shall see her if you sign. Where are you from?'
-
-"'Then I shall never see her. Athens.'
-
-"Another five minutes, Mr. Holmes, and I should have wormed out the
-whole story under their very noses. My very next question might have
-cleared the matter up, but at that instant the door opened and a woman
-stepped into the room. I could not see her clearly enough to know more
-than that she was tall and graceful, with black hair, and clad in some
-sort of loose white gown.
-
-"'Harold,' said she, speaking English with a broken accent. 'I could not
-stay away longer. It is so lonely up there with only--Oh, my God, it is
-Paul!'
-
-"These last words were in Greek, and at the same instant the man with
-a convulsive effort tore the plaster from his lips, and screaming out
-'Sophy! Sophy!' rushed into the woman's arms. Their embrace was but for
-an instant, however, for the younger man seized the woman and pushed
-her out of the room, while the elder easily overpowered his emaciated
-victim, and dragged him away through the other door. For a moment I was
-left alone in the room, and I sprang to my feet with some vague idea
-that I might in some way get a clue to what this house was in which I
-found myself. Fortunately, however, I took no steps, for looking up I
-saw that the older man was standing in the door-way with his eyes fixed
-upon me.
-
-"'That will do, Mr. Melas,' said he. 'You perceive that we have taken
-you into our confidence over some very private business. We should not
-have troubled you, only that our friend who speaks Greek and who began
-these negotiations has been forced to return to the East. It was
-quite necessary for us to find some one to take his place, and we were
-fortunate in hearing of your powers.'
-
-"I bowed.
-
-"'There are five sovereigns here,' said he, walking up to me, 'which
-will, I hope, be a sufficient fee. But remember,' he added, tapping me
-lightly on the chest and giggling, 'if you speak to a human soul about
-this--one human soul, mind--well, may God have mercy upon your soul!"
-
-"I cannot tell you the loathing and horror with which this
-insignificant-looking man inspired me. I could see him better now as the
-lamp-light shone upon him. His features were peaky and sallow, and his
-little pointed beard was thready and ill-nourished. He pushed his face
-forward as he spoke and his lips and eyelids were continually twitching
-like a man with St. Vitus's dance. I could not help thinking that his
-strange, catchy little laugh was also a symptom of some nervous malady.
-The terror of his face lay in his eyes, however, steel gray, and
-glistening coldly with a malignant, inexorable cruelty in their depths.
-
-"'We shall know if you speak of this,' said he. 'We have our own means
-of information. Now you will find the carriage waiting, and my friend
-will see you on your way.'
-
-"I was hurried through the hall and into the vehicle, again obtaining
-that momentary glimpse of trees and a garden. Mr. Latimer followed
-closely at my heels, and took his place opposite to me without a word.
-In silence we again drove for an interminable distance with the windows
-raised, until at last, just after midnight, the carriage pulled up.
-
-"'You will get down here, Mr. Melas,' said my companion. 'I am sorry
-to leave you so far from your house, but there is no alternative. Any
-attempt upon your part to follow the carriage can only end in injury to
-yourself.'
-
-"He opened the door as he spoke, and I had hardly time to spring out
-when the coachman lashed the horse and the carriage rattled away. I
-looked around me in astonishment. I was on some sort of a heathy common
-mottled over with dark clumps of furze-bushes. Far away stretched a
-line of houses, with a light here and there in the upper windows. On the
-other side I saw the red signal-lamps of a railway.
-
-"The carriage which had brought me was already out of sight. I stood
-gazing round and wondering where on earth I might be, when I saw some
-one coming towards me in the darkness. As he came up to me I made out
-that he was a railway porter.
-
-"'Can you tell me what place this is?' I asked.
-
-"'Wandsworth Common,' said he.
-
-"'Can I get a train into town?'
-
-"'If you walk on a mile or so to Clapham Junction,' said he, 'you'll
-just be in time for the last to Victoria.'
-
-"So that was the end of my adventure, Mr. Holmes. I do not know where I
-was, nor whom I spoke with, nor anything save what I have told you. But
-I know that there is foul play going on, and I want to help that unhappy
-man if I can. I told the whole story to Mr. Mycroft Holmes next morning,
-and subsequently to the police."
-
-We all sat in silence for some little time after listening to this
-extraordinary narrative. Then Sherlock looked across at his brother.
-
-"Any steps?" he asked.
-
-Mycroft picked up the Daily News, which was lying on the side-table.
-
-"'Anybody supplying any information to the whereabouts of a Greek
-gentleman named Paul Kratides, from Athens, who is unable to speak
-English, will be rewarded. A similar reward paid to any one giving
-information about a Greek lady whose first name is Sophy. X 2473.' That
-was in all the dailies. No answer."
-
-"How about the Greek Legation?"
-
-"I have inquired. They know nothing."
-
-"A wire to the head of the Athens police, then?"
-
-"Sherlock has all the energy of the family," said Mycroft, turning to
-me. "Well, you take the case up by all means, and let me know if you do
-any good."
-
-"Certainly," answered my friend, rising from his chair. "I'll let you
-know, and Mr. Melas also. In the meantime, Mr. Melas, I should certainly
-be on my guard, if I were you, for of course they must know through
-these advertisements that you have betrayed them."
-
-As we walked home together, Holmes stopped at a telegraph office and
-sent off several wires.
-
-"You see, Watson," he remarked, "our evening has been by no means
-wasted. Some of my most interesting cases have come to me in this way
-through Mycroft. The problem which we have just listened to, although
-it can admit of but one explanation, has still some distinguishing
-features."
-
-"You have hopes of solving it?"
-
-"Well, knowing as much as we do, it will be singular indeed if we fail
-to discover the rest. You must yourself have formed some theory which
-will explain the facts to which we have listened."
-
-"In a vague way, yes."
-
-"What was your idea, then?"
-
-"It seemed to me to be obvious that this Greek girl had been carried off
-by the young Englishman named Harold Latimer."
-
-"Carried off from where?"
-
-"Athens, perhaps."
-
-Sherlock Holmes shook his head. "This young man could not talk a word of
-Greek. The lady could talk English fairly well. Inference--that she had
-been in England some little time, but he had not been in Greece."
-
-"Well, then, we will presume that she had come on a visit to England,
-and that this Harold had persuaded her to fly with him."
-
-"That is more probable."
-
-"Then the brother--for that, I fancy, must be the relationship--comes
-over from Greece to interfere. He imprudently puts himself into the
-power of the young man and his older associate. They seize him and use
-violence towards him in order to make him sign some papers to make over
-the girl's fortune--of which he may be trustee--to them. This he refuses
-to do. In order to negotiate with him they have to get an interpreter,
-and they pitch upon this Mr. Melas, having used some other one before.
-The girl is not told of the arrival of her brother, and finds it out by
-the merest accident."
-
-"Excellent, Watson!" cried Holmes. "I really fancy that you are not far
-from the truth. You see that we hold all the cards, and we have only to
-fear some sudden act of violence on their part. If they give us time we
-must have them."
-
-"But how can we find where this house lies?"
-
-"Well, if our conjecture is correct and the girl's name is or was Sophy
-Kratides, we should have no difficulty in tracing her. That must be our
-main hope, for the brother is, of course, a complete stranger. It is
-clear that some time has elapsed since this Harold established these
-relations with the girl--some weeks, at any rate--since the brother in
-Greece has had time to hear of it and come across. If they have been
-living in the same place during this time, it is probable that we shall
-have some answer to Mycroft's advertisement."
-
-We had reached our house in Baker Street while we had been talking.
-Holmes ascended the stair first, and as he opened the door of our room
-he gave a start of surprise. Looking over his shoulder, I was equally
-astonished. His brother Mycroft was sitting smoking in the arm-chair.
-
-"Come in, Sherlock! Come in, sir," said he blandly, smiling at our
-surprised faces. "You don't expect such energy from me, do you,
-Sherlock? But somehow this case attracts me."
-
-"How did you get here?"
-
-"I passed you in a hansom."
-
-"There has been some new development?"
-
-"I had an answer to my advertisement."
-
-"Ah!"
-
-"Yes, it came within a few minutes of your leaving."
-
-"And to what effect?"
-
-Mycroft Holmes took out a sheet of paper.
-
-"Here it is," said he, "written with a J pen on royal cream paper by a
-middle-aged man with a weak constitution. 'Sir,' he says, 'in answer to
-your advertisement of to-day's date, I beg to inform you that I know the
-young lady in question very well. If you should care to call upon me I
-could give you some particulars as to her painful history. She is living
-at present at The Myrtles, Beckenham. Yours faithfully, J. Davenport.'
-
-"He writes from Lower Brixton," said Mycroft Holmes. "Do you not think
-that we might drive to him now, Sherlock, and learn these particulars?"
-
-"My dear Mycroft, the brother's life is more valuable than the sister's
-story. I think we should call at Scotland Yard for Inspector Gregson,
-and go straight out to Beckenham. We know that a man is being done to
-death, and every hour may be vital."
-
-"Better pick up Mr. Melas on our way," I suggested. "We may need an
-interpreter."
-
-"Excellent," said Sherlock Holmes. "Send the boy for a four-wheeler, and
-we shall be off at once." He opened the table-drawer as he spoke, and I
-noticed that he slipped his revolver into his pocket. "Yes," said he, in
-answer to my glance; "I should say from what we have heard, that we are
-dealing with a particularly dangerous gang."
-
-It was almost dark before we found ourselves in Pall Mall, at the rooms
-of Mr. Melas. A gentleman had just called for him, and he was gone.
-
-"Can you tell me where?" asked Mycroft Holmes.
-
-"I don't know, sir," answered the woman who had opened the door; "I only
-know that he drove away with the gentleman in a carriage."
-
-"Did the gentleman give a name?"
-
-"No, sir."
-
-"He wasn't a tall, handsome, dark young man?"
-
-"Oh, no, sir. He was a little gentleman, with glasses, thin in the face,
-but very pleasant in his ways, for he was laughing all the time that he
-was talking."
-
-"Come along!" cried Sherlock Holmes, abruptly. "This grows serious,"
-he observed, as we drove to Scotland Yard. "These men have got hold of
-Melas again. He is a man of no physical courage, as they are well
-aware from their experience the other night. This villain was able to
-terrorize him the instant that he got into his presence. No doubt
-they want his professional services, but, having used him, they may be
-inclined to punish him for what they will regard as his treachery."
-
-Our hope was that, by taking train, we might get to Beckenham as soon
-or sooner than the carriage. On reaching Scotland Yard, however, it was
-more than an hour before we could get Inspector Gregson and comply with
-the legal formalities which would enable us to enter the house. It was a
-quarter to ten before we reached London Bridge, and half past before the
-four of us alighted on the Beckenham platform. A drive of half a mile
-brought us to The Myrtles--a large, dark house standing back from the
-road in its own grounds. Here we dismissed our cab, and made our way up
-the drive together.
-
-"The windows are all dark," remarked the inspector. "The house seems
-deserted."
-
-"Our birds are flown and the nest empty," said Holmes.
-
-"Why do you say so?"
-
-"A carriage heavily loaded with luggage has passed out during the last
-hour."
-
-The inspector laughed. "I saw the wheel-tracks in the light of the
-gate-lamp, but where does the luggage come in?"
-
-"You may have observed the same wheel-tracks going the other way. But
-the outward-bound ones were very much deeper--so much so that we can
-say for a certainty that there was a very considerable weight on the
-carriage."
-
-"You get a trifle beyond me there," said the inspector, shrugging his
-shoulder. "It will not be an easy door to force, but we will try if we
-cannot make some one hear us."
-
-He hammered loudly at the knocker and pulled at the bell, but without
-any success. Holmes had slipped away, but he came back in a few minutes.
-
-"I have a window open," said he.
-
-"It is a mercy that you are on the side of the force, and not against
-it, Mr. Holmes," remarked the inspector, as he noted the clever way in
-which my friend had forced back the catch. "Well, I think that under the
-circumstances we may enter without an invitation."
-
-One after the other we made our way into a large apartment, which was
-evidently that in which Mr. Melas had found himself. The inspector
-had lit his lantern, and by its light we could see the two doors, the
-curtain, the lamp, and the suit of Japanese mail as he had described
-them. On the table lay two glasses, and empty brandy-bottle, and the
-remains of a meal.
-
-"What is that?" asked Holmes, suddenly.
-
-We all stood still and listened. A low moaning sound was coming from
-somewhere over our heads. Holmes rushed to the door and out into the
-hall. The dismal noise came from upstairs. He dashed up, the inspector
-and I at his heels, while his brother Mycroft followed as quickly as his
-great bulk would permit.
-
-Three doors faced up upon the second floor, and it was from the central
-of these that the sinister sounds were issuing, sinking sometimes into a
-dull mumble and rising again into a shrill whine. It was locked, but the
-key had been left on the outside. Holmes flung open the door and rushed
-in, but he was out again in an instant, with his hand to his throat.
-
-"It's charcoal," he cried. "Give it time. It will clear."
-
-Peering in, we could see that the only light in the room came from a
-dull blue flame which flickered from a small brass tripod in the centre.
-It threw a livid, unnatural circle upon the floor, while in the shadows
-beyond we saw the vague loom of two figures which crouched against the
-wall. From the open door there reeked a horrible poisonous exhalation
-which set us gasping and coughing. Holmes rushed to the top of the
-stairs to draw in the fresh air, and then, dashing into the room, he
-threw up the window and hurled the brazen tripod out into the garden.
-
-"We can enter in a minute," he gasped, darting out again. "Where is a
-candle? I doubt if we could strike a match in that atmosphere. Hold the
-light at the door and we shall get them out, Mycroft, now!"
-
-With a rush we got to the poisoned men and dragged them out into the
-well-lit hall. Both of them were blue-lipped and insensible, with
-swollen, congested faces and protruding eyes. Indeed, so distorted were
-their features that, save for his black beard and stout figure, we might
-have failed to recognize in one of them the Greek interpreter who had
-parted from us only a few hours before at the Diogenes Club. His hands
-and feet were securely strapped together, and he bore over one eye
-the marks of a violent blow. The other, who was secured in a similar
-fashion, was a tall man in the last stage of emaciation, with several
-strips of sticking-plaster arranged in a grotesque pattern over his
-face. He had ceased to moan as we laid him down, and a glance showed
-me that for him at least our aid had come too late. Mr. Melas, however,
-still lived, and in less than an hour, with the aid of ammonia and
-brandy I had the satisfaction of seeing him open his eyes, and of
-knowing that my hand had drawn him back from that dark valley in which
-all paths meet.
-
-It was a simple story which he had to tell, and one which did but
-confirm our own deductions. His visitor, on entering his rooms, had
-drawn a life-preserver from his sleeve, and had so impressed him with
-the fear of instant and inevitable death that he had kidnapped him for
-the second time. Indeed, it was almost mesmeric, the effect which this
-giggling ruffian had produced upon the unfortunate linguist, for he
-could not speak of him save with trembling hands and a blanched cheek.
-He had been taken swiftly to Beckenham, and had acted as interpreter in
-a second interview, even more dramatic than the first, in which the two
-Englishmen had menaced their prisoner with instant death if he did not
-comply with their demands. Finally, finding him proof against every
-threat, they had hurled him back into his prison, and after
-reproaching Melas with his treachery, which appeared from the newspaper
-advertisement, they had stunned him with a blow from a stick, and he
-remembered nothing more until he found us bending over him.
-
-And this was the singular case of the Grecian Interpreter, the
-explanation of which is still involved in some mystery. We were able
-to find out, by communicating with the gentleman who had answered the
-advertisement, that the unfortunate young lady came of a wealthy Grecian
-family, and that she had been on a visit to some friends in England.
-While there she had met a young man named Harold Latimer, who had
-acquired an ascendancy over he and had eventually persuaded her to fly
-with him. Her friends, shocked at the event, had contented themselves
-with informing her brother at Athens, and had then washed their hands
-of the matter. The brother, on his arrival in England, had imprudently
-placed himself in the power of Latimer and of his associate, whose name
-was Wilson Kemp--a man of the foulest antecedents. These two, finding
-that through his ignorance of the language he was helpless in their
-hands, had kept him a prisoner, and had endeavored by cruelty and
-starvation to make him sign away his own and his sister's property. They
-had kept him in the house without the girl's knowledge, and the plaster
-over the face had been for the purpose of making recognition difficult
-in case she should ever catch a glimpse of him. Her feminine perception,
-however, had instantly seen through the disguise when, on the occasion
-of the interpreter's visit, she had seen him for the first time. The
-poor girl, however, was herself a prisoner, for there was no one about
-the house except the man who acted as coachman, and his wife, both of
-whom were tools of the conspirators. Finding that their secret was out,
-and that their prisoner was not to be coerced, the two villains with the
-girl had fled away at a few hours' notice from the furnished house which
-they had hired, having first, as they thought, taken vengeance both upon
-the man who had defied and the one who had betrayed them.
-
-Months afterwards a curious newspaper cutting reached us from
-Buda-Pesth. It told how two Englishmen who had been traveling with a
-woman had met with a tragic end. They had each been stabbed, it seems,
-and the Hungarian police were of opinion that they had quarreled and had
-inflicted mortal injuries upon each other. Holmes, however, is, I fancy,
-of a different way of thinking, and holds to this day that, if one could
-find the Grecian girl, one might learn how the wrongs of herself and her
-brother came to be avenged.
-
-
-
-
-Adventure X. The Naval Treaty
-
-
-The July which immediately succeeded my marriage was made memorable
-by three cases of interest, in which I had the privilege of being
-associated with Sherlock Holmes and of studying his methods. I find them
-recorded in my notes under the headings of "The Adventure of the Second
-Stain," "The Adventure of the Naval Treaty," and "The Adventure of the
-Tired Captain." The first of these, however, deals with interest of such
-importance and implicates so many of the first families in the kingdom
-that for many years it will be impossible to make it public. No case,
-however, in which Holmes was engaged has ever illustrated the value
-of his analytical methods so clearly or has impressed those who were
-associated with him so deeply. I still retain an almost verbatim report
-of the interview in which he demonstrated the true facts of the case
-to Monsieur Dubugue of the Paris police, and Fritz von Waldbaum, the
-well-known specialist of Dantzig, both of whom had wasted their energies
-upon what proved to be side-issues. The new century will have come,
-however, before the story can be safely told. Meanwhile I pass on to
-the second on my list, which promised also at one time to be of national
-importance, and was marked by several incidents which give it a quite
-unique character.
-
-During my school-days I had been intimately associated with a lad named
-Percy Phelps, who was of much the same age as myself, though he was two
-classes ahead of me. He was a very brilliant boy, and carried away every
-prize which the school had to offer, finished his exploits by winning
-a scholarship which sent him on to continue his triumphant career at
-Cambridge. He was, I remember, extremely well connected, and even when
-we were all little boys together we knew that his mother's brother
-was Lord Holdhurst, the great conservative politician. This gaudy
-relationship did him little good at school. On the contrary, it seemed
-rather a piquant thing to us to chevy him about the playground and hit
-him over the shins with a wicket. But it was another thing when he
-came out into the world. I heard vaguely that his abilities and the
-influences which he commanded had won him a good position at the Foreign
-Office, and then he passed completely out of my mind until the following
-letter recalled his existence:
-
-
-Briarbrae, Woking. My dear Watson,--I have no doubt that you can
-remember "Tadpole" Phelps, who was in the fifth form when you were in
-the third. It is possible even that you may have heard that through my
-uncle's influence I obtained a good appointment at the Foreign Office,
-and that I was in a situation of trust and honor until a horrible
-misfortune came suddenly to blast my career.
-
-There is no use writing of the details of that dreadful event. In the
-event of your acceding to my request it is probably that I shall have
-to narrate them to you. I have only just recovered from nine weeks of
-brain-fever, and am still exceedingly weak. Do you think that you could
-bring your friend Mr. Holmes down to see me? I should like to have his
-opinion of the case, though the authorities assure me that nothing more
-can be done. Do try to bring him down, and as soon as possible. Every
-minute seems an hour while I live in this state of horrible suspense.
-Assure him that if I have not asked his advice sooner it was not because
-I did not appreciate his talents, but because I have been off my head
-ever since the blow fell. Now I am clear again, though I dare not think
-of it too much for fear of a relapse. I am still so weak that I have to
-write, as you see, by dictating. Do try to bring him.
-
-Your old school-fellow,
-
-Percy Phelps.
-
-
-There was something that touched me as I read this letter, something
-pitiable in the reiterated appeals to bring Holmes. So moved was I
-that even had it been a difficult matter I should have tried it, but
-of course I knew well that Holmes loved his art, so that he was ever
-as ready to bring his aid as his client could be to receive it. My wife
-agreed with me that not a moment should be lost in laying the matter
-before him, and so within an hour of breakfast-time I found myself back
-once more in the old rooms in Baker Street.
-
-Holmes was seated at his side-table clad in his dressing-gown, and
-working hard over a chemical investigation. A large curved retort
-was boiling furiously in the bluish flame of a Bunsen burner, and the
-distilled drops were condensing into a two-litre measure. My friend
-hardly glanced up as I entered, and I, seeing that his investigation
-must be of importance, seated myself in an arm-chair and waited. He
-dipped into this bottle or that, drawing out a few drops of each with
-his glass pipette, and finally brought a test-tube containing a solution
-over to the table. In his right hand he held a slip of litmus-paper.
-
-"You come at a crisis, Watson," said he. "If this paper remains blue,
-all is well. If it turns red, it means a man's life." He dipped it into
-the test-tube and it flushed at once into a dull, dirty crimson. "Hum!
-I thought as much!" he cried. "I will be at your service in an instant,
-Watson. You will find tobacco in the Persian slipper." He turned to his
-desk and scribbled off several telegrams, which were handed over to the
-page-boy. Then he threw himself down into the chair opposite, and drew
-up his knees until his fingers clasped round his long, thin shins.
-
-"A very commonplace little murder," said he. "You've got something
-better, I fancy. You are the stormy petrel of crime, Watson. What is
-it?"
-
-I handed him the letter, which he read with the most concentrated
-attention.
-
-"It does not tell us very much, does it?" he remarked, as he handed it
-back to me.
-
-"Hardly anything."
-
-"And yet the writing is of interest."
-
-"But the writing is not his own."
-
-"Precisely. It is a woman's."
-
-"A man's surely," I cried.
-
-"No, a woman's, and a woman of rare character. You see, at the
-commencement of an investigation it is something to know that your
-client is in close contact with some one who, for good or evil, has an
-exceptional nature. My interest is already awakened in the case. If you
-are ready we will start at once for Woking, and see this diplomatist who
-is in such evil case, and the lady to whom he dictates his letters."
-
-We were fortunate enough to catch an early train at Waterloo, and in
-a little under an hour we found ourselves among the fir-woods and
-the heather of Woking. Briarbrae proved to be a large detached house
-standing in extensive grounds within a few minutes' walk of the station.
-On sending in our cards we were shown into an elegantly appointed
-drawing-room, where we were joined in a few minutes by a rather stout
-man who received us with much hospitality. His age may have been nearer
-forty than thirty, but his cheeks were so ruddy and his eyes so merry
-that he still conveyed the impression of a plump and mischievous boy.
-
-"I am so glad that you have come," said he, shaking our hands with
-effusion. "Percy has been inquiring for you all morning. Ah, poor old
-chap, he clings to any straw! His father and his mother asked me to see
-you, for the mere mention of the subject is very painful to them."
-
-"We have had no details yet," observed Holmes. "I perceive that you are
-not yourself a member of the family."
-
-Our acquaintance looked surprised, and then, glancing down, he began to
-laugh.
-
-"Of course you saw the J H monogram on my locket," said he. "For a
-moment I thought you had done something clever. Joseph Harrison is my
-name, and as Percy is to marry my sister Annie I shall at least be a
-relation by marriage. You will find my sister in his room, for she has
-nursed him hand-and-foot this two months back. Perhaps we'd better go in
-at once, for I know how impatient he is."
-
-The chamber in which we were shown was on the same floor as the
-drawing-room. It was furnished partly as a sitting and partly as a
-bedroom, with flowers arranged daintily in every nook and corner. A
-young man, very pale and worn, was lying upon a sofa near the open
-window, through which came the rich scent of the garden and the balmy
-summer air. A woman was sitting beside him, who rose as we entered.
-
-"Shall I leave, Percy?" she asked.
-
-He clutched her hand to detain her. "How are you, Watson?" said he,
-cordially. "I should never have known you under that moustache, and I
-dare say you would not be prepared to swear to me. This I presume is
-your celebrated friend, Mr. Sherlock Holmes?"
-
-I introduced him in a few words, and we both sat down. The stout young
-man had left us, but his sister still remained with her hand in that of
-the invalid. She was a striking-looking woman, a little short and
-thick for symmetry, but with a beautiful olive complexion, large, dark,
-Italian eyes, and a wealth of deep black hair. Her rich tints made the
-white face of her companion the more worn and haggard by the contrast.
-
-"I won't waste your time," said he, raising himself upon the sofa.
-"I'll plunge into the matter without further preamble. I was a happy
-and successful man, Mr. Holmes, and on the eve of being married, when a
-sudden and dreadful misfortune wrecked all my prospects in life.
-
-"I was, as Watson may have told you, in the Foreign Office, and
-through the influences of my uncle, Lord Holdhurst, I rose rapidly to
-a responsible position. When my uncle became foreign minister in this
-administration he gave me several missions of trust, and as I always
-brought them to a successful conclusion, he came at last to have the
-utmost confidence in my ability and tact.
-
-"Nearly ten weeks ago--to be more accurate, on the 23d of May--he called
-me into his private room, and, after complimenting me on the good work
-which I had done, he informed me that he had a new commission of trust
-for me to execute.
-
-"'This,' said he, taking a gray roll of paper from his bureau, 'is the
-original of that secret treaty between England and Italy of which, I
-regret to say, some rumors have already got into the public press. It is
-of enormous importance that nothing further should leak out. The French
-or the Russian embassy would pay an immense sum to learn the contents
-of these papers. They should not leave my bureau were it not that it
-is absolutely necessary to have them copied. You have a desk in your
-office?"
-
-"'Yes, sir.'
-
-"'Then take the treaty and lock it up there. I shall give directions
-that you may remain behind when the others go, so that you may copy
-it at your leisure without fear of being overlooked. When you have
-finished, relock both the original and the draft in the desk, and hand
-them over to me personally to-morrow morning.'
-
-"I took the papers and--"
-
-"Excuse me an instant," said Holmes. "Were you alone during this
-conversation?"
-
-"Absolutely."
-
-"In a large room?"
-
-"Thirty feet each way."
-
-"In the centre?"
-
-"Yes, about it."
-
-"And speaking low?"
-
-"My uncle's voice is always remarkably low. I hardly spoke at all."
-
-"Thank you," said Holmes, shutting his eyes; "pray go on."
-
-"I did exactly what he indicated, and waited until the other clerks had
-departed. One of them in my room, Charles Gorot, had some arrears
-of work to make up, so I left him there and went out to dine. When I
-returned he was gone. I was anxious to hurry my work, for I knew that
-Joseph--the Mr. Harrison whom you saw just now--was in town, and that he
-would travel down to Woking by the eleven-o'clock train, and I wanted if
-possible to catch it.
-
-"When I came to examine the treaty I saw at once that it was of such
-importance that my uncle had been guilty of no exaggeration in what
-he had said. Without going into details, I may say that it defined the
-position of Great Britain towards the Triple Alliance, and fore-shadowed
-the policy which this country would pursue in the event of the
-French fleet gaining a complete ascendancy over that of Italy in the
-Mediterranean. The questions treated in it were purely naval. At the end
-were the signatures of the high dignitaries who had signed it. I glanced
-my eyes over it, and then settled down to my task of copying.
-
-"It was a long document, written in the French language, and containing
-twenty-six separate articles. I copied as quickly as I could, but at
-nine o'clock I had only done nine articles, and it seemed hopeless for
-me to attempt to catch my train. I was feeling drowsy and stupid, partly
-from my dinner and also from the effects of a long day's work. A cup of
-coffee would clear my brain. A commissionnaire remains all night in a
-little lodge at the foot of the stairs, and is in the habit of making
-coffee at his spirit-lamp for any of the officials who may be working
-over time. I rang the bell, therefore, to summon him.
-
-"To my surprise, it was a woman who answered the summons, a large,
-coarse-faced, elderly woman, in an apron. She explained that she was the
-commissionnaire's wife, who did the charing, and I gave her the order
-for the coffee.
-
-"I wrote two more articles and then, feeling more drowsy than ever, I
-rose and walked up and down the room to stretch my legs. My coffee had
-not yet come, and I wondered what was the cause of the delay could be.
-Opening the door, I started down the corridor to find out. There was a
-straight passage, dimly lighted, which led from the room in which I
-had been working, and was the only exit from it. It ended in a curving
-staircase, with the commissionnaire's lodge in the passage at the
-bottom. Half way down this staircase is a small landing, with another
-passage running into it at right angles. This second one leads by means
-of a second small stair to a side door, used by servants, and also as
-a short cut by clerks when coming from Charles Street. Here is a rough
-chart of the place."
-
-"Thank you. I think that I quite follow you," said Sherlock Holmes.
-
-"It is of the utmost importance that you should notice this point.
-I went down the stairs and into the hall, where I found the
-commissionnaire fast asleep in his box, with the kettle boiling
-furiously upon the spirit-lamp. I took off the kettle and blew out the
-lamp, for the water was spurting over the floor. Then I put out my hand
-and was about to shake the man, who was still sleeping soundly, when a
-bell over his head rang loudly, and he woke with a start.
-
-"'Mr. Phelps, sir!' said he, looking at me in bewilderment.
-
-"'I came down to see if my coffee was ready.'
-
-"'I was boiling the kettle when I fell asleep, sir.' He looked at me and
-then up at the still quivering bell with an ever-growing astonishment
-upon his face.
-
-"'If you was here, sir, then who rang the bell?' he asked.
-
-"'The bell!' I cried. 'What bell is it?'
-
-"'It's the bell of the room you were working in.'
-
-"A cold hand seemed to close round my heart. Some one, then, was in that
-room where my precious treaty lay upon the table. I ran frantically up
-the stair and along the passage. There was no one in the corridors, Mr.
-Holmes. There was no one in the room. All was exactly as I left it, save
-only that the papers which had been committed to my care had been taken
-from the desk on which they lay. The copy was there, and the original
-was gone."
-
-Holmes sat up in his chair and rubbed his hands. I could see that the
-problem was entirely to his heart. "Pray, what did you do then?" he
-murmured.
-
-"I recognized in an instant that the thief must have come up the stairs
-from the side door. Of course I must have met him if he had come the
-other way."
-
-"You were satisfied that he could not have been concealed in the room
-all the time, or in the corridor which you have just described as dimly
-lighted?"
-
-"It is absolutely impossible. A rat could not conceal himself either in
-the room or the corridor. There is no cover at all."
-
-"Thank you. Pray proceed."
-
-"The commissionnaire, seeing by my pale face that something was to be
-feared, had followed me upstairs. Now we both rushed along the corridor
-and down the steep steps which led to Charles Street. The door at the
-bottom was closed, but unlocked. We flung it open and rushed out. I can
-distinctly remember that as we did so there came three chimes from a
-neighboring clock. It was quarter to ten."
-
-"That is of enormous importance," said Holmes, making a note upon his
-shirt-cuff.
-
-"The night was very dark, and a thin, warm rain was falling. There was
-no one in Charles Street, but a great traffic was going on, as usual, in
-Whitehall, at the extremity. We rushed along the pavement, bare-headed
-as we were, and at the far corner we found a policeman standing.
-
-"'A robbery has been committed,' I gasped. 'A document of immense value
-has been stolen from the Foreign Office. Has any one passed this way?'
-
-"'I have been standing here for a quarter of an hour, sir,' said he;
-'only one person has passed during that time--a woman, tall and elderly,
-with a Paisley shawl.'
-
-"'Ah, that is only my wife,' cried the commissionnaire; 'has no one else
-passed?'
-
-"'No one.'
-
-"'Then it must be the other way that the thief took,' cried the fellow,
-tugging at my sleeve.
-
-"'But I was not satisfied, and the attempts which he made to draw me
-away increased my suspicions.
-
-"'Which way did the woman go?' I cried.
-
-"'I don't know, sir. I noticed her pass, but I had no special reason for
-watching her. She seemed to be in a hurry.'
-
-"'How long ago was it?'
-
-"'Oh, not very many minutes.'
-
-"'Within the last five?'
-
-"'Well, it could not be more than five.'
-
-"'You're only wasting your time, sir, and every minute now is of
-importance,' cried the commissionnaire; 'take my word for it that my old
-woman has nothing to do with it, and come down to the other end of the
-street. Well, if you won't, I will.' And with that he rushed off in the
-other direction.
-
-"But I was after him in an instant and caught him by the sleeve.
-
-"'Where do you live?' said I.
-
-"'16 Ivy Lane, Brixton,' he answered. 'But don't let yourself be drawn
-away upon a false scent, Mr. Phelps. Come to the other end of the street
-and let us see if we can hear of anything.'
-
-"Nothing was to be lost by following his advice. With the policeman we
-both hurried down, but only to find the street full of traffic, many
-people coming and going, but all only too eager to get to a place of
-safety upon so wet a night. There was no lounger who could tell us who
-had passed.
-
-"Then we returned to the office, and searched the stairs and the passage
-without result. The corridor which led to the room was laid down with
-a kind of creamy linoleum which shows an impression very easily. We
-examined it very carefully, but found no outline of any footmark."
-
-"Had it been raining all evening?"
-
-"Since about seven."
-
-"How is it, then, that the woman who came into the room about nine left
-no traces with her muddy boots?"
-
-"I am glad you raised the point. It occurred to me at the time.
-The charwomen are in the habit of taking off their boots at the
-commissionnaire's office, and putting on list slippers."
-
-"That is very clear. There were no marks, then, though the night was a
-wet one? The chain of events is certainly one of extraordinary interest.
-What did you do next?
-
-"We examined the room also. There is no possibility of a secret door,
-and the windows are quite thirty feet from the ground. Both of them
-were fastened on the inside. The carpet prevents any possibility of a
-trap-door, and the ceiling is of the ordinary whitewashed kind. I will
-pledge my life that whoever stole my papers could only have come through
-the door."
-
-"How about the fireplace?"
-
-"They use none. There is a stove. The bell-rope hangs from the wire just
-to the right of my desk. Whoever rang it must have come right up to the
-desk to do it. But why should any criminal wish to ring the bell? It is
-a most insoluble mystery."
-
-"Certainly the incident was unusual. What were your next steps? You
-examined the room, I presume, to see if the intruder had left any
-traces--any cigar-end or dropped glove or hairpin or other trifle?"
-
-"There was nothing of the sort."
-
-"No smell?"
-
-"Well, we never thought of that."
-
-"Ah, a scent of tobacco would have been worth a great deal to us in such
-an investigation."
-
-"I never smoke myself, so I think I should have observed it if there had
-been any smell of tobacco. There was absolutely no clue of any kind. The
-only tangible fact was that the commissionnaire's wife--Mrs. Tangey was
-the name--had hurried out of the place. He could give no explanation
-save that it was about the time when the woman always went home. The
-policeman and I agreed that our best plan would be to seize the woman
-before she could get rid of the papers, presuming that she had them.
-
-"The alarm had reached Scotland Yard by this time, and Mr. Forbes, the
-detective, came round at once and took up the case with a great deal of
-energy. We hired a hansom, and in half an hour we were at the address
-which had been given to us. A young woman opened the door, who proved to
-be Mrs. Tangey's eldest daughter. Her mother had not come back yet, and
-we were shown into the front room to wait.
-
-"About ten minutes later a knock came at the door, and here we made the
-one serious mistake for which I blame myself. Instead of opening the
-door ourselves, we allowed the girl to do so. We heard her say, 'Mother,
-there are two men in the house waiting to see you,' and an instant
-afterwards we heard the patter of feet rushing down the passage. Forbes
-flung open the door, and we both ran into the back room or kitchen, but
-the woman had got there before us. She stared at us with defiant
-eyes, and then, suddenly recognizing me, an expression of absolute
-astonishment came over her face.
-
-"'Why, if it isn't Mr. Phelps, of the office!' she cried.
-
-"'Come, come, who did you think we were when you ran away from us?'
-asked my companion.
-
-"'I thought you were the brokers,' said she, 'we have had some trouble
-with a tradesman.'
-
-"'That's not quite good enough,' answered Forbes. 'We have reason to
-believe that you have taken a paper of importance from the Foreign
-Office, and that you ran in here to dispose of it. You must come back
-with us to Scotland Yard to be searched.'
-
-"It was in vain that she protested and resisted. A four-wheeler was
-brought, and we all three drove back in it. We had first made an
-examination of the kitchen, and especially of the kitchen fire, to see
-whether she might have made away with the papers during the instant that
-she was alone. There were no signs, however, of any ashes or scraps.
-When we reached Scotland Yard she was handed over at once to the female
-searcher. I waited in an agony of suspense until she came back with her
-report. There were no signs of the papers.
-
-"Then for the first time the horror of my situation came in its full
-force. Hitherto I had been acting, and action had numbed thought. I had
-been so confident of regaining the treaty at once that I had not dared
-to think of what would be the consequence if I failed to do so. But
-now there was nothing more to be done, and I had leisure to realize
-my position. It was horrible. Watson there would tell you that I was a
-nervous, sensitive boy at school. It is my nature. I thought of my uncle
-and of his colleagues in the Cabinet, of the shame which I had brought
-upon him, upon myself, upon every one connected with me. What though I
-was the victim of an extraordinary accident? No allowance is made
-for accidents where diplomatic interests are at stake. I was ruined,
-shamefully, hopelessly ruined. I don't know what I did. I fancy I must
-have made a scene. I have a dim recollection of a group of officials who
-crowded round me, endeavoring to soothe me. One of them drove down with
-me to Waterloo, and saw me into the Woking train. I believe that he
-would have come all the way had it not been that Dr. Ferrier, who lives
-near me, was going down by that very train. The doctor most kindly took
-charge of me, and it was well he did so, for I had a fit in the station,
-and before we reached home I was practically a raving maniac.
-
-"You can imagine the state of things here when they were roused from
-their beds by the doctor's ringing and found me in this condition. Poor
-Annie here and my mother were broken-hearted. Dr. Ferrier had just heard
-enough from the detective at the station to be able to give an idea of
-what had happened, and his story did not mend matters. It was evident to
-all that I was in for a long illness, so Joseph was bundled out of this
-cheery bedroom, and it was turned into a sick-room for me. Here I have
-lain, Mr. Holmes, for over nine weeks, unconscious, and raving with
-brain-fever. If it had not been for Miss Harrison here and for the
-doctor's care I should not be speaking to you now. She has nursed me by
-day and a hired nurse has looked after me by night, for in my mad fits
-I was capable of anything. Slowly my reason has cleared, but it is only
-during the last three days that my memory has quite returned. Sometimes
-I wish that it never had. The first thing that I did was to wire to
-Mr. Forbes, who had the case in hand. He came out, and assures me that,
-though everything has been done, no trace of a clue has been discovered.
-The commissionnaire and his wife have been examined in every way without
-any light being thrown upon the matter. The suspicions of the police
-then rested upon young Gorot, who, as you may remember, stayed over time
-in the office that night. His remaining behind and his French name were
-really the only two points which could suggest suspicion; but, as a
-matter of fact, I did not begin work until he had gone, and his people
-are of Huguenot extraction, but as English in sympathy and tradition as
-you and I are. Nothing was found to implicate him in any way, and there
-the matter dropped. I turn to you, Mr. Holmes, as absolutely my last
-hope. If you fail me, then my honor as well as my position are forever
-forfeited."
-
-The invalid sank back upon his cushions, tired out by this long recital,
-while his nurse poured him out a glass of some stimulating medicine.
-Holmes sat silently, with his head thrown back and his eyes closed, in
-an attitude which might seem listless to a stranger, but which I knew
-betokened the most intense self-absorption.
-
-"You statement has been so explicit," said he at last, "that you have
-really left me very few questions to ask. There is one of the very
-utmost importance, however. Did you tell any one that you had this
-special task to perform?"
-
-"No one."
-
-"Not Miss Harrison here, for example?"
-
-"No. I had not been back to Woking between getting the order and
-executing the commission."
-
-"And none of your people had by chance been to see you?"
-
-"None."
-
-"Did any of them know their way about in the office?"
-
-"Oh, yes, all of them had been shown over it."
-
-"Still, of course, if you said nothing to any one about the treaty these
-inquiries are irrelevant."
-
-"I said nothing."
-
-"Do you know anything of the commissionnaire?"
-
-"Nothing except that he is an old soldier."
-
-"What regiment?"
-
-"Oh, I have heard--Coldstream Guards."
-
-"Thank you. I have no doubt I can get details from Forbes. The
-authorities are excellent at amassing facts, though they do not always
-use them to advantage. What a lovely thing a rose is!"
-
-He walked past the couch to the open window, and held up the drooping
-stalk of a moss-rose, looking down at the dainty blend of crimson and
-green. It was a new phase of his character to me, for I had never before
-seen him show any keen interest in natural objects.
-
-"There is nothing in which deduction is so necessary as in religion,"
-said he, leaning with his back against the shutters. "It can be built
-up as an exact science by the reasoner. Our highest assurance of the
-goodness of Providence seems to me to rest in the flowers. All other
-things, our powers our desires, our food, are all really necessary for
-our existence in the first instance. But this rose is an extra. Its
-smell and its color are an embellishment of life, not a condition of it.
-It is only goodness which gives extras, and so I say again that we have
-much to hope from the flowers."
-
-Percy Phelps and his nurse looked at Holmes during this demonstration
-with surprise and a good deal of disappointment written upon their
-faces. He had fallen into a reverie, with the moss-rose between his
-fingers. It had lasted some minutes before the young lady broke in upon
-it.
-
-"Do you see any prospect of solving this mystery, Mr. Holmes?" she
-asked, with a touch of asperity in her voice.
-
-"Oh, the mystery!" he answered, coming back with a start to the
-realities of life. "Well, it would be absurd to deny that the case is
-a very abstruse and complicated one, but I can promise you that I will
-look into the matter and let you know any points which may strike me."
-
-"Do you see any clue?"
-
-"You have furnished me with seven, but, of course, I must test them
-before I can pronounce upon their value."
-
-"You suspect some one?"
-
-"I suspect myself."
-
-"What!"
-
-"Of coming to conclusions too rapidly."
-
-"Then go to London and test your conclusions."
-
-"Your advice is very excellent, Miss Harrison," said Holmes, rising. "I
-think, Watson, we cannot do better. Do not allow yourself to indulge in
-false hopes, Mr. Phelps. The affair is a very tangled one."
-
-"I shall be in a fever until I see you again," cried the diplomatist.
-
-"Well, I'll come out by the same train to-morrow, though it's more than
-likely that my report will be a negative one."
-
-"God bless you for promising to come," cried our client. "It gives me
-fresh life to know that something is being done. By the way, I have had
-a letter from Lord Holdhurst."
-
-"Ha! What did he say?"
-
-"He was cold, but not harsh. I dare say my severe illness prevented
-him from being that. He repeated that the matter was of the utmost
-importance, and added that no steps would be taken about my future--by
-which he means, of course, my dismissal--until my health was restored
-and I had an opportunity of repairing my misfortune."
-
-"Well, that was reasonable and considerate," said Holmes. "Come, Watson,
-for we have a good day's work before us in town."
-
-Mr. Joseph Harrison drove us down to the station, and we were soon
-whirling up in a Portsmouth train. Holmes was sunk in profound thought,
-and hardly opened his mouth until we had passed Clapham Junction.
-
-"It's a very cheery thing to come into London by any of these lines
-which run high, and allow you to look down upon the houses like this."
-
-I thought he was joking, for the view was sordid enough, but he soon
-explained himself.
-
-"Look at those big, isolated clumps of building rising up above the
-slates, like brick islands in a lead-colored sea."
-
-"The board-schools."
-
-"Light-houses, my boy! Beacons of the future! Capsules with hundreds of
-bright little seeds in each, out of which will spring the wise, better
-England of the future. I suppose that man Phelps does not drink?"
-
-"I should not think so."
-
-"Nor should I, but we are bound to take every possibility into account.
-The poor devil has certainly got himself into very deep water, and it's
-a question whether we shall ever be able to get him ashore. What did you
-think of Miss Harrison?"
-
-"A girl of strong character."
-
-"Yes, but she is a good sort, or I am mistaken. She and her brother are
-the only children of an iron-master somewhere up Northumberland way. He
-got engaged to her when traveling last winter, and she came down to
-be introduced to his people, with her brother as escort. Then came
-the smash, and she stayed on to nurse her lover, while brother Joseph,
-finding himself pretty snug, stayed on too. I've been making a few
-independent inquiries, you see. But to-day must be a day of inquiries."
-
-"My practice--" I began.
-
-"Oh, if you find your own cases more interesting than mine--" said
-Holmes, with some asperity.
-
-"I was going to say that my practice could get along very well for a day
-or two, since it is the slackest time in the year."
-
-"Excellent," said he, recovering his good-humor. "Then we'll look into
-this matter together. I think that we should begin by seeing Forbes.
-He can probably tell us all the details we want until we know from what
-side the case is to be approached."
-
-"You said you had a clue?"
-
-"Well, we have several, but we can only test their value by further
-inquiry. The most difficult crime to track is the one which is
-purposeless. Now this is not purposeless. Who is it who profits by it?
-There is the French ambassador, there is the Russian, there is whoever
-might sell it to either of these, and there is Lord Holdhurst."
-
-"Lord Holdhurst!"
-
-"Well, it is just conceivable that a statesman might find himself in
-a position where he was not sorry to have such a document accidentally
-destroyed."
-
-"Not a statesman with the honorable record of Lord Holdhurst?"
-
-"It is a possibility and we cannot afford to disregard it. We shall see
-the noble lord to-day and find out if he can tell us anything. Meanwhile
-I have already set inquiries on foot."
-
-"Already?"
-
-"Yes, I sent wires from Woking station to every evening paper in London.
-This advertisement will appear in each of them."
-
-He handed over a sheet torn from a note-book. On it was scribbled in
-pencil: "L10 reward. The number of the cab which dropped a fare at or
-about the door of the Foreign Office in Charles Street at quarter to ten
-in the evening of May 23d. Apply 221 B, Baker Street."
-
-"You are confident that the thief came in a cab?"
-
-"If not, there is no harm done. But if Mr. Phelps is correct in stating
-that there is no hiding-place either in the room or the corridors, then
-the person must have come from outside. If he came from outside on so
-wet a night, and yet left no trace of damp upon the linoleum, which
-was examined within a few minutes of his passing, then it is exceeding
-probable that he came in a cab. Yes, I think that we may safely deduce a
-cab."
-
-"It sounds plausible."
-
-"That is one of the clues of which I spoke. It may lead us to something.
-And then, of course, there is the bell--which is the most distinctive
-feature of the case. Why should the bell ring? Was it the thief who did
-it out of bravado? Or was it some one who was with the thief who did it
-in order to prevent the crime? Or was it an accident? Or was it--?" He
-sank back into the state of intense and silent thought from which he
-had emerged; but it seemed to me, accustomed as I was to his every mood,
-that some new possibility had dawned suddenly upon him.
-
-It was twenty past three when we reached our terminus, and after a hasty
-luncheon at the buffet we pushed on at once to Scotland Yard. Holmes
-had already wired to Forbes, and we found him waiting to receive us--a
-small, foxy man with a sharp but by no means amiable expression. He
-was decidedly frigid in his manner to us, especially when he heard the
-errand upon which we had come.
-
-"I've heard of your methods before now, Mr. Holmes," said he, tartly.
-"You are ready enough to use all the information that the police can lay
-at your disposal, and then you try to finish the case yourself and bring
-discredit on them."
-
-"On the contrary," said Holmes, "out of my last fifty-three cases my
-name has only appeared in four, and the police have had all the credit
-in forty-nine. I don't blame you for not knowing this, for you are young
-and inexperienced, but if you wish to get on in your new duties you will
-work with me and not against me."
-
-"I'd be very glad of a hint or two," said the detective, changing his
-manner. "I've certainly had no credit from the case so far."
-
-"What steps have you taken?"
-
-"Tangey, the commissionnaire, has been shadowed. He left the Guards with
-a good character and we can find nothing against him. His wife is a bad
-lot, though. I fancy she knows more about this than appears."
-
-"Have you shadowed her?"
-
-"We have set one of our women on to her. Mrs. Tangey drinks, and our
-woman has been with her twice when she was well on, but she could get
-nothing out of her."
-
-"I understand that they have had brokers in the house?"
-
-"Yes, but they were paid off."
-
-"Where did the money come from?"
-
-"That was all right. His pension was due. They have not shown any sign
-of being in funds."
-
-"What explanation did she give of having answered the bell when Mr.
-Phelps rang for the coffee?"
-
-"She said that he husband was very tired and she wished to relieve him."
-
-"Well, certainly that would agree with his being found a little later
-asleep in his chair. There is nothing against them then but the woman's
-character. Did you ask her why she hurried away that night? Her haste
-attracted the attention of the police constable."
-
-"She was later than usual and wanted to get home."
-
-"Did you point out to her that you and Mr. Phelps, who started at least
-twenty minutes after her, got home before her?"
-
-"She explains that by the difference between a 'bus and a hansom."
-
-"Did she make it clear why, on reaching her house, she ran into the back
-kitchen?"
-
-"Because she had the money there with which to pay off the brokers."
-
-"She has at least an answer for everything. Did you ask her whether in
-leaving she met any one or saw any one loitering about Charles Street?"
-
-"She saw no one but the constable."
-
-"Well, you seem to have cross-examined her pretty thoroughly. What else
-have you done?"
-
-"The clerk Gorot has been shadowed all these nine weeks, but without
-result. We can show nothing against him."
-
-"Anything else?"
-
-"Well, we have nothing else to go upon--no evidence of any kind."
-
-"Have you formed a theory about how that bell rang?"
-
-"Well, I must confess that it beats me. It was a cool hand, whoever it
-was, to go and give the alarm like that."
-
-"Yes, it was queer thing to do. Many thanks to you for what you have
-told me. If I can put the man into your hands you shall hear from me.
-Come along, Watson."
-
-"Where are we going to now?" I asked, as we left the office.
-
-"We are now going to interview Lord Holdhurst, the cabinet minister and
-future premier of England."
-
-We were fortunate in finding that Lord Holdhurst was still in his
-chambers in Downing Street, and on Holmes sending in his card we were
-instantly shown up. The statesman received us with that old-fashioned
-courtesy for which he is remarkable, and seated us on the two luxuriant
-lounges on either side of the fireplace. Standing on the rug between us,
-with his slight, tall figure, his sharp features, thoughtful face, and
-curling hair prematurely tinged with gray, he seemed to represent that
-not too common type, a nobleman who is in truth noble.
-
-"Your name is very familiar to me, Mr. Holmes," said he, smiling. "And,
-of course, I cannot pretend to be ignorant of the object of your visit.
-There has only been one occurrence in these offices which could call for
-your attention. In whose interest are you acting, may I ask?"
-
-"In that of Mr. Percy Phelps," answered Holmes.
-
-"Ah, my unfortunate nephew! You can understand that our kinship makes
-it the more impossible for me to screen him in any way. I fear that the
-incident must have a very prejudicial effect upon his career."
-
-"But if the document is found?"
-
-"Ah, that, of course, would be different."
-
-"I had one or two questions which I wished to ask you, Lord Holdhurst."
-
-"I shall be happy to give you any information in my power."
-
-"Was it in this room that you gave your instructions as to the copying
-of the document?"
-
-"It was."
-
-"Then you could hardly have been overheard?"
-
-"It is out of the question."
-
-"Did you ever mention to any one that it was your intention to give any
-one the treaty to be copied?"
-
-"Never."
-
-"You are certain of that?"
-
-"Absolutely."
-
-"Well, since you never said so, and Mr. Phelps never said so, and nobody
-else knew anything of the matter, then the thief's presence in the room
-was purely accidental. He saw his chance and he took it."
-
-The statesman smiled. "You take me out of my province there," said he.
-
-Holmes considered for a moment. "There is another very important
-point which I wish to discuss with you," said he. "You feared, as I
-understand, that very grave results might follow from the details of
-this treaty becoming known."
-
-A shadow passed over the expressive face of the statesman. "Very grave
-results indeed."
-
-"Any have they occurred?"
-
-"Not yet."
-
-"If the treaty had reached, let us say, the French or Russian Foreign
-Office, you would expect to hear of it?"
-
-"I should," said Lord Holdhurst, with a wry face.
-
-"Since nearly ten weeks have elapsed, then, and nothing has been heard,
-it is not unfair to suppose that for some reason the treaty has not
-reached them."
-
-Lord Holdhurst shrugged his shoulders.
-
-"We can hardly suppose, Mr. Holmes, that the thief took the treaty in
-order to frame it and hang it up."
-
-"Perhaps he is waiting for a better price."
-
-"If he waits a little longer he will get no price at all. The treaty
-will cease to be secret in a few months."
-
-"That is most important," said Holmes. "Of course, it is a possible
-supposition that the thief has had a sudden illness--"
-
-"An attack of brain-fever, for example?" asked the statesman, flashing a
-swift glance at him.
-
-"I did not say so," said Holmes, imperturbably. "And now, Lord
-Holdhurst, we have already taken up too much of your valuable time, and
-we shall wish you good-day."
-
-"Every success to your investigation, be the criminal who it may,"
-answered the nobleman, as he bowed us out the door.
-
-"He's a fine fellow," said Holmes, as we came out into Whitehall. "But
-he has a struggle to keep up his position. He is far from rich and has
-many calls. You noticed, of course, that his boots had been resoled.
-Now, Watson, I won't detain you from your legitimate work any longer.
-I shall do nothing more to-day, unless I have an answer to my cab
-advertisement. But I should be extremely obliged to you if you would
-come down with me to Woking to-morrow, by the same train which we took
-yesterday."
-
-
-I met him accordingly next morning and we traveled down to Woking
-together. He had had no answer to his advertisement, he said, and no
-fresh light had been thrown upon the case. He had, when he so willed
-it, the utter immobility of countenance of a red Indian, and I could
-not gather from his appearance whether he was satisfied or not with
-the position of the case. His conversation, I remember, was about the
-Bertillon system of measurements, and he expressed his enthusiastic
-admiration of the French savant.
-
-We found our client still under the charge of his devoted nurse, but
-looking considerably better than before. He rose from the sofa and
-greeted us without difficulty when we entered.
-
-"Any news?" he asked, eagerly.
-
-"My report, as I expected, is a negative one," said Holmes. "I have seen
-Forbes, and I have seen your uncle, and I have set one or two trains of
-inquiry upon foot which may lead to something."
-
-"You have not lost heart, then?"
-
-"By no means."
-
-"God bless you for saying that!" cried Miss Harrison. "If we keep our
-courage and our patience the truth must come out."
-
-"We have more to tell you than you have for us," said Phelps, reseating
-himself upon the couch.
-
-"I hoped you might have something."
-
-"Yes, we have had an adventure during the night, and one which might
-have proved to be a serious one." His expression grew very grave as he
-spoke, and a look of something akin to fear sprang up in his eyes. "Do
-you know," said he, "that I begin to believe that I am the unconscious
-centre of some monstrous conspiracy, and that my life is aimed at as
-well as my honor?"
-
-"Ah!" cried Holmes.
-
-"It sounds incredible, for I have not, as far as I know, an enemy in
-the world. Yet from last night's experience I can come to no other
-conclusion."
-
-"Pray let me hear it."
-
-"You must know that last night was the very first night that I have ever
-slept without a nurse in the room. I was so much better that I thought
-I could dispense with one. I had a night-light burning, however. Well,
-about two in the morning I had sunk into a light sleep when I was
-suddenly aroused by a slight noise. It was like the sound which a mouse
-makes when it is gnawing a plank, and I lay listening to it for some
-time under the impression that it must come from that cause. Then it
-grew louder, and suddenly there came from the window a sharp metallic
-snick. I sat up in amazement. There could be no doubt what the sounds
-were now. The first ones had been caused by some one forcing an
-instrument through the slit between the sashes, and the second by the
-catch being pressed back.
-
-"There was a pause then for about ten minutes, as if the person were
-waiting to see whether the noise had awakened me. Then I heard a gentle
-creaking as the window was very slowly opened. I could stand it no
-longer, for my nerves are not what they used to be. I sprang out of bed
-and flung open the shutters. A man was crouching at the window. I could
-see little of him, for he was gone like a flash. He was wrapped in some
-sort of cloak which came across the lower part of his face. One thing
-only I am sure of, and that is that he had some weapon in his hand. It
-looked to me like a long knife. I distinctly saw the gleam of it as he
-turned to run."
-
-"This is most interesting," said Holmes. "Pray what did you do then?"
-
-"I should have followed him through the open window if I had been
-stronger. As it was, I rang the bell and roused the house. It took me
-some little time, for the bell rings in the kitchen and the servants all
-sleep upstairs. I shouted, however, and that brought Joseph down, and he
-roused the others. Joseph and the groom found marks on the bed outside
-the window, but the weather has been so dry lately that they found it
-hopeless to follow the trail across the grass. There's a place, however,
-on the wooden fence which skirts the road which shows signs, they tell
-me, as if some one had got over, and had snapped the top of the rail in
-doing so. I have said nothing to the local police yet, for I thought I
-had best have your opinion first."
-
-This tale of our client's appeared to have an extraordinary effect upon
-Sherlock Holmes. He rose from his chair and paced about the room in
-uncontrollable excitement.
-
-"Misfortunes never come single," said Phelps, smiling, though it was
-evident that his adventure had somewhat shaken him.
-
-"You have certainly had your share," said Holmes. "Do you think you
-could walk round the house with me?"
-
-"Oh, yes, I should like a little sunshine. Joseph will come, too."
-
-"And I also," said Miss Harrison.
-
-"I am afraid not," said Holmes, shaking his head. "I think I must ask
-you to remain sitting exactly where you are."
-
-The young lady resumed her seat with an air of displeasure. Her brother,
-however, had joined us and we set off all four together. We passed round
-the lawn to the outside of the young diplomatist's window. There were,
-as he had said, marks upon the bed, but they were hopelessly blurred and
-vague. Holmes stopped over them for an instant, and then rose shrugging
-his shoulders.
-
-"I don't think any one could make much of this," said he. "Let us go
-round the house and see why this particular room was chosen by the
-burglar. I should have thought those larger windows of the drawing-room
-and dining-room would have had more attractions for him."
-
-"They are more visible from the road," suggested Mr. Joseph Harrison.
-
-"Ah, yes, of course. There is a door here which he might have attempted.
-What is it for?"
-
-"It is the side entrance for trades-people. Of course it is locked at
-night."
-
-"Have you ever had an alarm like this before?"
-
-"Never," said our client.
-
-"Do you keep plate in the house, or anything to attract burglars?"
-
-"Nothing of value."
-
-Holmes strolled round the house with his hands in his pockets and a
-negligent air which was unusual with him.
-
-"By the way," said he to Joseph Harrison, "you found some place, I
-understand, where the fellow scaled the fence. Let us have a look at
-that!"
-
-The plump young man led us to a spot where the top of one of the wooden
-rails had been cracked. A small fragment of the wood was hanging down.
-Holmes pulled it off and examined it critically.
-
-"Do you think that was done last night? It looks rather old, does it
-not?"
-
-"Well, possibly so."
-
-"There are no marks of any one jumping down upon the other side. No, I
-fancy we shall get no help here. Let us go back to the bedroom and talk
-the matter over."
-
-Percy Phelps was walking very slowly, leaning upon the arm of his future
-brother-in-law. Holmes walked swiftly across the lawn, and we were at
-the open window of the bedroom long before the others came up.
-
-"Miss Harrison," said Holmes, speaking with the utmost intensity of
-manner, "you must stay where you are all day. Let nothing prevent you
-from staying where you are all day. It is of the utmost importance."
-
-"Certainly, if you wish it, Mr. Holmes," said the girl in astonishment.
-
-"When you go to bed lock the door of this room on the outside and keep
-the key. Promise to do this."
-
-"But Percy?"
-
-"He will come to London with us."
-
-"And am I to remain here?"
-
-"It is for his sake. You can serve him. Quick! Promise!"
-
-She gave a quick nod of assent just as the other two came up.
-
-"Why do you sit moping there, Annie?" cried her brother. "Come out into
-the sunshine!"
-
-"No, thank you, Joseph. I have a slight headache and this room is
-deliciously cool and soothing."
-
-"What do you propose now, Mr. Holmes?" asked our client.
-
-"Well, in investigating this minor affair we must not lose sight of our
-main inquiry. It would be a very great help to me if you would come up
-to London with us."
-
-"At once?"
-
-"Well, as soon as you conveniently can. Say in an hour."
-
-"I feel quite strong enough, if I can really be of any help."
-
-"The greatest possible."
-
-"Perhaps you would like me to stay there to-night?"
-
-"I was just going to propose it."
-
-"Then, if my friend of the night comes to revisit me, he will find the
-bird flown. We are all in your hands, Mr. Holmes, and you must tell us
-exactly what you would like done. Perhaps you would prefer that Joseph
-came with us so as to look after me?"
-
-"Oh, no; my friend Watson is a medical man, you know, and he'll look
-after you. We'll have our lunch here, if you will permit us, and then we
-shall all three set off for town together."
-
-It was arranged as he suggested, though Miss Harrison excused herself
-from leaving the bedroom, in accordance with Holmes's suggestion. What
-the object of my friend's manoeuvres was I could not conceive, unless it
-were to keep the lady away from Phelps, who, rejoiced by his
-returning health and by the prospect of action, lunched with us in the
-dining-room. Holmes had a still more startling surprise for us, however,
-for, after accompanying us down to the station and seeing us into
-our carriage, he calmly announced that he had no intention of leaving
-Woking.
-
-"There are one or two small points which I should desire to clear up
-before I go," said he. "Your absence, Mr. Phelps, will in some ways
-rather assist me. Watson, when you reach London you would oblige me by
-driving at once to Baker Street with our friend here, and remaining
-with him until I see you again. It is fortunate that you are old
-school-fellows, as you must have much to talk over. Mr. Phelps can
-have the spare bedroom to-night, and I will be with you in time for
-breakfast, for there is a train which will take me into Waterloo at
-eight."
-
-"But how about our investigation in London?" asked Phelps, ruefully.
-
-"We can do that to-morrow. I think that just at present I can be of more
-immediate use here."
-
-"You might tell them at Briarbrae that I hope to be back to-morrow
-night," cried Phelps, as we began to move from the platform.
-
-"I hardly expect to go back to Briarbrae," answered Holmes, and waved
-his hand to us cheerily as we shot out from the station.
-
-Phelps and I talked it over on our journey, but neither of us could
-devise a satisfactory reason for this new development.
-
-"I suppose he wants to find out some clue as to the burglary last night,
-if a burglar it was. For myself, I don't believe it was an ordinary
-thief."
-
-"What is your own idea, then?"
-
-"Upon my word, you may put it down to my weak nerves or not, but I
-believe there is some deep political intrigue going on around me, and
-that for some reason that passes my understanding my life is aimed at
-by the conspirators. It sounds high-flown and absurd, but consider the
-facts! Why should a thief try to break in at a bedroom window, where
-there could be no hope of any plunder, and why should he come with a
-long knife in his hand?"
-
-"You are sure it was not a house-breaker's jimmy?"
-
-"Oh, no, it was a knife. I saw the flash of the blade quite distinctly."
-
-"But why on earth should you be pursued with such animosity?"
-
-"Ah, that is the question."
-
-"Well, if Holmes takes the same view, that would account for his action,
-would it not? Presuming that your theory is correct, if he can lay his
-hands upon the man who threatened you last night he will have gone a
-long way towards finding who took the naval treaty. It is absurd to
-suppose that you have two enemies, one of whom robs you, while the other
-threatens your life."
-
-"But Holmes said that he was not going to Briarbrae."
-
-"I have known him for some time," said I, "but I never knew him do
-anything yet without a very good reason," and with that our conversation
-drifted off on to other topics.
-
-But it was a weary day for me. Phelps was still weak after his long
-illness, and his misfortune made him querulous and nervous. In vain
-I endeavored to interest him in Afghanistan, in India, in social
-questions, in anything which might take his mind out of the groove.
-He would always come back to his lost treaty, wondering, guessing,
-speculating, as to what Holmes was doing, what steps Lord Holdhurst was
-taking, what news we should have in the morning. As the evening wore on
-his excitement became quite painful.
-
-"You have implicit faith in Holmes?" he asked.
-
-"I have seen him do some remarkable things."
-
-"But he never brought light into anything quite so dark as this?"
-
-"Oh, yes; I have known him solve questions which presented fewer clues
-than yours."
-
-"But not where such large interests are at stake?"
-
-"I don't know that. To my certain knowledge he has acted on behalf of
-three of the reigning houses of Europe in very vital matters."
-
-"But you know him well, Watson. He is such an inscrutable fellow that I
-never quite know what to make of him. Do you think he is hopeful? Do you
-think he expects to make a success of it?"
-
-"He has said nothing."
-
-"That is a bad sign."
-
-"On the contrary, I have noticed that when he is off the trail he
-generally says so. It is when he is on a scent and is not quite
-absolutely sure yet that it is the right one that he is most taciturn.
-Now, my dear fellow, we can't help matters by making ourselves nervous
-about them, so let me implore you to go to bed and so be fresh for
-whatever may await us to-morrow."
-
-I was able at last to persuade my companion to take my advice, though I
-knew from his excited manner that there was not much hope of sleep for
-him. Indeed, his mood was infectious, for I lay tossing half the night
-myself, brooding over this strange problem, and inventing a hundred
-theories, each of which was more impossible than the last. Why had
-Holmes remained at Woking? Why had he asked Miss Harrison to remain
-in the sick-room all day? Why had he been so careful not to inform the
-people at Briarbrae that he intended to remain near them? I cudgelled
-my brains until I fell asleep in the endeavor to find some explanation
-which would cover all these facts.
-
-It was seven o'clock when I awoke, and I set off at once for Phelps's
-room, to find him haggard and spent after a sleepless night. His first
-question was whether Holmes had arrived yet.
-
-"He'll be here when he promised," said I, "and not an instant sooner or
-later."
-
-And my words were true, for shortly after eight a hansom dashed up to
-the door and our friend got out of it. Standing in the window we saw
-that his left hand was swathed in a bandage and that his face was very
-grim and pale. He entered the house, but it was some little time before
-he came upstairs.
-
-"He looks like a beaten man," cried Phelps.
-
-I was forced to confess that he was right. "After all," said I, "the
-clue of the matter lies probably here in town."
-
-Phelps gave a groan.
-
-"I don't know how it is," said he, "but I had hoped for so much from his
-return. But surely his hand was not tied up like that yesterday. What
-can be the matter?"
-
-"You are not wounded, Holmes?" I asked, as my friend entered the room.
-
-"Tut, it is only a scratch through my own clumsiness," he answered,
-nodding his good-mornings to us. "This case of yours, Mr. Phelps, is
-certainly one of the darkest which I have ever investigated."
-
-"I feared that you would find it beyond you."
-
-"It has been a most remarkable experience."
-
-"That bandage tells of adventures," said I. "Won't you tell us what has
-happened?"
-
-"After breakfast, my dear Watson. Remember that I have breathed thirty
-miles of Surrey air this morning. I suppose that there has been no
-answer from my cabman advertisement? Well, well, we cannot expect to
-score every time."
-
-The table was all laid, and just as I was about to ring Mrs. Hudson
-entered with the tea and coffee. A few minutes later she brought in
-three covers, and we all drew up to the table, Holmes ravenous, I
-curious, and Phelps in the gloomiest state of depression.
-
-"Mrs. Hudson has risen to the occasion," said Holmes, uncovering a dish
-of curried chicken. "Her cuisine is a little limited, but she has
-as good an idea of breakfast as a Scotch-woman. What have you here,
-Watson?"
-
-"Ham and eggs," I answered.
-
-"Good! What are you going to take, Mr. Phelps--curried fowl or eggs, or
-will you help yourself?"
-
-"Thank you. I can eat nothing," said Phelps.
-
-"Oh, come! Try the dish before you."
-
-"Thank you, I would really rather not."
-
-"Well, then," said Holmes, with a mischievous twinkle, "I suppose that
-you have no objection to helping me?"
-
-Phelps raised the cover, and as he did so he uttered a scream, and sat
-there staring with a face as white as the plate upon which he looked.
-Across the centre of it was lying a little cylinder of blue-gray paper.
-He caught it up, devoured it with his eyes, and then danced madly about
-the room, pressing it to his bosom and shrieking out in his delight.
-Then he fell back into an arm-chair so limp and exhausted with his own
-emotions that we had to pour brandy down his throat to keep him from
-fainting.
-
-"There! there!" said Holmes, soothing, patting him upon the shoulder.
-"It was too bad to spring it on you like this, but Watson here will tell
-you that I never can resist a touch of the dramatic."
-
-Phelps seized his hand and kissed it. "God bless you!" he cried. "You
-have saved my honor."
-
-"Well, my own was at stake, you know," said Holmes. "I assure you it is
-just as hateful to me to fail in a case as it can be to you to blunder
-over a commission."
-
-Phelps thrust away the precious document into the innermost pocket of
-his coat.
-
-"I have not the heart to interrupt your breakfast any further, and yet I
-am dying to know how you got it and where it was."
-
-Sherlock Holmes swallowed a cup of coffee, and turned his attention to
-the ham and eggs. Then he rose, lit his pipe, and settled himself down
-into his chair.
-
-"I'll tell you what I did first, and how I came to do it afterwards,"
-said he. "After leaving you at the station I went for a charming walk
-through some admirable Surrey scenery to a pretty little village called
-Ripley, where I had my tea at an inn, and took the precaution of filling
-my flask and of putting a paper of sandwiches in my pocket. There I
-remained until evening, when I set off for Woking again, and found
-myself in the high-road outside Briarbrae just after sunset.
-
-"Well, I waited until the road was clear--it is never a very frequented
-one at any time, I fancy--and then I clambered over the fence into the
-grounds."
-
-"Surely the gate was open!" ejaculated Phelps.
-
-"Yes, but I have a peculiar taste in these matters. I chose the place
-where the three fir-trees stand, and behind their screen I got over
-without the least chance of any one in the house being able to see me.
-I crouched down among the bushes on the other side, and crawled from one
-to the other--witness the disreputable state of my trouser knees--until
-I had reached the clump of rhododendrons just opposite to your bedroom
-window. There I squatted down and awaited developments.
-
-"The blind was not down in your room, and I could see Miss Harrison
-sitting there reading by the table. It was quarter-past ten when she
-closed her book, fastened the shutters, and retired.
-
-"I heard her shut the door, and felt quite sure that she had turned the
-key in the lock."
-
-"The key!" ejaculated Phelps.
-
-"Yes; I had given Miss Harrison instructions to lock the door on the
-outside and take the key with her when she went to bed. She carried out
-every one of my injunctions to the letter, and certainly without her
-cooperation you would not have that paper in you coat-pocket. She
-departed then and the lights went out, and I was left squatting in the
-rhododendron-bush.
-
-"The night was fine, but still it was a very weary vigil. Of course it
-has the sort of excitement about it that the sportsman feels when he
-lies beside the water-course and waits for the big game. It was very
-long, though--almost as long, Watson, as when you and I waited in that
-deadly room when we looked into the little problem of the Speckled Band.
-There was a church-clock down at Woking which struck the quarters, and I
-thought more than once that it had stopped. At last however about two
-in the morning, I suddenly heard the gentle sound of a bolt being pushed
-back and the creaking of a key. A moment later the servants' door was
-opened, and Mr. Joseph Harrison stepped out into the moonlight."
-
-"Joseph!" ejaculated Phelps.
-
-"He was bare-headed, but he had a black coat thrown over his shoulder so
-that he could conceal his face in an instant if there were any alarm. He
-walked on tiptoe under the shadow of the wall, and when he reached the
-window he worked a long-bladed knife through the sash and pushed back
-the catch. Then he flung open the window, and putting his knife through
-the crack in the shutters, he thrust the bar up and swung them open.
-
-"From where I lay I had a perfect view of the inside of the room and of
-every one of his movements. He lit the two candles which stood upon the
-mantelpiece, and then he proceeded to turn back the corner of the carpet
-in the neighborhood of the door. Presently he stopped and picked out a
-square piece of board, such as is usually left to enable plumbers to get
-at the joints of the gas-pipes. This one covered, as a matter of
-fact, the T joint which gives off the pipe which supplies the kitchen
-underneath. Out of this hiding-place he drew that little cylinder
-of paper, pushed down the board, rearranged the carpet, blew out the
-candles, and walked straight into my arms as I stood waiting for him
-outside the window.
-
-"Well, he has rather more viciousness than I gave him credit for, has
-Master Joseph. He flew at me with his knife, and I had to grasp him
-twice, and got a cut over the knuckles, before I had the upper hand of
-him. He looked murder out of the only eye he could see with when we had
-finished, but he listened to reason and gave up the papers. Having
-got them I let my man go, but I wired full particulars to Forbes this
-morning. If he is quick enough to catch his bird, well and good. But
-if, as I shrewdly suspect, he finds the nest empty before he gets there,
-why, all the better for the government. I fancy that Lord Holdhurst for
-one, and Mr. Percy Phelps for another, would very much rather that the
-affair never got as far as a police-court.
-
-"My God!" gasped our client. "Do you tell me that during these long ten
-weeks of agony the stolen papers were within the very room with me all
-the time?"
-
-"So it was."
-
-"And Joseph! Joseph a villain and a thief!"
-
-"Hum! I am afraid Joseph's character is a rather deeper and more
-dangerous one than one might judge from his appearance. From what I
-have heard from him this morning, I gather that he has lost heavily in
-dabbling with stocks, and that he is ready to do anything on earth to
-better his fortunes. Being an absolutely selfish man, when a chance
-presented itself he did not allow either his sister's happiness or your
-reputation to hold his hand."
-
-Percy Phelps sank back in his chair. "My head whirls," said he. "Your
-words have dazed me."
-
-"The principal difficulty in your case," remarked Holmes, in his
-didactic fashion, "lay in the fact of there being too much evidence.
-What was vital was overlaid and hidden by what was irrelevant. Of all
-the facts which were presented to us we had to pick just those which we
-deemed to be essential, and then piece them together in their order, so
-as to reconstruct this very remarkable chain of events. I had already
-begun to suspect Joseph, from the fact that you had intended to travel
-home with him that night, and that therefore it was a likely enough
-thing that he should call for you, knowing the Foreign Office well, upon
-his way. When I heard that some one had been so anxious to get into the
-bedroom, in which no one but Joseph could have concealed anything--you
-told us in your narrative how you had turned Joseph out when you arrived
-with the doctor--my suspicions all changed to certainties, especially as
-the attempt was made on the first night upon which the nurse was absent,
-showing that the intruder was well acquainted with the ways of the
-house."
-
-"How blind I have been!"
-
-"The facts of the case, as far as I have worked them out, are these:
-this Joseph Harrison entered the office through the Charles Street door,
-and knowing his way he walked straight into your room the instant after
-you left it. Finding no one there he promptly rang the bell, and at
-the instant that he did so his eyes caught the paper upon the table.
-A glance showed him that chance had put in his way a State document of
-immense value, and in an instant he had thrust it into his pocket and
-was gone. A few minutes elapsed, as you remember, before the sleepy
-commissionnaire drew your attention to the bell, and those were just
-enough to give the thief time to make his escape.
-
-"He made his way to Woking by the first train, and having examined his
-booty and assured himself that it really was of immense value, he
-had concealed it in what he thought was a very safe place, with the
-intention of taking it out again in a day or two, and carrying it to the
-French embassy, or wherever he thought that a long price was to be
-had. Then came your sudden return. He, without a moment's warning, was
-bundled out of his room, and from that time onward there were always at
-least two of you there to prevent him from regaining his treasure. The
-situation to him must have been a maddening one. But at last he thought
-he saw his chance. He tried to steal in, but was baffled by your
-wakefulness. You remember that you did not take your usual draught that
-night."
-
-"I remember."
-
-"I fancy that he had taken steps to make that draught efficacious,
-and that he quite relied upon your being unconscious. Of course, I
-understood that he would repeat the attempt whenever it could be done
-with safety. Your leaving the room gave him the chance he wanted. I kept
-Miss Harrison in it all day so that he might not anticipate us. Then,
-having given him the idea that the coast was clear, I kept guard as
-I have described. I already knew that the papers were probably in the
-room, but I had no desire to rip up all the planking and skirting in
-search of them. I let him take them, therefore, from the hiding-place,
-and so saved myself an infinity of trouble. Is there any other point
-which I can make clear?"
-
-"Why did he try the window on the first occasion," I asked, "when he
-might have entered by the door?"
-
-"In reaching the door he would have to pass seven bedrooms. On the other
-hand, he could get out on to the lawn with ease. Anything else?"
-
-"You do not think," asked Phelps, "that he had any murderous intention?
-The knife was only meant as a tool."
-
-"It may be so," answered Holmes, shrugging his shoulders. "I can only
-say for certain that Mr. Joseph Harrison is a gentleman to whose mercy I
-should be extremely unwilling to trust."
-
-
-
-
-Adventure XI. The Final Problem
-
-
-It is with a heavy heart that I take up my pen to write these the last
-words in which I shall ever record the singular gifts by which my friend
-Mr. Sherlock Holmes was distinguished. In an incoherent and, as I deeply
-feel, an entirely inadequate fashion, I have endeavored to give some
-account of my strange experiences in his company from the chance which
-first brought us together at the period of the "Study in Scarlet," up
-to the time of his interference in the matter of the "Naval Treaty"--an
-interference which had the unquestionable effect of preventing a serious
-international complication. It was my intention to have stopped there,
-and to have said nothing of that event which has created a void in my
-life which the lapse of two years has done little to fill. My hand
-has been forced, however, by the recent letters in which Colonel James
-Moriarty defends the memory of his brother, and I have no choice but to
-lay the facts before the public exactly as they occurred. I alone know
-the absolute truth of the matter, and I am satisfied that the time has
-come when no good purpose is to be served by its suppression. As far as
-I know, there have been only three accounts in the public press: that
-in the Journal de Geneve on May 6th, 1891, the Reuter's despatch in the
-English papers on May 7th, and finally the recent letter to which I have
-alluded. Of these the first and second were extremely condensed, while
-the last is, as I shall now show, an absolute perversion of the facts.
-It lies with me to tell for the first time what really took place
-between Professor Moriarty and Mr. Sherlock Holmes.
-
-It may be remembered that after my marriage, and my subsequent start in
-private practice, the very intimate relations which had existed between
-Holmes and myself became to some extent modified. He still came to me
-from time to time when he desired a companion in his investigation, but
-these occasions grew more and more seldom, until I find that in the year
-1890 there were only three cases of which I retain any record. During
-the winter of that year and the early spring of 1891, I saw in the
-papers that he had been engaged by the French government upon a matter
-of supreme importance, and I received two notes from Holmes, dated from
-Narbonne and from Nimes, from which I gathered that his stay in France
-was likely to be a long one. It was with some surprise, therefore, that
-I saw him walk into my consulting-room upon the evening of April 24th.
-It struck me that he was looking even paler and thinner than usual.
-
-"Yes, I have been using myself up rather too freely," he remarked, in
-answer to my look rather than to my words; "I have been a little pressed
-of late. Have you any objection to my closing your shutters?"
-
-The only light in the room came from the lamp upon the table at which I
-had been reading. Holmes edged his way round the wall and flinging the
-shutters together, he bolted them securely.
-
-"You are afraid of something?" I asked.
-
-"Well, I am."
-
-"Of what?"
-
-"Of air-guns."
-
-"My dear Holmes, what do you mean?"
-
-"I think that you know me well enough, Watson, to understand that I am
-by no means a nervous man. At the same time, it is stupidity rather than
-courage to refuse to recognize danger when it is close upon you. Might
-I trouble you for a match?" He drew in the smoke of his cigarette as if
-the soothing influence was grateful to him.
-
-"I must apologize for calling so late," said he, "and I must further beg
-you to be so unconventional as to allow me to leave your house presently
-by scrambling over your back garden wall."
-
-"But what does it all mean?" I asked.
-
-He held out his hand, and I saw in the light of the lamp that two of his
-knuckles were burst and bleeding.
-
-"It is not an airy nothing, you see," said he, smiling. "On the
-contrary, it is solid enough for a man to break his hand over. Is Mrs.
-Watson in?"
-
-"She is away upon a visit."
-
-"Indeed! You are alone?"
-
-"Quite."
-
-"Then it makes it the easier for me to propose that you should come away
-with me for a week to the Continent."
-
-"Where?"
-
-"Oh, anywhere. It's all the same to me."
-
-There was something very strange in all this. It was not Holmes's nature
-to take an aimless holiday, and something about his pale, worn face told
-me that his nerves were at their highest tension. He saw the question in
-my eyes, and, putting his finger-tips together and his elbows upon his
-knees, he explained the situation.
-
-"You have probably never heard of Professor Moriarty?" said he.
-
-"Never."
-
-"Aye, there's the genius and the wonder of the thing!" he cried. "The
-man pervades London, and no one has heard of him. That's what puts
-him on a pinnacle in the records of crime. I tell you, Watson, in all
-seriousness, that if I could beat that man, if I could free society
-of him, I should feel that my own career had reached its summit, and
-I should be prepared to turn to some more placid line in life. Between
-ourselves, the recent cases in which I have been of assistance to the
-royal family of Scandinavia, and to the French republic, have left me in
-such a position that I could continue to live in the quiet fashion
-which is most congenial to me, and to concentrate my attention upon my
-chemical researches. But I could not rest, Watson, I could not sit quiet
-in my chair, if I thought that such a man as Professor Moriarty were
-walking the streets of London unchallenged."
-
-"What has he done, then?"
-
-"His career has been an extraordinary one. He is a man of good birth and
-excellent education, endowed by nature with a phenomenal mathematical
-faculty. At the age of twenty-one he wrote a treatise upon the Binomial
-Theorem, which has had a European vogue. On the strength of it he won
-the Mathematical Chair at one of our smaller universities, and had, to
-all appearances, a most brilliant career before him. But the man had
-hereditary tendencies of the most diabolical kind. A criminal strain
-ran in his blood, which, instead of being modified, was increased and
-rendered infinitely more dangerous by his extraordinary mental powers.
-Dark rumors gathered round him in the university town, and eventually he
-was compelled to resign his chair and to come down to London, where he
-set up as an army coach. So much is known to the world, but what I am
-telling you now is what I have myself discovered.
-
-"As you are aware, Watson, there is no one who knows the higher criminal
-world of London so well as I do. For years past I have continually been
-conscious of some power behind the malefactor, some deep organizing
-power which forever stands in the way of the law, and throws its shield
-over the wrong-doer. Again and again in cases of the most varying
-sorts--forgery cases, robberies, murders--I have felt the presence of
-this force, and I have deduced its action in many of those undiscovered
-crimes in which I have not been personally consulted. For years I have
-endeavored to break through the veil which shrouded it, and at last
-the time came when I seized my thread and followed it, until it led
-me, after a thousand cunning windings, to ex-Professor Moriarty of
-mathematical celebrity.
-
-"He is the Napoleon of crime, Watson. He is the organizer of half that
-is evil and of nearly all that is undetected in this great city. He is a
-genius, a philosopher, an abstract thinker. He has a brain of the first
-order. He sits motionless, like a spider in the center of its web, but
-that web has a thousand radiations, and he knows well every quiver of
-each of them. He does little himself. He only plans. But his agents are
-numerous and splendidly organized. Is there a crime to be done, a
-paper to be abstracted, we will say, a house to be rifled, a man to be
-removed--the word is passed to the Professor, the matter is organized
-and carried out. The agent may be caught. In that case money is found
-for his bail or his defence. But the central power which uses the agent
-is never caught--never so much as suspected. This was the organization
-which I deduced, Watson, and which I devoted my whole energy to exposing
-and breaking up.
-
-"But the Professor was fenced round with safeguards so cunningly devised
-that, do what I would, it seemed impossible to get evidence which would
-convict in a court of law. You know my powers, my dear Watson, and yet
-at the end of three months I was forced to confess that I had at last
-met an antagonist who was my intellectual equal. My horror at his crimes
-was lost in my admiration at his skill. But at last he made a trip--only
-a little, little trip--but it was more than he could afford when I was
-so close upon him. I had my chance, and, starting from that point, I
-have woven my net round him until now it is all ready to close. In three
-days--that is to say, on Monday next--matters will be ripe, and the
-Professor, with all the principal members of his gang, will be in the
-hands of the police. Then will come the greatest criminal trial of the
-century, the clearing up of over forty mysteries, and the rope for all
-of them; but if we move at all prematurely, you understand, they may
-slip out of our hands even at the last moment.
-
-"Now, if I could have done this without the knowledge of Professor
-Moriarty, all would have been well. But he was too wily for that. He saw
-every step which I took to draw my toils round him. Again and again
-he strove to break away, but I as often headed him off. I tell you,
-my friend, that if a detailed account of that silent contest could
-be written, it would take its place as the most brilliant bit of
-thrust-and-parry work in the history of detection. Never have I risen to
-such a height, and never have I been so hard pressed by an opponent. He
-cut deep, and yet I just undercut him. This morning the last steps were
-taken, and three days only were wanted to complete the business. I was
-sitting in my room thinking the matter over, when the door opened and
-Professor Moriarty stood before me.
-
-"My nerves are fairly proof, Watson, but I must confess to a start when
-I saw the very man who had been so much in my thoughts standing there on
-my threshhold. His appearance was quite familiar to me. He is extremely
-tall and thin, his forehead domes out in a white curve, and his two
-eyes are deeply sunken in his head. He is clean-shaven, pale, and
-ascetic-looking, retaining something of the professor in his features.
-His shoulders are rounded from much study, and his face protrudes
-forward, and is forever slowly oscillating from side to side in a
-curiously reptilian fashion. He peered at me with great curiosity in his
-puckered eyes.
-
-"'You have less frontal development than I should have expected,' said
-he, at last. 'It is a dangerous habit to finger loaded firearms in the
-pocket of one's dressing-gown.'
-
-"The fact is that upon his entrance I had instantly recognized the
-extreme personal danger in which I lay. The only conceivable escape for
-him lay in silencing my tongue. In an instant I had slipped the revolver
-from the drawer into my pocket, and was covering him through the cloth.
-At his remark I drew the weapon out and laid it cocked upon the table.
-He still smiled and blinked, but there was something about his eyes
-which made me feel very glad that I had it there.
-
-"'You evidently don't know me,' said he.
-
-"'On the contrary,' I answered, 'I think it is fairly evident that I do.
-Pray take a chair. I can spare you five minutes if you have anything to
-say.'
-
-"'All that I have to say has already crossed your mind,' said he.
-
-"'Then possibly my answer has crossed yours,' I replied.
-
-"'You stand fast?'
-
-"'Absolutely.'
-
-"He clapped his hand into his pocket, and I raised the pistol from
-the table. But he merely drew out a memorandum-book in which he had
-scribbled some dates.
-
-"'You crossed my path on the 4th of January,' said he. 'On the 23d you
-incommoded me; by the middle of February I was seriously inconvenienced
-by you; at the end of March I was absolutely hampered in my plans; and
-now, at the close of April, I find myself placed in such a position
-through your continual persecution that I am in positive danger of
-losing my liberty. The situation is becoming an impossible one.'
-
-"'Have you any suggestion to make?' I asked.
-
-"'You must drop it, Mr. Holmes,' said he, swaying his face about. 'You
-really must, you know.'
-
-"'After Monday,' said I.
-
-"'Tut, tut,' said he. 'I am quite sure that a man of your intelligence
-will see that there can be but one outcome to this affair. It is
-necessary that you should withdraw. You have worked things in such a
-fashion that we have only one resource left. It has been an intellectual
-treat to me to see the way in which you have grappled with this affair,
-and I say, unaffectedly, that it would be a grief to me to be forced
-to take any extreme measure. You smile, sir, but I assure you that it
-really would.'
-
-"'Danger is part of my trade,' I remarked.
-
-"'That is not danger,' said he. 'It is inevitable destruction. You stand
-in the way not merely of an individual, but of a mighty organization,
-the full extent of which you, with all your cleverness, have been unable
-to realize. You must stand clear, Mr. Holmes, or be trodden under foot.'
-
-"'I am afraid,' said I, rising, 'that in the pleasure of this
-conversation I am neglecting business of importance which awaits me
-elsewhere.'
-
-"He rose also and looked at me in silence, shaking his head sadly.
-
-"'Well, well,' said he, at last. 'It seems a pity, but I have done
-what I could. I know every move of your game. You can do nothing before
-Monday. It has been a duel between you and me, Mr. Holmes. You hope to
-place me in the dock. I tell you that I will never stand in the dock.
-You hope to beat me. I tell you that you will never beat me. If you are
-clever enough to bring destruction upon me, rest assured that I shall do
-as much to you.'
-
-"'You have paid me several compliments, Mr. Moriarty,' said I. 'Let me
-pay you one in return when I say that if I were assured of the former
-eventuality I would, in the interests of the public, cheerfully accept
-the latter.'
-
-"'I can promise you the one, but not the other,' he snarled, and so
-turned his rounded back upon me, and went peering and blinking out of
-the room.
-
-"That was my singular interview with Professor Moriarty. I confess that
-it left an unpleasant effect upon my mind. His soft, precise fashion
-of speech leaves a conviction of sincerity which a mere bully could
-not produce. Of course, you will say: 'Why not take police precautions
-against him?' the reason is that I am well convinced that it is from his
-agents the blow will fall. I have the best proofs that it would be so."
-
-"You have already been assaulted?"
-
-"My dear Watson, Professor Moriarty is not a man who lets the grass grow
-under his feet. I went out about mid-day to transact some business in
-Oxford Street. As I passed the corner which leads from Bentinck Street
-on to the Welbeck Street crossing a two-horse van furiously driven
-whizzed round and was on me like a flash. I sprang for the foot-path
-and saved myself by the fraction of a second. The van dashed round by
-Marylebone Lane and was gone in an instant. I kept to the pavement after
-that, Watson, but as I walked down Vere Street a brick came down from
-the roof of one of the houses, and was shattered to fragments at my
-feet. I called the police and had the place examined. There were slates
-and bricks piled up on the roof preparatory to some repairs, and they
-would have me believe that the wind had toppled over one of these. Of
-course I knew better, but I could prove nothing. I took a cab after that
-and reached my brother's rooms in Pall Mall, where I spent the day. Now
-I have come round to you, and on my way I was attacked by a rough with a
-bludgeon. I knocked him down, and the police have him in custody; but
-I can tell you with the most absolute confidence that no possible
-connection will ever be traced between the gentleman upon whose front
-teeth I have barked my knuckles and the retiring mathematical coach, who
-is, I dare say, working out problems upon a black-board ten miles away.
-You will not wonder, Watson, that my first act on entering your rooms
-was to close your shutters, and that I have been compelled to ask your
-permission to leave the house by some less conspicuous exit than the
-front door."
-
-I had often admired my friend's courage, but never more than now, as he
-sat quietly checking off a series of incidents which must have combined
-to make up a day of horror.
-
-"You will spend the night here?" I said.
-
-"No, my friend, you might find me a dangerous guest. I have my plans
-laid, and all will be well. Matters have gone so far now that they can
-move without my help as far as the arrest goes, though my presence is
-necessary for a conviction. It is obvious, therefore, that I cannot do
-better than get away for the few days which remain before the police are
-at liberty to act. It would be a great pleasure to me, therefore, if you
-could come on to the Continent with me."
-
-"The practice is quiet," said I, "and I have an accommodating neighbor.
-I should be glad to come."
-
-"And to start to-morrow morning?"
-
-"If necessary."
-
-"Oh yes, it is most necessary. Then these are your instructions, and I
-beg, my dear Watson, that you will obey them to the letter, for you are
-now playing a double-handed game with me against the cleverest rogue and
-the most powerful syndicate of criminals in Europe. Now listen! You
-will dispatch whatever luggage you intend to take by a trusty messenger
-unaddressed to Victoria to-night. In the morning you will send for a
-hansom, desiring your man to take neither the first nor the second which
-may present itself. Into this hansom you will jump, and you will drive
-to the Strand end of the Lowther Arcade, handing the address to the
-cabman upon a slip of paper, with a request that he will not throw it
-away. Have your fare ready, and the instant that your cab stops,
-dash through the Arcade, timing yourself to reach the other side at a
-quarter-past nine. You will find a small brougham waiting close to the
-curb, driven by a fellow with a heavy black cloak tipped at the collar
-with red. Into this you will step, and you will reach Victoria in time
-for the Continental express."
-
-"Where shall I meet you?"
-
-"At the station. The second first-class carriage from the front will be
-reserved for us."
-
-"The carriage is our rendezvous, then?"
-
-"Yes."
-
-It was in vain that I asked Holmes to remain for the evening. It was
-evident to me that he thought he might bring trouble to the roof he was
-under, and that that was the motive which impelled him to go. With a few
-hurried words as to our plans for the morrow he rose and came out with
-me into the garden, clambering over the wall which leads into Mortimer
-Street, and immediately whistling for a hansom, in which I heard him
-drive away.
-
-In the morning I obeyed Holmes's injunctions to the letter. A hansom was
-procured with such precaution as would prevent its being one which was
-placed ready for us, and I drove immediately after breakfast to the
-Lowther Arcade, through which I hurried at the top of my speed. A
-brougham was waiting with a very massive driver wrapped in a dark cloak,
-who, the instant that I had stepped in, whipped up the horse and rattled
-off to Victoria Station. On my alighting there he turned the carriage,
-and dashed away again without so much as a look in my direction.
-
-So far all had gone admirably. My luggage was waiting for me, and I had
-no difficulty in finding the carriage which Holmes had indicated, the
-less so as it was the only one in the train which was marked "Engaged."
-My only source of anxiety now was the non-appearance of Holmes. The
-station clock marked only seven minutes from the time when we were
-due to start. In vain I searched among the groups of travellers and
-leave-takers for the lithe figure of my friend. There was no sign of
-him. I spent a few minutes in assisting a venerable Italian priest, who
-was endeavoring to make a porter understand, in his broken English,
-that his luggage was to be booked through to Paris. Then, having taken
-another look round, I returned to my carriage, where I found that the
-porter, in spite of the ticket, had given me my decrepit Italian friend
-as a traveling companion. It was useless for me to explain to him that
-his presence was an intrusion, for my Italian was even more limited than
-his English, so I shrugged my shoulders resignedly, and continued to
-look out anxiously for my friend. A chill of fear had come over me, as I
-thought that his absence might mean that some blow had fallen during the
-night. Already the doors had all been shut and the whistle blown, when--
-
-"My dear Watson," said a voice, "you have not even condescended to say
-good-morning."
-
-I turned in uncontrollable astonishment. The aged ecclesiastic had
-turned his face towards me. For an instant the wrinkles were smoothed
-away, the nose drew away from the chin, the lower lip ceased to protrude
-and the mouth to mumble, the dull eyes regained their fire, the drooping
-figure expanded. The next the whole frame collapsed again, and Holmes
-had gone as quickly as he had come.
-
-"Good heavens!" I cried; "how you startled me!"
-
-"Every precaution is still necessary," he whispered. "I have reason to
-think that they are hot upon our trail. Ah, there is Moriarty himself."
-
-The train had already begun to move as Holmes spoke. Glancing back, I
-saw a tall man pushing his way furiously through the crowd, and waving
-his hand as if he desired to have the train stopped. It was too late,
-however, for we were rapidly gathering momentum, and an instant later
-had shot clear of the station.
-
-"With all our precautions, you see that we have cut it rather fine,"
-said Holmes, laughing. He rose, and throwing off the black cassock and
-hat which had formed his disguise, he packed them away in a hand-bag.
-
-"Have you seen the morning paper, Watson?"
-
-"No."
-
-"You haven't' seen about Baker Street, then?"
-
-"Baker Street?"
-
-"They set fire to our rooms last night. No great harm was done."
-
-"Good heavens, Holmes! this is intolerable."
-
-"They must have lost my track completely after their bludgeon-man was
-arrested. Otherwise they could not have imagined that I had returned
-to my rooms. They have evidently taken the precaution of watching you,
-however, and that is what has brought Moriarty to Victoria. You could
-not have made any slip in coming?"
-
-"I did exactly what you advised."
-
-"Did you find your brougham?"
-
-"Yes, it was waiting."
-
-"Did you recognize your coachman?"
-
-"No."
-
-"It was my brother Mycroft. It is an advantage to get about in such a
-case without taking a mercenary into your confidence. But we must plan
-what we are to do about Moriarty now."
-
-"As this is an express, and as the boat runs in connection with it, I
-should think we have shaken him off very effectively."
-
-"My dear Watson, you evidently did not realize my meaning when I said
-that this man may be taken as being quite on the same intellectual plane
-as myself. You do not imagine that if I were the pursuer I should allow
-myself to be baffled by so slight an obstacle. Why, then, should you
-think so meanly of him?"
-
-"What will he do?"
-
-"What I should do?"
-
-"What would you do, then?"
-
-"Engage a special."
-
-"But it must be late."
-
-"By no means. This train stops at Canterbury; and there is always at
-least a quarter of an hour's delay at the boat. He will catch us there."
-
-"One would think that we were the criminals. Let us have him arrested on
-his arrival."
-
-"It would be to ruin the work of three months. We should get the big
-fish, but the smaller would dart right and left out of the net. On
-Monday we should have them all. No, an arrest is inadmissible."
-
-"What then?"
-
-"We shall get out at Canterbury."
-
-"And then?"
-
-"Well, then we must make a cross-country journey to Newhaven, and so
-over to Dieppe. Moriarty will again do what I should do. He will get on
-to Paris, mark down our luggage, and wait for two days at the depot.
-In the meantime we shall treat ourselves to a couple of carpet-bags,
-encourage the manufactures of the countries through which we travel, and
-make our way at our leisure into Switzerland, via Luxembourg and Basle."
-
-At Canterbury, therefore, we alighted, only to find that we should have
-to wait an hour before we could get a train to Newhaven.
-
-I was still looking rather ruefully after the rapidly disappearing
-luggage-van which contained my wardrobe, when Holmes pulled my sleeve
-and pointed up the line.
-
-"Already, you see," said he.
-
-Far away, from among the Kentish woods there rose a thin spray of smoke.
-A minute later a carriage and engine could be seen flying along the open
-curve which leads to the station. We had hardly time to take our place
-behind a pile of luggage when it passed with a rattle and a roar,
-beating a blast of hot air into our faces.
-
-"There he goes," said Holmes, as we watched the carriage swing and
-rock over the points. "There are limits, you see, to our friend's
-intelligence. It would have been a coup-de-maitre had he deduced what I
-would deduce and acted accordingly."
-
-"And what would he have done had he overtaken us?"
-
-"There cannot be the least doubt that he would have made a murderous
-attack upon me. It is, however, a game at which two may play. The
-question now is whether we should take a premature lunch here, or run
-our chance of starving before we reach the buffet at Newhaven."
-
-
-We made our way to Brussels that night and spent two days there, moving
-on upon the third day as far as Strasburg. On the Monday morning Holmes
-had telegraphed to the London police, and in the evening we found a
-reply waiting for us at our hotel. Holmes tore it open, and then with a
-bitter curse hurled it into the grate.
-
-"I might have known it!" he groaned. "He has escaped!"
-
-"Moriarty?"
-
-"They have secured the whole gang with the exception of him. He has
-given them the slip. Of course, when I had left the country there was no
-one to cope with him. But I did think that I had put the game in their
-hands. I think that you had better return to England, Watson."
-
-"Why?"
-
-"Because you will find me a dangerous companion now. This man's
-occupation is gone. He is lost if he returns to London. If I read his
-character right he will devote his whole energies to revenging himself
-upon me. He said as much in our short interview, and I fancy that he
-meant it. I should certainly recommend you to return to your practice."
-
-It was hardly an appeal to be successful with one who was an
-old campaigner as well as an old friend. We sat in the Strasburg
-salle-à-manger arguing the question for half an hour, but the same night
-we had resumed our journey and were well on our way to Geneva.
-
-For a charming week we wandered up the Valley of the Rhone, and then,
-branching off at Leuk, we made our way over the Gemmi Pass, still deep
-in snow, and so, by way of Interlaken, to Meiringen. It was a lovely
-trip, the dainty green of the spring below, the virgin white of the
-winter above; but it was clear to me that never for one instant did
-Holmes forget the shadow which lay across him. In the homely Alpine
-villages or in the lonely mountain passes, I could tell by his quick
-glancing eyes and his sharp scrutiny of every face that passed us,
-that he was well convinced that, walk where we would, we could not walk
-ourselves clear of the danger which was dogging our footsteps.
-
-Once, I remember, as we passed over the Gemmi, and walked along
-the border of the melancholy Daubensee, a large rock which had been
-dislodged from the ridge upon our right clattered down and roared into
-the lake behind us. In an instant Holmes had raced up on to the ridge,
-and, standing upon a lofty pinnacle, craned his neck in every direction.
-It was in vain that our guide assured him that a fall of stones was a
-common chance in the spring-time at that spot. He said nothing, but
-he smiled at me with the air of a man who sees the fulfillment of that
-which he had expected.
-
-And yet for all his watchfulness he was never depressed. On the
-contrary, I can never recollect having seen him in such exuberant
-spirits. Again and again he recurred to the fact that if he could
-be assured that society was freed from Professor Moriarty he would
-cheerfully bring his own career to a conclusion.
-
-"I think that I may go so far as to say, Watson, that I have not lived
-wholly in vain," he remarked. "If my record were closed to-night I could
-still survey it with equanimity. The air of London is the sweeter for my
-presence. In over a thousand cases I am not aware that I have ever used
-my powers upon the wrong side. Of late I have been tempted to look into
-the problems furnished by nature rather than those more superficial ones
-for which our artificial state of society is responsible. Your memoirs
-will draw to an end, Watson, upon the day that I crown my career by
-the capture or extinction of the most dangerous and capable criminal in
-Europe."
-
-I shall be brief, and yet exact, in the little which remains for me to
-tell. It is not a subject on which I would willingly dwell, and yet I am
-conscious that a duty devolves upon me to omit no detail.
-
-It was on the 3d of May that we reached the little village of Meiringen,
-where we put up at the Englischer Hof, then kept by Peter Steiler the
-elder. Our landlord was an intelligent man, and spoke excellent English,
-having served for three years as waiter at the Grosvenor Hotel in
-London. At his advice, on the afternoon of the 4th we set off together,
-with the intention of crossing the hills and spending the night at the
-hamlet of Rosenlaui. We had strict injunctions, however, on no account
-to pass the falls of Reichenbach, which are about half-way up the hill,
-without making a small detour to see them.
-
-It is indeed, a fearful place. The torrent, swollen by the melting snow,
-plunges into a tremendous abyss, from which the spray rolls up like the
-smoke from a burning house. The shaft into which the river hurls itself
-is an immense chasm, lined by glistening coal-black rock, and narrowing
-into a creaming, boiling pit of incalculable depth, which brims over and
-shoots the stream onward over its jagged lip. The long sweep of green
-water roaring forever down, and the thick flickering curtain of spray
-hissing forever upward, turn a man giddy with their constant whirl and
-clamor. We stood near the edge peering down at the gleam of the breaking
-water far below us against the black rocks, and listening to the
-half-human shout which came booming up with the spray out of the abyss.
-
-The path has been cut half-way round the fall to afford a complete view,
-but it ends abruptly, and the traveler has to return as he came. We had
-turned to do so, when we saw a Swiss lad come running along it with
-a letter in his hand. It bore the mark of the hotel which we had just
-left, and was addressed to me by the landlord. It appeared that within a
-very few minutes of our leaving, an English lady had arrived who was in
-the last stage of consumption. She had wintered at Davos Platz, and was
-journeying now to join her friends at Lucerne, when a sudden hemorrhage
-had overtaken her. It was thought that she could hardly live a few
-hours, but it would be a great consolation to her to see an English
-doctor, and, if I would only return, etc. The good Steiler assured me
-in a postscript that he would himself look upon my compliance as a very
-great favor, since the lady absolutely refused to see a Swiss physician,
-and he could not but feel that he was incurring a great responsibility.
-
-The appeal was one which could not be ignored. It was impossible to
-refuse the request of a fellow-countrywoman dying in a strange land. Yet
-I had my scruples about leaving Holmes. It was finally agreed, however,
-that he should retain the young Swiss messenger with him as guide and
-companion while I returned to Meiringen. My friend would stay some
-little time at the fall, he said, and would then walk slowly over the
-hill to Rosenlaui, where I was to rejoin him in the evening. As I turned
-away I saw Holmes, with his back against a rock and his arms folded,
-gazing down at the rush of the waters. It was the last that I was ever
-destined to see of him in this world.
-
-When I was near the bottom of the descent I looked back. It was
-impossible, from that position, to see the fall, but I could see the
-curving path which winds over the shoulder of the hill and leads to it.
-Along this a man was, I remember, walking very rapidly.
-
-I could see his black figure clearly outlined against the green behind
-him. I noted him, and the energy with which he walked but he passed from
-my mind again as I hurried on upon my errand.
-
-It may have been a little over an hour before I reached Meiringen. Old
-Steiler was standing at the porch of his hotel.
-
-"Well," said I, as I came hurrying up, "I trust that she is no worse?"
-
-A look of surprise passed over his face, and at the first quiver of his
-eyebrows my heart turned to lead in my breast.
-
-"You did not write this?" I said, pulling the letter from my pocket.
-"There is no sick Englishwoman in the hotel?"
-
-"Certainly not!" he cried. "But it has the hotel mark upon it! Ha, it
-must have been written by that tall Englishman who came in after you had
-gone. He said--"
-
-But I waited for none of the landlord's explanations. In a tingle of
-fear I was already running down the village street, and making for the
-path which I had so lately descended. It had taken me an hour to come
-down. For all my efforts two more had passed before I found myself at
-the fall of Reichenbach once more. There was Holmes's Alpine-stock still
-leaning against the rock by which I had left him. But there was no sign
-of him, and it was in vain that I shouted. My only answer was my own
-voice reverberating in a rolling echo from the cliffs around me.
-
-It was the sight of that Alpine-stock which turned me cold and sick.
-He had not gone to Rosenlaui, then. He had remained on that three-foot
-path, with sheer wall on one side and sheer drop on the other, until his
-enemy had overtaken him. The young Swiss had gone too. He had probably
-been in the pay of Moriarty, and had left the two men together. And then
-what had happened? Who was to tell us what had happened then?
-
-I stood for a minute or two to collect myself, for I was dazed with the
-horror of the thing. Then I began to think of Holmes's own methods and
-to try to practise them in reading this tragedy. It was, alas, only too
-easy to do. During our conversation we had not gone to the end of the
-path, and the Alpine-stock marked the place where we had stood. The
-blackish soil is kept forever soft by the incessant drift of spray,
-and a bird would leave its tread upon it. Two lines of footmarks were
-clearly marked along the farther end of the path, both leading away from
-me. There were none returning. A few yards from the end the soil was
-all ploughed up into a patch of mud, and the branches and ferns which
-fringed the chasm were torn and bedraggled. I lay upon my face and
-peered over with the spray spouting up all around me. It had darkened
-since I left, and now I could only see here and there the glistening of
-moisture upon the black walls, and far away down at the end of the shaft
-the gleam of the broken water. I shouted; but only the same half-human
-cry of the fall was borne back to my ears.
-
-But it was destined that I should after all have a last word of greeting
-from my friend and comrade. I have said that his Alpine-stock had been
-left leaning against a rock which jutted on to the path. From the top of
-this bowlder the gleam of something bright caught my eye, and, raising
-my hand, I found that it came from the silver cigarette-case which he
-used to carry. As I took it up a small square of paper upon which it
-had lain fluttered down on to the ground. Unfolding it, I found that it
-consisted of three pages torn from his note-book and addressed to me. It
-was characteristic of the man that the direction was a precise, and the
-writing as firm and clear, as though it had been written in his study.
-
-My dear Watson [it said], I write these few lines through the courtesy
-of Mr. Moriarty, who awaits my convenience for the final discussion of
-those questions which lie between us. He has been giving me a sketch
-of the methods by which he avoided the English police and kept himself
-informed of our movements. They certainly confirm the very high opinion
-which I had formed of his abilities. I am pleased to think that I shall
-be able to free society from any further effects of his presence, though
-I fear that it is at a cost which will give pain to my friends, and
-especially, my dear Watson, to you. I have already explained to you,
-however, that my career had in any case reached its crisis, and that
-no possible conclusion to it could be more congenial to me than this.
-Indeed, if I may make a full confession to you, I was quite convinced
-that the letter from Meiringen was a hoax, and I allowed you to depart
-on that errand under the persuasion that some development of this sort
-would follow. Tell Inspector Patterson that the papers which he needs
-to convict the gang are in pigeonhole M., done up in a blue envelope
-and inscribed "Moriarty." I made every disposition of my property before
-leaving England, and handed it to my brother Mycroft. Pray give my
-greetings to Mrs. Watson, and believe me to be, my dear fellow,
-
-Very sincerely yours,
-
-Sherlock Holmes
-
-
-A few words may suffice to tell the little that remains. An examination
-by experts leaves little doubt that a personal contest between the two
-men ended, as it could hardly fail to end in such a situation, in their
-reeling over, locked in each other's arms. Any attempt at recovering the
-bodies was absolutely hopeless, and there, deep down in that dreadful
-caldron of swirling water and seething foam, will lie for all time the
-most dangerous criminal and the foremost champion of the law of their
-generation. The Swiss youth was never found again, and there can be no
-doubt that he was one of the numerous agents whom Moriarty kept in this
-employ. As to the gang, it will be within the memory of the public
-how completely the evidence which Holmes had accumulated exposed their
-organization, and how heavily the hand of the dead man weighed
-upon them. Of their terrible chief few details came out during the
-proceedings, and if I have now been compelled to make a clear statement
-of his career it is due to those injudicious champions who have
-endeavored to clear his memory by attacks upon him whom I shall ever
-regard as the best and the wisest man whom I have ever known.
-
-
-
-
-
-End of the Project Gutenberg EBook of Memoirs of Sherlock Holmes, by
-Sir Arthur Conan Doyle
-
-*** END OF THIS PROJECT GUTENBERG EBOOK MEMOIRS OF SHERLOCK HOLMES ***
-
-***** This file should be named 834-8.txt or 834-8.zip *****
-This and all associated files of various formats will be found in:
- http://www.gutenberg.org/8/3/834/
-
-Produced by Angela M. Cable
-
-Updated editions will replace the previous one--the old editions
-will be renamed.
-
-Creating the works from public domain print editions means that no
-one owns a United States copyright in these works, so the Foundation
-(and you!) can copy and distribute it in the United States without
-permission and without paying copyright royalties. Special rules,
-set forth in the General Terms of Use part of this license, apply to
-copying and distributing Project Gutenberg-tm electronic works to
-protect the PROJECT GUTENBERG-tm concept and trademark. Project
-Gutenberg is a registered trademark, and may not be used if you
-charge for the eBooks, unless you receive specific permission. If you
-do not charge anything for copies of this eBook, complying with the
-rules is very easy. You may use this eBook for nearly any purpose
-such as creation of derivative works, reports, performances and
-research. They may be modified and printed and given away--you may do
-practically ANYTHING with public domain eBooks. Redistribution is
-subject to the trademark license, especially commercial
-redistribution.
-
-
-
-*** START: FULL LICENSE ***
-
-THE FULL PROJECT GUTENBERG LICENSE
-PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
-
-To protect the Project Gutenberg-tm mission of promoting the free
-distribution of electronic works, by using or distributing this work
-(or any other work associated in any way with the phrase "Project
-Gutenberg"), you agree to comply with all the terms of the Full Project
-Gutenberg-tm License (available with this file or online at
-http://gutenberg.org/license).
-
-
-Section 1. General Terms of Use and Redistributing Project Gutenberg-tm
-electronic works
-
-1.A. By reading or using any part of this Project Gutenberg-tm
-electronic work, you indicate that you have read, understand, agree to
-and accept all the terms of this license and intellectual property
-(trademark/copyright) agreement. If you do not agree to abide by all
-the terms of this agreement, you must cease using and return or destroy
-all copies of Project Gutenberg-tm electronic works in your possession.
-If you paid a fee for obtaining a copy of or access to a Project
-Gutenberg-tm electronic work and you do not agree to be bound by the
-terms of this agreement, you may obtain a refund from the person or
-entity to whom you paid the fee as set forth in paragraph 1.E.8.
-
-1.B. "Project Gutenberg" is a registered trademark. It may only be
-used on or associated in any way with an electronic work by people who
-agree to be bound by the terms of this agreement. There are a few
-things that you can do with most Project Gutenberg-tm electronic works
-even without complying with the full terms of this agreement. See
-paragraph 1.C below. There are a lot of things you can do with Project
-Gutenberg-tm electronic works if you follow the terms of this agreement
-and help preserve free future access to Project Gutenberg-tm electronic
-works. See paragraph 1.E below.
-
-1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation"
-or PGLAF), owns a compilation copyright in the collection of Project
-Gutenberg-tm electronic works. Nearly all the individual works in the
-collection are in the public domain in the United States. If an
-individual work is in the public domain in the United States and you are
-located in the United States, we do not claim a right to prevent you from
-copying, distributing, performing, displaying or creating derivative
-works based on the work as long as all references to Project Gutenberg
-are removed. Of course, we hope that you will support the Project
-Gutenberg-tm mission of promoting free access to electronic works by
-freely sharing Project Gutenberg-tm works in compliance with the terms of
-this agreement for keeping the Project Gutenberg-tm name associated with
-the work. You can easily comply with the terms of this agreement by
-keeping this work in the same format with its attached full Project
-Gutenberg-tm License when you share it without charge with others.
-
-1.D. The copyright laws of the place where you are located also govern
-what you can do with this work. Copyright laws in most countries are in
-a constant state of change. If you are outside the United States, check
-the laws of your country in addition to the terms of this agreement
-before downloading, copying, displaying, performing, distributing or
-creating derivative works based on this work or any other Project
-Gutenberg-tm work. The Foundation makes no representations concerning
-the copyright status of any work in any country outside the United
-States.
-
-1.E. Unless you have removed all references to Project Gutenberg:
-
-1.E.1. The following sentence, with active links to, or other immediate
-access to, the full Project Gutenberg-tm License must appear prominently
-whenever any copy of a Project Gutenberg-tm work (any work on which the
-phrase "Project Gutenberg" appears, or with which the phrase "Project
-Gutenberg" is associated) is accessed, displayed, performed, viewed,
-copied or distributed:
-
-This eBook is for the use of anyone anywhere at no cost and with
-almost no restrictions whatsoever. You may copy it, give it away or
-re-use it under the terms of the Project Gutenberg License included
-with this eBook or online at www.gutenberg.org
-
-1.E.2. If an individual Project Gutenberg-tm electronic work is derived
-from the public domain (does not contain a notice indicating that it is
-posted with permission of the copyright holder), the work can be copied
-and distributed to anyone in the United States without paying any fees
-or charges. If you are redistributing or providing access to a work
-with the phrase "Project Gutenberg" associated with or appearing on the
-work, you must comply either with the requirements of paragraphs 1.E.1
-through 1.E.7 or obtain permission for the use of the work and the
-Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or
-1.E.9.
-
-1.E.3. If an individual Project Gutenberg-tm electronic work is posted
-with the permission of the copyright holder, your use and distribution
-must comply with both paragraphs 1.E.1 through 1.E.7 and any additional
-terms imposed by the copyright holder. Additional terms will be linked
-to the Project Gutenberg-tm License for all works posted with the
-permission of the copyright holder found at the beginning of this work.
-
-1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm
-License terms from this work, or any files containing a part of this
-work or any other work associated with Project Gutenberg-tm.
-
-1.E.5. Do not copy, display, perform, distribute or redistribute this
-electronic work, or any part of this electronic work, without
-prominently displaying the sentence set forth in paragraph 1.E.1 with
-active links or immediate access to the full terms of the Project
-Gutenberg-tm License.
-
-1.E.6. You may convert to and distribute this work in any binary,
-compressed, marked up, nonproprietary or proprietary form, including any
-word processing or hypertext form. However, if you provide access to or
-distribute copies of a Project Gutenberg-tm work in a format other than
-"Plain Vanilla ASCII" or other format used in the official version
-posted on the official Project Gutenberg-tm web site (www.gutenberg.org),
-you must, at no additional cost, fee or expense to the user, provide a
-copy, a means of exporting a copy, or a means of obtaining a copy upon
-request, of the work in its original "Plain Vanilla ASCII" or other
-form. Any alternate format must include the full Project Gutenberg-tm
-License as specified in paragraph 1.E.1.
-
-1.E.7. Do not charge a fee for access to, viewing, displaying,
-performing, copying or distributing any Project Gutenberg-tm works
-unless you comply with paragraph 1.E.8 or 1.E.9.
-
-1.E.8. You may charge a reasonable fee for copies of or providing
-access to or distributing Project Gutenberg-tm electronic works provided
-that
-
-- You pay a royalty fee of 20% of the gross profits you derive from
- the use of Project Gutenberg-tm works calculated using the method
- you already use to calculate your applicable taxes. The fee is
- owed to the owner of the Project Gutenberg-tm trademark, but he
- has agreed to donate royalties under this paragraph to the
- Project Gutenberg Literary Archive Foundation. Royalty payments
- must be paid within 60 days following each date on which you
- prepare (or are legally required to prepare) your periodic tax
- returns. Royalty payments should be clearly marked as such and
- sent to the Project Gutenberg Literary Archive Foundation at the
- address specified in Section 4, "Information about donations to
- the Project Gutenberg Literary Archive Foundation."
-
-- You provide a full refund of any money paid by a user who notifies
- you in writing (or by e-mail) within 30 days of receipt that s/he
- does not agree to the terms of the full Project Gutenberg-tm
- License. You must require such a user to return or
- destroy all copies of the works possessed in a physical medium
- and discontinue all use of and all access to other copies of
- Project Gutenberg-tm works.
-
-- You provide, in accordance with paragraph 1.F.3, a full refund of any
- money paid for a work or a replacement copy, if a defect in the
- electronic work is discovered and reported to you within 90 days
- of receipt of the work.
-
-- You comply with all other terms of this agreement for free
- distribution of Project Gutenberg-tm works.
-
-1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm
-electronic work or group of works on different terms than are set
-forth in this agreement, you must obtain permission in writing from
-both the Project Gutenberg Literary Archive Foundation and Michael
-Hart, the owner of the Project Gutenberg-tm trademark. Contact the
-Foundation as set forth in Section 3 below.
-
-1.F.
-
-1.F.1. Project Gutenberg volunteers and employees expend considerable
-effort to identify, do copyright research on, transcribe and proofread
-public domain works in creating the Project Gutenberg-tm
-collection. Despite these efforts, Project Gutenberg-tm electronic
-works, and the medium on which they may be stored, may contain
-"Defects," such as, but not limited to, incomplete, inaccurate or
-corrupt data, transcription errors, a copyright or other intellectual
-property infringement, a defective or damaged disk or other medium, a
-computer virus, or computer codes that damage or cannot be read by
-your equipment.
-
-1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right
-of Replacement or Refund" described in paragraph 1.F.3, the Project
-Gutenberg Literary Archive Foundation, the owner of the Project
-Gutenberg-tm trademark, and any other party distributing a Project
-Gutenberg-tm electronic work under this agreement, disclaim all
-liability to you for damages, costs and expenses, including legal
-fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
-LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE
-PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE
-TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE
-LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR
-INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH
-DAMAGE.
-
-1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a
-defect in this electronic work within 90 days of receiving it, you can
-receive a refund of the money (if any) you paid for it by sending a
-written explanation to the person you received the work from. If you
-received the work on a physical medium, you must return the medium with
-your written explanation. The person or entity that provided you with
-the defective work may elect to provide a replacement copy in lieu of a
-refund. If you received the work electronically, the person or entity
-providing it to you may choose to give you a second opportunity to
-receive the work electronically in lieu of a refund. If the second copy
-is also defective, you may demand a refund in writing without further
-opportunities to fix the problem.
-
-1.F.4. Except for the limited right of replacement or refund set forth
-in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER
-WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
-WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.
-
-1.F.5. Some states do not allow disclaimers of certain implied
-warranties or the exclusion or limitation of certain types of damages.
-If any disclaimer or limitation set forth in this agreement violates the
-law of the state applicable to this agreement, the agreement shall be
-interpreted to make the maximum disclaimer or limitation permitted by
-the applicable state law. The invalidity or unenforceability of any
-provision of this agreement shall not void the remaining provisions.
-
-1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the
-trademark owner, any agent or employee of the Foundation, anyone
-providing copies of Project Gutenberg-tm electronic works in accordance
-with this agreement, and any volunteers associated with the production,
-promotion and distribution of Project Gutenberg-tm electronic works,
-harmless from all liability, costs and expenses, including legal fees,
-that arise directly or indirectly from any of the following which you do
-or cause to occur: (a) distribution of this or any Project Gutenberg-tm
-work, (b) alteration, modification, or additions or deletions to any
-Project Gutenberg-tm work, and (c) any Defect you cause.
-
-
-Section 2. Information about the Mission of Project Gutenberg-tm
-
-Project Gutenberg-tm is synonymous with the free distribution of
-electronic works in formats readable by the widest variety of computers
-including obsolete, old, middle-aged and new computers. It exists
-because of the efforts of hundreds of volunteers and donations from
-people in all walks of life.
-
-Volunteers and financial support to provide volunteers with the
-assistance they need, is critical to reaching Project Gutenberg-tm's
-goals and ensuring that the Project Gutenberg-tm collection will
-remain freely available for generations to come. In 2001, the Project
-Gutenberg Literary Archive Foundation was created to provide a secure
-and permanent future for Project Gutenberg-tm and future generations.
-To learn more about the Project Gutenberg Literary Archive Foundation
-and how your efforts and donations can help, see Sections 3 and 4
-and the Foundation web page at http://www.pglaf.org.
-
-
-Section 3. Information about the Project Gutenberg Literary Archive
-Foundation
-
-The Project Gutenberg Literary Archive Foundation is a non profit
-501(c)(3) educational corporation organized under the laws of the
-state of Mississippi and granted tax exempt status by the Internal
-Revenue Service. The Foundation's EIN or federal tax identification
-number is 64-6221541. Its 501(c)(3) letter is posted at
-http://pglaf.org/fundraising. Contributions to the Project Gutenberg
-Literary Archive Foundation are tax deductible to the full extent
-permitted by U.S. federal laws and your state's laws.
-
-The Foundation's principal office is located at 4557 Melan Dr. S.
-Fairbanks, AK, 99712., but its volunteers and employees are scattered
-throughout numerous locations. Its business office is located at
-809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email
-business@pglaf.org. Email contact links and up to date contact
-information can be found at the Foundation's web site and official
-page at http://pglaf.org
-
-For additional contact information:
- Dr. Gregory B. Newby
- Chief Executive and Director
- gbnewby@pglaf.org
-
-
-Section 4. Information about Donations to the Project Gutenberg
-Literary Archive Foundation
-
-Project Gutenberg-tm depends upon and cannot survive without wide
-spread public support and donations to carry out its mission of
-increasing the number of public domain and licensed works that can be
-freely distributed in machine readable form accessible by the widest
-array of equipment including outdated equipment. Many small donations
-($1 to $5,000) are particularly important to maintaining tax exempt
-status with the IRS.
-
-The Foundation is committed to complying with the laws regulating
-charities and charitable donations in all 50 states of the United
-States. Compliance requirements are not uniform and it takes a
-considerable effort, much paperwork and many fees to meet and keep up
-with these requirements. We do not solicit donations in locations
-where we have not received written confirmation of compliance. To
-SEND DONATIONS or determine the status of compliance for any
-particular state visit http://pglaf.org
-
-While we cannot and do not solicit contributions from states where we
-have not met the solicitation requirements, we know of no prohibition
-against accepting unsolicited donations from donors in such states who
-approach us with offers to donate.
-
-International donations are gratefully accepted, but we cannot make
-any statements concerning tax treatment of donations received from
-outside the United States. U.S. laws alone swamp our small staff.
-
-Please check the Project Gutenberg Web pages for current donation
-methods and addresses. Donations are accepted in a number of other
-ways including checks, online payments and credit card donations.
-To donate, please visit: http://pglaf.org/donate
-
-
-Section 5. General Information About Project Gutenberg-tm electronic
-works.
-
-Professor Michael S. Hart is the originator of the Project Gutenberg-tm
-concept of a library of electronic works that could be freely shared
-with anyone. For thirty years, he produced and distributed Project
-Gutenberg-tm eBooks with only a loose network of volunteer support.
-
-
-Project Gutenberg-tm eBooks are often created from several printed
-editions, all of which are confirmed as Public Domain in the U.S.
-unless a copyright notice is included. Thus, we do not necessarily
-keep eBooks in compliance with any particular paper edition.
-
-
-Most people start at our Web site which has the main PG search facility:
-
- http://www.gutenberg.org
-
-This Web site includes information about Project Gutenberg-tm,
-including how to make donations to the Project Gutenberg Literary
-Archive Foundation, how to help produce our new eBooks, and how to
-subscribe to our email newsletter to hear about new eBooks.
+This eBook is for the use of anyone anywhere at no cost and with
+almost no restrictions whatsoever. You may copy it, give it away or
+re-use it under the terms of the Project Gutenberg License included
+with this eBook or online at www.gutenberg.org
+
+
+Title: Memoirs of Sherlock Holmes
+
+Author: Sir Arthur Conan Doyle
+
+Posting Date: July 31, 2008 [EBook #834]
+Release Date: March, 1997
+[This file last updated on August 16, 2010]
+
+Language: English
+
+
+*** START OF THIS PROJECT GUTENBERG EBOOK MEMOIRS OF SHERLOCK HOLMES ***
+
+
+
+
+Produced by Angela M. Cable
+
+
+
+
+
+MEMOIRS OF SHERLOCK HOLMES
+
+by Sir Arthur Conan Doyle
+
+
+
+
+Adventure I. Silver Blaze
+
+
+"I am afraid, Watson, that I shall have to go," said Holmes, as we sat
+down together to our breakfast one morning.
+
+"Go! Where to?"
+
+"To Dartmoor; to King's Pyland."
+
+I was not surprised. Indeed, my only wonder was that he had not already
+been mixed up in this extraordinary case, which was the one topic of
+conversation through the length and breadth of England. For a whole day
+my companion had rambled about the room with his chin upon his chest and
+his brows knitted, charging and recharging his pipe with the strongest
+black tobacco, and absolutely deaf to any of my questions or remarks.
+Fresh editions of every paper had been sent up by our news agent, only
+to be glanced over and tossed down into a corner. Yet, silent as he was,
+I knew perfectly well what it was over which he was brooding. There was
+but one problem before the public which could challenge his powers of
+analysis, and that was the singular disappearance of the favorite for
+the Wessex Cup, and the tragic murder of its trainer. When, therefore,
+he suddenly announced his intention of setting out for the scene of the
+drama it was only what I had both expected and hoped for.
+
+"I should be most happy to go down with you if I should not be in the
+way," said I.
+
+"My dear Watson, you would confer a great favor upon me by coming. And
+I think that your time will not be misspent, for there are points about
+the case which promise to make it an absolutely unique one. We have, I
+think, just time to catch our train at Paddington, and I will go further
+into the matter upon our journey. You would oblige me by bringing with
+you your very excellent field-glass."
+
+And so it happened that an hour or so later I found myself in the
+corner of a first-class carriage flying along en route for Exeter, while
+Sherlock Holmes, with his sharp, eager face framed in his ear-flapped
+travelling-cap, dipped rapidly into the bundle of fresh papers which he
+had procured at Paddington. We had left Reading far behind us before
+he thrust the last one of them under the seat, and offered me his
+cigar-case.
+
+"We are going well," said he, looking out the window and glancing at his
+watch. "Our rate at present is fifty-three and a half miles an hour."
+
+"I have not observed the quarter-mile posts," said I.
+
+"Nor have I. But the telegraph posts upon this line are sixty yards
+apart, and the calculation is a simple one. I presume that you
+have looked into this matter of the murder of John Straker and the
+disappearance of Silver Blaze?"
+
+"I have seen what the Telegraph and the Chronicle have to say."
+
+"It is one of those cases where the art of the reasoner should be
+used rather for the sifting of details than for the acquiring of fresh
+evidence. The tragedy has been so uncommon, so complete and of such
+personal importance to so many people, that we are suffering from a
+plethora of surmise, conjecture, and hypothesis. The difficulty is to
+detach the framework of fact--of absolute undeniable fact--from the
+embellishments of theorists and reporters. Then, having established
+ourselves upon this sound basis, it is our duty to see what inferences
+may be drawn and what are the special points upon which the whole
+mystery turns. On Tuesday evening I received telegrams from both Colonel
+Ross, the owner of the horse, and from Inspector Gregory, who is looking
+after the case, inviting my cooperation."
+
+"Tuesday evening!" I exclaimed. "And this is Thursday morning. Why
+didn't you go down yesterday?"
+
+"Because I made a blunder, my dear Watson--which is, I am afraid, a more
+common occurrence than any one would think who only knew me through your
+memoirs. The fact is that I could not believe it possible that the most
+remarkable horse in England could long remain concealed, especially in
+so sparsely inhabited a place as the north of Dartmoor. From hour to
+hour yesterday I expected to hear that he had been found, and that
+his abductor was the murderer of John Straker. When, however, another
+morning had come, and I found that beyond the arrest of young Fitzroy
+Simpson nothing had been done, I felt that it was time for me to take
+action. Yet in some ways I feel that yesterday has not been wasted."
+
+"You have formed a theory, then?"
+
+"At least I have got a grip of the essential facts of the case. I shall
+enumerate them to you, for nothing clears up a case so much as stating
+it to another person, and I can hardly expect your co-operation if I do
+not show you the position from which we start."
+
+I lay back against the cushions, puffing at my cigar, while Holmes,
+leaning forward, with his long, thin forefinger checking off the points
+upon the palm of his left hand, gave me a sketch of the events which had
+led to our journey.
+
+"Silver Blaze," said he, "is from the Somomy stock, and holds as
+brilliant a record as his famous ancestor. He is now in his fifth year,
+and has brought in turn each of the prizes of the turf to Colonel Ross,
+his fortunate owner. Up to the time of the catastrophe he was the first
+favorite for the Wessex Cup, the betting being three to one on him. He
+has always, however, been a prime favorite with the racing public, and
+has never yet disappointed them, so that even at those odds enormous
+sums of money have been laid upon him. It is obvious, therefore, that
+there were many people who had the strongest interest in preventing
+Silver Blaze from being there at the fall of the flag next Tuesday.
+
+"The fact was, of course, appreciated at King's Pyland, where the
+Colonel's training-stable is situated. Every precaution was taken to
+guard the favorite. The trainer, John Straker, is a retired jockey
+who rode in Colonel Ross's colors before he became too heavy for the
+weighing-chair. He has served the Colonel for five years as jockey and
+for seven as trainer, and has always shown himself to be a zealous and
+honest servant. Under him were three lads; for the establishment was a
+small one, containing only four horses in all. One of these lads sat up
+each night in the stable, while the others slept in the loft. All three
+bore excellent characters. John Straker, who is a married man, lived
+in a small villa about two hundred yards from the stables. He has no
+children, keeps one maid-servant, and is comfortably off. The country
+round is very lonely, but about half a mile to the north there is a
+small cluster of villas which have been built by a Tavistock contractor
+for the use of invalids and others who may wish to enjoy the pure
+Dartmoor air. Tavistock itself lies two miles to the west, while
+across the moor, also about two miles distant, is the larger training
+establishment of Mapleton, which belongs to Lord Backwater, and is
+managed by Silas Brown. In every other direction the moor is a complete
+wilderness, inhabited only by a few roaming gypsies. Such was the
+general situation last Monday night when the catastrophe occurred.
+
+"On that evening the horses had been exercised and watered as usual, and
+the stables were locked up at nine o'clock. Two of the lads walked up
+to the trainer's house, where they had supper in the kitchen, while the
+third, Ned Hunter, remained on guard. At a few minutes after nine
+the maid, Edith Baxter, carried down to the stables his supper, which
+consisted of a dish of curried mutton. She took no liquid, as there was
+a water-tap in the stables, and it was the rule that the lad on duty
+should drink nothing else. The maid carried a lantern with her, as it
+was very dark and the path ran across the open moor.
+
+"Edith Baxter was within thirty yards of the stables, when a man
+appeared out of the darkness and called to her to stop. As he stepped
+into the circle of yellow light thrown by the lantern she saw that he
+was a person of gentlemanly bearing, dressed in a gray suit of tweeds,
+with a cloth cap. He wore gaiters, and carried a heavy stick with a knob
+to it. She was most impressed, however, by the extreme pallor of his
+face and by the nervousness of his manner. His age, she thought, would
+be rather over thirty than under it.
+
+"'Can you tell me where I am?' he asked. 'I had almost made up my mind
+to sleep on the moor, when I saw the light of your lantern.'
+
+"'You are close to the King's Pyland training-stables,' said she.
+
+"'Oh, indeed! What a stroke of luck!' he cried. 'I understand that a
+stable-boy sleeps there alone every night. Perhaps that is his supper
+which you are carrying to him. Now I am sure that you would not be too
+proud to earn the price of a new dress, would you?' He took a piece of
+white paper folded up out of his waistcoat pocket. 'See that the boy
+has this to-night, and you shall have the prettiest frock that money can
+buy.'
+
+"She was frightened by the earnestness of his manner, and ran past him
+to the window through which she was accustomed to hand the meals. It was
+already opened, and Hunter was seated at the small table inside. She had
+begun to tell him of what had happened, when the stranger came up again.
+
+"'Good-evening,' said he, looking through the window. 'I wanted to have
+a word with you.' The girl has sworn that as he spoke she noticed the
+corner of the little paper packet protruding from his closed hand.
+
+"'What business have you here?' asked the lad.
+
+"'It's business that may put something into your pocket,' said the
+other. 'You've two horses in for the Wessex Cup--Silver Blaze and
+Bayard. Let me have the straight tip and you won't be a loser. Is it a
+fact that at the weights Bayard could give the other a hundred yards in
+five furlongs, and that the stable have put their money on him?'
+
+"'So, you're one of those damned touts!' cried the lad. 'I'll show you
+how we serve them in King's Pyland.' He sprang up and rushed across the
+stable to unloose the dog. The girl fled away to the house, but as she
+ran she looked back and saw that the stranger was leaning through the
+window. A minute later, however, when Hunter rushed out with the hound
+he was gone, and though he ran all round the buildings he failed to find
+any trace of him."
+
+"One moment," I asked. "Did the stable-boy, when he ran out with the
+dog, leave the door unlocked behind him?"
+
+"Excellent, Watson, excellent!" murmured my companion. "The importance
+of the point struck me so forcibly that I sent a special wire to
+Dartmoor yesterday to clear the matter up. The boy locked the door
+before he left it. The window, I may add, was not large enough for a man
+to get through.
+
+"Hunter waited until his fellow-grooms had returned, when he sent a
+message to the trainer and told him what had occurred. Straker was
+excited at hearing the account, although he does not seem to have quite
+realized its true significance. It left him, however, vaguely uneasy,
+and Mrs. Straker, waking at one in the morning, found that he was
+dressing. In reply to her inquiries, he said that he could not sleep on
+account of his anxiety about the horses, and that he intended to walk
+down to the stables to see that all was well. She begged him to remain
+at home, as she could hear the rain pattering against the window, but in
+spite of her entreaties he pulled on his large mackintosh and left the
+house.
+
+"Mrs. Straker awoke at seven in the morning, to find that her husband
+had not yet returned. She dressed herself hastily, called the maid, and
+set off for the stables. The door was open; inside, huddled together
+upon a chair, Hunter was sunk in a state of absolute stupor, the
+favorite's stall was empty, and there were no signs of his trainer.
+
+"The two lads who slept in the chaff-cutting loft above the harness-room
+were quickly aroused. They had heard nothing during the night, for they
+are both sound sleepers. Hunter was obviously under the influence of
+some powerful drug, and as no sense could be got out of him, he was left
+to sleep it off while the two lads and the two women ran out in search
+of the absentees. They still had hopes that the trainer had for some
+reason taken out the horse for early exercise, but on ascending the
+knoll near the house, from which all the neighboring moors were visible,
+they not only could see no signs of the missing favorite, but they
+perceived something which warned them that they were in the presence of
+a tragedy.
+
+"About a quarter of a mile from the stables John Straker's overcoat was
+flapping from a furze-bush. Immediately beyond there was a bowl-shaped
+depression in the moor, and at the bottom of this was found the dead
+body of the unfortunate trainer. His head had been shattered by a savage
+blow from some heavy weapon, and he was wounded on the thigh, where
+there was a long, clean cut, inflicted evidently by some very sharp
+instrument. It was clear, however, that Straker had defended himself
+vigorously against his assailants, for in his right hand he held a small
+knife, which was clotted with blood up to the handle, while in his left
+he clasped a red and black silk cravat, which was recognized by the maid
+as having been worn on the preceding evening by the stranger who had
+visited the stables. Hunter, on recovering from his stupor, was also
+quite positive as to the ownership of the cravat. He was equally certain
+that the same stranger had, while standing at the window, drugged his
+curried mutton, and so deprived the stables of their watchman. As to the
+missing horse, there were abundant proofs in the mud which lay at the
+bottom of the fatal hollow that he had been there at the time of the
+struggle. But from that morning he has disappeared, and although a large
+reward has been offered, and all the gypsies of Dartmoor are on the
+alert, no news has come of him. Finally, an analysis has shown that
+the remains of his supper left by the stable-lad contain an appreciable
+quantity of powdered opium, while the people at the house partook of the
+same dish on the same night without any ill effect.
+
+"Those are the main facts of the case, stripped of all surmise, and
+stated as baldly as possible. I shall now recapitulate what the police
+have done in the matter.
+
+"Inspector Gregory, to whom the case has been committed, is an extremely
+competent officer. Were he but gifted with imagination he might rise to
+great heights in his profession. On his arrival he promptly found and
+arrested the man upon whom suspicion naturally rested. There was little
+difficulty in finding him, for he inhabited one of those villas which I
+have mentioned. His name, it appears, was Fitzroy Simpson. He was a man
+of excellent birth and education, who had squandered a fortune upon the
+turf, and who lived now by doing a little quiet and genteel book-making
+in the sporting clubs of London. An examination of his betting-book
+shows that bets to the amount of five thousand pounds had been
+registered by him against the favorite. On being arrested he volunteered
+that statement that he had come down to Dartmoor in the hope of
+getting some information about the King's Pyland horses, and also about
+Desborough, the second favorite, which was in charge of Silas Brown at
+the Mapleton stables. He did not attempt to deny that he had acted as
+described upon the evening before, but declared that he had no sinister
+designs, and had simply wished to obtain first-hand information. When
+confronted with his cravat, he turned very pale, and was utterly unable
+to account for its presence in the hand of the murdered man. His wet
+clothing showed that he had been out in the storm of the night before,
+and his stick, which was a Penang-lawyer weighted with lead, was just
+such a weapon as might, by repeated blows, have inflicted the terrible
+injuries to which the trainer had succumbed. On the other hand, there
+was no wound upon his person, while the state of Straker's knife would
+show that one at least of his assailants must bear his mark upon him.
+There you have it all in a nutshell, Watson, and if you can give me any
+light I shall be infinitely obliged to you."
+
+I had listened with the greatest interest to the statement which Holmes,
+with characteristic clearness, had laid before me. Though most of the
+facts were familiar to me, I had not sufficiently appreciated their
+relative importance, nor their connection to each other.
+
+"Is it not possible," I suggested, "that the incised wound upon Straker
+may have been caused by his own knife in the convulsive struggles which
+follow any brain injury?"
+
+"It is more than possible; it is probable," said Holmes. "In that case
+one of the main points in favor of the accused disappears."
+
+"And yet," said I, "even now I fail to understand what the theory of the
+police can be."
+
+"I am afraid that whatever theory we state has very grave objections to
+it," returned my companion. "The police imagine, I take it, that this
+Fitzroy Simpson, having drugged the lad, and having in some way obtained
+a duplicate key, opened the stable door and took out the horse, with
+the intention, apparently, of kidnapping him altogether. His bridle is
+missing, so that Simpson must have put this on. Then, having left the
+door open behind him, he was leading the horse away over the moor, when
+he was either met or overtaken by the trainer. A row naturally ensued.
+Simpson beat out the trainer's brains with his heavy stick without
+receiving any injury from the small knife which Straker used in
+self-defence, and then the thief either led the horse on to some secret
+hiding-place, or else it may have bolted during the struggle, and be
+now wandering out on the moors. That is the case as it appears to
+the police, and improbable as it is, all other explanations are more
+improbable still. However, I shall very quickly test the matter when I
+am once upon the spot, and until then I cannot really see how we can get
+much further than our present position."
+
+It was evening before we reached the little town of Tavistock, which
+lies, like the boss of a shield, in the middle of the huge circle of
+Dartmoor. Two gentlemen were awaiting us in the station--the one a tall,
+fair man with lion-like hair and beard and curiously penetrating light
+blue eyes; the other a small, alert person, very neat and dapper, in a
+frock-coat and gaiters, with trim little side-whiskers and an eye-glass.
+The latter was Colonel Ross, the well-known sportsman; the other,
+Inspector Gregory, a man who was rapidly making his name in the English
+detective service.
+
+"I am delighted that you have come down, Mr. Holmes," said the Colonel.
+"The Inspector here has done all that could possibly be suggested, but I
+wish to leave no stone unturned in trying to avenge poor Straker and in
+recovering my horse."
+
+"Have there been any fresh developments?" asked Holmes.
+
+"I am sorry to say that we have made very little progress," said the
+Inspector. "We have an open carriage outside, and as you would no doubt
+like to see the place before the light fails, we might talk it over as
+we drive."
+
+A minute later we were all seated in a comfortable landau, and were
+rattling through the quaint old Devonshire city. Inspector Gregory was
+full of his case, and poured out a stream of remarks, while Holmes threw
+in an occasional question or interjection. Colonel Ross leaned back with
+his arms folded and his hat tilted over his eyes, while I listened with
+interest to the dialogue of the two detectives. Gregory was formulating
+his theory, which was almost exactly what Holmes had foretold in the
+train.
+
+"The net is drawn pretty close round Fitzroy Simpson," he remarked, "and
+I believe myself that he is our man. At the same time I recognize that
+the evidence is purely circumstantial, and that some new development may
+upset it."
+
+"How about Straker's knife?"
+
+"We have quite come to the conclusion that he wounded himself in his
+fall."
+
+"My friend Dr. Watson made that suggestion to me as we came down. If so,
+it would tell against this man Simpson."
+
+"Undoubtedly. He has neither a knife nor any sign of a wound. The
+evidence against him is certainly very strong. He had a great interest
+in the disappearance of the favorite. He lies under suspicion of having
+poisoned the stable-boy, he was undoubtedly out in the storm, he was
+armed with a heavy stick, and his cravat was found in the dead man's
+hand. I really think we have enough to go before a jury."
+
+Holmes shook his head. "A clever counsel would tear it all to rags,"
+said he. "Why should he take the horse out of the stable? If he wished
+to injure it why could he not do it there? Has a duplicate key been
+found in his possession? What chemist sold him the powdered opium? Above
+all, where could he, a stranger to the district, hide a horse, and such
+a horse as this? What is his own explanation as to the paper which he
+wished the maid to give to the stable-boy?"
+
+"He says that it was a ten-pound note. One was found in his purse. But
+your other difficulties are not so formidable as they seem. He is not
+a stranger to the district. He has twice lodged at Tavistock in the
+summer. The opium was probably brought from London. The key, having
+served its purpose, would be hurled away. The horse may be at the bottom
+of one of the pits or old mines upon the moor."
+
+"What does he say about the cravat?"
+
+"He acknowledges that it is his, and declares that he had lost it. But a
+new element has been introduced into the case which may account for his
+leading the horse from the stable."
+
+Holmes pricked up his ears.
+
+"We have found traces which show that a party of gypsies encamped on
+Monday night within a mile of the spot where the murder took place. On
+Tuesday they were gone. Now, presuming that there was some understanding
+between Simpson and these gypsies, might he not have been leading the
+horse to them when he was overtaken, and may they not have him now?"
+
+"It is certainly possible."
+
+"The moor is being scoured for these gypsies. I have also examined every
+stable and out-house in Tavistock, and for a radius of ten miles."
+
+"There is another training-stable quite close, I understand?"
+
+"Yes, and that is a factor which we must certainly not neglect. As
+Desborough, their horse, was second in the betting, they had an interest
+in the disappearance of the favorite. Silas Brown, the trainer, is known
+to have had large bets upon the event, and he was no friend to poor
+Straker. We have, however, examined the stables, and there is nothing to
+connect him with the affair."
+
+"And nothing to connect this man Simpson with the interests of the
+Mapleton stables?"
+
+"Nothing at all."
+
+Holmes leaned back in the carriage, and the conversation ceased. A few
+minutes later our driver pulled up at a neat little red-brick villa with
+overhanging eaves which stood by the road. Some distance off, across a
+paddock, lay a long gray-tiled out-building. In every other direction
+the low curves of the moor, bronze-colored from the fading ferns,
+stretched away to the sky-line, broken only by the steeples of
+Tavistock, and by a cluster of houses away to the westward which marked
+the Mapleton stables. We all sprang out with the exception of Holmes,
+who continued to lean back with his eyes fixed upon the sky in front of
+him, entirely absorbed in his own thoughts. It was only when I touched
+his arm that he roused himself with a violent start and stepped out of
+the carriage.
+
+"Excuse me," said he, turning to Colonel Ross, who had looked at him in
+some surprise. "I was day-dreaming." There was a gleam in his eyes and a
+suppressed excitement in his manner which convinced me, used as I was
+to his ways, that his hand was upon a clue, though I could not imagine
+where he had found it.
+
+"Perhaps you would prefer at once to go on to the scene of the crime,
+Mr. Holmes?" said Gregory.
+
+"I think that I should prefer to stay here a little and go into one or
+two questions of detail. Straker was brought back here, I presume?"
+
+"Yes; he lies upstairs. The inquest is to-morrow."
+
+"He has been in your service some years, Colonel Ross?"
+
+"I have always found him an excellent servant."
+
+"I presume that you made an inventory of what he had in his pockets at
+the time of his death, Inspector?"
+
+"I have the things themselves in the sitting-room, if you would care to
+see them."
+
+"I should be very glad." We all filed into the front room and sat round
+the central table while the Inspector unlocked a square tin box and laid
+a small heap of things before us. There was a box of vestas, two inches
+of tallow candle, an A D P brier-root pipe, a pouch of seal-skin with
+half an ounce of long-cut Cavendish, a silver watch with a gold chain,
+five sovereigns in gold, an aluminum pencil-case, a few papers, and an
+ivory-handled knife with a very delicate, inflexible blade marked Weiss
+& Co., London.
+
+"This is a very singular knife," said Holmes, lifting it up and
+examining it minutely. "I presume, as I see blood-stains upon it, that
+it is the one which was found in the dead man's grasp. Watson, this
+knife is surely in your line?"
+
+"It is what we call a cataract knife," said I.
+
+"I thought so. A very delicate blade devised for very delicate work.
+A strange thing for a man to carry with him upon a rough expedition,
+especially as it would not shut in his pocket."
+
+"The tip was guarded by a disk of cork which we found beside his body,"
+said the Inspector. "His wife tells us that the knife had lain upon the
+dressing-table, and that he had picked it up as he left the room. It was
+a poor weapon, but perhaps the best that he could lay his hands on at
+the moment."
+
+"Very possible. How about these papers?"
+
+"Three of them are receipted hay-dealers' accounts. One of them is a
+letter of instructions from Colonel Ross. This other is a milliner's
+account for thirty-seven pounds fifteen made out by Madame Lesurier,
+of Bond Street, to William Derbyshire. Mrs. Straker tells us that
+Derbyshire was a friend of her husband's and that occasionally his
+letters were addressed here."
+
+"Madam Derbyshire had somewhat expensive tastes," remarked Holmes,
+glancing down the account. "Twenty-two guineas is rather heavy for a
+single costume. However there appears to be nothing more to learn, and
+we may now go down to the scene of the crime."
+
+As we emerged from the sitting-room a woman, who had been waiting in
+the passage, took a step forward and laid her hand upon the Inspector's
+sleeve. Her face was haggard and thin and eager, stamped with the print
+of a recent horror.
+
+"Have you got them? Have you found them?" she panted.
+
+"No, Mrs. Straker. But Mr. Holmes here has come from London to help us,
+and we shall do all that is possible."
+
+"Surely I met you in Plymouth at a garden-party some little time ago,
+Mrs. Straker?" said Holmes.
+
+"No, sir; you are mistaken."
+
+"Dear me! Why, I could have sworn to it. You wore a costume of
+dove-colored silk with ostrich-feather trimming."
+
+"I never had such a dress, sir," answered the lady.
+
+"Ah, that quite settles it," said Holmes. And with an apology he
+followed the Inspector outside. A short walk across the moor took us to
+the hollow in which the body had been found. At the brink of it was the
+furze-bush upon which the coat had been hung.
+
+"There was no wind that night, I understand," said Holmes.
+
+"None; but very heavy rain."
+
+"In that case the overcoat was not blown against the furze-bush, but
+placed there."
+
+"Yes, it was laid across the bush."
+
+"You fill me with interest, I perceive that the ground has been trampled
+up a good deal. No doubt many feet have been here since Monday night."
+
+"A piece of matting has been laid here at the side, and we have all
+stood upon that."
+
+"Excellent."
+
+"In this bag I have one of the boots which Straker wore, one of Fitzroy
+Simpson's shoes, and a cast horseshoe of Silver Blaze."
+
+"My dear Inspector, you surpass yourself!" Holmes took the bag, and,
+descending into the hollow, he pushed the matting into a more central
+position. Then stretching himself upon his face and leaning his chin
+upon his hands, he made a careful study of the trampled mud in front of
+him. "Hullo!" said he, suddenly. "What's this?" It was a wax vesta half
+burned, which was so coated with mud that it looked at first like a
+little chip of wood.
+
+"I cannot think how I came to overlook it," said the Inspector, with an
+expression of annoyance.
+
+"It was invisible, buried in the mud. I only saw it because I was
+looking for it."
+
+"What! You expected to find it?"
+
+"I thought it not unlikely."
+
+He took the boots from the bag, and compared the impressions of each of
+them with marks upon the ground. Then he clambered up to the rim of the
+hollow, and crawled about among the ferns and bushes.
+
+"I am afraid that there are no more tracks," said the Inspector. "I
+have examined the ground very carefully for a hundred yards in each
+direction."
+
+"Indeed!" said Holmes, rising. "I should not have the impertinence to
+do it again after what you say. But I should like to take a little walk
+over the moor before it grows dark, that I may know my ground to-morrow,
+and I think that I shall put this horseshoe into my pocket for luck."
+
+Colonel Ross, who had shown some signs of impatience at my companion's
+quiet and systematic method of work, glanced at his watch. "I wish you
+would come back with me, Inspector," said he. "There are several points
+on which I should like your advice, and especially as to whether we do
+not owe it to the public to remove our horse's name from the entries for
+the Cup."
+
+"Certainly not," cried Holmes, with decision. "I should let the name
+stand."
+
+The Colonel bowed. "I am very glad to have had your opinion, sir," said
+he. "You will find us at poor Straker's house when you have finished
+your walk, and we can drive together into Tavistock."
+
+He turned back with the Inspector, while Holmes and I walked slowly
+across the moor. The sun was beginning to sink behind the stables of
+Mapleton, and the long, sloping plain in front of us was tinged with
+gold, deepening into rich, ruddy browns where the faded ferns and
+brambles caught the evening light. But the glories of the landscape were
+all wasted upon my companion, who was sunk in the deepest thought.
+
+"It's this way, Watson," said he at last. "We may leave the question
+of who killed John Straker for the instant, and confine ourselves to
+finding out what has become of the horse. Now, supposing that he broke
+away during or after the tragedy, where could he have gone to? The horse
+is a very gregarious creature. If left to himself his instincts would
+have been either to return to King's Pyland or go over to Mapleton. Why
+should he run wild upon the moor? He would surely have been seen by now.
+And why should gypsies kidnap him? These people always clear out when
+they hear of trouble, for they do not wish to be pestered by the police.
+They could not hope to sell such a horse. They would run a great risk
+and gain nothing by taking him. Surely that is clear."
+
+"Where is he, then?"
+
+"I have already said that he must have gone to King's Pyland or to
+Mapleton. He is not at King's Pyland. Therefore he is at Mapleton. Let
+us take that as a working hypothesis and see what it leads us to. This
+part of the moor, as the Inspector remarked, is very hard and dry. But
+it falls away towards Mapleton, and you can see from here that there
+is a long hollow over yonder, which must have been very wet on Monday
+night. If our supposition is correct, then the horse must have crossed
+that, and there is the point where we should look for his tracks."
+
+We had been walking briskly during this conversation, and a few more
+minutes brought us to the hollow in question. At Holmes' request I
+walked down the bank to the right, and he to the left, but I had not
+taken fifty paces before I heard him give a shout, and saw him waving
+his hand to me. The track of a horse was plainly outlined in the soft
+earth in front of him, and the shoe which he took from his pocket
+exactly fitted the impression.
+
+"See the value of imagination," said Holmes. "It is the one quality
+which Gregory lacks. We imagined what might have happened, acted upon
+the supposition, and find ourselves justified. Let us proceed."
+
+We crossed the marshy bottom and passed over a quarter of a mile of dry,
+hard turf. Again the ground sloped, and again we came on the tracks.
+Then we lost them for half a mile, but only to pick them up once more
+quite close to Mapleton. It was Holmes who saw them first, and he stood
+pointing with a look of triumph upon his face. A man's track was visible
+beside the horse's.
+
+"The horse was alone before," I cried.
+
+"Quite so. It was alone before. Hullo, what is this?"
+
+The double track turned sharp off and took the direction of King's
+Pyland. Holmes whistled, and we both followed along after it. His eyes
+were on the trail, but I happened to look a little to one side, and
+saw to my surprise the same tracks coming back again in the opposite
+direction.
+
+"One for you, Watson," said Holmes, when I pointed it out. "You have
+saved us a long walk, which would have brought us back on our own
+traces. Let us follow the return track."
+
+We had not to go far. It ended at the paving of asphalt which led up
+to the gates of the Mapleton stables. As we approached, a groom ran out
+from them.
+
+"We don't want any loiterers about here," said he.
+
+"I only wished to ask a question," said Holmes, with his finger and
+thumb in his waistcoat pocket. "Should I be too early to see your
+master, Mr. Silas Brown, if I were to call at five o'clock to-morrow
+morning?"
+
+"Bless you, sir, if any one is about he will be, for he is always
+the first stirring. But here he is, sir, to answer your questions for
+himself. No, sir, no; it is as much as my place is worth to let him see
+me touch your money. Afterwards, if you like."
+
+As Sherlock Holmes replaced the half-crown which he had drawn from his
+pocket, a fierce-looking elderly man strode out from the gate with a
+hunting-crop swinging in his hand.
+
+"What's this, Dawson!" he cried. "No gossiping! Go about your business!
+And you, what the devil do you want here?"
+
+"Ten minutes' talk with you, my good sir," said Holmes in the sweetest
+of voices.
+
+"I've no time to talk to every gadabout. We want no stranger here. Be
+off, or you may find a dog at your heels."
+
+Holmes leaned forward and whispered something in the trainer's ear. He
+started violently and flushed to the temples.
+
+"It's a lie!" he shouted, "an infernal lie!"
+
+"Very good. Shall we argue about it here in public or talk it over in
+your parlor?"
+
+"Oh, come in if you wish to."
+
+Holmes smiled. "I shall not keep you more than a few minutes, Watson,"
+said he. "Now, Mr. Brown, I am quite at your disposal."
+
+It was twenty minutes, and the reds had all faded into grays before
+Holmes and the trainer reappeared. Never have I seen such a change as
+had been brought about in Silas Brown in that short time. His face was
+ashy pale, beads of perspiration shone upon his brow, and his hands
+shook until the hunting-crop wagged like a branch in the wind. His
+bullying, overbearing manner was all gone too, and he cringed along at
+my companion's side like a dog with its master.
+
+"Your instructions will be done. It shall all be done," said he.
+
+"There must be no mistake," said Holmes, looking round at him. The other
+winced as he read the menace in his eyes.
+
+"Oh no, there shall be no mistake. It shall be there. Should I change it
+first or not?"
+
+Holmes thought a little and then burst out laughing. "No, don't," said
+he; "I shall write to you about it. No tricks, now, or--"
+
+"Oh, you can trust me, you can trust me!"
+
+"Yes, I think I can. Well, you shall hear from me to-morrow." He turned
+upon his heel, disregarding the trembling hand which the other held out
+to him, and we set off for King's Pyland.
+
+"A more perfect compound of the bully, coward, and sneak than Master
+Silas Brown I have seldom met with," remarked Holmes as we trudged along
+together.
+
+"He has the horse, then?"
+
+"He tried to bluster out of it, but I described to him so exactly what
+his actions had been upon that morning that he is convinced that I was
+watching him. Of course you observed the peculiarly square toes in the
+impressions, and that his own boots exactly corresponded to them.
+Again, of course no subordinate would have dared to do such a thing.
+I described to him how, when according to his custom he was the first
+down, he perceived a strange horse wandering over the moor. How he went
+out to it, and his astonishment at recognizing, from the white forehead
+which has given the favorite its name, that chance had put in his power
+the only horse which could beat the one upon which he had put his money.
+Then I described how his first impulse had been to lead him back to
+King's Pyland, and how the devil had shown him how he could hide the
+horse until the race was over, and how he had led it back and concealed
+it at Mapleton. When I told him every detail he gave it up and thought
+only of saving his own skin."
+
+"But his stables had been searched?"
+
+"Oh, an old horse-faker like him has many a dodge."
+
+"But are you not afraid to leave the horse in his power now, since he
+has every interest in injuring it?"
+
+"My dear fellow, he will guard it as the apple of his eye. He knows that
+his only hope of mercy is to produce it safe."
+
+"Colonel Ross did not impress me as a man who would be likely to show
+much mercy in any case."
+
+"The matter does not rest with Colonel Ross. I follow my own methods,
+and tell as much or as little as I choose. That is the advantage of
+being unofficial. I don't know whether you observed it, Watson, but the
+Colonel's manner has been just a trifle cavalier to me. I am inclined
+now to have a little amusement at his expense. Say nothing to him about
+the horse."
+
+"Certainly not without your permission."
+
+"And of course this is all quite a minor point compared to the question
+of who killed John Straker."
+
+"And you will devote yourself to that?"
+
+"On the contrary, we both go back to London by the night train."
+
+I was thunderstruck by my friend's words. We had only been a few hours
+in Devonshire, and that he should give up an investigation which he had
+begun so brilliantly was quite incomprehensible to me. Not a word more
+could I draw from him until we were back at the trainer's house. The
+Colonel and the Inspector were awaiting us in the parlor.
+
+"My friend and I return to town by the night-express," said Holmes. "We
+have had a charming little breath of your beautiful Dartmoor air."
+
+The Inspector opened his eyes, and the Colonel's lip curled in a sneer.
+
+"So you despair of arresting the murderer of poor Straker," said he.
+
+Holmes shrugged his shoulders. "There are certainly grave difficulties
+in the way," said he. "I have every hope, however, that your horse
+will start upon Tuesday, and I beg that you will have your jockey in
+readiness. Might I ask for a photograph of Mr. John Straker?"
+
+The Inspector took one from an envelope and handed it to him.
+
+"My dear Gregory, you anticipate all my wants. If I might ask you to
+wait here for an instant, I have a question which I should like to put
+to the maid."
+
+"I must say that I am rather disappointed in our London consultant,"
+said Colonel Ross, bluntly, as my friend left the room. "I do not see
+that we are any further than when he came."
+
+"At least you have his assurance that your horse will run," said I.
+
+"Yes, I have his assurance," said the Colonel, with a shrug of his
+shoulders. "I should prefer to have the horse."
+
+I was about to make some reply in defence of my friend when he entered
+the room again.
+
+"Now, gentlemen," said he, "I am quite ready for Tavistock."
+
+As we stepped into the carriage one of the stable-lads held the door
+open for us. A sudden idea seemed to occur to Holmes, for he leaned
+forward and touched the lad upon the sleeve.
+
+"You have a few sheep in the paddock," he said. "Who attends to them?"
+
+"I do, sir."
+
+"Have you noticed anything amiss with them of late?"
+
+"Well, sir, not of much account; but three of them have gone lame, sir."
+
+I could see that Holmes was extremely pleased, for he chuckled and
+rubbed his hands together.
+
+"A long shot, Watson; a very long shot," said he, pinching my arm.
+"Gregory, let me recommend to your attention this singular epidemic
+among the sheep. Drive on, coachman!"
+
+Colonel Ross still wore an expression which showed the poor opinion
+which he had formed of my companion's ability, but I saw by the
+Inspector's face that his attention had been keenly aroused.
+
+"You consider that to be important?" he asked.
+
+"Exceedingly so."
+
+"Is there any point to which you would wish to draw my attention?"
+
+"To the curious incident of the dog in the night-time."
+
+"The dog did nothing in the night-time."
+
+"That was the curious incident," remarked Sherlock Holmes.
+
+
+Four days later Holmes and I were again in the train, bound for
+Winchester to see the race for the Wessex Cup. Colonel Ross met us by
+appointment outside the station, and we drove in his drag to the course
+beyond the town. His face was grave, and his manner was cold in the
+extreme.
+
+"I have seen nothing of my horse," said he.
+
+"I suppose that you would know him when you saw him?" asked Holmes.
+
+The Colonel was very angry. "I have been on the turf for twenty years,
+and never was asked such a question as that before," said he. "A
+child would know Silver Blaze, with his white forehead and his mottled
+off-foreleg."
+
+"How is the betting?"
+
+"Well, that is the curious part of it. You could have got fifteen to one
+yesterday, but the price has become shorter and shorter, until you can
+hardly get three to one now."
+
+"Hum!" said Holmes. "Somebody knows something, that is clear."
+
+As the drag drew up in the enclosure near the grand stand I glanced at
+the card to see the entries.
+
+Wessex Plate [it ran] 50 sovs each h ft with 1000 sovs added for four
+and five year olds. Second, L300. Third, L200. New course (one mile and
+five furlongs). Mr. Heath Newton's The Negro. Red cap. Cinnamon jacket.
+Colonel Wardlaw's Pugilist. Pink cap. Blue and black jacket. Lord
+Backwater's Desborough. Yellow cap and sleeves. Colonel Ross's Silver
+Blaze. Black cap. Red jacket. Duke of Balmoral's Iris. Yellow and black
+stripes. Lord Singleford's Rasper. Purple cap. Black sleeves.
+
+"We scratched our other one, and put all hopes on your word," said the
+Colonel. "Why, what is that? Silver Blaze favorite?"
+
+"Five to four against Silver Blaze!" roared the ring. "Five to four
+against Silver Blaze! Five to fifteen against Desborough! Five to four
+on the field!"
+
+"There are the numbers up," I cried. "They are all six there."
+
+"All six there? Then my horse is running," cried the Colonel in great
+agitation. "But I don't see him. My colors have not passed."
+
+"Only five have passed. This must be he."
+
+As I spoke a powerful bay horse swept out from the weighing enclosure
+and cantered past us, bearing on its back the well-known black and red
+of the Colonel.
+
+"That's not my horse," cried the owner. "That beast has not a white hair
+upon its body. What is this that you have done, Mr. Holmes?"
+
+"Well, well, let us see how he gets on," said my friend, imperturbably.
+For a few minutes he gazed through my field-glass. "Capital! An
+excellent start!" he cried suddenly. "There they are, coming round the
+curve!"
+
+From our drag we had a superb view as they came up the straight. The six
+horses were so close together that a carpet could have covered them,
+but half way up the yellow of the Mapleton stable showed to the front.
+Before they reached us, however, Desborough's bolt was shot, and the
+Colonel's horse, coming away with a rush, passed the post a good six
+lengths before its rival, the Duke of Balmoral's Iris making a bad
+third.
+
+"It's my race, anyhow," gasped the Colonel, passing his hand over his
+eyes. "I confess that I can make neither head nor tail of it. Don't you
+think that you have kept up your mystery long enough, Mr. Holmes?"
+
+"Certainly, Colonel, you shall know everything. Let us all go round and
+have a look at the horse together. Here he is," he continued, as we made
+our way into the weighing enclosure, where only owners and their friends
+find admittance. "You have only to wash his face and his leg in spirits
+of wine, and you will find that he is the same old Silver Blaze as
+ever."
+
+"You take my breath away!"
+
+"I found him in the hands of a faker, and took the liberty of running
+him just as he was sent over."
+
+"My dear sir, you have done wonders. The horse looks very fit and well.
+It never went better in its life. I owe you a thousand apologies
+for having doubted your ability. You have done me a great service by
+recovering my horse. You would do me a greater still if you could lay
+your hands on the murderer of John Straker."
+
+"I have done so," said Holmes quietly.
+
+The Colonel and I stared at him in amazement. "You have got him! Where
+is he, then?"
+
+"He is here."
+
+"Here! Where?"
+
+"In my company at the present moment."
+
+The Colonel flushed angrily. "I quite recognize that I am under
+obligations to you, Mr. Holmes," said he, "but I must regard what you
+have just said as either a very bad joke or an insult."
+
+Sherlock Holmes laughed. "I assure you that I have not associated
+you with the crime, Colonel," said he. "The real murderer is standing
+immediately behind you." He stepped past and laid his hand upon the
+glossy neck of the thoroughbred.
+
+"The horse!" cried both the Colonel and myself.
+
+"Yes, the horse. And it may lessen his guilt if I say that it was
+done in self-defence, and that John Straker was a man who was entirely
+unworthy of your confidence. But there goes the bell, and as I stand
+to win a little on this next race, I shall defer a lengthy explanation
+until a more fitting time."
+
+
+
+We had the corner of a Pullman car to ourselves that evening as we
+whirled back to London, and I fancy that the journey was a short one
+to Colonel Ross as well as to myself, as we listened to our
+companion's narrative of the events which had occurred at the Dartmoor
+training-stables upon the Monday night, and the means by which he had
+unravelled them.
+
+"I confess," said he, "that any theories which I had formed from
+the newspaper reports were entirely erroneous. And yet there were
+indications there, had they not been overlaid by other details which
+concealed their true import. I went to Devonshire with the conviction
+that Fitzroy Simpson was the true culprit, although, of course, I saw
+that the evidence against him was by no means complete. It was while I
+was in the carriage, just as we reached the trainer's house, that the
+immense significance of the curried mutton occurred to me. You may
+remember that I was distrait, and remained sitting after you had all
+alighted. I was marvelling in my own mind how I could possibly have
+overlooked so obvious a clue."
+
+"I confess," said the Colonel, "that even now I cannot see how it helps
+us."
+
+"It was the first link in my chain of reasoning. Powdered opium is by no
+means tasteless. The flavor is not disagreeable, but it is perceptible.
+Were it mixed with any ordinary dish the eater would undoubtedly detect
+it, and would probably eat no more. A curry was exactly the medium
+which would disguise this taste. By no possible supposition could
+this stranger, Fitzroy Simpson, have caused curry to be served in
+the trainer's family that night, and it is surely too monstrous a
+coincidence to suppose that he happened to come along with powdered
+opium upon the very night when a dish happened to be served which would
+disguise the flavor. That is unthinkable. Therefore Simpson becomes
+eliminated from the case, and our attention centers upon Straker and
+his wife, the only two people who could have chosen curried mutton for
+supper that night. The opium was added after the dish was set aside
+for the stable-boy, for the others had the same for supper with no ill
+effects. Which of them, then, had access to that dish without the maid
+seeing them?
+
+"Before deciding that question I had grasped the significance of the
+silence of the dog, for one true inference invariably suggests others.
+The Simpson incident had shown me that a dog was kept in the stables,
+and yet, though some one had been in and had fetched out a horse, he
+had not barked enough to arouse the two lads in the loft. Obviously the
+midnight visitor was some one whom the dog knew well.
+
+"I was already convinced, or almost convinced, that John Straker went
+down to the stables in the dead of the night and took out Silver Blaze.
+For what purpose? For a dishonest one, obviously, or why should he drug
+his own stable-boy? And yet I was at a loss to know why. There have been
+cases before now where trainers have made sure of great sums of money
+by laying against their own horses, through agents, and then preventing
+them from winning by fraud. Sometimes it is a pulling jockey. Sometimes
+it is some surer and subtler means. What was it here? I hoped that the
+contents of his pockets might help me to form a conclusion.
+
+"And they did so. You cannot have forgotten the singular knife which was
+found in the dead man's hand, a knife which certainly no sane man would
+choose for a weapon. It was, as Dr. Watson told us, a form of knife
+which is used for the most delicate operations known in surgery. And it
+was to be used for a delicate operation that night. You must know, with
+your wide experience of turf matters, Colonel Ross, that it is possible
+to make a slight nick upon the tendons of a horse's ham, and to do it
+subcutaneously, so as to leave absolutely no trace. A horse so treated
+would develop a slight lameness, which would be put down to a strain in
+exercise or a touch of rheumatism, but never to foul play."
+
+"Villain! Scoundrel!" cried the Colonel.
+
+"We have here the explanation of why John Straker wished to take the
+horse out on to the moor. So spirited a creature would have certainly
+roused the soundest of sleepers when it felt the prick of the knife. It
+was absolutely necessary to do it in the open air."
+
+"I have been blind!" cried the Colonel. "Of course that was why he
+needed the candle, and struck the match."
+
+"Undoubtedly. But in examining his belongings I was fortunate enough to
+discover not only the method of the crime, but even its motives. As a
+man of the world, Colonel, you know that men do not carry other people's
+bills about in their pockets. We have most of us quite enough to do to
+settle our own. I at once concluded that Straker was leading a double
+life, and keeping a second establishment. The nature of the bill showed
+that there was a lady in the case, and one who had expensive tastes.
+Liberal as you are with your servants, one can hardly expect that they
+can buy twenty-guinea walking dresses for their ladies. I questioned
+Mrs. Straker as to the dress without her knowing it, and having
+satisfied myself that it had never reached her, I made a note of the
+milliner's address, and felt that by calling there with Straker's
+photograph I could easily dispose of the mythical Derbyshire.
+
+"From that time on all was plain. Straker had led out the horse to a
+hollow where his light would be invisible. Simpson in his flight had
+dropped his cravat, and Straker had picked it up--with some idea,
+perhaps, that he might use it in securing the horse's leg. Once in the
+hollow, he had got behind the horse and had struck a light; but the
+creature frightened at the sudden glare, and with the strange instinct
+of animals feeling that some mischief was intended, had lashed out, and
+the steel shoe had struck Straker full on the forehead. He had already,
+in spite of the rain, taken off his overcoat in order to do his delicate
+task, and so, as he fell, his knife gashed his thigh. Do I make it
+clear?"
+
+"Wonderful!" cried the Colonel. "Wonderful! You might have been there!"
+
+"My final shot was, I confess a very long one. It struck me that so
+astute a man as Straker would not undertake this delicate tendon-nicking
+without a little practice. What could he practice on? My eyes fell upon
+the sheep, and I asked a question which, rather to my surprise, showed
+that my surmise was correct.
+
+"When I returned to London I called upon the milliner, who had
+recognized Straker as an excellent customer of the name of Derbyshire,
+who had a very dashing wife, with a strong partiality for expensive
+dresses. I have no doubt that this woman had plunged him over head and
+ears in debt, and so led him into this miserable plot."
+
+"You have explained all but one thing," cried the Colonel. "Where was
+the horse?"
+
+"Ah, it bolted, and was cared for by one of your neighbors. We must have
+an amnesty in that direction, I think. This is Clapham Junction, if I am
+not mistaken, and we shall be in Victoria in less than ten minutes. If
+you care to smoke a cigar in our rooms, Colonel, I shall be happy to
+give you any other details which might interest you."
+
+
+
+
+Adventure II. The Yellow Face
+
+
+[In publishing these short sketches based upon the numerous cases in
+which my companion's singular gifts have made us the listeners to, and
+eventually the actors in, some strange drama, it is only natural that I
+should dwell rather upon his successes than upon his failures. And this
+not so much for the sake of his reputation--for, indeed, it was when
+he was at his wits' end that his energy and his versatility were most
+admirable--but because where he failed it happened too often that no one
+else succeeded, and that the tale was left forever without a conclusion.
+Now and again, however, it chanced that even when he erred, the truth
+was still discovered. I have noted of some half-dozen cases of the
+kind; the Adventure of the Musgrave Ritual and that which I am about to
+recount are the two which present the strongest features of interest.]
+
+Sherlock Holmes was a man who seldom took exercise for exercise's sake.
+Few men were capable of greater muscular effort, and he was undoubtedly
+one of the finest boxers of his weight that I have ever seen; but he
+looked upon aimless bodily exertion as a waste of energy, and he seldom
+bestirred himself save when there was some professional object to be
+served. Then he was absolutely untiring and indefatigable. That he
+should have kept himself in training under such circumstances is
+remarkable, but his diet was usually of the sparest, and his habits
+were simple to the verge of austerity. Save for the occasional use of
+cocaine, he had no vices, and he only turned to the drug as a protest
+against the monotony of existence when cases were scanty and the papers
+uninteresting.
+
+One day in early spring he had so far relaxed as to go for a walk with
+me in the Park, where the first faint shoots of green were breaking out
+upon the elms, and the sticky spear-heads of the chestnuts were just
+beginning to burst into their five-fold leaves. For two hours we rambled
+about together, in silence for the most part, as befits two men who know
+each other intimately. It was nearly five before we were back in Baker
+Street once more.
+
+"Beg pardon, sir," said our page-boy, as he opened the door. "There's
+been a gentleman here asking for you, sir."
+
+Holmes glanced reproachfully at me. "So much for afternoon walks!" said
+he. "Has this gentleman gone, then?"
+
+"Yes, sir."
+
+"Didn't you ask him in?"
+
+"Yes, sir; he came in."
+
+"How long did he wait?"
+
+"Half an hour, sir. He was a very restless gentleman, sir, a-walkin'
+and a-stampin' all the time he was here. I was waitin' outside the door,
+sir, and I could hear him. At last he outs into the passage, and he
+cries, 'Is that man never goin' to come?' Those were his very words,
+sir. 'You'll only need to wait a little longer,' says I. 'Then I'll wait
+in the open air, for I feel half choked,' says he. 'I'll be back before
+long.' And with that he ups and he outs, and all I could say wouldn't
+hold him back."
+
+"Well, well, you did your best," said Holmes, as we walked into our
+room. "It's very annoying, though, Watson. I was badly in need of
+a case, and this looks, from the man's impatience, as if it were of
+importance. Hullo! That's not your pipe on the table. He must have
+left his behind him. A nice old brier with a good long stem of what the
+tobacconists call amber. I wonder how many real amber mouthpieces there
+are in London? Some people think that a fly in it is a sign. Well, he
+must have been disturbed in his mind to leave a pipe behind him which he
+evidently values highly."
+
+"How do you know that he values it highly?" I asked.
+
+"Well, I should put the original cost of the pipe at seven and sixpence.
+Now it has, you see, been twice mended, once in the wooden stem and once
+in the amber. Each of these mends, done, as you observe, with silver
+bands, must have cost more than the pipe did originally. The man must
+value the pipe highly when he prefers to patch it up rather than buy a
+new one with the same money."
+
+"Anything else?" I asked, for Holmes was turning the pipe about in his
+hand, and staring at it in his peculiar pensive way.
+
+He held it up and tapped on it with his long, thin fore-finger, as a
+professor might who was lecturing on a bone.
+
+"Pipes are occasionally of extraordinary interest," said he. "Nothing
+has more individuality, save perhaps watches and bootlaces. The
+indications here, however, are neither very marked nor very important.
+The owner is obviously a muscular man, left-handed, with an excellent
+set of teeth, careless in his habits, and with no need to practise
+economy."
+
+My friend threw out the information in a very offhand way, but I saw
+that he cocked his eye at me to see if I had followed his reasoning.
+
+"You think a man must be well-to-do if he smokes a seven-shilling pipe,"
+said I.
+
+"This is Grosvenor mixture at eightpence an ounce," Holmes answered,
+knocking a little out on his palm. "As he might get an excellent smoke
+for half the price, he has no need to practise economy."
+
+"And the other points?"
+
+"He has been in the habit of lighting his pipe at lamps and gas-jets.
+You can see that it is quite charred all down one side. Of course a
+match could not have done that. Why should a man hold a match to the
+side of his pipe? But you cannot light it at a lamp without getting the
+bowl charred. And it is all on the right side of the pipe. From that I
+gather that he is a left-handed man. You hold your own pipe to the lamp,
+and see how naturally you, being right-handed, hold the left side to the
+flame. You might do it once the other way, but not as a constancy. This
+has always been held so. Then he has bitten through his amber. It takes
+a muscular, energetic fellow, and one with a good set of teeth, to do
+that. But if I am not mistaken I hear him upon the stair, so we shall
+have something more interesting than his pipe to study."
+
+An instant later our door opened, and a tall young man entered the room.
+He was well but quietly dressed in a dark-gray suit, and carried a brown
+wide-awake in his hand. I should have put him at about thirty, though he
+was really some years older.
+
+"I beg your pardon," said he, with some embarrassment; "I suppose I
+should have knocked. Yes, of course I should have knocked. The fact
+is that I am a little upset, and you must put it all down to that." He
+passed his hand over his forehead like a man who is half dazed, and then
+fell rather than sat down upon a chair.
+
+"I can see that you have not slept for a night or two," said Holmes,
+in his easy, genial way. "That tries a man's nerves more than work, and
+more even than pleasure. May I ask how I can help you?"
+
+"I wanted your advice, sir. I don't know what to do and my whole life
+seems to have gone to pieces."
+
+"You wish to employ me as a consulting detective?"
+
+"Not that only. I want your opinion as a judicious man--as a man of the
+world. I want to know what I ought to do next. I hope to God you'll be
+able to tell me."
+
+He spoke in little, sharp, jerky outbursts, and it seemed to me that to
+speak at all was very painful to him, and that his will all through was
+overriding his inclinations.
+
+"It's a very delicate thing," said he. "One does not like to speak of
+one's domestic affairs to strangers. It seems dreadful to discuss the
+conduct of one's wife with two men whom I have never seen before. It's
+horrible to have to do it. But I've got to the end of my tether, and I
+must have advice."
+
+"My dear Mr. Grant Munro--" began Holmes.
+
+Our visitor sprang from his chair. "What!" he cried, "you know my name?"
+
+"If you wish to preserve your incognito," said Holmes, smiling, "I would
+suggest that you cease to write your name upon the lining of your
+hat, or else that you turn the crown towards the person whom you are
+addressing. I was about to say that my friend and I have listened to a
+good many strange secrets in this room, and that we have had the good
+fortune to bring peace to many troubled souls. I trust that we may do as
+much for you. Might I beg you, as time may prove to be of importance, to
+furnish me with the facts of your case without further delay?"
+
+Our visitor again passed his hand over his forehead, as if he found it
+bitterly hard. From every gesture and expression I could see that he was
+a reserved, self-contained man, with a dash of pride in his nature, more
+likely to hide his wounds than to expose them. Then suddenly, with a
+fierce gesture of his closed hand, like one who throws reserve to the
+winds, he began.
+
+"The facts are these, Mr. Holmes," said he. "I am a married man, and
+have been so for three years. During that time my wife and I have loved
+each other as fondly and lived as happily as any two that ever were
+joined. We have not had a difference, not one, in thought or word or
+deed. And now, since last Monday, there has suddenly sprung up a barrier
+between us, and I find that there is something in her life and in her
+thought of which I know as little as if she were the woman who brushes
+by me in the street. We are estranged, and I want to know why.
+
+"Now there is one thing that I want to impress upon you before I go
+any further, Mr. Holmes. Effie loves me. Don't let there be any mistake
+about that. She loves me with her whole heart and soul, and never more
+than now. I know it. I feel it. I don't want to argue about that. A man
+can tell easily enough when a woman loves him. But there's this secret
+between us, and we can never be the same until it is cleared."
+
+"Kindly let me have the facts, Mr. Munro," said Holmes, with some
+impatience.
+
+"I'll tell you what I know about Effie's history. She was a widow when
+I met her first, though quite young--only twenty-five. Her name then was
+Mrs. Hebron. She went out to America when she was young, and lived in
+the town of Atlanta, where she married this Hebron, who was a lawyer
+with a good practice. They had one child, but the yellow fever broke out
+badly in the place, and both husband and child died of it. I have seen
+his death certificate. This sickened her of America, and she came back
+to live with a maiden aunt at Pinner, in Middlesex. I may mention that
+her husband had left her comfortably off, and that she had a capital of
+about four thousand five hundred pounds, which had been so well invested
+by him that it returned an average of seven per cent. She had only been
+six months at Pinner when I met her; we fell in love with each other,
+and we married a few weeks afterwards.
+
+"I am a hop merchant myself, and as I have an income of seven or
+eight hundred, we found ourselves comfortably off, and took a nice
+eighty-pound-a-year villa at Norbury. Our little place was very
+countrified, considering that it is so close to town. We had an inn and
+two houses a little above us, and a single cottage at the other side of
+the field which faces us, and except those there were no houses until
+you got half way to the station. My business took me into town at
+certain seasons, but in summer I had less to do, and then in our country
+home my wife and I were just as happy as could be wished. I tell you
+that there never was a shadow between us until this accursed affair
+began.
+
+"There's one thing I ought to tell you before I go further. When we
+married, my wife made over all her property to me--rather against my
+will, for I saw how awkward it would be if my business affairs went
+wrong. However, she would have it so, and it was done. Well, about six
+weeks ago she came to me.
+
+"'Jack,' said she, 'when you took my money you said that if ever I
+wanted any I was to ask you for it.'
+
+"'Certainly,' said I. 'It's all your own.'
+
+"'Well,' said she, 'I want a hundred pounds.'
+
+"I was a bit staggered at this, for I had imagined it was simply a new
+dress or something of the kind that she was after.
+
+"'What on earth for?' I asked.
+
+"'Oh,' said she, in her playful way, 'you said that you were only my
+banker, and bankers never ask questions, you know.'
+
+"'If you really mean it, of course you shall have the money,' said I.
+
+"'Oh, yes, I really mean it.'
+
+"'And you won't tell me what you want it for?'
+
+"'Some day, perhaps, but not just at present, Jack.'
+
+"So I had to be content with that, though it was the first time that
+there had ever been any secret between us. I gave her a check, and I
+never thought any more of the matter. It may have nothing to do with
+what came afterwards, but I thought it only right to mention it.
+
+"Well, I told you just now that there is a cottage not far from our
+house. There is just a field between us, but to reach it you have to
+go along the road and then turn down a lane. Just beyond it is a nice
+little grove of Scotch firs, and I used to be very fond of strolling
+down there, for trees are always a neighborly kind of things. The
+cottage had been standing empty this eight months, and it was a pity,
+for it was a pretty two-storied place, with an old-fashioned porch and
+honeysuckle about it. I have stood many a time and thought what a neat
+little homestead it would make.
+
+"Well, last Monday evening I was taking a stroll down that way, when
+I met an empty van coming up the lane, and saw a pile of carpets and
+things lying about on the grass-plot beside the porch. It was clear that
+the cottage had at last been let. I walked past it, and wondered what
+sort of folk they were who had come to live so near us. And as I looked
+I suddenly became aware that a face was watching me out of one of the
+upper windows.
+
+"I don't know what there was about that face, Mr. Holmes, but it seemed
+to send a chill right down my back. I was some little way off, so that
+I could not make out the features, but there was something unnatural and
+inhuman about the face. That was the impression that I had, and I moved
+quickly forwards to get a nearer view of the person who was watching
+me. But as I did so the face suddenly disappeared, so suddenly that it
+seemed to have been plucked away into the darkness of the room. I stood
+for five minutes thinking the business over, and trying to analyze my
+impressions. I could not tell if the face were that of a man or a
+woman. It had been too far from me for that. But its color was what had
+impressed me most. It was of a livid chalky white, and with something
+set and rigid about it which was shockingly unnatural. So disturbed
+was I that I determined to see a little more of the new inmates of
+the cottage. I approached and knocked at the door, which was instantly
+opened by a tall, gaunt woman with a harsh, forbidding face.
+
+"'What may you be wantin'?' she asked, in a Northern accent.
+
+"'I am your neighbor over yonder,' said I, nodding towards my house. 'I
+see that you have only just moved in, so I thought that if I could be of
+any help to you in any--'
+
+"'Ay, we'll just ask ye when we want ye,' said she, and shut the door
+in my face. Annoyed at the churlish rebuff, I turned my back and walked
+home. All evening, though I tried to think of other things, my mind
+would still turn to the apparition at the window and the rudeness of the
+woman. I determined to say nothing about the former to my wife, for
+she is a nervous, highly strung woman, and I had no wish that she would
+share the unpleasant impression which had been produced upon myself. I
+remarked to her, however, before I fell asleep, that the cottage was now
+occupied, to which she returned no reply.
+
+"I am usually an extremely sound sleeper. It has been a standing jest
+in the family that nothing could ever wake me during the night. And yet
+somehow on that particular night, whether it may have been the slight
+excitement produced by my little adventure or not I know not, but
+I slept much more lightly than usual. Half in my dreams I was dimly
+conscious that something was going on in the room, and gradually became
+aware that my wife had dressed herself and was slipping on her mantle
+and her bonnet. My lips were parted to murmur out some sleepy words of
+surprise or remonstrance at this untimely preparation, when suddenly my
+half-opened eyes fell upon her face, illuminated by the candle-light,
+and astonishment held me dumb. She wore an expression such as I had
+never seen before--such as I should have thought her incapable of
+assuming. She was deadly pale and breathing fast, glancing furtively
+towards the bed as she fastened her mantle, to see if she had disturbed
+me. Then, thinking that I was still asleep, she slipped noiselessly from
+the room, and an instant later I heard a sharp creaking which could only
+come from the hinges of the front door. I sat up in bed and rapped my
+knuckles against the rail to make certain that I was truly awake. Then
+I took my watch from under the pillow. It was three in the morning. What
+on this earth could my wife be doing out on the country road at three in
+the morning?
+
+"I had sat for about twenty minutes turning the thing over in my mind
+and trying to find some possible explanation. The more I thought, the
+more extraordinary and inexplicable did it appear. I was still puzzling
+over it when I heard the door gently close again, and her footsteps
+coming up the stairs.
+
+"'Where in the world have you been, Effie?' I asked as she entered.
+
+"She gave a violent start and a kind of gasping cry when I spoke, and
+that cry and start troubled me more than all the rest, for there was
+something indescribably guilty about them. My wife had always been
+a woman of a frank, open nature, and it gave me a chill to see her
+slinking into her own room, and crying out and wincing when her own
+husband spoke to her.
+
+"'You awake, Jack!' she cried, with a nervous laugh. 'Why, I thought
+that nothing could awake you.'
+
+"'Where have you been?' I asked, more sternly.
+
+"'I don't wonder that you are surprised,' said she, and I could see that
+her fingers were trembling as she undid the fastenings of her mantle.
+'Why, I never remember having done such a thing in my life before. The
+fact is that I felt as though I were choking, and had a perfect longing
+for a breath of fresh air. I really think that I should have fainted if
+I had not gone out. I stood at the door for a few minutes, and now I am
+quite myself again.'
+
+"All the time that she was telling me this story she never once looked
+in my direction, and her voice was quite unlike her usual tones. It
+was evident to me that she was saying what was false. I said nothing
+in reply, but turned my face to the wall, sick at heart, with my mind
+filled with a thousand venomous doubts and suspicions. What was it that
+my wife was concealing from me? Where had she been during that strange
+expedition? I felt that I should have no peace until I knew, and yet I
+shrank from asking her again after once she had told me what was false.
+All the rest of the night I tossed and tumbled, framing theory after
+theory, each more unlikely than the last.
+
+"I should have gone to the City that day, but I was too disturbed in my
+mind to be able to pay attention to business matters. My wife seemed
+to be as upset as myself, and I could see from the little questioning
+glances which she kept shooting at me that she understood that I
+disbelieved her statement, and that she was at her wits' end what to do.
+We hardly exchanged a word during breakfast, and immediately afterwards
+I went out for a walk, that I might think the matter out in the fresh
+morning air.
+
+"I went as far as the Crystal Palace, spent an hour in the grounds, and
+was back in Norbury by one o'clock. It happened that my way took me past
+the cottage, and I stopped for an instant to look at the windows, and to
+see if I could catch a glimpse of the strange face which had looked
+out at me on the day before. As I stood there, imagine my surprise, Mr.
+Holmes, when the door suddenly opened and my wife walked out.
+
+"I was struck dumb with astonishment at the sight of her; but my
+emotions were nothing to those which showed themselves upon her face
+when our eyes met. She seemed for an instant to wish to shrink back
+inside the house again; and then, seeing how useless all concealment
+must be, she came forward, with a very white face and frightened eyes
+which belied the smile upon her lips.
+
+"'Ah, Jack,' she said, 'I have just been in to see if I can be of any
+assistance to our new neighbors. Why do you look at me like that, Jack?
+You are not angry with me?'
+
+"'So,' said I, 'this is where you went during the night.'
+
+"'What do you mean?' she cried.
+
+"'You came here. I am sure of it. Who are these people, that you should
+visit them at such an hour?'
+
+"'I have not been here before.'
+
+"'How can you tell me what you know is false?' I cried. 'Your very voice
+changes as you speak. When have I ever had a secret from you? I shall
+enter that cottage, and I shall probe the matter to the bottom.'
+
+"'No, no, Jack, for God's sake!' she gasped, in uncontrollable emotion.
+Then, as I approached the door, she seized my sleeve and pulled me back
+with convulsive strength.
+
+"'I implore you not to do this, Jack,' she cried. 'I swear that I will
+tell you everything some day, but nothing but misery can come of it if
+you enter that cottage.' Then, as I tried to shake her off, she clung to
+me in a frenzy of entreaty.
+
+"'Trust me, Jack!' she cried. 'Trust me only this once. You will never
+have cause to regret it. You know that I would not have a secret from
+you if it were not for your own sake. Our whole lives are at stake in
+this. If you come home with me, all will be well. If you force your way
+into that cottage, all is over between us.'
+
+"There was such earnestness, such despair, in her manner that her words
+arrested me, and I stood irresolute before the door.
+
+"'I will trust you on one condition, and on one condition only,' said I
+at last. 'It is that this mystery comes to an end from now. You are
+at liberty to preserve your secret, but you must promise me that there
+shall be no more nightly visits, no more doings which are kept from my
+knowledge. I am willing to forget those which are passed if you will
+promise that there shall be no more in the future.'
+
+"'I was sure that you would trust me,' she cried, with a great sigh of
+relief. 'It shall be just as you wish. Come away--oh, come away up to
+the house.'
+
+"Still pulling at my sleeve, she led me away from the cottage. As we
+went I glanced back, and there was that yellow livid face watching us
+out of the upper window. What link could there be between that creature
+and my wife? Or how could the coarse, rough woman whom I had seen the
+day before be connected with her? It was a strange puzzle, and yet I
+knew that my mind could never know ease again until I had solved it.
+
+"For two days after this I stayed at home, and my wife appeared to abide
+loyally by our engagement, for, as far as I know, she never stirred out
+of the house. On the third day, however, I had ample evidence that
+her solemn promise was not enough to hold her back from this secret
+influence which drew her away from her husband and her duty.
+
+"I had gone into town on that day, but I returned by the 2.40 instead of
+the 3.36, which is my usual train. As I entered the house the maid ran
+into the hall with a startled face.
+
+"'Where is your mistress?' I asked.
+
+"'I think that she has gone out for a walk,' she answered.
+
+"My mind was instantly filled with suspicion. I rushed upstairs to make
+sure that she was not in the house. As I did so I happened to glance out
+of one of the upper windows, and saw the maid with whom I had just been
+speaking running across the field in the direction of the cottage. Then
+of course I saw exactly what it all meant. My wife had gone over there,
+and had asked the servant to call her if I should return. Tingling with
+anger, I rushed down and hurried across, determined to end the matter
+once and forever. I saw my wife and the maid hurrying back along the
+lane, but I did not stop to speak with them. In the cottage lay the
+secret which was casting a shadow over my life. I vowed that, come what
+might, it should be a secret no longer. I did not even knock when I
+reached it, but turned the handle and rushed into the passage.
+
+"It was all still and quiet upon the ground floor. In the kitchen a
+kettle was singing on the fire, and a large black cat lay coiled up in
+the basket; but there was no sign of the woman whom I had seen before.
+I ran into the other room, but it was equally deserted. Then I rushed up
+the stairs, only to find two other rooms empty and deserted at the top.
+There was no one at all in the whole house. The furniture and pictures
+were of the most common and vulgar description, save in the one chamber
+at the window of which I had seen the strange face. That was comfortable
+and elegant, and all my suspicions rose into a fierce bitter flame when
+I saw that on the mantelpiece stood a copy of a full-length photograph
+of my wife, which had been taken at my request only three months ago.
+
+"I stayed long enough to make certain that the house was absolutely
+empty. Then I left it, feeling a weight at my heart such as I had never
+had before. My wife came out into the hall as I entered my house; but I
+was too hurt and angry to speak with her, and pushing past her, I made
+my way into my study. She followed me, however, before I could close the
+door.
+
+"'I am sorry that I broke my promise, Jack,' said she; 'but if you knew
+all the circumstances I am sure that you would forgive me.'
+
+"'Tell me everything, then,' said I.
+
+"'I cannot, Jack, I cannot,' she cried.
+
+"'Until you tell me who it is that has been living in that cottage, and
+who it is to whom you have given that photograph, there can never be any
+confidence between us,' said I, and breaking away from her, I left the
+house. That was yesterday, Mr. Holmes, and I have not seen her since,
+nor do I know anything more about this strange business. It is the first
+shadow that has come between us, and it has so shaken me that I do not
+know what I should do for the best. Suddenly this morning it occurred to
+me that you were the man to advise me, so I have hurried to you now, and
+I place myself unreservedly in your hands. If there is any point which I
+have not made clear, pray question me about it. But, above all, tell me
+quickly what I am to do, for this misery is more than I can bear."
+
+Holmes and I had listened with the utmost interest to this extraordinary
+statement, which had been delivered in the jerky, broken fashion of a
+man who is under the influence of extreme emotions. My companion sat
+silent for some time, with his chin upon his hand, lost in thought.
+
+"Tell me," said he at last, "could you swear that this was a man's face
+which you saw at the window?"
+
+"Each time that I saw it I was some distance away from it, so that it is
+impossible for me to say."
+
+"You appear, however, to have been disagreeably impressed by it."
+
+"It seemed to be of an unnatural color, and to have a strange rigidity
+about the features. When I approached, it vanished with a jerk."
+
+"How long is it since your wife asked you for a hundred pounds?"
+
+"Nearly two months."
+
+"Have you ever seen a photograph of her first husband?"
+
+"No; there was a great fire at Atlanta very shortly after his death, and
+all her papers were destroyed."
+
+"And yet she had a certificate of death. You say that you saw it."
+
+"Yes; she got a duplicate after the fire."
+
+"Did you ever meet any one who knew her in America?"
+
+"No."
+
+"Did she ever talk of revisiting the place?"
+
+"No."
+
+"Or get letters from it?"
+
+"No."
+
+"Thank you. I should like to think over the matter a little now. If the
+cottage is now permanently deserted we may have some difficulty. If, on
+the other hand, as I fancy is more likely, the inmates were warned of
+your coming, and left before you entered yesterday, then they may be
+back now, and we should clear it all up easily. Let me advise you, then,
+to return to Norbury, and to examine the windows of the cottage again.
+If you have reason to believe that it is inhabited, do not force your
+way in, but send a wire to my friend and me. We shall be with you within
+an hour of receiving it, and we shall then very soon get to the bottom
+of the business."
+
+"And if it is still empty?"
+
+"In that case I shall come out to-morrow and talk it over with you.
+Good-by; and, above all, do not fret until you know that you really have
+a cause for it."
+
+"I am afraid that this is a bad business, Watson," said my companion, as
+he returned after accompanying Mr. Grant Munro to the door. "What do you
+make of it?"
+
+"It had an ugly sound," I answered.
+
+"Yes. There's blackmail in it, or I am much mistaken."
+
+"And who is the blackmailer?"
+
+"Well, it must be the creature who lives in the only comfortable room
+in the place, and has her photograph above his fireplace. Upon my word,
+Watson, there is something very attractive about that livid face at the
+window, and I would not have missed the case for worlds."
+
+"You have a theory?"
+
+"Yes, a provisional one. But I shall be surprised if it does not turn
+out to be correct. This woman's first husband is in that cottage."
+
+"Why do you think so?"
+
+"How else can we explain her frenzied anxiety that her second one should
+not enter it? The facts, as I read them, are something like this:
+This woman was married in America. Her husband developed some hateful
+qualities; or shall we say that he contracted some loathsome disease,
+and became a leper or an imbecile? She flies from him at last, returns
+to England, changes her name, and starts her life, as she thinks,
+afresh. She has been married three years, and believes that her position
+is quite secure, having shown her husband the death certificate of
+some man whose name she has assumed, when suddenly her whereabouts
+is discovered by her first husband; or, we may suppose, by some
+unscrupulous woman who has attached herself to the invalid. They write
+to the wife, and threaten to come and expose her. She asks for a hundred
+pounds, and endeavors to buy them off. They come in spite of it, and
+when the husband mentions casually to the wife that there are new-comers
+in the cottage, she knows in some way that they are her pursuers. She
+waits until her husband is asleep, and then she rushes down to endeavor
+to persuade them to leave her in peace. Having no success, she goes
+again next morning, and her husband meets her, as he has told us, as
+she comes out. She promises him then not to go there again, but two days
+afterwards the hope of getting rid of those dreadful neighbors was too
+strong for her, and she made another attempt, taking down with her the
+photograph which had probably been demanded from her. In the midst of
+this interview the maid rushed in to say that the master had come home,
+on which the wife, knowing that he would come straight down to the
+cottage, hurried the inmates out at the back door, into the grove of
+fir-trees, probably, which was mentioned as standing near. In this way
+he found the place deserted. I shall be very much surprised, however, if
+it is still so when he reconnoitres it this evening. What do you think
+of my theory?"
+
+"It is all surmise."
+
+"But at least it covers all the facts. When new facts come to our
+knowledge which cannot be covered by it, it will be time enough to
+reconsider it. We can do nothing more until we have a message from our
+friend at Norbury."
+
+But we had not a very long time to wait for that. It came just as we had
+finished our tea. "The cottage is still tenanted," it said. "Have seen
+the face again at the window. Will meet the seven o'clock train, and
+will take no steps until you arrive."
+
+
+He was waiting on the platform when we stepped out, and we could see in
+the light of the station lamps that he was very pale, and quivering with
+agitation.
+
+"They are still there, Mr. Holmes," said he, laying his hand hard upon
+my friend's sleeve. "I saw lights in the cottage as I came down. We
+shall settle it now once and for all."
+
+"What is your plan, then?" asked Holmes, as he walked down the dark
+tree-lined road.
+
+"I am going to force my way in and see for myself who is in the house. I
+wish you both to be there as witnesses."
+
+"You are quite determined to do this, in spite of your wife's warning
+that it is better that you should not solve the mystery?"
+
+"Yes, I am determined."
+
+"Well, I think that you are in the right. Any truth is better than
+indefinite doubt. We had better go up at once. Of course, legally, we
+are putting ourselves hopelessly in the wrong; but I think that it is
+worth it."
+
+It was a very dark night, and a thin rain began to fall as we turned
+from the high road into a narrow lane, deeply rutted, with hedges on
+either side. Mr. Grant Munro pushed impatiently forward, however, and we
+stumbled after him as best we could.
+
+"There are the lights of my house," he murmured, pointing to a glimmer
+among the trees. "And here is the cottage which I am going to enter."
+
+We turned a corner in the lane as he spoke, and there was the building
+close beside us. A yellow bar falling across the black foreground showed
+that the door was not quite closed, and one window in the upper story
+was brightly illuminated. As we looked, we saw a dark blur moving across
+the blind.
+
+"There is that creature!" cried Grant Munro. "You can see for yourselves
+that some one is there. Now follow me, and we shall soon know all."
+
+We approached the door; but suddenly a woman appeared out of the shadow
+and stood in the golden track of the lamp-light. I could not see her
+face in the darkness, but her arms were thrown out in an attitude of
+entreaty.
+
+"For God's sake, don't Jack!" she cried. "I had a presentiment that you
+would come this evening. Think better of it, dear! Trust me again, and
+you will never have cause to regret it."
+
+"I have trusted you too long, Effie," he cried, sternly. "Leave go of
+me! I must pass you. My friends and I are going to settle this matter
+once and forever!" He pushed her to one side, and we followed closely
+after him. As he threw the door open an old woman ran out in front of
+him and tried to bar his passage, but he thrust her back, and an instant
+afterwards we were all upon the stairs. Grant Munro rushed into the
+lighted room at the top, and we entered at his heels.
+
+It was a cosey, well-furnished apartment, with two candles burning upon
+the table and two upon the mantelpiece. In the corner, stooping over a
+desk, there sat what appeared to be a little girl. Her face was turned
+away as we entered, but we could see that she was dressed in a red
+frock, and that she had long white gloves on. As she whisked round
+to us, I gave a cry of surprise and horror. The face which she turned
+towards us was of the strangest livid tint, and the features were
+absolutely devoid of any expression. An instant later the mystery was
+explained. Holmes, with a laugh, passed his hand behind the child's
+ear, a mask peeled off from her countenance, and there was a little coal
+black negress, with all her white teeth flashing in amusement at our
+amazed faces. I burst out laughing, out of sympathy with her merriment;
+but Grant Munro stood staring, with his hand clutching his throat.
+
+"My God!" he cried. "What can be the meaning of this?"
+
+"I will tell you the meaning of it," cried the lady, sweeping into
+the room with a proud, set face. "You have forced me, against my own
+judgment, to tell you, and now we must both make the best of it. My
+husband died at Atlanta. My child survived."
+
+"Your child?"
+
+She drew a large silver locket from her bosom. "You have never seen this
+open."
+
+"I understood that it did not open."
+
+She touched a spring, and the front hinged back. There was a portrait
+within of a man strikingly handsome and intelligent-looking, but bearing
+unmistakable signs upon his features of his African descent.
+
+"That is John Hebron, of Atlanta," said the lady, "and a nobler man
+never walked the earth. I cut myself off from my race in order to wed
+him, but never once while he lived did I for an instant regret it. It
+was our misfortune that our only child took after his people rather than
+mine. It is often so in such matches, and little Lucy is darker far than
+ever her father was. But dark or fair, she is my own dear little girlie,
+and her mother's pet." The little creature ran across at the words and
+nestled up against the lady's dress. "When I left her in America," she
+continued, "it was only because her health was weak, and the change
+might have done her harm. She was given to the care of a faithful Scotch
+woman who had once been our servant. Never for an instant did I dream
+of disowning her as my child. But when chance threw you in my way, Jack,
+and I learned to love you, I feared to tell you about my child. God
+forgive me, I feared that I should lose you, and I had not the courage
+to tell you. I had to choose between you, and in my weakness I turned
+away from my own little girl. For three years I have kept her existence
+a secret from you, but I heard from the nurse, and I knew that all was
+well with her. At last, however, there came an overwhelming desire to
+see the child once more. I struggled against it, but in vain. Though I
+knew the danger, I determined to have the child over, if it were but
+for a few weeks. I sent a hundred pounds to the nurse, and I gave her
+instructions about this cottage, so that she might come as a neighbor,
+without my appearing to be in any way connected with her. I pushed my
+precautions so far as to order her to keep the child in the house during
+the daytime, and to cover up her little face and hands so that even
+those who might see her at the window should not gossip about there
+being a black child in the neighborhood. If I had been less cautious
+I might have been more wise, but I was half crazy with fear that you
+should learn the truth.
+
+"It was you who told me first that the cottage was occupied. I should
+have waited for the morning, but I could not sleep for excitement, and
+so at last I slipped out, knowing how difficult it is to awake you. But
+you saw me go, and that was the beginning of my troubles. Next day you
+had my secret at your mercy, but you nobly refrained from pursuing your
+advantage. Three days later, however, the nurse and child only just
+escaped from the back door as you rushed in at the front one. And now
+to-night you at last know all, and I ask you what is to become of us, my
+child and me?" She clasped her hands and waited for an answer.
+
+It was a long ten minutes before Grant Munro broke the silence, and
+when his answer came it was one of which I love to think. He lifted
+the little child, kissed her, and then, still carrying her, he held his
+other hand out to his wife and turned towards the door.
+
+"We can talk it over more comfortably at home," said he. "I am not a
+very good man, Effie, but I think that I am a better one than you have
+given me credit for being."
+
+Holmes and I followed them down the lane, and my friend plucked at my
+sleeve as we came out.
+
+"I think," said he, "that we shall be of more use in London than in
+Norbury."
+
+Not another word did he say of the case until late that night, when he
+was turning away, with his lighted candle, for his bedroom.
+
+"Watson," said he, "if it should ever strike you that I am getting a
+little over-confident in my powers, or giving less pains to a case
+than it deserves, kindly whisper 'Norbury' in my ear, and I shall be
+infinitely obliged to you."
+
+
+
+
+Adventure III. The Stock-Broker's Clerk
+
+
+Shortly after my marriage I had bought a connection in the Paddington
+district. Old Mr. Farquhar, from whom I purchased it, had at one time an
+excellent general practice; but his age, and an affliction of the nature
+of St. Vitus's dance from which he suffered, had very much thinned it.
+The public not unnaturally goes on the principle that he who would heal
+others must himself be whole, and looks askance at the curative powers
+of the man whose own case is beyond the reach of his drugs. Thus as my
+predecessor weakened his practice declined, until when I purchased
+it from him it had sunk from twelve hundred to little more than three
+hundred a year. I had confidence, however, in my own youth and energy,
+and was convinced that in a very few years the concern would be as
+flourishing as ever.
+
+For three months after taking over the practice I was kept very closely
+at work, and saw little of my friend Sherlock Holmes, for I was too busy
+to visit Baker Street, and he seldom went anywhere himself save upon
+professional business. I was surprised, therefore, when, one morning in
+June, as I sat reading the British Medical Journal after breakfast, I
+heard a ring at the bell, followed by the high, somewhat strident tones
+of my old companion's voice.
+
+"Ah, my dear Watson," said he, striding into the room, "I am very
+delighted to see you! I trust that Mrs. Watson has entirely recovered
+from all the little excitements connected with our adventure of the Sign
+of Four."
+
+"Thank you, we are both very well," said I, shaking him warmly by the
+hand.
+
+"And I hope, also," he continued, sitting down in the rocking-chair,
+"that the cares of medical practice have not entirely obliterated the
+interest which you used to take in our little deductive problems."
+
+"On the contrary," I answered, "it was only last night that I was
+looking over my old notes, and classifying some of our past results."
+
+"I trust that you don't consider your collection closed."
+
+"Not at all. I should wish nothing better than to have some more of such
+experiences."
+
+"To-day, for example?"
+
+"Yes, to-day, if you like."
+
+"And as far off as Birmingham?"
+
+"Certainly, if you wish it."
+
+"And the practice?"
+
+"I do my neighbor's when he goes. He is always ready to work off the
+debt."
+
+"Ha! Nothing could be better," said Holmes, leaning back in his chair
+and looking keenly at me from under his half closed lids. "I perceive
+that you have been unwell lately. Summer colds are always a little
+trying."
+
+"I was confined to the house by a severe chill for three days last week.
+I thought, however, that I had cast off every trace of it."
+
+"So you have. You look remarkably robust."
+
+"How, then, did you know of it?"
+
+"My dear fellow, you know my methods."
+
+"You deduced it, then?"
+
+"Certainly."
+
+"And from what?"
+
+"From your slippers."
+
+I glanced down at the new patent leathers which I was wearing. "How on
+earth--" I began, but Holmes answered my question before it was asked.
+
+"Your slippers are new," he said. "You could not have had them more than
+a few weeks. The soles which you are at this moment presenting to me are
+slightly scorched. For a moment I thought they might have got wet and
+been burned in the drying. But near the instep there is a small circular
+wafer of paper with the shopman's hieroglyphics upon it. Damp would of
+course have removed this. You had, then, been sitting with your feet
+outstretched to the fire, which a man would hardly do even in so wet a
+June as this if he were in his full health."
+
+Like all Holmes's reasoning the thing seemed simplicity itself when it
+was once explained. He read the thought upon my features, and his smile
+had a tinge of bitterness.
+
+"I am afraid that I rather give myself away when I explain," said he.
+"Results without causes are much more impressive. You are ready to come
+to Birmingham, then?"
+
+"Certainly. What is the case?"
+
+"You shall hear it all in the train. My client is outside in a
+four-wheeler. Can you come at once?"
+
+"In an instant." I scribbled a note to my neighbor, rushed upstairs to
+explain the matter to my wife, and joined Holmes upon the door-step.
+
+"Your neighbor is a doctor," said he, nodding at the brass plate.
+
+"Yes; he bought a practice as I did."
+
+"An old-established one?"
+
+"Just the same as mine. Both have been ever since the houses were
+built."
+
+"Ah! Then you got hold of the best of the two."
+
+"I think I did. But how do you know?"
+
+"By the steps, my boy. Yours are worn three inches deeper than his. But
+this gentleman in the cab is my client, Mr. Hall Pycroft. Allow me to
+introduce you to him. Whip your horse up, cabby, for we have only just
+time to catch our train."
+
+The man whom I found myself facing was a well built, fresh-complexioned
+young fellow, with a frank, honest face and a slight, crisp, yellow
+mustache. He wore a very shiny top hat and a neat suit of sober black,
+which made him look what he was--a smart young City man, of the class
+who have been labeled cockneys, but who give us our crack volunteer
+regiments, and who turn out more fine athletes and sportsmen than any
+body of men in these islands. His round, ruddy face was naturally full
+of cheeriness, but the corners of his mouth seemed to me to be pulled
+down in a half-comical distress. It was not, however, until we were
+all in a first-class carriage and well started upon our journey to
+Birmingham that I was able to learn what the trouble was which had
+driven him to Sherlock Holmes.
+
+"We have a clear run here of seventy minutes," Holmes remarked. "I
+want you, Mr. Hall Pycroft, to tell my friend your very interesting
+experience exactly as you have told it to me, or with more detail if
+possible. It will be of use to me to hear the succession of events
+again. It is a case, Watson, which may prove to have something in it, or
+may prove to have nothing, but which, at least, presents those unusual
+and outré features which are as dear to you as they are to me. Now, Mr.
+Pycroft, I shall not interrupt you again."
+
+Our young companion looked at me with a twinkle in his eye.
+
+"The worst of the story is," said he, "that I show myself up as such a
+confounded fool. Of course it may work out all right, and I don't see
+that I could have done otherwise; but if I have lost my crib and get
+nothing in exchange I shall feel what a soft Johnnie I have been. I'm
+not very good at telling a story, Dr. Watson, but it is like this with
+me:
+
+"I used to have a billet at Coxon & Woodhouse's, of Draper's Gardens,
+but they were let in early in the spring through the Venezuelan loan,
+as no doubt you remember, and came a nasty cropper. I had been with them
+five years, and old Coxon gave me a ripping good testimonial when
+the smash came, but of course we clerks were all turned adrift, the
+twenty-seven of us. I tried here and tried there, but there were lots of
+other chaps on the same lay as myself, and it was a perfect frost for a
+long time. I had been taking three pounds a week at Coxon's, and I had
+saved about seventy of them, but I soon worked my way through that and
+out at the other end. I was fairly at the end of my tether at last,
+and could hardly find the stamps to answer the advertisements or the
+envelopes to stick them to. I had worn out my boots paddling up office
+stairs, and I seemed just as far from getting a billet as ever.
+
+"At last I saw a vacancy at Mawson & Williams's, the great stock-broking
+firm in Lombard Street. I dare say E. C. Is not much in your line, but
+I can tell you that this is about the richest house in London.
+The advertisement was to be answered by letter only. I sent in my
+testimonial and application, but without the least hope of getting it.
+Back came an answer by return, saying that if I would appear next Monday
+I might take over my new duties at once, provided that my appearance was
+satisfactory. No one knows how these things are worked. Some people say
+that the manager just plunges his hand into the heap and takes the first
+that comes. Anyhow it was my innings that time, and I don't ever wish to
+feel better pleased. The screw was a pound a week rise, and the duties
+just about the same as at Coxon's.
+
+"And now I come to the queer part of the business. I was in diggings out
+Hampstead way, 17 Potter's Terrace. Well, I was sitting doing a smoke
+that very evening after I had been promised the appointment, when up
+came my landlady with a card which had 'Arthur Pinner, Financial Agent,'
+printed upon it. I had never heard the name before and could not imagine
+what he wanted with me; but, of course, I asked her to show him up. In
+he walked, a middle-sized, dark-haired, dark-eyed, black-bearded man,
+with a touch of the Sheeny about his nose. He had a brisk kind of way
+with him and spoke sharply, like a man who knew the value of time."
+
+"'Mr. Hall Pycroft, I believe?'" said he.
+
+"'Yes, sir,' I answered, pushing a chair towards him.
+
+"'Lately engaged at Coxon & Woodhouse's?'
+
+"'Yes, sir.'
+
+"'And now on the staff of Mawson's.'
+
+"'Quite so.'
+
+"'Well,' said he, 'the fact is that I have heard some really
+extraordinary stories about your financial ability. You remember Parker,
+who used to be Coxon's manager? He can never say enough about it.'
+
+"Of course I was pleased to hear this. I had always been pretty sharp in
+the office, but I had never dreamed that I was talked about in the City
+in this fashion.
+
+"'You have a good memory?' said he.
+
+"'Pretty fair,' I answered, modestly.
+
+"'Have you kept in touch with the market while you have been out of
+work?' he asked.
+
+"'Yes. I read the stock exchange list every morning.'
+
+"'Now that shows real application!' he cried. 'That is the way to
+prosper! You won't mind my testing you, will you? Let me see. How are
+Ayrshires?'
+
+"'A hundred and six and a quarter to a hundred and five and
+seven-eighths.'
+
+"'And New Zealand consolidated?'
+
+"'A hundred and four.
+
+"'And British Broken Hills?'
+
+"'Seven to seven-and-six.'
+
+"'Wonderful!' he cried, with his hands up. 'This quite fits in with all
+that I had heard. My boy, my boy, you are very much too good to be a
+clerk at Mawson's!'
+
+"This outburst rather astonished me, as you can think. 'Well,' said I,
+'other people don't think quite so much of me as you seem to do, Mr.
+Pinner. I had a hard enough fight to get this berth, and I am very glad
+to have it.'
+
+"'Pooh, man; you should soar above it. You are not in your true sphere.
+Now, I'll tell you how it stands with me. What I have to offer is little
+enough when measured by your ability, but when compared with Mawson's,
+it's light to dark. Let me see. When do you go to Mawson's?'
+
+"'On Monday.'
+
+"'Ha, ha! I think I would risk a little sporting flutter that you don't
+go there at all.'
+
+"'Not go to Mawson's?'
+
+"'No, sir. By that day you will be the business manager of the
+Franco-Midland Hardware Company, Limited, with a hundred and thirty-four
+branches in the towns and villages of France, not counting one in
+Brussels and one in San Remo.'
+
+"This took my breath away. 'I never heard of it,' said I.
+
+"'Very likely not. It has been kept very quiet, for the capital was all
+privately subscribed, and it's too good a thing to let the public
+into. My brother, Harry Pinner, is promoter, and joins the board after
+allotment as managing director. He knew I was in the swim down here, and
+asked me to pick up a good man cheap. A young, pushing man with plenty
+of snap about him. Parker spoke of you, and that brought me here
+to-night. We can only offer you a beggarly five hundred to start with.'
+
+"'Five hundred a year!' I shouted.
+
+"'Only that at the beginning; but you are to have an overriding
+commission of one per cent on all business done by your agents, and you
+may take my word for it that this will come to more than your salary.'
+
+"'But I know nothing about hardware.'
+
+"'Tut, my boy; you know about figures.'
+
+"My head buzzed, and I could hardly sit still in my chair. But suddenly
+a little chill of doubt came upon me.
+
+"'I must be frank with you,' said I. 'Mawson only gives me two hundred,
+but Mawson is safe. Now, really, I know so little about your company
+that--'
+
+"'Ah, smart, smart!' he cried, in a kind of ecstasy of delight. 'You
+are the very man for us. You are not to be talked over, and quite right,
+too. Now, here's a note for a hundred pounds, and if you think that we
+can do business you may just slip it into your pocket as an advance upon
+your salary.'
+
+"'That is very handsome,' said I. 'When should I take over my new
+duties?'
+
+"'Be in Birmingham to-morrow at one,' said he. 'I have a note in my
+pocket here which you will take to my brother. You will find him at
+126b Corporation Street, where the temporary offices of the company
+are situated. Of course he must confirm your engagement, but between
+ourselves it will be all right.'
+
+"'Really, I hardly know how to express my gratitude, Mr. Pinner,' said
+I.
+
+"'Not at all, my boy. You have only got your deserts. There are one or
+two small things--mere formalities--which I must arrange with you.
+You have a bit of paper beside you there. Kindly write upon it "I am
+perfectly willing to act as business manager to the Franco-Midland
+Hardware Company, Limited, at a minimum salary of L500."'
+
+"I did as he asked, and he put the paper in his pocket.
+
+"'There is one other detail,' said he. 'What do you intend to do about
+Mawson's?'
+
+"I had forgotten all about Mawson's in my joy. 'I'll write and resign,'
+said I.
+
+"'Precisely what I don't want you to do. I had a row over you with
+Mawson's manager. I had gone up to ask him about you, and he was very
+offensive; accused me of coaxing you away from the service of the firm,
+and that sort of thing. At last I fairly lost my temper. "If you want
+good men you should pay them a good price," said I.'
+
+"'He would rather have our small price than your big one,' said he.
+
+"'I'll lay you a fiver,' said I, 'that when he has my offer you'll never
+so much as hear from him again.'
+
+"'Done!' said he. 'We picked him out of the gutter, and he won't leave
+us so easily.' Those were his very words."
+
+"'The impudent scoundrel!' I cried. 'I've never so much as seen him in
+my life. Why should I consider him in any way? I shall certainly not
+write if you would rather I didn't.'
+
+"'Good! That's a promise,' said he, rising from his chair. 'Well, I'm
+delighted to have got so good a man for my brother. Here's your advance
+of a hundred pounds, and here is the letter. Make a note of the address,
+126b Corporation Street, and remember that one o'clock to-morrow is
+your appointment. Good-night; and may you have all the fortune that you
+deserve!'
+
+"That's just about all that passed between us, as near as I can
+remember. You can imagine, Dr. Watson, how pleased I was at such an
+extraordinary bit of good fortune. I sat up half the night hugging
+myself over it, and next day I was off to Birmingham in a train that
+would take me in plenty time for my appointment. I took my things to
+a hotel in New Street, and then I made my way to the address which had
+been given me.
+
+"It was a quarter of an hour before my time, but I thought that would
+make no difference. 126b was a passage between two large shops, which
+led to a winding stone stair, from which there were many flats, let as
+offices to companies or professional men. The names of the occupants
+were painted at the bottom on the wall, but there was no such name as
+the Franco-Midland Hardware Company, Limited. I stood for a few minutes
+with my heart in my boots, wondering whether the whole thing was an
+elaborate hoax or not, when up came a man and addressed me. He was very
+like the chap I had seen the night before, the same figure and voice,
+but he was clean shaven and his hair was lighter.
+
+"'Are you Mr. Hall Pycroft?' he asked.
+
+"'Yes,' said I.
+
+"'Oh! I was expecting you, but you are a trifle before your time. I had
+a note from my brother this morning in which he sang your praises very
+loudly.'
+
+"'I was just looking for the offices when you came.
+
+"'We have not got our name up yet, for we only secured these temporary
+premises last week. Come up with me, and we will talk the matter over.'
+
+"I followed him to the top of a very lofty stair, and there, right under
+the slates, were a couple of empty, dusty little rooms, uncarpeted and
+uncurtained, into which he led me. I had thought of a great office with
+shining tables and rows of clerks, such as I was used to, and I dare say
+I stared rather straight at the two deal chairs and one little table,
+which, with a ledger and a waste paper basket, made up the whole
+furniture.
+
+"'Don't be disheartened, Mr. Pycroft,' said my new acquaintance, seeing
+the length of my face. 'Rome was not built in a day, and we have lots of
+money at our backs, though we don't cut much dash yet in offices. Pray
+sit down, and let me have your letter.'
+
+"I gave it to him, and he read it over very carefully.
+
+"'You seem to have made a vast impression upon my brother Arthur,' said
+he; 'and I know that he is a pretty shrewd judge. He swears by London,
+you know; and I by Birmingham; but this time I shall follow his advice.
+Pray consider yourself definitely engaged."
+
+"'What are my duties?' I asked.
+
+"'You will eventually manage the great depot in Paris, which will pour
+a flood of English crockery into the shops of a hundred and thirty-four
+agents in France. The purchase will be completed in a week, and
+meanwhile you will remain in Birmingham and make yourself useful.'
+
+"'How?'
+
+"For answer, he took a big red book out of a drawer.
+
+"'This is a directory of Paris,' said he, 'with the trades after the
+names of the people. I want you to take it home with you, and to mark
+off all the hardware sellers, with their addresses. It would be of the
+greatest use to me to have them.'
+
+"'Surely there are classified lists?' I suggested.
+
+"'Not reliable ones. Their system is different from ours. Stick at it,
+and let me have the lists by Monday, at twelve. Good-day, Mr. Pycroft.
+If you continue to show zeal and intelligence you will find the company
+a good master.'
+
+"I went back to the hotel with the big book under my arm, and with very
+conflicting feelings in my breast. On the one hand, I was definitely
+engaged and had a hundred pounds in my pocket; on the other, the look
+of the offices, the absence of name on the wall, and other of the points
+which would strike a business man had left a bad impression as to the
+position of my employers. However, come what might, I had my money, so I
+settled down to my task. All Sunday I was kept hard at work, and yet by
+Monday I had only got as far as H. I went round to my employer, found
+him in the same dismantled kind of room, and was told to keep at
+it until Wednesday, and then come again. On Wednesday it was still
+unfinished, so I hammered away until Friday--that is, yesterday. Then I
+brought it round to Mr. Harry Pinner.
+
+"'Thank you very much,' said he; 'I fear that I underrated the
+difficulty of the task. This list will be of very material assistance to
+me.'
+
+"'It took some time,' said I.
+
+"'And now,' said he, 'I want you to make a list of the furniture shops,
+for they all sell crockery.'
+
+"'Very good.'
+
+"'And you can come up to-morrow evening, at seven, and let me know how
+you are getting on. Don't overwork yourself. A couple of hours at Day's
+Music Hall in the evening would do you no harm after your labors.' He
+laughed as he spoke, and I saw with a thrill that his second tooth upon
+the left-hand side had been very badly stuffed with gold."
+
+
+Sherlock Holmes rubbed his hands with delight, and I stared with
+astonishment at our client.
+
+"You may well look surprised, Dr. Watson; but it is this way," said he:
+"When I was speaking to the other chap in London, at the time that he
+laughed at my not going to Mawson's, I happened to notice that his tooth
+was stuffed in this very identical fashion. The glint of the gold in
+each case caught my eye, you see. When I put that with the voice and
+figure being the same, and only those things altered which might be
+changed by a razor or a wig, I could not doubt that it was the same man.
+Of course you expect two brothers to be alike, but not that they should
+have the same tooth stuffed in the same way. He bowed me out, and I
+found myself in the street, hardly knowing whether I was on my head or
+my heels. Back I went to my hotel, put my head in a basin of cold water,
+and tried to think it out. Why had he sent me from London to Birmingham?
+Why had he got there before me? And why had he written a letter from
+himself to himself? It was altogether too much for me, and I could make
+no sense of it. And then suddenly it struck me that what was dark to me
+might be very light to Mr. Sherlock Holmes. I had just time to get up to
+town by the night train to see him this morning, and to bring you both
+back with me to Birmingham."
+
+There was a pause after the stock-broker's clerk had concluded his
+surprising experience. Then Sherlock Holmes cocked his eye at me,
+leaning back on the cushions with a pleased and yet critical face, like
+a connoisseur who has just taken his first sip of a comet vintage.
+
+"Rather fine, Watson, is it not?" said he. "There are points in it which
+please me. I think that you will agree with me that an interview with
+Mr. Arthur Harry Pinner in the temporary offices of the Franco-Midland
+Hardware Company, Limited, would be a rather interesting experience for
+both of us."
+
+"But how can we do it?" I asked.
+
+"Oh, easily enough," said Hall Pycroft, cheerily. "You are two friends
+of mine who are in want of a billet, and what could be more natural than
+that I should bring you both round to the managing director?"
+
+"Quite so, of course," said Holmes. "I should like to have a look at
+the gentleman, and see if I can make anything of his little game.
+What qualities have you, my friend, which would make your services
+so valuable? or is it possible that--" He began biting his nails and
+staring blankly out of the window, and we hardly drew another word from
+him until we were in New Street.
+
+At seven o'clock that evening we were walking, the three of us, down
+Corporation Street to the company's offices.
+
+"It is no use our being at all before our time," said our client. "He
+only comes there to see me, apparently, for the place is deserted up to
+the very hour he names."
+
+"That is suggestive," remarked Holmes.
+
+"By Jove, I told you so!" cried the clerk. "That's he walking ahead of
+us there."
+
+He pointed to a smallish, dark, well-dressed man who was bustling along
+the other side of the road. As we watched him he looked across at a boy
+who was bawling out the latest edition of the evening paper, and running
+over among the cabs and busses, he bought one from him. Then, clutching
+it in his hand, he vanished through a door-way.
+
+"There he goes!" cried Hall Pycroft. "These are the company's offices
+into which he has gone. Come with me, and I'll fix it up as easily as
+possible."
+
+Following his lead, we ascended five stories, until we found ourselves
+outside a half-opened door, at which our client tapped. A voice within
+bade us enter, and we entered a bare, unfurnished room such as Hall
+Pycroft had described. At the single table sat the man whom we had seen
+in the street, with his evening paper spread out in front of him, and as
+he looked up at us it seemed to me that I had never looked upon a face
+which bore such marks of grief, and of something beyond grief--of a
+horror such as comes to few men in a lifetime. His brow glistened with
+perspiration, his cheeks were of the dull, dead white of a fish's belly,
+and his eyes were wild and staring. He looked at his clerk as though he
+failed to recognize him, and I could see by the astonishment depicted
+upon our conductor's face that this was by no means the usual appearance
+of his employer.
+
+"You look ill, Mr. Pinner!" he exclaimed.
+
+"Yes, I am not very well," answered the other, making obvious efforts
+to pull himself together, and licking his dry lips before he spoke. "Who
+are these gentlemen whom you have brought with you?"
+
+"One is Mr. Harris, of Bermondsey, and the other is Mr. Price, of this
+town," said our clerk, glibly. "They are friends of mine and gentlemen
+of experience, but they have been out of a place for some little time,
+and they hoped that perhaps you might find an opening for them in the
+company's employment."
+
+"Very possibly! Very possibly!" cried Mr. Pinner with a ghastly smile.
+"Yes, I have no doubt that we shall be able to do something for you.
+What is your particular line, Mr. Harris?"
+
+"I am an accountant," said Holmes.
+
+"Ah yes, we shall want something of the sort. And you, Mr. Price?"
+
+"A clerk," said I.
+
+"I have every hope that the company may accommodate you. I will let you
+know about it as soon as we come to any conclusion. And now I beg that
+you will go. For God's sake leave me to myself!"
+
+These last words were shot out of him, as though the constraint which
+he was evidently setting upon himself had suddenly and utterly burst
+asunder. Holmes and I glanced at each other, and Hall Pycroft took a
+step towards the table.
+
+"You forget, Mr. Pinner, that I am here by appointment to receive some
+directions from you," said he.
+
+"Certainly, Mr. Pycroft, certainly," the other resumed in a calmer tone.
+"You may wait here a moment; and there is no reason why your friends
+should not wait with you. I will be entirely at your service in three
+minutes, if I might trespass upon your patience so far." He rose with a
+very courteous air, and, bowing to us, he passed out through a door at
+the farther end of the room, which he closed behind him.
+
+"What now?" whispered Holmes. "Is he giving us the slip?"
+
+"Impossible," answered Pycroft.
+
+"Why so?"
+
+"That door leads into an inner room."
+
+"There is no exit?"
+
+"None."
+
+"Is it furnished?"
+
+"It was empty yesterday."
+
+"Then what on earth can he be doing? There is something which I don't
+understand in this manner. If ever a man was three parts mad with
+terror, that man's name is Pinner. What can have put the shivers on
+him?"
+
+"He suspects that we are detectives," I suggested.
+
+"That's it," cried Pycroft.
+
+Holmes shook his head. "He did not turn pale. He was pale when we
+entered the room," said he. "It is just possible that--"
+
+His words were interrupted by a sharp rat-tat from the direction of the
+inner door.
+
+"What the deuce is he knocking at his own door for?" cried the clerk.
+
+Again and much louder came the rat-tat-tat. We all gazed expectantly at
+the closed door. Glancing at Holmes, I saw his face turn rigid, and he
+leaned forward in intense excitement. Then suddenly came a low guggling,
+gargling sound, and a brisk drumming upon woodwork. Holmes sprang
+frantically across the room and pushed at the door. It was fastened on
+the inner side. Following his example, we threw ourselves upon it with
+all our weight. One hinge snapped, then the other, and down came the
+door with a crash. Rushing over it, we found ourselves in the inner
+room. It was empty.
+
+But it was only for a moment that we were at fault. At one corner, the
+corner nearest the room which we had left, there was a second door.
+Holmes sprang to it and pulled it open. A coat and waistcoat were lying
+on the floor, and from a hook behind the door, with his own braces
+round his neck, was hanging the managing director of the Franco-Midland
+Hardware Company. His knees were drawn up, his head hung at a dreadful
+angle to his body, and the clatter of his heels against the door made
+the noise which had broken in upon our conversation. In an instant I
+had caught him round the waist, and held him up while Holmes and Pycroft
+untied the elastic bands which had disappeared between the livid creases
+of skin. Then we carried him into the other room, where he lay with
+a clay-colored face, puffing his purple lips in and out with every
+breath--a dreadful wreck of all that he had been but five minutes
+before.
+
+"What do you think of him, Watson?" asked Holmes.
+
+I stooped over him and examined him. His pulse was feeble and
+intermittent, but his breathing grew longer, and there was a little
+shivering of his eyelids, which showed a thin white slit of ball
+beneath.
+
+"It has been touch and go with him," said I, "but he'll live now. Just
+open that window, and hand me the water carafe." I undid his collar,
+poured the cold water over his face, and raised and sank his arms until
+he drew a long, natural breath. "It's only a question of time now," said
+I, as I turned away from him.
+
+Holmes stood by the table, with his hands deep in his trouser's pockets
+and his chin upon his breast.
+
+"I suppose we ought to call the police in now," said he. "And yet I
+confess that I'd like to give them a complete case when they come."
+
+"It's a blessed mystery to me," cried Pycroft, scratching his head.
+"Whatever they wanted to bring me all the way up here for, and then--"
+
+"Pooh! All that is clear enough," said Holmes impatiently. "It is this
+last sudden move."
+
+"You understand the rest, then?"
+
+"I think that it is fairly obvious. What do you say, Watson?"
+
+I shrugged my shoulders. "I must confess that I am out of my depths,"
+said I.
+
+"Oh surely if you consider the events at first they can only point to
+one conclusion."
+
+"What do you make of them?"
+
+"Well, the whole thing hinges upon two points. The first is the making
+of Pycroft write a declaration by which he entered the service of this
+preposterous company. Do you not see how very suggestive that is?"
+
+"I am afraid I miss the point."
+
+"Well, why did they want him to do it? Not as a business matter, for
+these arrangements are usually verbal, and there was no earthly business
+reason why this should be an exception. Don't you see, my young friend,
+that they were very anxious to obtain a specimen of your handwriting,
+and had no other way of doing it?"
+
+"And why?"
+
+"Quite so. Why? When we answer that we have made some progress with our
+little problem. Why? There can be only one adequate reason. Some one
+wanted to learn to imitate your writing, and had to procure a specimen
+of it first. And now if we pass on to the second point we find that each
+throws light upon the other. That point is the request made by Pinner
+that you should not resign your place, but should leave the manager of
+this important business in the full expectation that a Mr. Hall Pycroft,
+whom he had never seen, was about to enter the office upon the Monday
+morning."
+
+"My God!" cried our client, "what a blind beetle I have been!"
+
+"Now you see the point about the handwriting. Suppose that some one
+turned up in your place who wrote a completely different hand from that
+in which you had applied for the vacancy, of course the game would have
+been up. But in the interval the rogue had learned to imitate you,
+and his position was therefore secure, as I presume that nobody in the
+office had ever set eyes upon you."
+
+"Not a soul," groaned Hall Pycroft.
+
+"Very good. Of course it was of the utmost importance to prevent you
+from thinking better of it, and also to keep you from coming into
+contact with any one who might tell you that your double was at work
+in Mawson's office. Therefore they gave you a handsome advance on your
+salary, and ran you off to the Midlands, where they gave you enough work
+to do to prevent your going to London, where you might have burst their
+little game up. That is all plain enough."
+
+"But why should this man pretend to be his own brother?"
+
+"Well, that is pretty clear also. There are evidently only two of them
+in it. The other is impersonating you at the office. This one acted
+as your engager, and then found that he could not find you an employer
+without admitting a third person into his plot. That he was most
+unwilling to do. He changed his appearance as far as he could, and
+trusted that the likeness, which you could not fail to observe, would be
+put down to a family resemblance. But for the happy chance of the gold
+stuffing, your suspicions would probably never have been aroused."
+
+Hall Pycroft shook his clinched hands in the air. "Good Lord!" he cried,
+"while I have been fooled in this way, what has this other Hall Pycroft
+been doing at Mawson's? What should we do, Mr. Holmes? Tell me what to
+do."
+
+"We must wire to Mawson's."
+
+"They shut at twelve on Saturdays."
+
+"Never mind. There may be some door-keeper or attendant--"
+
+"Ah yes, they keep a permanent guard there on account of the value of
+the securities that they hold. I remember hearing it talked of in the
+City."
+
+"Very good; we shall wire to him, and see if all is well, and if a clerk
+of your name is working there. That is clear enough; but what is not so
+clear is why at sight of us one of the rogues should instantly walk out
+of the room and hang himself."
+
+"The paper!" croaked a voice behind us. The man was sitting up, blanched
+and ghastly, with returning reason in his eyes, and hands which rubbed
+nervously at the broad red band which still encircled his throat.
+
+"The paper! Of course!" yelled Holmes, in a paroxysm of excitement.
+"Idiot that I was! I thought so much of our visit that the paper never
+entered my head for an instant. To be sure, the secret must be there."
+He flattened it out upon the table, and a cry of triumph burst from his
+lips. "Look at this, Watson," he cried. "It is a London paper, an early
+edition of the Evening Standard. Here is what we want. Look at the
+headlines: 'Crime in the City. Murder at Mawson & Williams's. Gigantic
+attempted Robbery. Capture of the Criminal.' Here, Watson, we are all
+equally anxious to hear it, so kindly read it aloud to us."
+
+It appeared from its position in the paper to have been the one event of
+importance in town, and the account of it ran in this way:
+
+"A desperate attempt at robbery, culminating in the death of one man and
+the capture of the criminal, occurred this afternoon in the City. For
+some time back Mawson & Williams, the famous financial house, have been
+the guardians of securities which amount in the aggregate to a sum of
+considerably over a million sterling. So conscious was the manager of
+the responsibility which devolved upon him in consequence of the great
+interests at stake that safes of the very latest construction have
+been employed, and an armed watchman has been left day and night in the
+building. It appears that last week a new clerk named Hall Pycroft was
+engaged by the firm. This person appears to have been none other that
+Beddington, the famous forger and cracksman, who, with his brother, had
+only recently emerged from a five years' spell of penal servitude. By
+some means, which are not yet clear, he succeeded in winning, under a
+false name, this official position in the office, which he utilized in
+order to obtain moulding of various locks, and a thorough knowledge of
+the position of the strong room and the safes.
+
+"It is customary at Mawson's for the clerks to leave at midday on
+Saturday. Sergeant Tuson, of the City Police, was somewhat surprised,
+therefore to see a gentleman with a carpet bag come down the steps at
+twenty minutes past one. His suspicions being aroused, the sergeant
+followed the man, and with the aid of Constable Pollock succeeded, after
+a most desperate resistance, in arresting him. It was at once clear
+that a daring and gigantic robbery had been committed. Nearly a hundred
+thousand pounds' worth of American railway bonds, with a large amount
+of scrip in mines and other companies, was discovered in the bag. On
+examining the premises the body of the unfortunate watchman was found
+doubled up and thrust into the largest of the safes, where it would not
+have been discovered until Monday morning had it not been for the prompt
+action of Sergeant Tuson. The man's skull had been shattered by a
+blow from a poker delivered from behind. There could be no doubt
+that Beddington had obtained entrance by pretending that he had left
+something behind him, and having murdered the watchman, rapidly rifled
+the large safe, and then made off with his booty. His brother, who
+usually works with him, has not appeared in this job as far as can
+at present be ascertained, although the police are making energetic
+inquiries as to his whereabouts."
+
+"Well, we may save the police some little trouble in that direction,"
+said Holmes, glancing at the haggard figure huddled up by the window.
+"Human nature is a strange mixture, Watson. You see that even a villain
+and murderer can inspire such affection that his brother turns to
+suicide when he learns that his neck is forfeited. However, we have
+no choice as to our action. The doctor and I will remain on guard, Mr.
+Pycroft, if you will have the kindness to step out for the police."
+
+
+
+
+Adventure IV. The "_Gloria Scott_"
+
+
+"I have some papers here," said my friend Sherlock Holmes, as we sat
+one winter's night on either side of the fire, "which I really think,
+Watson, that it would be worth your while to glance over. These are the
+documents in the extraordinary case of the Gloria Scott, and this is the
+message which struck Justice of the Peace Trevor dead with horror when
+he read it."
+
+He had picked from a drawer a little tarnished cylinder, and, undoing
+the tape, he handed me a short note scrawled upon a half-sheet of
+slate-gray paper.
+
+"The supply of game for London is going steadily up," it ran.
+"Head-keeper Hudson, we believe, has been now told to receive all orders
+for fly-paper and for preservation of your hen-pheasant's life."
+
+As I glanced up from reading this enigmatical message, I saw Holmes
+chuckling at the expression upon my face.
+
+"You look a little bewildered," said he.
+
+"I cannot see how such a message as this could inspire horror. It seems
+to me to be rather grotesque than otherwise."
+
+"Very likely. Yet the fact remains that the reader, who was a fine,
+robust old man, was knocked clean down by it as if it had been the butt
+end of a pistol."
+
+"You arouse my curiosity," said I. "But why did you say just now that
+there were very particular reasons why I should study this case?"
+
+"Because it was the first in which I was ever engaged."
+
+I had often endeavored to elicit from my companion what had first turned
+his mind in the direction of criminal research, but had never caught him
+before in a communicative humor. Now he sat forward in this arm-chair
+and spread out the documents upon his knees. Then he lit his pipe and
+sat for some time smoking and turning them over.
+
+"You never heard me talk of Victor Trevor?" he asked. "He was the only
+friend I made during the two years I was at college. I was never a very
+sociable fellow, Watson, always rather fond of moping in my rooms and
+working out my own little methods of thought, so that I never mixed
+much with the men of my year. Bar fencing and boxing I had few athletic
+tastes, and then my line of study was quite distinct from that of the
+other fellows, so that we had no points of contact at all. Trevor was
+the only man I knew, and that only through the accident of his bull
+terrier freezing on to my ankle one morning as I went down to chapel.
+
+"It was a prosaic way of forming a friendship, but it was effective.
+I was laid by the heels for ten days, but Trevor used to come in to
+inquire after me. At first it was only a minute's chat, but soon his
+visits lengthened, and before the end of the term we were close friends.
+He was a hearty, full-blooded fellow, full of spirits and energy,
+the very opposite to me in most respects, but we had some subjects
+in common, and it was a bond of union when I found that he was as
+friendless as I. Finally, he invited me down to his father's place at
+Donnithorpe, in Norfolk, and I accepted his hospitality for a month of
+the long vacation.
+
+"Old Trevor was evidently a man of some wealth and consideration, a
+J.P., and a landed proprietor. Donnithorpe is a little hamlet just to
+the north of Langmere, in the country of the Broads. The house was
+an old-fashioned, wide-spread, oak-beamed brick building, with a fine
+lime-lined avenue leading up to it. There was excellent wild-duck
+shooting in the fens, remarkably good fishing, a small but select
+library, taken over, as I understood, from a former occupant, and a
+tolerable cook, so that he would be a fastidious man who could not put
+in a pleasant month there.
+
+"Trevor senior was a widower, and my friend his only son.
+
+"There had been a daughter, I heard, but she had died of diphtheria
+while on a visit to Birmingham. The father interested me extremely.
+He was a man of little culture, but with a considerable amount of rude
+strength, both physically and mentally. He knew hardly any books, but
+he had traveled far, had seen much of the world. And had remembered
+all that he had learned. In person he was a thick-set, burly man with
+a shock of grizzled hair, a brown, weather-beaten face, and blue eyes
+which were keen to the verge of fierceness. Yet he had a reputation for
+kindness and charity on the country-side, and was noted for the leniency
+of his sentences from the bench.
+
+"One evening, shortly after my arrival, we were sitting over a glass of
+port after dinner, when young Trevor began to talk about those habits
+of observation and inference which I had already formed into a system,
+although I had not yet appreciated the part which they were to play in
+my life. The old man evidently thought that his son was exaggerating in
+his description of one or two trivial feats which I had performed.
+
+"'Come, now, Mr. Holmes,' said he, laughing good-humoredly. 'I'm an
+excellent subject, if you can deduce anything from me.'
+
+"'I fear there is not very much,' I answered; 'I might suggest that
+you have gone about in fear of some personal attack within the last
+twelvemonth.'
+
+"The laugh faded from his lips, and he stared at me in great surprise.
+
+"'Well, that's true enough,' said he. 'You know, Victor,' turning to his
+son, 'when we broke up that poaching gang they swore to knife us, and
+Sir Edward Holly has actually been attacked. I've always been on my
+guard since then, though I have no idea how you know it.'
+
+"'You have a very handsome stick,' I answered. 'By the inscription I
+observed that you had not had it more than a year. But you have taken
+some pains to bore the head of it and pour melted lead into the hole so
+as to make it a formidable weapon. I argued that you would not take such
+precautions unless you had some danger to fear.'
+
+"'Anything else?' he asked, smiling.
+
+"'You have boxed a good deal in your youth.'
+
+"'Right again. How did you know it? Is my nose knocked a little out of
+the straight?'
+
+"'No,' said I. 'It is your ears. They have the peculiar flattening and
+thickening which marks the boxing man.'
+
+"'Anything else?'
+
+"'You have done a good deal of digging by your callosities.'
+
+"'Made all my money at the gold fields.'
+
+"'You have been in New Zealand.'
+
+"'Right again.'
+
+"'You have visited Japan.'
+
+"'Quite true.'
+
+"'And you have been most intimately associated with some one whose
+initials were J. A., and whom you afterwards were eager to entirely
+forget.'
+
+"Mr. Trevor stood slowly up, fixed his large blue eyes upon me with a
+strange wild stare, and then pitched forward, with his face among the
+nutshells which strewed the cloth, in a dead faint.
+
+"You can imagine, Watson, how shocked both his son and I were. His
+attack did not last long, however, for when we undid his collar, and
+sprinkled the water from one of the finger-glasses over his face, he
+gave a gasp or two and sat up.
+
+"'Ah, boys,' said he, forcing a smile, 'I hope I haven't frightened you.
+Strong as I look, there is a weak place in my heart, and it does not
+take much to knock me over. I don't know how you manage this, Mr.
+Holmes, but it seems to me that all the detectives of fact and of fancy
+would be children in your hands. That's your line of life, sir, and you
+may take the word of a man who has seen something of the world.'
+
+"And that recommendation, with the exaggerated estimate of my ability
+with which he prefaced it, was, if you will believe me, Watson, the very
+first thing which ever made me feel that a profession might be made
+out of what had up to that time been the merest hobby. At the moment,
+however, I was too much concerned at the sudden illness of my host to
+think of anything else.
+
+"'I hope that I have said nothing to pain you?' said I.
+
+"'Well, you certainly touched upon rather a tender point. Might I ask
+how you know, and how much you know?' He spoke now in a half-jesting
+fashion, but a look of terror still lurked at the back of his eyes.
+
+"'It is simplicity itself,' said I. 'When you bared your arm to draw
+that fish into the boat I saw that J. A. Had been tattooed in the bend
+of the elbow. The letters were still legible, but it was perfectly clear
+from their blurred appearance, and from the staining of the skin round
+them, that efforts had been made to obliterate them. It was obvious,
+then, that those initials had once been very familiar to you, and that
+you had afterwards wished to forget them.'
+
+"What an eye you have!" he cried, with a sigh of relief. 'It is just as
+you say. But we won't talk of it. Of all ghosts the ghosts of our old
+lovers are the worst. Come into the billiard-room and have a quiet
+cigar.'
+
+
+"From that day, amid all his cordiality, there was always a touch of
+suspicion in Mr. Trevor's manner towards me. Even his son remarked it.
+'You've given the governor such a turn,' said he, 'that he'll never be
+sure again of what you know and what you don't know.' He did not mean
+to show it, I am sure, but it was so strongly in his mind that it peeped
+out at every action. At last I became so convinced that I was causing
+him uneasiness that I drew my visit to a close. On the very day,
+however, before I left, and incident occurred which proved in the sequel
+to be of importance.
+
+"We were sitting out upon the lawn on garden chairs, the three of us,
+basking in the sun and admiring the view across the Broads, when a maid
+came out to say that there was a man at the door who wanted to see Mr.
+Trevor.
+
+"'What is his name?' asked my host.
+
+"'He would not give any.'
+
+"'What does he want, then?'
+
+"'He says that you know him, and that he only wants a moment's
+conversation.'
+
+"'Show him round here.' An instant afterwards there appeared a little
+wizened fellow with a cringing manner and a shambling style of
+walking. He wore an open jacket, with a splotch of tar on the sleeve,
+a red-and-black check shirt, dungaree trousers, and heavy boots badly
+worn. His face was thin and brown and crafty, with a perpetual smile
+upon it, which showed an irregular line of yellow teeth, and his
+crinkled hands were half closed in a way that is distinctive of sailors.
+As he came slouching across the lawn I heard Mr. Trevor make a sort of
+hiccoughing noise in his throat, and jumping out of his chair, he ran
+into the house. He was back in a moment, and I smelt a strong reek of
+brandy as he passed me.
+
+"'Well, my man,' said he. 'What can I do for you?'
+
+"The sailor stood looking at him with puckered eyes, and with the same
+loose-lipped smile upon his face.
+
+"'You don't know me?' he asked.
+
+"'Why, dear me, it is surely Hudson,' said Mr. Trevor in a tone of
+surprise.
+
+"'Hudson it is, sir,' said the seaman. 'Why, it's thirty year and more
+since I saw you last. Here you are in your house, and me still picking
+my salt meat out of the harness cask.'
+
+"'Tut, you will find that I have not forgotten old times,' cried Mr.
+Trevor, and, walking towards the sailor, he said something in a low
+voice. 'Go into the kitchen,' he continued out loud, 'and you will get
+food and drink. I have no doubt that I shall find you a situation.'
+
+"'Thank you, sir,' said the seaman, touching his fore-lock. 'I'm just
+off a two-yearer in an eight-knot tramp, short-handed at that, and I
+wants a rest. I thought I'd get it either with Mr. Beddoes or with you.'
+
+"'Ah!' cried Trevor. 'You know where Mr. Beddoes is?'
+
+"'Bless you, sir, I know where all my old friends are,' said the
+fellow with a sinister smile, and he slouched off after the maid to the
+kitchen. Mr. Trevor mumbled something to us about having been shipmate
+with the man when he was going back to the diggings, and then, leaving
+us on the lawn, he went indoors. An hour later, when we entered the
+house, we found him stretched dead drunk upon the dining-room sofa. The
+whole incident left a most ugly impression upon my mind, and I was
+not sorry next day to leave Donnithorpe behind me, for I felt that my
+presence must be a source of embarrassment to my friend.
+
+"All this occurred during the first month of the long vacation. I went
+up to my London rooms, where I spent seven weeks working out a few
+experiments in organic chemistry. One day, however, when the autumn was
+far advanced and the vacation drawing to a close, I received a telegram
+from my friend imploring me to return to Donnithorpe, and saying that
+he was in great need of my advice and assistance. Of course I dropped
+everything and set out for the North once more.
+
+"He met me with the dog-cart at the station, and I saw at a glance that
+the last two months had been very trying ones for him. He had grown thin
+and careworn, and had lost the loud, cheery manner for which he had been
+remarkable.
+
+"'The governor is dying,' were the first words he said.
+
+"'Impossible!' I cried. 'What is the matter?'
+
+"'Apoplexy. Nervous shock, He's been on the verge all day. I doubt if we
+shall find him alive.'
+
+"I was, as you may think, Watson, horrified at this unexpected news.
+
+"'What has caused it?' I asked.
+
+"'Ah, that is the point. Jump in and we can talk it over while we drive.
+You remember that fellow who came upon the evening before you left us?'
+
+"'Perfectly.'
+
+"'Do you know who it was that we let into the house that day?'
+
+"'I have no idea.'
+
+"'It was the devil, Holmes,' he cried.
+
+"I stared at him in astonishment.
+
+"'Yes, it was the devil himself. We have not had a peaceful hour
+since--not one. The governor has never held up his head from that
+evening, and now the life has been crushed out of him and his heart
+broken, all through this accursed Hudson.'
+
+"'What power had he, then?'
+
+"'Ah, that is what I would give so much to know. The kindly, charitable,
+good old governor--how could he have fallen into the clutches of such a
+ruffian! But I am so glad that you have come, Holmes. I trust very much
+to your judgment and discretion, and I know that you will advise me for
+the best.'
+
+"We were dashing along the smooth white country road, with the long
+stretch of the Broads in front of us glimmering in the red light of the
+setting sun. From a grove upon our left I could already see the high
+chimneys and the flag-staff which marked the squire's dwelling.
+
+"'My father made the fellow gardener,' said my companion, 'and then, as
+that did not satisfy him, he was promoted to be butler. The house seemed
+to be at his mercy, and he wandered about and did what he chose in it.
+The maids complained of his drunken habits and his vile language. The
+dad raised their wages all round to recompense them for the annoyance.
+The fellow would take the boat and my father's best gun and treat
+himself to little shooting trips. And all this with such a sneering,
+leering, insolent face that I would have knocked him down twenty times
+over if he had been a man of my own age. I tell you, Holmes, I have
+had to keep a tight hold upon myself all this time; and now I am asking
+myself whether, if I had let myself go a little more, I might not have
+been a wiser man.
+
+"'Well, matters went from bad to worse with us, and this animal Hudson
+became more and more intrusive, until at last, on making some insolent
+reply to my father in my presence one day, I took him by the shoulders
+and turned him out of the room. He slunk away with a livid face and two
+venomous eyes which uttered more threats than his tongue could do. I
+don't know what passed between the poor dad and him after that, but the
+dad came to me next day and asked me whether I would mind apologizing to
+Hudson. I refused, as you can imagine, and asked my father how he
+could allow such a wretch to take such liberties with himself and his
+household.
+
+"'"Ah, my boy," said he, "it is all very well to talk, but you don't
+know how I am placed. But you shall know, Victor. I'll see that you
+shall know, come what may. You wouldn't believe harm of your poor old
+father, would you, lad?" He was very much moved, and shut himself up
+in the study all day, where I could see through the window that he was
+writing busily.
+
+"'That evening there came what seemed to me to be a grand release,
+for Hudson told us that he was going to leave us. He walked into the
+dining-room as we sat after dinner, and announced his intention in the
+thick voice of a half-drunken man.
+
+"'"I've had enough of Norfolk," said he. "I'll run down to Mr. Beddoes
+in Hampshire. He'll be as glad to see me as you were, I dare say."
+
+"'"You're not going away in an unkind spirit, Hudson, I hope," said my
+father, with a tameness which made my blood boil.
+
+"'"I've not had my 'pology," said he sulkily, glancing in my direction.
+
+"'"Victor, you will acknowledge that you have used this worthy fellow
+rather roughly," said the dad, turning to me.
+
+"'"On the contrary, I think that we have both shown extraordinary
+patience towards him," I answered.
+
+"'"Oh, you do, do you?" he snarls. "Very good, mate. We'll see about
+that!"
+
+"'He slouched out of the room, and half an hour afterwards left the
+house, leaving my father in a state of pitiable nervousness. Night after
+night I heard him pacing his room, and it was just as he was recovering
+his confidence that the blow did at last fall.'
+
+"'And how?' I asked eagerly.
+
+"'In a most extraordinary fashion. A letter arrived for my father
+yesterday evening, bearing the Fordingbridge post-mark. My father read
+it, clapped both his hands to his head, and began running round the room
+in little circles like a man who has been driven out of his senses. When
+I at last drew him down on to the sofa, his mouth and eyelids were all
+puckered on one side, and I saw that he had a stroke. Dr. Fordham came
+over at once. We put him to bed; but the paralysis has spread, he has
+shown no sign of returning consciousness, and I think that we shall
+hardly find him alive.'
+
+"'You horrify me, Trevor!' I cried. 'What then could have been in this
+letter to cause so dreadful a result?'
+
+"'Nothing. There lies the inexplicable part of it. The message was
+absurd and trivial. Ah, my God, it is as I feared!'
+
+"As he spoke we came round the curve of the avenue, and saw in the
+fading light that every blind in the house had been drawn down. As
+we dashed up to the door, my friend's face convulsed with grief, a
+gentleman in black emerged from it.
+
+"'When did it happen, doctor?' asked Trevor.
+
+"'Almost immediately after you left.'
+
+"'Did he recover consciousness?'
+
+"'For an instant before the end.'
+
+"'Any message for me.'
+
+"'Only that the papers were in the back drawer of the Japanese cabinet.'
+
+"My friend ascended with the doctor to the chamber of death, while I
+remained in the study, turning the whole matter over and over in my
+head, and feeling as sombre as ever I had done in my life. What was the
+past of this Trevor, pugilist, traveler, and gold-digger, and how had he
+placed himself in the power of this acid-faced seaman? Why, too, should
+he faint at an allusion to the half-effaced initials upon his arm, and
+die of fright when he had a letter from Fordingham? Then I remembered
+that Fordingham was in Hampshire, and that this Mr. Beddoes, whom the
+seaman had gone to visit and presumably to blackmail, had also been
+mentioned as living in Hampshire. The letter, then, might either come
+from Hudson, the seaman, saying that he had betrayed the guilty secret
+which appeared to exist, or it might come from Beddoes, warning an old
+confederate that such a betrayal was imminent. So far it seemed clear
+enough. But then how could this letter be trivial and grotesque, as
+describe by the son? He must have misread it. If so, it must have been
+one of those ingenious secret codes which mean one thing while they seem
+to mean another. I must see this letter. If there were a hidden meaning
+in it, I was confident that I could pluck it forth. For an hour I sat
+pondering over it in the gloom, until at last a weeping maid brought in
+a lamp, and close at her heels came my friend Trevor, pale but composed,
+with these very papers which lie upon my knee held in his grasp. He sat
+down opposite to me, drew the lamp to the edge of the table, and handed
+me a short note scribbled, as you see, upon a single sheet of gray
+paper. 'The supply of game for London is going steadily up,' it ran.
+'Head-keeper Hudson, we believe, has been now told to receive all orders
+for fly-paper and for preservation of your hen-pheasant's life.'
+
+"I dare say my face looked as bewildered as yours did just now when
+first I read this message. Then I reread it very carefully. It was
+evidently as I had thought, and some secret meaning must lie buried
+in this strange combination of words. Or could it be that there was
+a prearranged significance to such phrases as 'fly-paper' and
+'hen-pheasant'? Such a meaning would be arbitrary and could not be
+deduced in any way. And yet I was loath to believe that this was the
+case, and the presence of the word Hudson seemed to show that the
+subject of the message was as I had guessed, and that it was from
+Beddoes rather than the sailor. I tried it backwards, but the
+combination 'life pheasant's hen' was not encouraging. Then I tried
+alternate words, but neither 'the of for' nor 'supply game London'
+promised to throw any light upon it.
+
+"And then in an instant the key of the riddle was in my hands, and I saw
+that every third word, beginning with the first, would give a message
+which might well drive old Trevor to despair.
+
+"It was short and terse, the warning, as I now read it to my companion:
+
+"'The game is up. Hudson has told all. Fly for your life.'
+
+"Victor Trevor sank his face into his shaking hands. 'It must be that,
+I suppose,' said he. "This is worse than death, for it means disgrace
+as well. But what is the meaning of these "head-keepers" and
+"hen-pheasants"?'
+
+"'It means nothing to the message, but it might mean a good deal to us
+if we had no other means of discovering the sender. You see that he has
+begun by writing "The...game...is," and so on. Afterwards he had, to
+fulfill the prearranged cipher, to fill in any two words in each space.
+He would naturally use the first words which came to his mind, and
+if there were so many which referred to sport among them, you may
+be tolerably sure that he is either an ardent shot or interested in
+breeding. Do you know anything of this Beddoes?'
+
+"'Why, now that you mention it,' said he, 'I remember that my poor
+father used to have an invitation from him to shoot over his preserves
+every autumn.'
+
+"'Then it is undoubtedly from him that the note comes,' said I. 'It only
+remains for us to find out what this secret was which the sailor Hudson
+seems to have held over the heads of these two wealthy and respected
+men.'
+
+"'Alas, Holmes, I fear that it is one of sin and shame!' cried my
+friend. 'But from you I shall have no secrets. Here is the statement
+which was drawn up by my father when he knew that the danger from Hudson
+had become imminent. I found it in the Japanese cabinet, as he told the
+doctor. Take it and read it to me, for I have neither the strength nor
+the courage to do it myself.'
+
+"These are the very papers, Watson, which he handed to me, and I will
+read them to you, as I read them in the old study that night to him.
+They are endorsed outside, as you see, 'Some particulars of the voyage
+of the bark _Gloria Scott_, from her leaving Falmouth on the 8th
+October, 1855, to her destruction in N. Lat. 15 degrees 20', W. Long.
+25 degrees 14' on Nov. 6th.' It is in the form of a letter, and runs in
+this way:
+
+"'My dear, dear son, now that approaching disgrace begins to darken the
+closing years of my life, I can write with all truth and honesty that it
+is not the terror of the law, it is not the loss of my position in the
+county, nor is it my fall in the eyes of all who have known me, which
+cuts me to the heart; but it is the thought that you should come to
+blush for me--you who love me and who have seldom, I hope, had reason to
+do other than respect me. But if the blow falls which is forever hanging
+over me, then I should wish you to read this, that you may know straight
+from me how far I have been to blame. On the other hand, if all should
+go well (which may kind God Almighty grant!), then if by any chance this
+paper should be still undestroyed and should fall into your hands, I
+conjure you, by all you hold sacred, by the memory of your dear mother,
+and by the love which had been between us, to hurl it into the fire and
+to never give one thought to it again.
+
+"'If then your eye goes on to read this line, I know that I shall
+already have been exposed and dragged from my home, or as is more
+likely, for you know that my heart is weak, by lying with my tongue
+sealed forever in death. In either case the time for suppression is
+past, and every word which I tell you is the naked truth, and this I
+swear as I hope for mercy.
+
+"'My name, dear lad, is not Trevor. I was James Armitage in my younger
+days, and you can understand now the shock that it was to me a few weeks
+ago when your college friend addressed me in words which seemed to imply
+that he had surprised my secret. As Armitage it was that I entered a
+London banking-house, and as Armitage I was convicted of breaking my
+country's laws, and was sentenced to transportation. Do not think very
+harshly of me, laddie. It was a debt of honor, so called, which I had
+to pay, and I used money which was not my own to do it, in the certainty
+that I could replace it before there could be any possibility of its
+being missed. But the most dreadful ill-luck pursued me. The money which
+I had reckoned upon never came to hand, and a premature examination of
+accounts exposed my deficit. The case might have been dealt leniently
+with, but the laws were more harshly administered thirty years ago than
+now, and on my twenty-third birthday I found myself chained as a felon
+with thirty-seven other convicts in 'tween-decks of the bark _Gloria
+Scott_, bound for Australia.
+
+"'It was the year '55 when the Crimean war was at its height, and the
+old convict ships had been largely used as transports in the Black
+Sea. The government was compelled, therefore, to use smaller and less
+suitable vessels for sending out their prisoners. The Gloria Scott
+had been in the Chinese tea-trade, but she was an old-fashioned,
+heavy-bowed, broad-beamed craft, and the new clippers had cut her
+out. She was a five-hundred-ton boat; and besides her thirty-eight
+jail-birds, she carried twenty-six of a crew, eighteen soldiers, a
+captain, three mates, a doctor, a chaplain, and four warders. Nearly a
+hundred souls were in her, all told, when we set sail from Falmouth.
+
+"'The partitions between the cells of the convicts, instead of being of
+thick oak, as is usual in convict-ships, were quite thin and frail.
+The man next to me, upon the aft side, was one whom I had particularly
+noticed when we were led down the quay. He was a young man with a
+clear, hairless face, a long, thin nose, and rather nut-cracker jaws.
+He carried his head very jauntily in the air, had a swaggering style
+of walking, and was, above all else, remarkable for his extraordinary
+height. I don't think any of our heads would have come up to his
+shoulder, and I am sure that he could not have measured less than six
+and a half feet. It was strange among so many sad and weary faces to see
+one which was full of energy and resolution. The sight of it was to me
+like a fire in a snow-storm. I was glad, then, to find that he was my
+neighbor, and gladder still when, in the dead of the night, I heard a
+whisper close to my ear, and found that he had managed to cut an opening
+in the board which separated us.
+
+"'"Hullo, chummy!" said he, "what's your name, and what are you here
+for?"
+
+"'I answered him, and asked in turn who I was talking with.
+
+"'"I'm Jack Prendergast," said he, "and by God! You'll learn to bless my
+name before you've done with me."
+
+"'I remembered hearing of his case, for it was one which had made an
+immense sensation throughout the country some time before my own arrest.
+He was a man of good family and of great ability, but of incurably
+vicious habits, who had by an ingenious system of fraud obtained huge
+sums of money from the leading London merchants.
+
+"'"Ha, ha! You remember my case!" said he proudly.
+
+"'"Very well, indeed."
+
+"'"Then maybe you remember something queer about it?"
+
+"'"What was that, then?"
+
+"'"I'd had nearly a quarter of a million, hadn't I?"
+
+"'"So it was said."
+
+"'"But none was recovered, eh?"
+
+"'"No."
+
+"'"Well, where d'ye suppose the balance is?" he asked.
+
+"'"I have no idea," said I.
+
+"'"Right between my finger and thumb," he cried. "By God! I've got more
+pounds to my name than you've hairs on your head. And if you've money,
+my son, and know how to handle it and spread it, you can do anything.
+Now, you don't think it likely that a man who could do anything is going
+to wear his breeches out sitting in the stinking hold of a rat-gutted,
+beetle-ridden, mouldy old coffin of a Chin China coaster. No, sir, such
+a man will look after himself and will look after his chums. You may lay
+to that! You hold on to him, and you may kiss the book that he'll haul
+you through."
+
+"'That was his style of talk, and at first I thought it meant nothing;
+but after a while, when he had tested me and sworn me in with all
+possible solemnity, he let me understand that there really was a plot
+to gain command of the vessel. A dozen of the prisoners had hatched it
+before they came aboard, Prendergast was the leader, and his money was
+the motive power.
+
+"'"I'd a partner," said he, "a rare good man, as true as a stock to a
+barrel. He's got the dibbs, he has, and where do you think he is at this
+moment? Why, he's the chaplain of this ship--the chaplain, no less! He
+came aboard with a black coat, and his papers right, and money enough in
+his box to buy the thing right up from keel to main-truck. The crew
+are his, body and soul. He could buy 'em at so much a gross with a cash
+discount, and he did it before ever they signed on. He's got two of the
+warders and Mereer, the second mate, and he'd get the captain himself,
+if he thought him worth it."
+
+"'"What are we to do, then?" I asked.
+
+"'"What do you think?" said he. "We'll make the coats of some of these
+soldiers redder than ever the tailor did."
+
+"'"But they are armed," said I.
+
+"'"And so shall we be, my boy. There's a brace of pistols for every
+mother's son of us, and if we can't carry this ship, with the crew at
+our back, it's time we were all sent to a young misses' boarding-school.
+You speak to your mate upon the left to-night, and see if he is to be
+trusted."
+
+"'I did so, and found my other neighbor to be a young fellow in much
+the same position as myself, whose crime had been forgery. His name was
+Evans, but he afterwards changed it, like myself, and he is now a rich
+and prosperous man in the south of England. He was ready enough to join
+the conspiracy, as the only means of saving ourselves, and before we had
+crossed the Bay there were only two of the prisoners who were not in the
+secret. One of these was of weak mind, and we did not dare to trust him,
+and the other was suffering from jaundice, and could not be of any use
+to us.
+
+"'From the beginning there was really nothing to prevent us from taking
+possession of the ship. The crew were a set of ruffians, specially
+picked for the job. The sham chaplain came into our cells to exhort us,
+carrying a black bag, supposed to be full of tracts, and so often did
+he come that by the third day we had each stowed away at the foot of our
+beds a file, a brace of pistols, a pound of powder, and twenty slugs.
+Two of the warders were agents of Prendergast, and the second mate was
+his right-hand man. The captain, the two mates, two warders Lieutenant
+Martin, his eighteen soldiers, and the doctor were all that we had
+against us. Yet, safe as it was, we determined to neglect no precaution,
+and to make our attack suddenly by night. It came, however, more quickly
+than we expected, and in this way.
+
+"'One evening, about the third week after our start, the doctor had come
+down to see one of the prisoners who was ill, and putting his hand down
+on the bottom of his bunk he felt the outline of the pistols. If he had
+been silent he might have blown the whole thing, but he was a nervous
+little chap, so he gave a cry of surprise and turned so pale that the
+man knew what was up in an instant and seized him. He was gagged before
+he could give the alarm, and tied down upon the bed. He had unlocked
+the door that led to the deck, and we were through it in a rush. The two
+sentries were shot down, and so was a corporal who came running to see
+what was the matter. There were two more soldiers at the door of the
+state-room, and their muskets seemed not to be loaded, for they never
+fired upon us, and they were shot while trying to fix their bayonets.
+Then we rushed on into the captain's cabin, but as we pushed open the
+door there was an explosion from within, and there he lay with his
+brains smeared over the chart of the Atlantic which was pinned upon the
+table, while the chaplain stood with a smoking pistol in his hand at
+his elbow. The two mates had both been seized by the crew, and the whole
+business seemed to be settled.
+
+"'The state-room was next the cabin, and we flocked in there and flopped
+down on the settees, all speaking together, for we were just mad with
+the feeling that we were free once more. There were lockers all round,
+and Wilson, the sham chaplain, knocked one of them in, and pulled out a
+dozen of brown sherry. We cracked off the necks of the bottles, poured
+the stuff out into tumblers, and were just tossing them off, when in an
+instant without warning there came the roar of muskets in our ears, and
+the saloon was so full of smoke that we could not see across the table.
+When it cleared again the place was a shambles. Wilson and eight others
+were wriggling on the top of each other on the floor, and the blood and
+the brown sherry on that table turn me sick now when I think of it. We
+were so cowed by the sight that I think we should have given the job up
+if it had not been for Prendergast. He bellowed like a bull and rushed
+for the door with all that were left alive at his heels. Out we ran,
+and there on the poop were the lieutenant and ten of his men. The swing
+skylights above the saloon table had been a bit open, and they had fired
+on us through the slit. We got on them before they could load, and they
+stood to it like men; but we had the upper hand of them, and in five
+minutes it was all over. My God! Was there ever a slaughter-house
+like that ship! Prendergast was like a raging devil, and he picked the
+soldiers up as if they had been children and threw them overboard alive
+or dead. There was one sergeant that was horribly wounded and yet kept
+on swimming for a surprising time, until some one in mercy blew out his
+brains. When the fighting was over there was no one left of our enemies
+except just the warders the mates, and the doctor.
+
+"'It was over them that the great quarrel arose. There were many of us
+who were glad enough to win back our freedom, and yet who had no wish
+to have murder on our souls. It was one thing to knock the soldiers over
+with their muskets in their hands, and it was another to stand by while
+men were being killed in cold blood. Eight of us, five convicts and
+three sailors, said that we would not see it done. But there was no
+moving Prendergast and those who were with him. Our only chance of
+safety lay in making a clean job of it, said he, and he would not leave
+a tongue with power to wag in a witness-box. It nearly came to our
+sharing the fate of the prisoners, but at last he said that if we wished
+we might take a boat and go. We jumped at the offer, for we were already
+sick of these bloodthirsty doings, and we saw that there would be worse
+before it was done. We were given a suit of sailor togs each, a barrel
+of water, two casks, one of junk and one of biscuits, and a compass.
+Prendergast threw us over a chart, told us that we were shipwrecked
+mariners whose ship had foundered in Lat. 15 degrees and Long 25 degrees
+west, and then cut the painter and let us go.
+
+"'And now I come to the most surprising part of my story, my dear son.
+The seamen had hauled the fore-yard aback during the rising, but now as
+we left them they brought it square again, and as there was a light wind
+from the north and east the bark began to draw slowly away from us. Our
+boat lay, rising and falling, upon the long, smooth rollers, and Evans
+and I, who were the most educated of the party, were sitting in the
+sheets working out our position and planning what coast we should make
+for. It was a nice question, for the Cape de Verdes were about five
+hundred miles to the north of us, and the African coast about seven
+hundred to the east. On the whole, as the wind was coming round to the
+north, we thought that Sierra Leone might be best, and turned our head
+in that direction, the bark being at that time nearly hull down on our
+starboard quarter. Suddenly as we looked at her we saw a dense black
+cloud of smoke shoot up from her, which hung like a monstrous tree upon
+the sky line. A few seconds later a roar like thunder burst upon our
+ears, and as the smoke thinned away there was no sign left of the
+_Gloria Scott_. In an instant we swept the boat's head round again and
+pulled with all our strength for the place where the haze still trailing
+over the water marked the scene of this catastrophe.
+
+"'It was a long hour before we reached it, and at first we feared that
+we had come too late to save any one. A splintered boat and a number of
+crates and fragments of spars rising and falling on the waves showed us
+where the vessel had foundered; but there was no sign of life, and we
+had turned away in despair when we heard a cry for help, and saw at some
+distance a piece of wreckage with a man lying stretched across it. When
+we pulled him aboard the boat he proved to be a young seaman of the
+name of Hudson, who was so burned and exhausted that he could give us no
+account of what had happened until the following morning.
+
+"'It seemed that after we had left, Prendergast and his gang had
+proceeded to put to death the five remaining prisoners. The two warders
+had been shot and thrown overboard, and so also had the third mate.
+Prendergast then descended into the 'tween-decks and with his own hands
+cut the throat of the unfortunate surgeon. There only remained the first
+mate, who was a bold and active man. When he saw the convict approaching
+him with the bloody knife in his hand he kicked off his bonds, which he
+had somehow contrived to loosen, and rushing down the deck he plunged
+into the after-hold. A dozen convicts, who descended with their pistols
+in search of him, found him with a match-box in his hand seated beside
+an open powder-barrel, which was one of a hundred carried on board, and
+swearing that he would blow all hands up if he were in any way molested.
+An instant later the explosion occurred, though Hudson thought it was
+caused by the misdirected bullet of one of the convicts rather than the
+mate's match. Be the cause what it may, it was the end of the _Gloria
+Scott_ and of the rabble who held command of her.
+
+"'Such, in a few words, my dear boy, is the history of this terrible
+business in which I was involved. Next day we were picked up by the brig
+_Hotspur_, bound for Australia, whose captain found no difficulty in
+believing that we were the survivors of a passenger ship which had
+foundered. The transport ship Gloria Scott was set down by the Admiralty
+as being lost at sea, and no word has ever leaked out as to her true
+fate. After an excellent voyage the _Hotspur_ landed us at Sydney, where
+Evans and I changed our names and made our way to the diggings,
+where, among the crowds who were gathered from all nations, we had no
+difficulty in losing our former identities. The rest I need not relate.
+We prospered, we traveled, we came back as rich colonials to England,
+and we bought country estates. For more than twenty years we have
+led peaceful and useful lives, and we hoped that our past was forever
+buried. Imagine, then, my feelings when in the seaman who came to us I
+recognized instantly the man who had been picked off the wreck. He had
+tracked us down somehow, and had set himself to live upon our fears. You
+will understand now how it was that I strove to keep the peace with him,
+and you will in some measure sympathize with me in the fears which fill
+me, now that he has gone from me to his other victim with threats upon
+his tongue.'
+
+"Underneath is written in a hand so shaky as to be hardly legible,
+'Beddoes writes in cipher to say H. Has told all. Sweet Lord, have mercy
+on our souls!'
+
+"That was the narrative which I read that night to young Trevor, and I
+think, Watson, that under the circumstances it was a dramatic one.
+The good fellow was heart-broken at it, and went out to the Terai tea
+planting, where I hear that he is doing well. As to the sailor and
+Beddoes, neither of them was ever heard of again after that day on which
+the letter of warning was written. They both disappeared utterly and
+completely. No complaint had been lodged with the police, so that
+Beddoes had mistaken a threat for a deed. Hudson had been seen lurking
+about, and it was believed by the police that he had done away with
+Beddoes and had fled. For myself I believe that the truth was exactly
+the opposite. I think that it is most probable that Beddoes, pushed to
+desperation and believing himself to have been already betrayed, had
+revenged himself upon Hudson, and had fled from the country with as much
+money as he could lay his hands on. Those are the facts of the case,
+Doctor, and if they are of any use to your collection, I am sure that
+they are very heartily at your service."
+
+
+
+
+Adventure V. The Musgrave Ritual
+
+
+An anomaly which often struck me in the character of my friend Sherlock
+Holmes was that, although in his methods of thought he was the neatest
+and most methodical of mankind, and although also he affected a certain
+quiet primness of dress, he was none the less in his personal habits one
+of the most untidy men that ever drove a fellow-lodger to distraction.
+Not that I am in the least conventional in that respect myself. The
+rough-and-tumble work in Afghanistan, coming on the top of a natural
+Bohemianism of disposition, has made me rather more lax than befits a
+medical man. But with me there is a limit, and when I find a man who
+keeps his cigars in the coal-scuttle, his tobacco in the toe end of
+a Persian slipper, and his unanswered correspondence transfixed by a
+jack-knife into the very centre of his wooden mantelpiece, then I begin
+to give myself virtuous airs. I have always held, too, that pistol
+practice should be distinctly an open-air pastime; and when Holmes, in
+one of his queer humors, would sit in an arm-chair with his hair-trigger
+and a hundred Boxer cartridges, and proceed to adorn the opposite
+wall with a patriotic V. R. done in bullet-pocks, I felt strongly that
+neither the atmosphere nor the appearance of our room was improved by
+it.
+
+Our chambers were always full of chemicals and of criminal relics which
+had a way of wandering into unlikely positions, and of turning up in
+the butter-dish or in even less desirable places. But his papers were
+my great crux. He had a horror of destroying documents, especially those
+which were connected with his past cases, and yet it was only once in
+every year or two that he would muster energy to docket and arrange
+them; for, as I have mentioned somewhere in these incoherent memoirs,
+the outbursts of passionate energy when he performed the remarkable
+feats with which his name is associated were followed by reactions of
+lethargy during which he would lie about with his violin and his books,
+hardly moving save from the sofa to the table. Thus month after month
+his papers accumulated, until every corner of the room was stacked with
+bundles of manuscript which were on no account to be burned, and which
+could not be put away save by their owner. One winter's night, as we
+sat together by the fire, I ventured to suggest to him that, as he had
+finished pasting extracts into his common-place book, he might employ
+the next two hours in making our room a little more habitable. He could
+not deny the justice of my request, so with a rather rueful face he went
+off to his bedroom, from which he returned presently pulling a large tin
+box behind him. This he placed in the middle of the floor and, squatting
+down upon a stool in front of it, he threw back the lid. I could see
+that it was already a third full of bundles of paper tied up with red
+tape into separate packages.
+
+"There are cases enough here, Watson," said he, looking at me with
+mischievous eyes. "I think that if you knew all that I had in this box
+you would ask me to pull some out instead of putting others in."
+
+"These are the records of your early work, then?" I asked. "I have often
+wished that I had notes of those cases."
+
+"Yes, my boy, these were all done prematurely before my biographer
+had come to glorify me." He lifted bundle after bundle in a tender,
+caressing sort of way. "They are not all successes, Watson," said he.
+"But there are some pretty little problems among them. Here's the record
+of the Tarleton murders, and the case of Vamberry, the wine merchant,
+and the adventure of the old Russian woman, and the singular affair
+of the aluminium crutch, as well as a full account of Ricoletti of the
+club-foot, and his abominable wife. And here--ah, now, this really is
+something a little recherché."
+
+He dived his arm down to the bottom of the chest, and brought up a small
+wooden box with a sliding lid, such as children's toys are kept in. From
+within he produced a crumpled piece of paper, and old-fashioned brass
+key, a peg of wood with a ball of string attached to it, and three rusty
+old disks of metal.
+
+"Well, my boy, what do you make of this lot?" he asked, smiling at my
+expression.
+
+"It is a curious collection."
+
+"Very curious, and the story that hangs round it will strike you as
+being more curious still."
+
+"These relics have a history then?"
+
+"So much so that they are history."
+
+"What do you mean by that?"
+
+Sherlock Holmes picked them up one by one, and laid them along the edge
+of the table. Then he reseated himself in his chair and looked them over
+with a gleam of satisfaction in his eyes.
+
+"These," said he, "are all that I have left to remind me of the
+adventure of the Musgrave Ritual."
+
+I had heard him mention the case more than once, though I had never been
+able to gather the details. "I should be so glad," said I, "if you would
+give me an account of it."
+
+"And leave the litter as it is?" he cried, mischievously. "Your tidiness
+won't bear much strain after all, Watson. But I should be glad that you
+should add this case to your annals, for there are points in it which
+make it quite unique in the criminal records of this or, I believe,
+of any other country. A collection of my trifling achievements would
+certainly be incomplete which contained no account of this very singular
+business.
+
+"You may remember how the affair of the _Gloria Scott_, and my
+conversation with the unhappy man whose fate I told you of, first turned
+my attention in the direction of the profession which has become my
+life's work. You see me now when my name has become known far and
+wide, and when I am generally recognized both by the public and by the
+official force as being a final court of appeal in doubtful cases.
+Even when you knew me first, at the time of the affair which you have
+commemorated in 'A Study in Scarlet,' I had already established a
+considerable, though not a very lucrative, connection. You can hardly
+realize, then, how difficult I found it at first, and how long I had to
+wait before I succeeded in making any headway.
+
+"When I first came up to London I had rooms in Montague Street, just
+round the corner from the British Museum, and there I waited, filling in
+my too abundant leisure time by studying all those branches of science
+which might make me more efficient. Now and again cases came in my way,
+principally through the introduction of old fellow-students, for during
+my last years at the University there was a good deal of talk there
+about myself and my methods. The third of these cases was that of the
+Musgrave Ritual, and it is to the interest which was aroused by that
+singular chain of events, and the large issues which proved to be at
+stake, that I trace my first stride towards the position which I now
+hold.
+
+"Reginald Musgrave had been in the same college as myself, and I had
+some slight acquaintance with him. He was not generally popular among
+the undergraduates, though it always seemed to me that what was set down
+as pride was really an attempt to cover extreme natural diffidence.
+In appearance he was a man of exceedingly aristocratic type, thin,
+high-nosed, and large-eyed, with languid and yet courtly manners. He was
+indeed a scion of one of the very oldest families in the kingdom,
+though his branch was a cadet one which had separated from the northern
+Musgraves some time in the sixteenth century, and had established itself
+in western Sussex, where the Manor House of Hurlstone is perhaps the
+oldest inhabited building in the county. Something of his birth place
+seemed to cling to the man, and I never looked at his pale, keen face
+or the poise of his head without associating him with gray archways and
+mullioned windows and all the venerable wreckage of a feudal keep. Once
+or twice we drifted into talk, and I can remember that more than once he
+expressed a keen interest in my methods of observation and inference.
+
+"For four years I had seen nothing of him until one morning he walked
+into my room in Montague Street. He had changed little, was dressed like
+a young man of fashion--he was always a bit of a dandy--and preserved
+the same quiet, suave manner which had formerly distinguished him.
+
+"'How has all gone with you Musgrave?' I asked, after we had cordially
+shaken hands.
+
+"'You probably heard of my poor father's death,' said he; 'he was
+carried off about two years ago. Since then I have of course had the
+Hurlstone estates to manage, and as I am member for my district as well,
+my life has been a busy one. But I understand, Holmes, that you are
+turning to practical ends those powers with which you used to amaze us?'
+
+"'Yes,' said I, 'I have taken to living by my wits.'
+
+"'I am delighted to hear it, for your advice at present would be
+exceedingly valuable to me. We have had some very strange doings at
+Hurlstone, and the police have been able to throw no light upon the
+matter. It is really the most extraordinary and inexplicable business.'
+
+"You can imagine with what eagerness I listened to him, Watson, for
+the very chance for which I had been panting during all those months
+of inaction seemed to have come within my reach. In my inmost heart I
+believed that I could succeed where others failed, and now I had the
+opportunity to test myself.
+
+"'Pray, let me have the details,' I cried.
+
+"Reginald Musgrave sat down opposite to me, and lit the cigarette which
+I had pushed towards him.
+
+"'You must know,' said he, 'that though I am a bachelor, I have to keep
+up a considerable staff of servants at Hurlstone, for it is a rambling
+old place, and takes a good deal of looking after. I preserve, too, and
+in the pheasant months I usually have a house-party, so that it would
+not do to be short-handed. Altogether there are eight maids, the cook,
+the butler, two footmen, and a boy. The garden and the stables of course
+have a separate staff.
+
+"'Of these servants the one who had been longest in our service was
+Brunton the butler. He was a young school-master out of place when he
+was first taken up by my father, but he was a man of great energy and
+character, and he soon became quite invaluable in the household. He was
+a well-grown, handsome man, with a splendid forehead, and though he has
+been with us for twenty years he cannot be more than forty now. With
+his personal advantages and his extraordinary gifts--for he can speak
+several languages and play nearly every musical instrument--it is
+wonderful that he should have been satisfied so long in such a position,
+but I suppose that he was comfortable, and lacked energy to make any
+change. The butler of Hurlstone is always a thing that is remembered by
+all who visit us.
+
+"'But this paragon has one fault. He is a bit of a Don Juan, and you can
+imagine that for a man like him it is not a very difficult part to play
+in a quiet country district. When he was married it was all right, but
+since he has been a widower we have had no end of trouble with him. A
+few months ago we were in hopes that he was about to settle down again
+for he became engaged to Rachel Howells, our second house-maid; but he
+has thrown her over since then and taken up with Janet Tregellis, the
+daughter of the head game-keeper. Rachel--who is a very good girl, but
+of an excitable Welsh temperament--had a sharp touch of brain-fever,
+and goes about the house now--or did until yesterday--like a black-eyed
+shadow of her former self. That was our first drama at Hurlstone; but a
+second one came to drive it from our minds, and it was prefaced by the
+disgrace and dismissal of butler Brunton.
+
+"'This was how it came about. I have said that the man was intelligent,
+and this very intelligence has caused his ruin, for it seems to have
+led to an insatiable curiosity about things which did not in the least
+concern him. I had no idea of the lengths to which this would carry him,
+until the merest accident opened my eyes to it.
+
+"'I have said that the house is a rambling one. One day last week--on
+Thursday night, to be more exact--I found that I could not sleep,
+having foolishly taken a cup of strong café noir after my dinner. After
+struggling against it until two in the morning, I felt that it was quite
+hopeless, so I rose and lit the candle with the intention of continuing
+a novel which I was reading. The book, however, had been left in the
+billiard-room, so I pulled on my dressing-gown and started off to get
+it.
+
+"'In order to reach the billiard-room I had to descend a flight of
+stairs and then to cross the head of a passage which led to the library
+and the gun-room. You can imagine my surprise when, as I looked down
+this corridor, I saw a glimmer of light coming from the open door of the
+library. I had myself extinguished the lamp and closed the door before
+coming to bed. Naturally my first thought was of burglars. The corridors
+at Hurlstone have their walls largely decorated with trophies of old
+weapons. From one of these I picked a battle-axe, and then, leaving my
+candle behind me, I crept on tiptoe down the passage and peeped in at
+the open door.
+
+"'Brunton, the butler, was in the library. He was sitting, fully
+dressed, in an easy-chair, with a slip of paper which looked like a
+map upon his knee, and his forehead sunk forward upon his hand in deep
+thought. I stood dumb with astonishment, watching him from the darkness.
+A small taper on the edge of the table shed a feeble light which
+sufficed to show me that he was fully dressed. Suddenly, as I looked,
+he rose from his chair, and walking over to a bureau at the side, he
+unlocked it and drew out one of the drawers. From this he took a paper,
+and returning to his seat he flattened it out beside the taper on the
+edge of the table, and began to study it with minute attention. My
+indignation at this calm examination of our family documents overcame
+me so far that I took a step forward, and Brunton, looking up, saw me
+standing in the doorway. He sprang to his feet, his face turned livid
+with fear, and he thrust into his breast the chart-like paper which he
+had been originally studying.
+
+"'"So!" said I. "This is how you repay the trust which we have reposed
+in you. You will leave my service to-morrow."
+
+"'He bowed with the look of a man who is utterly crushed, and slunk past
+me without a word. The taper was still on the table, and by its light
+I glanced to see what the paper was which Brunton had taken from the
+bureau. To my surprise it was nothing of any importance at all,
+but simply a copy of the questions and answers in the singular old
+observance called the Musgrave Ritual. It is a sort of ceremony peculiar
+to our family, which each Musgrave for centuries past has gone through
+on his coming of age--a thing of private interest, and perhaps of some
+little importance to the archaeologist, like our own blazonings and
+charges, but of no practical use whatever.'
+
+"'We had better come back to the paper afterwards,' said I.
+
+"'If you think it really necessary,' he answered, with some hesitation.
+'To continue my statement, however: I relocked the bureau, using the key
+which Brunton had left, and I had turned to go when I was surprised to
+find that the butler had returned, and was standing before me.
+
+"'"Mr. Musgrave, sir," he cried, in a voice which was hoarse with
+emotion, "I can't bear disgrace, sir. I've always been proud above my
+station in life, and disgrace would kill me. My blood will be on your
+head, sir--it will, indeed--if you drive me to despair. If you cannot
+keep me after what has passed, then for God's sake let me give you
+notice and leave in a month, as if of my own free will. I could stand
+that, Mr. Musgrave, but not to be cast out before all the folk that I
+know so well."
+
+"'"You don't deserve much consideration, Brunton," I answered. "Your
+conduct has been most infamous. However, as you have been a long time in
+the family, I have no wish to bring public disgrace upon you. A month,
+however is too long. Take yourself away in a week, and give what reason
+you like for going."
+
+"'"Only a week, sir?" he cried, in a despairing voice. "A fortnight--say
+at least a fortnight!"
+
+"'"A week," I repeated, "and you may consider yourself to have been very
+leniently dealt with."
+
+"'He crept away, his face sunk upon his breast, like a broken man, while
+I put out the light and returned to my room.
+
+
+"'"For two days after this Brunton was most assiduous in his attention
+to his duties. I made no allusion to what had passed, and waited with
+some curiosity to see how he would cover his disgrace. On the third
+morning, however he did not appear, as was his custom, after breakfast
+to receive my instructions for the day. As I left the dining-room I
+happened to meet Rachel Howells, the maid. I have told you that she had
+only recently recovered from an illness, and was looking so wretchedly
+pale and wan that I remonstrated with her for being at work.
+
+"'"You should be in bed," I said. "Come back to your duties when you are
+stronger."
+
+"'She looked at me with so strange an expression that I began to suspect
+that her brain was affected.
+
+"'"I am strong enough, Mr. Musgrave," said she.
+
+"'"We will see what the doctor says," I answered. "You must stop work
+now, and when you go downstairs just say that I wish to see Brunton."
+
+"'"The butler is gone," said she.
+
+"'"Gone! Gone where?"
+
+"'"He is gone. No one has seen him. He is not in his room. Oh, yes, he
+is gone, he is gone!" She fell back against the wall with shriek after
+shriek of laughter, while I, horrified at this sudden hysterical attack,
+rushed to the bell to summon help. The girl was taken to her room, still
+screaming and sobbing, while I made inquiries about Brunton. There was
+no doubt about it that he had disappeared. His bed had not been slept
+in, he had been seen by no one since he had retired to his room the
+night before, and yet it was difficult to see how he could have left
+the house, as both windows and doors were found to be fastened in the
+morning. His clothes, his watch, and even his money were in his room,
+but the black suit which he usually wore was missing. His slippers,
+too, were gone, but his boots were left behind. Where then could butler
+Brunton have gone in the night, and what could have become of him now?
+
+"'Of course we searched the house from cellar to garret, but there was
+no trace of him. It is, as I have said, a labyrinth of an old house,
+especially the original wing, which is now practically uninhabited; but
+we ransacked every room and cellar without discovering the least sign
+of the missing man. It was incredible to me that he could have gone away
+leaving all his property behind him, and yet where could he be? I called
+in the local police, but without success. Rain had fallen on the night
+before and we examined the lawn and the paths all round the house, but
+in vain. Matters were in this state, when a new development quite drew
+our attention away from the original mystery.
+
+"'For two days Rachel Howells had been so ill, sometimes delirious,
+sometimes hysterical, that a nurse had been employed to sit up with her
+at night. On the third night after Brunton's disappearance, the nurse,
+finding her patient sleeping nicely, had dropped into a nap in the
+arm-chair, when she woke in the early morning to find the bed empty, the
+window open, and no signs of the invalid. I was instantly aroused, and,
+with the two footmen, started off at once in search of the missing girl.
+It was not difficult to tell the direction which she had taken, for,
+starting from under her window, we could follow her footmarks easily
+across the lawn to the edge of the mere, where they vanished close to
+the gravel path which leads out of the grounds. The lake there is eight
+feet deep, and you can imagine our feelings when we saw that the trail
+of the poor demented girl came to an end at the edge of it.
+
+"'Of course, we had the drags at once, and set to work to recover the
+remains, but no trace of the body could we find. On the other hand, we
+brought to the surface an object of a most unexpected kind. It was a
+linen bag which contained within it a mass of old rusted and discolored
+metal and several dull-colored pieces of pebble or glass. This strange
+find was all that we could get from the mere, and, although we made
+every possible search and inquiry yesterday, we know nothing of the fate
+either of Rachel Howells or of Richard Brunton. The county police are at
+their wits' end, and I have come up to you as a last resource.'
+
+"You can imagine, Watson, with what eagerness I listened to this
+extraordinary sequence of events, and endeavored to piece them together,
+and to devise some common thread upon which they might all hang. The
+butler was gone. The maid was gone. The maid had loved the butler, but
+had afterwards had cause to hate him. She was of Welsh blood, fiery
+and passionate. She had been terribly excited immediately after his
+disappearance. She had flung into the lake a bag containing some
+curious contents. These were all factors which had to be taken into
+consideration, and yet none of them got quite to the heart of the
+matter. What was the starting-point of this chain of events? There lay
+the end of this tangled line.
+
+"'I must see that paper, Musgrave,' said I, 'which this butler of your
+thought it worth his while to consult, even at the risk of the loss of
+his place.'
+
+"'It is rather an absurd business, this ritual of ours,' he answered.
+'But it has at least the saving grace of antiquity to excuse it. I have
+a copy of the questions and answers here if you care to run your eye
+over them.'
+
+"He handed me the very paper which I have here, Watson, and this is the
+strange catechism to which each Musgrave had to submit when he came to
+man's estate. I will read you the questions and answers as they stand.
+
+"'Whose was it?'
+
+"'His who is gone.'
+
+"'Who shall have it?'
+
+"'He who will come.'
+
+"'Where was the sun?'
+
+"'Over the oak.'
+
+"'Where was the shadow?'
+
+"'Under the elm.'
+
+"How was it stepped?'
+
+"'North by ten and by ten, east by five and by five, south by two and by
+two, west by one and by one, and so under.'
+
+"'What shall we give for it?'
+
+"'All that is ours.'
+
+"'Why should we give it?'
+
+"'For the sake of the trust.'
+
+"'The original has no date, but is in the spelling of the middle of the
+seventeenth century,' remarked Musgrave. 'I am afraid, however, that it
+can be of little help to you in solving this mystery.'
+
+"'At least,' said I, 'it gives us another mystery, and one which is even
+more interesting than the first. It may be that the solution of the one
+may prove to be the solution of the other. You will excuse me, Musgrave,
+if I say that your butler appears to me to have been a very clever man,
+and to have had a clearer insight than ten generations of his masters.'
+
+"'I hardly follow you,' said Musgrave. 'The paper seems to me to be of
+no practical importance.'
+
+"'But to me it seems immensely practical, and I fancy that Brunton took
+the same view. He had probably seen it before that night on which you
+caught him.'
+
+"'It is very possible. We took no pains to hide it.'
+
+"'He simply wished, I should imagine, to refresh his memory upon that
+last occasion. He had, as I understand, some sort of map or chart which
+he was comparing with the manuscript, and which he thrust into his
+pocket when you appeared.'
+
+"'That is true. But what could he have to do with this old family custom
+of ours, and what does this rigmarole mean?'
+
+"'I don't think that we should have much difficulty in determining
+that,' said I; 'with your permission we will take the first train down
+to Sussex, and go a little more deeply into the matter upon the spot.'
+
+
+"The same afternoon saw us both at Hurlstone. Possibly you have seen
+pictures and read descriptions of the famous old building, so I will
+confine my account of it to saying that it is built in the shape of
+an L, the long arm being the more modern portion, and the shorter the
+ancient nucleus, from which the other had developed. Over the low,
+heavily-lintelled door, in the centre of this old part, is chiseled the
+date, 1607, but experts are agreed that the beams and stone-work are
+really much older than this. The enormously thick walls and tiny windows
+of this part had in the last century driven the family into building the
+new wing, and the old one was used now as a store-house and a cellar,
+when it was used at all. A splendid park with fine old timber surrounds
+the house, and the lake, to which my client had referred, lay close to
+the avenue, about two hundred yards from the building.
+
+"I was already firmly convinced, Watson, that there were not three
+separate mysteries here, but one only, and that if I could read the
+Musgrave Ritual aright I should hold in my hand the clue which would
+lead me to the truth concerning both the butler Brunton and the maid
+Howells. To that then I turned all my energies. Why should this servant
+be so anxious to master this old formula? Evidently because he saw
+something in it which had escaped all those generations of country
+squires, and from which he expected some personal advantage. What was it
+then, and how had it affected his fate?
+
+"It was perfectly obvious to me, on reading the ritual, that the
+measurements must refer to some spot to which the rest of the document
+alluded, and that if we could find that spot, we should be in a fair way
+towards finding what the secret was which the old Musgraves had thought
+it necessary to embalm in so curious a fashion. There were two guides
+given us to start with, an oak and an elm. As to the oak there could be
+no question at all. Right in front of the house, upon the left-hand
+side of the drive, there stood a patriarch among oaks, one of the most
+magnificent trees that I have ever seen.
+
+"'That was there when your ritual was drawn up,' said I, as we drove
+past it.
+
+"'It was there at the Norman Conquest in all probability,' he answered.
+'It has a girth of twenty-three feet.'
+
+"'Have you any old elms?' I asked.
+
+"'There used to be a very old one over yonder but it was struck by
+lightning ten years ago, and we cut down the stump.'
+
+"'You can see where it used to be?'
+
+"'Oh, yes.'
+
+"'There are no other elms?'
+
+"'No old ones, but plenty of beeches.'
+
+"'I should like to see where it grew.'
+
+"We had driven up in a dog-cart, and my client led me away at once,
+without our entering the house, to the scar on the lawn where the
+elm had stood. It was nearly midway between the oak and the house. My
+investigation seemed to be progressing.
+
+"'I suppose it is impossible to find out how high the elm was?' I asked.
+
+"'I can give you it at once. It was sixty-four feet.'
+
+"'How do you come to know it?' I asked, in surprise.
+
+"'When my old tutor used to give me an exercise in trigonometry, it
+always took the shape of measuring heights. When I was a lad I worked
+out every tree and building in the estate.'
+
+"This was an unexpected piece of luck. My data were coming more quickly
+than I could have reasonably hoped.
+
+"'Tell me,' I asked, 'did your butler ever ask you such a question?'
+
+"Reginald Musgrave looked at me in astonishment. 'Now that you call it
+to my mind,' he answered, 'Brunton did ask me about the height of the
+tree some months ago, in connection with some little argument with the
+groom.'
+
+"This was excellent news, Watson, for it showed me that I was on the
+right road. I looked up at the sun. It was low in the heavens, and I
+calculated that in less than an hour it would lie just above the topmost
+branches of the old oak. One condition mentioned in the Ritual would
+then be fulfilled. And the shadow of the elm must mean the farther end
+of the shadow, otherwise the trunk would have been chosen as the guide.
+I had, then, to find where the far end of the shadow would fall when the
+sun was just clear of the oak."
+
+"That must have been difficult, Holmes, when the elm was no longer
+there."
+
+"Well, at least I knew that if Brunton could do it, I could also.
+Besides, there was no real difficulty. I went with Musgrave to his study
+and whittled myself this peg, to which I tied this long string with a
+knot at each yard. Then I took two lengths of a fishing-rod, which came
+to just six feet, and I went back with my client to where the elm had
+been. The sun was just grazing the top of the oak. I fastened the rod
+on end, marked out the direction of the shadow, and measured it. It was
+nine feet in length.
+
+"Of course the calculation now was a simple one. If a rod of six feet
+threw a shadow of nine, a tree of sixty-four feet would throw one of
+ninety-six, and the line of the one would of course be the line of the
+other. I measured out the distance, which brought me almost to the
+wall of the house, and I thrust a peg into the spot. You can imagine
+my exultation, Watson, when within two inches of my peg I saw a conical
+depression in the ground. I knew that it was the mark made by Brunton in
+his measurements, and that I was still upon his trail.
+
+"From this starting-point I proceeded to step, having first taken the
+cardinal points by my pocket-compass. Ten steps with each foot took me
+along parallel with the wall of the house, and again I marked my spot
+with a peg. Then I carefully paced off five to the east and two to the
+south. It brought me to the very threshold of the old door. Two steps
+to the west meant now that I was to go two paces down the stone-flagged
+passage, and this was the place indicated by the Ritual.
+
+"Never have I felt such a cold chill of disappointment, Watson. For a
+moment is seemed to me that there must be some radical mistake in my
+calculations. The setting sun shone full upon the passage floor, and I
+could see that the old, foot-worn gray stones with which it was paved
+were firmly cemented together, and had certainly not been moved for many
+a long year. Brunton had not been at work here. I tapped upon the floor,
+but it sounded the same all over, and there was no sign of any crack
+or crevice. But, fortunately, Musgrave, who had begun to appreciate the
+meaning of my proceedings, and who was now as excited as myself, took
+out his manuscript to check my calculation.
+
+"'And under,' he cried. 'You have omitted the "and under."'
+
+"I had thought that it meant that we were to dig, but now, of course,
+I saw at once that I was wrong. 'There is a cellar under this then?' I
+cried.
+
+"'Yes, and as old as the house. Down here, through this door.'
+
+"We went down a winding stone stair, and my companion, striking a match,
+lit a large lantern which stood on a barrel in the corner. In an instant
+it was obvious that we had at last come upon the true place, and that we
+had not been the only people to visit the spot recently.
+
+"It had been used for the storage of wood, but the billets, which had
+evidently been littered over the floor, were now piled at the sides, so
+as to leave a clear space in the middle. In this space lay a large and
+heavy flagstone with a rusted iron ring in the centre to which a thick
+shepherd's-check muffler was attached.
+
+"'By Jove!' cried my client. 'That's Brunton's muffler. I have seen it
+on him, and could swear to it. What has the villain been doing here?'
+
+"At my suggestion a couple of the county police were summoned to be
+present, and I then endeavored to raise the stone by pulling on the
+cravat. I could only move it slightly, and it was with the aid of one
+of the constables that I succeeded at last in carrying it to one side.
+A black hole yawned beneath into which we all peered, while Musgrave,
+kneeling at the side, pushed down the lantern.
+
+"A small chamber about seven feet deep and four feet square lay open to
+us. At one side of this was a squat, brass-bound wooden box, the lid of
+which was hinged upwards, with this curious old-fashioned key projecting
+from the lock. It was furred outside by a thick layer of dust, and damp
+and worms had eaten through the wood, so that a crop of livid fungi
+was growing on the inside of it. Several discs of metal, old coins
+apparently, such as I hold here, were scattered over the bottom of the
+box, but it contained nothing else.
+
+"At the moment, however, we had no thought for the old chest, for our
+eyes were riveted upon that which crouched beside it. It was the figure
+of a man, clad in a suit of black, who squatted down upon his hams with
+his forehead sunk upon the edge of the box and his two arms thrown out
+on each side of it. The attitude had drawn all the stagnant blood to
+the face, and no man could have recognized that distorted liver-colored
+countenance; but his height, his dress, and his hair were all sufficient
+to show my client, when we had drawn the body up, that it was indeed his
+missing butler. He had been dead some days, but there was no wound or
+bruise upon his person to show how he had met his dreadful end. When
+his body had been carried from the cellar we found ourselves still
+confronted with a problem which was almost as formidable as that with
+which we had started.
+
+"I confess that so far, Watson, I had been disappointed in my
+investigation. I had reckoned upon solving the matter when once I had
+found the place referred to in the Ritual; but now I was there, and was
+apparently as far as ever from knowing what it was which the family had
+concealed with such elaborate precautions. It is true that I had thrown
+a light upon the fate of Brunton, but now I had to ascertain how that
+fate had come upon him, and what part had been played in the matter by
+the woman who had disappeared. I sat down upon a keg in the corner and
+thought the whole matter carefully over.
+
+"You know my methods in such cases, Watson. I put myself in the man's
+place and, having first gauged his intelligence, I try to imagine how I
+should myself have proceeded under the same circumstances. In this
+case the matter was simplified by Brunton's intelligence being quite
+first-rate, so that it was unnecessary to make any allowance for the
+personal equation, as the astronomers have dubbed it. He knew that
+something valuable was concealed. He had spotted the place. He found
+that the stone which covered it was just too heavy for a man to move
+unaided. What would he do next? He could not get help from outside, even
+if he had some one whom he could trust, without the unbarring of doors
+and considerable risk of detection. It was better, if he could, to have
+his helpmate inside the house. But whom could he ask? This girl had been
+devoted to him. A man always finds it hard to realize that he may have
+finally lost a woman's love, however badly he may have treated her. He
+would try by a few attentions to make his peace with the girl Howells,
+and then would engage her as his accomplice. Together they would come at
+night to the cellar, and their united force would suffice to raise the
+stone. So far I could follow their actions as if I had actually seen
+them.
+
+"But for two of them, and one a woman, it must have been heavy work the
+raising of that stone. A burly Sussex policeman and I had found it no
+light job. What would they do to assist them? Probably what I should
+have done myself. I rose and examined carefully the different billets
+of wood which were scattered round the floor. Almost at once I came
+upon what I expected. One piece, about three feet in length, had a very
+marked indentation at one end, while several were flattened at the sides
+as if they had been compressed by some considerable weight. Evidently,
+as they had dragged the stone up they had thrust the chunks of wood into
+the chink, until at last, when the opening was large enough to crawl
+through, they would hold it open by a billet placed lengthwise, which
+might very well become indented at the lower end, since the whole weight
+of the stone would press it down on to the edge of this other slab. So
+far I was still on safe ground.
+
+"And now how was I to proceed to reconstruct this midnight drama?
+Clearly, only one could fit into the hole, and that one was Brunton. The
+girl must have waited above. Brunton then unlocked the box, handed up
+the contents presumably--since they were not to be found--and then--and
+then what happened?
+
+"What smouldering fire of vengeance had suddenly sprung into flame in
+this passionate Celtic woman's soul when she saw the man who had wronged
+her--wronged her, perhaps, far more than we suspected--in her power?
+Was it a chance that the wood had slipped, and that the stone had shut
+Brunton into what had become his sepulchre? Had she only been guilty of
+silence as to his fate? Or had some sudden blow from her hand dashed the
+support away and sent the slab crashing down into its place? Be that
+as it might, I seemed to see that woman's figure still clutching at her
+treasure trove and flying wildly up the winding stair, with her ears
+ringing perhaps with the muffled screams from behind her and with the
+drumming of frenzied hands against the slab of stone which was choking
+her faithless lover's life out.
+
+"Here was the secret of her blanched face, her shaken nerves, her peals
+of hysterical laughter on the next morning. But what had been in the
+box? What had she done with that? Of course, it must have been the old
+metal and pebbles which my client had dragged from the mere. She had
+thrown them in there at the first opportunity to remove the last trace
+of her crime.
+
+"For twenty minutes I had sat motionless, thinking the matter out.
+Musgrave still stood with a very pale face, swinging his lantern and
+peering down into the hole.
+
+"'These are coins of Charles the First,' said he, holding out the few
+which had been in the box; 'you see we were right in fixing our date for
+the Ritual.'
+
+"'We may find something else of Charles the First,' I cried, as the
+probable meaning of the first two questions of the Ritual broke suddenly
+upon me. 'Let me see the contents of the bag which you fished from the
+mere.'
+
+
+"We ascended to his study, and he laid the debris before me. I could
+understand his regarding it as of small importance when I looked at it,
+for the metal was almost black and the stones lustreless and dull. I
+rubbed one of them on my sleeve, however, and it glowed afterwards like
+a spark in the dark hollow of my hand. The metal work was in the form
+of a double ring, but it had been bent and twisted out of its original
+shape.
+
+"'You must bear in mind,' said I, 'that the royal party made head in
+England even after the death of the king, and that when they at last
+fled they probably left many of their most precious possessions buried
+behind them, with the intention of returning for them in more peaceful
+times.'
+
+"'My ancestor, Sir Ralph Musgrave, was a prominent Cavalier and the
+right-hand man of Charles the Second in his wanderings,' said my friend.
+
+"'Ah, indeed!' I answered. 'Well now, I think that really should give us
+the last link that we wanted. I must congratulate you on coming into
+the possession, though in rather a tragic manner of a relic which is of
+great intrinsic value, but of even greater importance as an historical
+curiosity.'
+
+"'What is it, then?' he gasped in astonishment.
+
+"'It is nothing less than the ancient crown of the kings of England.'
+
+"'The crown!'
+
+"'Precisely. Consider what the Ritual says: How does it run? "Whose was
+it?" "His who is gone." That was after the execution of Charles. Then,
+"Who shall have it?" "He who will come." That was Charles the Second,
+whose advent was already foreseen. There can, I think, be no doubt that
+this battered and shapeless diadem once encircled the brows of the royal
+Stuarts.'
+
+"'And how came it in the pond?'
+
+"'Ah, that is a question that will take some time to answer.' And with
+that I sketched out to him the whole long chain of surmise and of proof
+which I had constructed. The twilight had closed in and the moon was
+shining brightly in the sky before my narrative was finished.
+
+"'And how was it then that Charles did not get his crown when he
+returned?' asked Musgrave, pushing back the relic into its linen bag.
+
+"'Ah, there you lay your finger upon the one point which we shall
+probably never be able to clear up. It is likely that the Musgrave who
+held the secret died in the interval, and by some oversight left this
+guide to his descendant without explaining the meaning of it. From that
+day to this it has been handed down from father to son, until at last
+it came within reach of a man who tore its secret out of it and lost his
+life in the venture.'
+
+
+"And that's the story of the Musgrave Ritual, Watson. They have the
+crown down at Hurlstone--though they had some legal bother and a
+considerable sum to pay before they were allowed to retain it. I am sure
+that if you mentioned my name they would be happy to show it to you. Of
+the woman nothing was ever heard, and the probability is that she got
+away out of England and carried herself and the memory of her crime to
+some land beyond the seas."
+
+
+
+
+Adventure VI. The Reigate Puzzle
+
+
+It was some time before the health of my friend Mr. Sherlock Holmes
+recovered from the strain caused by his immense exertions in the spring
+of '87. The whole question of the Netherland-Sumatra Company and of the
+colossal schemes of Baron Maupertuis are too recent in the minds of the
+public, and are too intimately concerned with politics and finance to be
+fitting subjects for this series of sketches. They led, however, in an
+indirect fashion to a singular and complex problem which gave my friend
+an opportunity of demonstrating the value of a fresh weapon among the
+many with which he waged his life-long battle against crime.
+
+On referring to my notes I see that it was upon the 14th of April that
+I received a telegram from Lyons which informed me that Holmes was
+lying ill in the Hotel Dulong. Within twenty-four hours I was in his
+sick-room, and was relieved to find that there was nothing formidable in
+his symptoms. Even his iron constitution, however, had broken down
+under the strain of an investigation which had extended over two months,
+during which period he had never worked less than fifteen hours a day,
+and had more than once, as he assured me, kept to his task for five days
+at a stretch. Even the triumphant issue of his labors could not save him
+from reaction after so terrible an exertion, and at a time when Europe
+was ringing with his name and when his room was literally ankle-deep
+with congratulatory telegrams I found him a prey to the blackest
+depression. Even the knowledge that he had succeeded where the police of
+three countries had failed, and that he had outmanoeuvred at every point
+the most accomplished swindler in Europe, was insufficient to rouse him
+from his nervous prostration.
+
+Three days later we were back in Baker Street together; but it was
+evident that my friend would be much the better for a change, and the
+thought of a week of spring time in the country was full of attractions
+to me also. My old friend, Colonel Hayter, who had come under my
+professional care in Afghanistan, had now taken a house near Reigate in
+Surrey, and had frequently asked me to come down to him upon a visit. On
+the last occasion he had remarked that if my friend would only come
+with me he would be glad to extend his hospitality to him also. A little
+diplomacy was needed, but when Holmes understood that the establishment
+was a bachelor one, and that he would be allowed the fullest freedom,
+he fell in with my plans and a week after our return from Lyons we were
+under the Colonel's roof. Hayter was a fine old soldier who had seen
+much of the world, and he soon found, as I had expected, that Holmes and
+he had much in common.
+
+On the evening of our arrival we were sitting in the Colonel's gun-room
+after dinner, Holmes stretched upon the sofa, while Hayter and I looked
+over his little armory of Eastern weapons.
+
+"By the way," said he suddenly, "I think I'll take one of these pistols
+upstairs with me in case we have an alarm."
+
+"An alarm!" said I.
+
+"Yes, we've had a scare in this part lately. Old Acton, who is one of
+our county magnates, had his house broken into last Monday. No great
+damage done, but the fellows are still at large."
+
+"No clue?" asked Holmes, cocking his eye at the Colonel.
+
+"None as yet. But the affair is a petty one, one of our little country
+crimes, which must seem too small for your attention, Mr. Holmes, after
+this great international affair."
+
+Holmes waved away the compliment, though his smile showed that it had
+pleased him.
+
+"Was there any feature of interest?"
+
+"I fancy not. The thieves ransacked the library and got very little for
+their pains. The whole place was turned upside down, drawers burst open,
+and presses ransacked, with the result that an odd volume of Pope's
+'Homer,' two plated candlesticks, an ivory letter-weight, a small oak
+barometer, and a ball of twine are all that have vanished."
+
+"What an extraordinary assortment!" I exclaimed.
+
+"Oh, the fellows evidently grabbed hold of everything they could get."
+
+Holmes grunted from the sofa.
+
+"The county police ought to make something of that," said he; "why, it
+is surely obvious that--"
+
+But I held up a warning finger.
+
+"You are here for a rest, my dear fellow. For Heaven's sake don't get
+started on a new problem when your nerves are all in shreds."
+
+Holmes shrugged his shoulders with a glance of comic resignation towards
+the Colonel, and the talk drifted away into less dangerous channels.
+
+It was destined, however, that all my professional caution should be
+wasted, for next morning the problem obtruded itself upon us in such a
+way that it was impossible to ignore it, and our country visit took a
+turn which neither of us could have anticipated. We were at breakfast
+when the Colonel's butler rushed in with all his propriety shaken out of
+him.
+
+"Have you heard the news, sir?" he gasped. "At the Cunningham's sir!"
+
+"Burglary!" cried the Colonel, with his coffee-cup in mid-air.
+
+"Murder!"
+
+The Colonel whistled. "By Jove!" said he. "Who's killed, then? The J.P.
+or his son?"
+
+"Neither, sir. It was William the coachman. Shot through the heart, sir,
+and never spoke again."
+
+"Who shot him, then?"
+
+"The burglar, sir. He was off like a shot and got clean away. He'd just
+broke in at the pantry window when William came on him and met his end
+in saving his master's property."
+
+"What time?"
+
+"It was last night, sir, somewhere about twelve."
+
+"Ah, then, we'll step over afterwards," said the Colonel, coolly
+settling down to his breakfast again. "It's a baddish business," he
+added when the butler had gone; "he's our leading man about here, is old
+Cunningham, and a very decent fellow too. He'll be cut up over this, for
+the man has been in his service for years and was a good servant. It's
+evidently the same villains who broke into Acton's."
+
+"And stole that very singular collection," said Holmes, thoughtfully.
+
+"Precisely."
+
+"Hum! It may prove the simplest matter in the world, but all the same
+at first glance this is just a little curious, is it not? A gang of
+burglars acting in the country might be expected to vary the scene of
+their operations, and not to crack two cribs in the same district within
+a few days. When you spoke last night of taking precautions I remember
+that it passed through my mind that this was probably the last parish
+in England to which the thief or thieves would be likely to turn their
+attention--which shows that I have still much to learn."
+
+"I fancy it's some local practitioner," said the Colonel. "In that case,
+of course, Acton's and Cunningham's are just the places he would go for,
+since they are far the largest about here."
+
+"And richest?"
+
+"Well, they ought to be, but they've had a lawsuit for some years which
+has sucked the blood out of both of them, I fancy. Old Acton has some
+claim on half Cunningham's estate, and the lawyers have been at it with
+both hands."
+
+"If it's a local villain there should not be much difficulty in running
+him down," said Holmes with a yawn. "All right, Watson, I don't intend
+to meddle."
+
+"Inspector Forrester, sir," said the butler, throwing open the door.
+
+The official, a smart, keen-faced young fellow, stepped into the room.
+"Good-morning, Colonel," said he; "I hope I don't intrude, but we hear
+that Mr. Holmes of Baker Street is here."
+
+The Colonel waved his hand towards my friend, and the Inspector bowed.
+
+"We thought that perhaps you would care to step across, Mr. Holmes."
+
+"The fates are against you, Watson," said he, laughing. "We were
+chatting about the matter when you came in, Inspector. Perhaps you
+can let us have a few details." As he leaned back in his chair in the
+familiar attitude I knew that the case was hopeless.
+
+"We had no clue in the Acton affair. But here we have plenty to go on,
+and there's no doubt it is the same party in each case. The man was
+seen."
+
+"Ah!"
+
+"Yes, sir. But he was off like a deer after the shot that killed poor
+William Kirwan was fired. Mr. Cunningham saw him from the bedroom
+window, and Mr. Alec Cunningham saw him from the back passage. It was
+quarter to twelve when the alarm broke out. Mr. Cunningham had just got
+into bed, and Mr. Alec was smoking a pipe in his dressing-gown. They
+both heard William the coachman calling for help, and Mr. Alec ran down
+to see what was the matter. The back door was open, and as he came to
+the foot of the stairs he saw two men wrestling together outside. One of
+them fired a shot, the other dropped, and the murderer rushed across the
+garden and over the hedge. Mr. Cunningham, looking out of his bedroom,
+saw the fellow as he gained the road, but lost sight of him at once. Mr.
+Alec stopped to see if he could help the dying man, and so the villain
+got clean away. Beyond the fact that he was a middle-sized man and
+dressed in some dark stuff, we have no personal clue; but we are making
+energetic inquiries, and if he is a stranger we shall soon find him
+out."
+
+"What was this William doing there? Did he say anything before he died?"
+
+"Not a word. He lives at the lodge with his mother, and as he was a
+very faithful fellow we imagine that he walked up to the house with
+the intention of seeing that all was right there. Of course this Acton
+business has put every one on their guard. The robber must have just
+burst open the door--the lock has been forced--when William came upon
+him."
+
+"Did William say anything to his mother before going out?"
+
+"She is very old and deaf, and we can get no information from her. The
+shock has made her half-witted, but I understand that she was never
+very bright. There is one very important circumstance, however. Look at
+this!"
+
+He took a small piece of torn paper from a note-book and spread it out
+upon his knee.
+
+"This was found between the finger and thumb of the dead man. It appears
+to be a fragment torn from a larger sheet. You will observe that the
+hour mentioned upon it is the very time at which the poor fellow met his
+fate. You see that his murderer might have torn the rest of the sheet
+from him or he might have taken this fragment from the murderer. It
+reads almost as though it were an appointment."
+
+Holmes took up the scrap of paper, a fac-simile of which is here
+reproduced.
+
+ d at quarter to twelve learn what maybe
+
+"Presuming that it is an appointment," continued the Inspector, "it is
+of course a conceivable theory that this William Kirwan--though he had
+the reputation of being an honest man, may have been in league with the
+thief. He may have met him there, may even have helped him to break in
+the door, and then they may have fallen out between themselves."
+
+"This writing is of extraordinary interest," said Holmes, who had been
+examining it with intense concentration. "These are much deeper waters
+than I had thought." He sank his head upon his hands, while the Inspector
+smiled at the effect which his case had had upon the famous London
+specialist.
+
+"Your last remark," said Holmes, presently, "as to the possibility of
+there being an understanding between the burglar and the servant, and
+this being a note of appointment from one to the other, is an ingenious
+and not entirely impossible supposition. But this writing opens up--" He
+sank his head into his hands again and remained for some minutes in the
+deepest thought. When he raised his face again, I was surprised to see
+that his cheek was tinged with color, and his eyes as bright as before
+his illness. He sprang to his feet with all his old energy.
+
+"I'll tell you what," said he, "I should like to have a quiet little
+glance into the details of this case. There is something in it which
+fascinates me extremely. If you will permit me, Colonel, I will leave my
+friend Watson and you, and I will step round with the Inspector to test
+the truth of one or two little fancies of mine. I will be with you again
+in half an hour."
+
+An hour and half had elapsed before the Inspector returned alone.
+
+"Mr. Holmes is walking up and down in the field outside," said he. "He
+wants us all four to go up to the house together."
+
+"To Mr. Cunningham's?"
+
+"Yes, sir."
+
+"What for?"
+
+The Inspector shrugged his shoulders. "I don't quite know, sir. Between
+ourselves, I think Mr. Holmes had not quite got over his illness yet.
+He's been behaving very queerly, and he is very much excited."
+
+"I don't think you need alarm yourself," said I. "I have usually found
+that there was method in his madness."
+
+"Some folks might say there was madness in his method," muttered the
+Inspector. "But he's all on fire to start, Colonel, so we had best go
+out if you are ready."
+
+We found Holmes pacing up and down in the field, his chin sunk upon his
+breast, and his hands thrust into his trousers pockets.
+
+"The matter grows in interest," said he. "Watson, your country-trip has
+been a distinct success. I have had a charming morning."
+
+"You have been up to the scene of the crime, I understand," said the
+Colonel.
+
+"Yes; the Inspector and I have made quite a little reconnaissance
+together."
+
+"Any success?"
+
+"Well, we have seen some very interesting things. I'll tell you what we
+did as we walk. First of all, we saw the body of this unfortunate man.
+He certainly died from a revolver wound as reported."
+
+"Had you doubted it, then?"
+
+"Oh, it is as well to test everything. Our inspection was not wasted. We
+then had an interview with Mr. Cunningham and his son, who were able
+to point out the exact spot where the murderer had broken through the
+garden-hedge in his flight. That was of great interest."
+
+"Naturally."
+
+"Then we had a look at this poor fellow's mother. We could get no
+information from her, however, as she is very old and feeble."
+
+"And what is the result of your investigations?"
+
+"The conviction that the crime is a very peculiar one. Perhaps our visit
+now may do something to make it less obscure. I think that we are both
+agreed, Inspector that the fragment of paper in the dead man's hand,
+bearing, as it does, the very hour of his death written upon it, is of
+extreme importance."
+
+"It should give a clue, Mr. Holmes."
+
+"It does give a clue. Whoever wrote that note was the man who brought
+William Kirwan out of his bed at that hour. But where is the rest of
+that sheet of paper?"
+
+"I examined the ground carefully in the hope of finding it," said the
+Inspector.
+
+"It was torn out of the dead man's hand. Why was some one so anxious to
+get possession of it? Because it incriminated him. And what would he do
+with it? Thrust it into his pocket, most likely, never noticing that a
+corner of it had been left in the grip of the corpse. If we could get
+the rest of that sheet it is obvious that we should have gone a long way
+towards solving the mystery."
+
+"Yes, but how can we get at the criminal's pocket before we catch the
+criminal?"
+
+"Well, well, it was worth thinking over. Then there is another obvious
+point. The note was sent to William. The man who wrote it could not have
+taken it; otherwise, of course, he might have delivered his own message
+by word of mouth. Who brought the note, then? Or did it come through the
+post?"
+
+"I have made inquiries," said the Inspector. "William received a letter
+by the afternoon post yesterday. The envelope was destroyed by him."
+
+"Excellent!" cried Holmes, clapping the Inspector on the back. "You've
+seen the postman. It is a pleasure to work with you. Well, here is the
+lodge, and if you will come up, Colonel, I will show you the scene of
+the crime."
+
+We passed the pretty cottage where the murdered man had lived, and
+walked up an oak-lined avenue to the fine old Queen Anne house, which
+bears the date of Malplaquet upon the lintel of the door. Holmes and
+the Inspector led us round it until we came to the side gate, which is
+separated by a stretch of garden from the hedge which lines the road. A
+constable was standing at the kitchen door.
+
+"Throw the door open, officer," said Holmes. "Now, it was on those
+stairs that young Mr. Cunningham stood and saw the two men struggling
+just where we are. Old Mr. Cunningham was at that window--the second on
+the left--and he saw the fellow get away just to the left of that bush.
+Then Mr. Alec ran out and knelt beside the wounded man. The ground is
+very hard, you see, and there are no marks to guide us." As he spoke two
+men came down the garden path, from round the angle of the house. The
+one was an elderly man, with a strong, deep-lined, heavy-eyed face; the
+other a dashing young fellow, whose bright, smiling expression and showy
+dress were in strange contract with the business which had brought us
+there.
+
+"Still at it, then?" said he to Holmes. "I thought you Londoners were
+never at fault. You don't seem to be so very quick, after all."
+
+"Ah, you must give us a little time," said Holmes good-humoredly.
+
+"You'll want it," said young Alec Cunningham. "Why, I don't see that we
+have any clue at all."
+
+"There's only one," answered the Inspector. "We thought that if we could
+only find--Good heavens, Mr. Holmes! What is the matter?"
+
+My poor friend's face had suddenly assumed the most dreadful expression.
+His eyes rolled upwards, his features writhed in agony, and with a
+suppressed groan he dropped on his face upon the ground. Horrified
+at the suddenness and severity of the attack, we carried him into the
+kitchen, where he lay back in a large chair, and breathed heavily for
+some minutes. Finally, with a shamefaced apology for his weakness, he
+rose once more.
+
+"Watson would tell you that I have only just recovered from a severe
+illness," he explained. "I am liable to these sudden nervous attacks."
+
+"Shall I send you home in my trap?" asked old Cunningham.
+
+"Well, since I am here, there is one point on which I should like to
+feel sure. We can very easily verify it."
+
+"What was it?"
+
+"Well, it seems to me that it is just possible that the arrival of
+this poor fellow William was not before, but after, the entrance of
+the burglary into the house. You appear to take it for granted that,
+although the door was forced, the robber never got in."
+
+"I fancy that is quite obvious," said Mr. Cunningham, gravely. "Why, my
+son Alec had not yet gone to bed, and he would certainly have heard any
+one moving about."
+
+"Where was he sitting?"
+
+"I was smoking in my dressing-room."
+
+"Which window is that?"
+
+"The last on the left next my father's."
+
+"Both of your lamps were lit, of course?"
+
+"Undoubtedly."
+
+"There are some very singular points here," said Holmes, smiling. "Is
+it not extraordinary that a burglary--and a burglar who had had some
+previous experience--should deliberately break into a house at a time
+when he could see from the lights that two of the family were still
+afoot?"
+
+"He must have been a cool hand."
+
+"Well, of course, if the case were not an odd one we should not have
+been driven to ask you for an explanation," said young Mr. Alec. "But as
+to your ideas that the man had robbed the house before William tackled
+him, I think it a most absurd notion. Wouldn't we have found the place
+disarranged, and missed the things which he had taken?"
+
+"It depends on what the things were," said Holmes. "You must remember
+that we are dealing with a burglar who is a very peculiar fellow, and
+who appears to work on lines of his own. Look, for example, at the
+queer lot of things which he took from Acton's--what was it?--a ball of
+string, a letter-weight, and I don't know what other odds and ends."
+
+"Well, we are quite in your hands, Mr. Holmes," said old Cunningham.
+"Anything which you or the Inspector may suggest will most certainly be
+done."
+
+"In the first place," said Holmes, "I should like you to offer a
+reward--coming from yourself, for the officials may take a little time
+before they would agree upon the sum, and these things cannot be done
+too promptly. I have jotted down the form here, if you would not mind
+signing it. Fifty pounds was quite enough, I thought."
+
+"I would willingly give five hundred," said the J.P., taking the slip
+of paper and the pencil which Holmes handed to him. "This is not quite
+correct, however," he added, glancing over the document.
+
+"I wrote it rather hurriedly."
+
+"You see you begin, 'Whereas, at about a quarter to one on Tuesday
+morning an attempt was made,' and so on. It was at a quarter to twelve,
+as a matter of fact."
+
+I was pained at the mistake, for I knew how keenly Holmes would feel any
+slip of the kind. It was his specialty to be accurate as to fact, but
+his recent illness had shaken him, and this one little incident was
+enough to show me that he was still far from being himself. He was
+obviously embarrassed for an instant, while the Inspector raised his
+eyebrows, and Alec Cunningham burst into a laugh. The old gentleman
+corrected the mistake, however, and handed the paper back to Holmes.
+
+"Get it printed as soon as possible," he said; "I think your idea is an
+excellent one."
+
+Holmes put the slip of paper carefully away into his pocket-book.
+
+"And now," said he, "it really would be a good thing that we should all
+go over the house together and make certain that this rather erratic
+burglar did not, after all, carry anything away with him."
+
+Before entering, Holmes made an examination of the door which had been
+forced. It was evident that a chisel or strong knife had been thrust
+in, and the lock forced back with it. We could see the marks in the wood
+where it had been pushed in.
+
+"You don't use bars, then?" he asked.
+
+"We have never found it necessary."
+
+"You don't keep a dog?"
+
+"Yes, but he is chained on the other side of the house."
+
+"When do the servants go to bed?"
+
+"About ten."
+
+"I understand that William was usually in bed also at that hour."
+
+"Yes."
+
+"It is singular that on this particular night he should have been up.
+Now, I should be very glad if you would have the kindness to show us
+over the house, Mr. Cunningham."
+
+A stone-flagged passage, with the kitchens branching away from it, led
+by a wooden staircase directly to the first floor of the house. It came
+out upon the landing opposite to a second more ornamental stair which
+came up from the front hall. Out of this landing opened the drawing-room
+and several bedrooms, including those of Mr. Cunningham and his son.
+Holmes walked slowly, taking keen note of the architecture of the house.
+I could tell from his expression that he was on a hot scent, and yet
+I could not in the least imagine in what direction his inferences were
+leading him.
+
+"My good sir," said Mr. Cunningham with some impatience, "this is surely
+very unnecessary. That is my room at the end of the stairs, and my
+son's is the one beyond it. I leave it to your judgment whether it was
+possible for the thief to have come up here without disturbing us."
+
+"You must try round and get on a fresh scent, I fancy," said the son
+with a rather malicious smile.
+
+"Still, I must ask you to humor me a little further. I should like, for
+example, to see how far the windows of the bedrooms command the front.
+This, I understand is your son's room"--he pushed open the door--"and
+that, I presume, is the dressing-room in which he sat smoking when the
+alarm was given. Where does the window of that look out to?" He stepped
+across the bedroom, pushed open the door, and glanced round the other
+chamber.
+
+"I hope that you are satisfied now?" said Mr. Cunningham, tartly.
+
+"Thank you, I think I have seen all that I wished."
+
+"Then if it is really necessary we can go into my room."
+
+"If it is not too much trouble."
+
+The J. P. shrugged his shoulders, and led the way into his own chamber,
+which was a plainly furnished and commonplace room. As we moved across
+it in the direction of the window, Holmes fell back until he and I were
+the last of the group. Near the foot of the bed stood a dish of oranges
+and a carafe of water. As we passed it Holmes, to my unutterable
+astonishment, leaned over in front of me and deliberately knocked the
+whole thing over. The glass smashed into a thousand pieces and the fruit
+rolled about into every corner of the room.
+
+"You've done it now, Watson," said he, coolly. "A pretty mess you've
+made of the carpet."
+
+I stooped in some confusion and began to pick up the fruit,
+understanding for some reason my companion desired me to take the blame
+upon myself. The others did the same, and set the table on its legs
+again.
+
+"Hullo!" cried the Inspector, "where's he got to?"
+
+Holmes had disappeared.
+
+"Wait here an instant," said young Alec Cunningham. "The fellow is off
+his head, in my opinion. Come with me, father, and see where he has got
+to!"
+
+They rushed out of the room, leaving the Inspector, the Colonel, and me
+staring at each other.
+
+"'Pon my word, I am inclined to agree with Master Alec," said the
+official. "It may be the effect of this illness, but it seems to me
+that--"
+
+His words were cut short by a sudden scream of "Help! Help! Murder!"
+With a thrill I recognized the voice of that of my friend. I rushed
+madly from the room on to the landing. The cries, which had sunk down
+into a hoarse, inarticulate shouting, came from the room which we had
+first visited. I dashed in, and on into the dressing-room beyond. The
+two Cunninghams were bending over the prostrate figure of Sherlock
+Holmes, the younger clutching his throat with both hands, while the
+elder seemed to be twisting one of his wrists. In an instant the three
+of us had torn them away from him, and Holmes staggered to his feet,
+very pale and evidently greatly exhausted.
+
+"Arrest these men, Inspector," he gasped.
+
+"On what charge?"
+
+"That of murdering their coachman, William Kirwan."
+
+The Inspector stared about him in bewilderment. "Oh, come now, Mr.
+Holmes," said he at last, "I'm sure you don't really mean to--"
+
+"Tut, man, look at their faces!" cried Holmes, curtly.
+
+Never certainly have I seen a plainer confession of guilt upon human
+countenances. The older man seemed numbed and dazed with a heavy, sullen
+expression upon his strongly-marked face. The son, on the other hand,
+had dropped all that jaunty, dashing style which had characterized him,
+and the ferocity of a dangerous wild beast gleamed in his dark eyes
+and distorted his handsome features. The Inspector said nothing, but,
+stepping to the door, he blew his whistle. Two of his constables came at
+the call.
+
+"I have no alternative, Mr. Cunningham," said he. "I trust that this may
+all prove to be an absurd mistake, but you can see that--Ah, would you?
+Drop it!" He struck out with his hand, and a revolver which the younger
+man was in the act of cocking clattered down upon the floor.
+
+"Keep that," said Holmes, quietly putting his foot upon it; "you will
+find it useful at the trial. But this is what we really wanted." He held
+up a little crumpled piece of paper.
+
+"The remainder of the sheet!" cried the Inspector.
+
+"Precisely."
+
+"And where was it?"
+
+"Where I was sure it must be. I'll make the whole matter clear to you
+presently. I think, Colonel, that you and Watson might return now, and
+I will be with you again in an hour at the furthest. The Inspector and I
+must have a word with the prisoners, but you will certainly see me back
+at luncheon time."
+
+
+Sherlock Holmes was as good as his word, for about one o'clock he
+rejoined us in the Colonel's smoking-room. He was accompanied by a
+little elderly gentleman, who was introduced to me as the Mr. Acton
+whose house had been the scene of the original burglary.
+
+"I wished Mr. Acton to be present while I demonstrated this small matter
+to you," said Holmes, "for it is natural that he should take a keen
+interest in the details. I am afraid, my dear Colonel, that you must
+regret the hour that you took in such a stormy petrel as I am."
+
+"On the contrary," answered the Colonel, warmly, "I consider it the
+greatest privilege to have been permitted to study your methods of
+working. I confess that they quite surpass my expectations, and that I
+am utterly unable to account for your result. I have not yet seen the
+vestige of a clue."
+
+"I am afraid that my explanation may disillusion you but it has always
+been my habit to hide none of my methods, either from my friend Watson
+or from any one who might take an intelligent interest in them. But,
+first, as I am rather shaken by the knocking about which I had in
+the dressing-room, I think that I shall help myself to a dash of your
+brandy, Colonel. My strength had been rather tried of late."
+
+"I trust that you had no more of those nervous attacks."
+
+Sherlock Holmes laughed heartily. "We will come to that in its turn,"
+said he. "I will lay an account of the case before you in its due order,
+showing you the various points which guided me in my decision. Pray
+interrupt me if there is any inference which is not perfectly clear to
+you.
+
+"It is of the highest importance in the art of detection to be able
+to recognize, out of a number of facts, which are incidental and which
+vital. Otherwise your energy and attention must be dissipated instead of
+being concentrated. Now, in this case there was not the slightest doubt
+in my mind from the first that the key of the whole matter must be
+looked for in the scrap of paper in the dead man's hand.
+
+"Before going into this, I would draw your attention to the fact that,
+if Alec Cunningham's narrative was correct, and if the assailant, after
+shooting William Kirwan, had instantly fled, then it obviously could not
+be he who tore the paper from the dead man's hand. But if it was not he,
+it must have been Alec Cunningham himself, for by the time that the old
+man had descended several servants were upon the scene. The point is a
+simple one, but the Inspector had overlooked it because he had started
+with the supposition that these county magnates had had nothing to do
+with the matter. Now, I make a point of never having any prejudices,
+and of following docilely wherever fact may lead me, and so, in the
+very first stage of the investigation, I found myself looking a little
+askance at the part which had been played by Mr. Alec Cunningham.
+
+"And now I made a very careful examination of the corner of paper which
+the Inspector had submitted to us. It was at once clear to me that it
+formed part of a very remarkable document. Here it is. Do you not now
+observe something very suggestive about it?"
+
+"It has a very irregular look," said the Colonel.
+
+"My dear sir," cried Holmes, "there cannot be the least doubt in the
+world that it has been written by two persons doing alternate words.
+When I draw your attention to the strong t's of 'at' and 'to', and ask
+you to compare them with the weak ones of 'quarter' and 'twelve,' you
+will instantly recognize the fact. A very brief analysis of these
+four words would enable you to say with the utmost confidence that the
+'learn' and the 'maybe' are written in the stronger hand, and the 'what'
+in the weaker."
+
+"By Jove, it's as clear as day!" cried the Colonel. "Why on earth should
+two men write a letter in such a fashion?"
+
+"Obviously the business was a bad one, and one of the men who distrusted
+the other was determined that, whatever was done, each should have an
+equal hand in it. Now, of the two men, it is clear that the one who
+wrote the 'at' and 'to' was the ringleader."
+
+"How do you get at that?"
+
+"We might deduce it from the mere character of the one hand as compared
+with the other. But we have more assured reasons than that for supposing
+it. If you examine this scrap with attention you will come to the
+conclusion that the man with the stronger hand wrote all his words
+first, leaving blanks for the other to fill up. These blanks were not
+always sufficient, and you can see that the second man had a squeeze
+to fit his 'quarter' in between the 'at' and the 'to,' showing that the
+latter were already written. The man who wrote all his words first is
+undoubtedly the man who planned the affair."
+
+"Excellent!" cried Mr. Acton.
+
+"But very superficial," said Holmes. "We come now, however, to a point
+which is of importance. You may not be aware that the deduction of a
+man's age from his writing is one which has brought to considerable
+accuracy by experts. In normal cases one can place a man in his true
+decade with tolerable confidence. I say normal cases, because ill-health
+and physical weakness reproduce the signs of old age, even when the
+invalid is a youth. In this case, looking at the bold, strong hand of
+the one, and the rather broken-backed appearance of the other, which
+still retains its legibility although the t's have begun to lose their
+crossing, we can say that the one was a young man and the other was
+advanced in years without being positively decrepit."
+
+"Excellent!" cried Mr. Acton again.
+
+"There is a further point, however, which is subtler and of greater
+interest. There is something in common between these hands. They belong
+to men who are blood-relatives. It may be most obvious to you in the
+Greek e's, but to me there are many small points which indicate the same
+thing. I have no doubt at all that a family mannerism can be traced in
+these two specimens of writing. I am only, of course, giving you
+the leading results now of my examination of the paper. There were
+twenty-three other deductions which would be of more interest to experts
+than to you. They all tend to deepen the impression upon my mind that
+the Cunninghams, father and son, had written this letter.
+
+"Having got so far, my next step was, of course, to examine into the
+details of the crime, and to see how far they would help us. I went up
+to the house with the Inspector, and saw all that was to be seen. The
+wound upon the dead man was, as I was able to determine with absolute
+confidence, fired from a revolver at the distance of something over
+four yards. There was no powder-blackening on the clothes. Evidently,
+therefore, Alec Cunningham had lied when he said that the two men were
+struggling when the shot was fired. Again, both father and son agreed
+as to the place where the man escaped into the road. At that point,
+however, as it happens, there is a broadish ditch, moist at the bottom.
+As there were no indications of bootmarks about this ditch, I was
+absolutely sure not only that the Cunninghams had again lied, but that
+there had never been any unknown man upon the scene at all.
+
+"And now I have to consider the motive of this singular crime. To get
+at this, I endeavored first of all to solve the reason of the original
+burglary at Mr. Acton's. I understood, from something which the Colonel
+told us, that a lawsuit had been going on between you, Mr. Acton, and
+the Cunninghams. Of course, it instantly occurred to me that they had
+broken into your library with the intention of getting at some document
+which might be of importance in the case."
+
+"Precisely so," said Mr. Acton. "There can be no possible doubt as to
+their intentions. I have the clearest claim upon half of their present
+estate, and if they could have found a single paper--which, fortunately,
+was in the strong-box of my solicitors--they would undoubtedly have
+crippled our case."
+
+"There you are," said Holmes, smiling. "It was a dangerous, reckless
+attempt, in which I seem to trace the influence of young Alec. Having
+found nothing they tried to divert suspicion by making it appear to be
+an ordinary burglary, to which end they carried off whatever they could
+lay their hands upon. That is all clear enough, but there was much that
+was still obscure. What I wanted above all was to get the missing part
+of that note. I was certain that Alec had torn it out of the dead man's
+hand, and almost certain that he must have thrust it into the pocket of
+his dressing-gown. Where else could he have put it? The only question
+was whether it was still there. It was worth an effort to find out, and
+for that object we all went up to the house.
+
+"The Cunninghams joined us, as you doubtless remember, outside the
+kitchen door. It was, of course, of the very first importance that they
+should not be reminded of the existence of this paper, otherwise they
+would naturally destroy it without delay. The Inspector was about to
+tell them the importance which we attached to it when, by the luckiest
+chance in the world, I tumbled down in a sort of fit and so changed the
+conversation.
+
+"Good heavens!" cried the Colonel, laughing, "do you mean to say all our
+sympathy was wasted and your fit an imposture?"
+
+"Speaking professionally, it was admirably done," cried I, looking in
+amazement at this man who was forever confounding me with some new phase
+of his astuteness.
+
+"It is an art which is often useful," said he. "When I recovered I
+managed, by a device which had perhaps some little merit of ingenuity,
+to get old Cunningham to write the word 'twelve,' so that I might
+compare it with the 'twelve' upon the paper."
+
+"Oh, what an ass I have been!" I exclaimed.
+
+"I could see that you were commiserating me over my weakness," said
+Holmes, laughing. "I was sorry to cause you the sympathetic pain which
+I know that you felt. We then went upstairs together, and having entered
+the room and seen the dressing-gown hanging up behind the door, I
+contrived, by upsetting a table, to engage their attention for the
+moment, and slipped back to examine the pockets. I had hardly got the
+paper, however--which was, as I had expected, in one of them--when the
+two Cunninghams were on me, and would, I verily believe, have murdered
+me then and there but for your prompt and friendly aid. As it is, I feel
+that young man's grip on my throat now, and the father has twisted my
+wrist round in the effort to get the paper out of my hand. They saw that
+I must know all about it, you see, and the sudden change from absolute
+security to complete despair made them perfectly desperate.
+
+"I had a little talk with old Cunningham afterwards as to the motive of
+the crime. He was tractable enough, though his son was a perfect demon,
+ready to blow out his own or anybody else's brains if he could have got
+to his revolver. When Cunningham saw that the case against him was so
+strong he lost all heart and made a clean breast of everything. It seems
+that William had secretly followed his two masters on the night when
+they made their raid upon Mr. Acton's, and having thus got them into
+his power, proceeded, under threats of exposure, to levy blackmail upon
+them. Mr. Alec, however, was a dangerous man to play games of that
+sort with. It was a stroke of positive genius on his part to see in the
+burglary scare which was convulsing the country side an opportunity of
+plausibly getting rid of the man whom he feared. William was decoyed up
+and shot, and had they only got the whole of the note and paid a little
+more attention to detail in the accessories, it is very possible that
+suspicion might never have been aroused."
+
+"And the note?" I asked.
+
+Sherlock Holmes placed the subjoined paper before us.
+
+ If you will only come around to the east gate you it will
+ very much surprise you and be of the greatest service to you
+ and also to Annie Morrison. But say nothing to anyone upon
+ the matter.
+
+"It is very much the sort of thing that I expected," said he. "Of
+course, we do not yet know what the relations may have been between Alec
+Cunningham, William Kirwan, and Annie Morrison. The results shows that
+the trap was skillfully baited. I am sure that you cannot fail to be
+delighted with the traces of heredity shown in the p's and in the tails
+of the g's. The absence of the i-dots in the old man's writing is also
+most characteristic. Watson, I think our quiet rest in the country has
+been a distinct success, and I shall certainly return much invigorated
+to Baker Street to-morrow."
+
+
+
+
+Adventure VII. The Crooked Man
+
+
+One summer night, a few months after my marriage, I was seated by my own
+hearth smoking a last pipe and nodding over a novel, for my day's work
+had been an exhausting one. My wife had already gone upstairs, and the
+sound of the locking of the hall door some time before told me that the
+servants had also retired. I had risen from my seat and was knocking out
+the ashes of my pipe when I suddenly heard the clang of the bell.
+
+I looked at the clock. It was a quarter to twelve. This could not be
+a visitor at so late an hour. A patient, evidently, and possibly an
+all-night sitting. With a wry face I went out into the hall and opened
+the door. To my astonishment it was Sherlock Holmes who stood upon my
+step.
+
+"Ah, Watson," said he, "I hoped that I might not be too late to catch
+you."
+
+"My dear fellow, pray come in."
+
+"You look surprised, and no wonder! Relieved, too, I fancy! Hum! You
+still smoke the Arcadia mixture of your bachelor days then! There's no
+mistaking that fluffy ash upon your coat. It's easy to tell that you
+have been accustomed to wear a uniform, Watson. You'll never pass as
+a pure-bred civilian as long as you keep that habit of carrying your
+handkerchief in your sleeve. Could you put me up to-night?"
+
+"With pleasure."
+
+"You told me that you had bachelor quarters for one, and I see that you
+have no gentleman visitor at present. Your hat-stand proclaims as much."
+
+"I shall be delighted if you will stay."
+
+"Thank you. I'll fill the vacant peg then. Sorry to see that you've had
+the British workman in the house. He's a token of evil. Not the drains,
+I hope?"
+
+"No, the gas."
+
+"Ah! He has left two nail-marks from his boot upon your linoleum
+just where the light strikes it. No, thank you, I had some supper at
+Waterloo, but I'll smoke a pipe with you with pleasure."
+
+I handed him my pouch, and he seated himself opposite to me and smoked
+for some time in silence. I was well aware that nothing but business
+of importance would have brought him to me at such an hour, so I waited
+patiently until he should come round to it.
+
+"I see that you are professionally rather busy just now," said he,
+glancing very keenly across at me.
+
+"Yes, I've had a busy day," I answered. "It may seem very foolish in
+your eyes," I added, "but really I don't know how you deduced it."
+
+Holmes chuckled to himself.
+
+"I have the advantage of knowing your habits, my dear Watson," said he.
+"When your round is a short one you walk, and when it is a long one you
+use a hansom. As I perceive that your boots, although used, are by
+no means dirty, I cannot doubt that you are at present busy enough to
+justify the hansom."
+
+"Excellent!" I cried.
+
+"Elementary," said he. "It is one of those instances where the reasoner
+can produce an effect which seems remarkable to his neighbor, because
+the latter has missed the one little point which is the basis of the
+deduction. The same may be said, my dear fellow, for the effect of
+some of these little sketches of yours, which is entirely meretricious,
+depending as it does upon your retaining in your own hands some factors
+in the problem which are never imparted to the reader. Now, at present
+I am in the position of these same readers, for I hold in this hand
+several threads of one of the strangest cases which ever perplexed a
+man's brain, and yet I lack the one or two which are needful to complete
+my theory. But I'll have them, Watson, I'll have them!" His eyes kindled
+and a slight flush sprang into his thin cheeks. For an instant only.
+When I glanced again his face had resumed that red-Indian composure
+which had made so many regard him as a machine rather than a man.
+
+"The problem presents features of interest," said he. "I may even say
+exceptional features of interest. I have already looked into the matter,
+and have come, as I think, within sight of my solution. If you could
+accompany me in that last step you might be of considerable service to
+me."
+
+"I should be delighted."
+
+"Could you go as far as Aldershot to-morrow?"
+
+"I have no doubt Jackson would take my practice."
+
+"Very good. I want to start by the 11.10 from Waterloo."
+
+"That would give me time."
+
+"Then, if you are not too sleepy, I will give you a sketch of what has
+happened, and of what remains to be done."
+
+"I was sleepy before you came. I am quite wakeful now."
+
+"I will compress the story as far as may be done without omitting
+anything vital to the case. It is conceivable that you may even have
+read some account of the matter. It is the supposed murder of Colonel
+Barclay, of the Royal Munsters, at Aldershot, which I am investigating."
+
+"I have heard nothing of it."
+
+"It has not excited much attention yet, except locally. The facts are
+only two days old. Briefly they are these:
+
+"The Royal Munsters is, as you know, one of the most famous Irish
+regiments in the British army. It did wonders both in the Crimea and the
+Mutiny, and has since that time distinguished itself upon every possible
+occasion. It was commanded up to Monday night by James Barclay,
+a gallant veteran, who started as a full private, was raised to
+commissioned rank for his bravery at the time of the Mutiny, and so
+lived to command the regiment in which he had once carried a musket.
+
+"Colonel Barclay had married at the time when he was a sergeant, and
+his wife, whose maiden name was Miss Nancy Devoy, was the daughter of a
+former color-sergeant in the same corps. There was, therefore, as can
+be imagined, some little social friction when the young couple (for
+they were still young) found themselves in their new surroundings. They
+appear, however, to have quickly adapted themselves, and Mrs. Barclay
+has always, I understand, been as popular with the ladies of the
+regiment as her husband was with his brother officers. I may add that
+she was a woman of great beauty, and that even now, when she has been
+married for upwards of thirty years, she is still of a striking and
+queenly appearance.
+
+"Colonel Barclay's family life appears to have been a uniformly happy
+one. Major Murphy, to whom I owe most of my facts, assures me that he
+has never heard of any misunderstanding between the pair. On the whole,
+he thinks that Barclay's devotion to his wife was greater than his
+wife's to Barclay. He was acutely uneasy if he were absent from her for
+a day. She, on the other hand, though devoted and faithful, was less
+obtrusively affectionate. But they were regarded in the regiment as
+the very model of a middle-aged couple. There was absolutely nothing in
+their mutual relations to prepare people for the tragedy which was to
+follow.
+
+"Colonel Barclay himself seems to have had some singular traits in his
+character. He was a dashing, jovial old soldier in his usual mood,
+but there were occasions on which he seemed to show himself capable
+of considerable violence and vindictiveness. This side of his nature,
+however, appears never to have been turned towards his wife. Another
+fact, which had struck Major Murphy and three out of five of the other
+officers with whom I conversed, was the singular sort of depression
+which came upon him at times. As the major expressed it, the smile had
+often been struck from his mouth, as if by some invisible hand, when he
+has been joining the gayeties and chaff of the mess-table. For days on
+end, when the mood was on him, he has been sunk in the deepest gloom.
+This and a certain tinge of superstition were the only unusual traits
+in his character which his brother officers had observed. The latter
+peculiarity took the form of a dislike to being left alone, especially
+after dark. This puerile feature in a nature which was conspicuously
+manly had often given rise to comment and conjecture.
+
+"The first battalion of the Royal Munsters (which is the old 117th) has
+been stationed at Aldershot for some years. The married officers live
+out of barracks, and the Colonel has during all this time occupied a
+villa called Lachine, about half a mile from the north camp. The house
+stands in its own grounds, but the west side of it is not more than
+thirty yards from the high-road. A coachman and two maids form the
+staff of servants. These with their master and mistress were the sole
+occupants of Lachine, for the Barclays had no children, nor was it usual
+for them to have resident visitors.
+
+"Now for the events at Lachine between nine and ten on the evening of
+last Monday."
+
+"Mrs. Barclay was, it appears, a member of the Roman Catholic Church,
+and had interested herself very much in the establishment of the Guild
+of St. George, which was formed in connection with the Watt Street
+Chapel for the purpose of supplying the poor with cast-off clothing.
+A meeting of the Guild had been held that evening at eight, and Mrs.
+Barclay had hurried over her dinner in order to be present at it. When
+leaving the house she was heard by the coachman to make some commonplace
+remark to her husband, and to assure him that she would be back before
+very long. She then called for Miss Morrison, a young lady who lives
+in the next villa, and the two went off together to their meeting. It
+lasted forty minutes, and at a quarter-past nine Mrs. Barclay returned
+home, having left Miss Morrison at her door as she passed.
+
+"There is a room which is used as a morning-room at Lachine. This faces
+the road and opens by a large glass folding-door on to the lawn. The
+lawn is thirty yards across, and is only divided from the highway by
+a low wall with an iron rail above it. It was into this room that Mrs.
+Barclay went upon her return. The blinds were not down, for the room was
+seldom used in the evening, but Mrs. Barclay herself lit the lamp and
+then rang the bell, asking Jane Stewart, the house-maid, to bring her
+a cup of tea, which was quite contrary to her usual habits. The Colonel
+had been sitting in the dining-room, but hearing that his wife had
+returned he joined her in the morning-room. The coachman saw him cross
+the hall and enter it. He was never seen again alive.
+
+"The tea which had been ordered was brought up at the end of ten
+minutes; but the maid, as she approached the door, was surprised to
+hear the voices of her master and mistress in furious altercation. She
+knocked without receiving any answer, and even turned the handle, but
+only to find that the door was locked upon the inside. Naturally enough
+she ran down to tell the cook, and the two women with the coachman came
+up into the hall and listened to the dispute which was still raging.
+They all agreed that only two voices were to be heard, those of Barclay
+and of his wife. Barclay's remarks were subdued and abrupt, so that none
+of them were audible to the listeners. The lady's, on the other hand,
+were most bitter, and when she raised her voice could be plainly heard.
+'You coward!' she repeated over and over again. 'What can be done now?
+What can be done now? Give me back my life. I will never so much as
+breathe the same air with you again! You coward! You coward!' Those were
+scraps of her conversation, ending in a sudden dreadful cry in the man's
+voice, with a crash, and a piercing scream from the woman. Convinced
+that some tragedy had occurred, the coachman rushed to the door and
+strove to force it, while scream after scream issued from within. He was
+unable, however, to make his way in, and the maids were too distracted
+with fear to be of any assistance to him. A sudden thought struck him,
+however, and he ran through the hall door and round to the lawn upon
+which the long French windows open. One side of the window was open,
+which I understand was quite usual in the summer-time, and he passed
+without difficulty into the room. His mistress had ceased to scream and
+was stretched insensible upon a couch, while with his feet tilted over
+the side of an arm-chair, and his head upon the ground near the corner
+of the fender, was lying the unfortunate soldier stone dead in a pool of
+his own blood.
+
+"Naturally, the coachman's first thought, on finding that he could do
+nothing for his master, was to open the door. But here an unexpected and
+singular difficulty presented itself. The key was not in the inner side
+of the door, nor could he find it anywhere in the room. He went out
+again, therefore, through the window, and having obtained the help of
+a policeman and of a medical man, he returned. The lady, against whom
+naturally the strongest suspicion rested, was removed to her room, still
+in a state of insensibility. The Colonel's body was then placed upon the
+sofa, and a careful examination made of the scene of the tragedy.
+
+"The injury from which the unfortunate veteran was suffering was found
+to be a jagged cut some two inches long at the back part of his head,
+which had evidently been caused by a violent blow from a blunt weapon.
+Nor was it difficult to guess what that weapon may have been. Upon the
+floor, close to the body, was lying a singular club of hard carved wood
+with a bone handle. The Colonel possessed a varied collection of weapons
+brought from the different countries in which he had fought, and it
+is conjectured by the police that his club was among his trophies. The
+servants deny having seen it before, but among the numerous curiosities
+in the house it is possible that it may have been overlooked. Nothing
+else of importance was discovered in the room by the police, save the
+inexplicable fact that neither upon Mrs. Barclay's person nor upon that
+of the victim nor in any part of the room was the missing key to
+be found. The door had eventually to be opened by a locksmith from
+Aldershot.
+
+"That was the state of things, Watson, when upon the Tuesday morning I,
+at the request of Major Murphy, went down to Aldershot to supplement
+the efforts of the police. I think that you will acknowledge that the
+problem was already one of interest, but my observations soon made me
+realize that it was in truth much more extraordinary than would at first
+sight appear.
+
+"Before examining the room I cross-questioned the servants, but only
+succeeded in eliciting the facts which I have already stated. One other
+detail of interest was remembered by Jane Stewart, the housemaid. You
+will remember that on hearing the sound of the quarrel she descended and
+returned with the other servants. On that first occasion, when she was
+alone, she says that the voices of her master and mistress were sunk
+so low that she could hear hardly anything, and judged by their tones
+rather than their words that they had fallen out. On my pressing her,
+however, she remembered that she heard the word David uttered twice by
+the lady. The point is of the utmost importance as guiding us towards
+the reason of the sudden quarrel. The Colonel's name, you remember, was
+James.
+
+"There was one thing in the case which had made the deepest impression
+both upon the servants and the police. This was the contortion of the
+Colonel's face. It had set, according to their account, into the most
+dreadful expression of fear and horror which a human countenance is
+capable of assuming. More than one person fainted at the mere sight
+of him, so terrible was the effect. It was quite certain that he had
+foreseen his fate, and that it had caused him the utmost horror. This,
+of course, fitted in well enough with the police theory, if the Colonel
+could have seen his wife making a murderous attack upon him. Nor was
+the fact of the wound being on the back of his head a fatal objection to
+this, as he might have turned to avoid the blow. No information could
+be got from the lady herself, who was temporarily insane from an acute
+attack of brain-fever.
+
+"From the police I learned that Miss Morrison, who you remember went out
+that evening with Mrs. Barclay, denied having any knowledge of what it
+was which had caused the ill-humor in which her companion had returned.
+
+"Having gathered these facts, Watson, I smoked several pipes over them,
+trying to separate those which were crucial from others which were
+merely incidental. There could be no question that the most distinctive
+and suggestive point in the case was the singular disappearance of the
+door-key. A most careful search had failed to discover it in the room.
+Therefore it must have been taken from it. But neither the Colonel
+nor the Colonel's wife could have taken it. That was perfectly clear.
+Therefore a third person must have entered the room. And that third
+person could only have come in through the window. It seemed to me that
+a careful examination of the room and the lawn might possibly reveal
+some traces of this mysterious individual. You know my methods, Watson.
+There was not one of them which I did not apply to the inquiry. And it
+ended by my discovering traces, but very different ones from those which
+I had expected. There had been a man in the room, and he had crossed
+the lawn coming from the road. I was able to obtain five very clear
+impressions of his foot-marks: one in the roadway itself, at the point
+where he had climbed the low wall, two on the lawn, and two very faint
+ones upon the stained boards near the window where he had entered.
+He had apparently rushed across the lawn, for his toe-marks were much
+deeper than his heels. But it was not the man who surprised me. It was
+his companion."
+
+"His companion!"
+
+Holmes pulled a large sheet of tissue-paper out of his pocket and
+carefully unfolded it upon his knee.
+
+"What do you make of that?" he asked.
+
+The paper was covered with he tracings of the foot-marks of some small
+animal. It had five well-marked foot-pads, an indication of long nails,
+and the whole print might be nearly as large as a dessert-spoon.
+
+"It's a dog," said I.
+
+"Did you ever hear of a dog running up a curtain? I found distinct
+traces that this creature had done so."
+
+"A monkey, then?"
+
+"But it is not the print of a monkey."
+
+"What can it be, then?"
+
+"Neither dog nor cat nor monkey nor any creature that we are familiar
+with. I have tried to reconstruct it from the measurements. Here are
+four prints where the beast has been standing motionless. You see that
+it is no less than fifteen inches from fore-foot to hind. Add to that
+the length of neck and head, and you get a creature not much less than
+two feet long--probably more if there is any tail. But now observe this
+other measurement. The animal has been moving, and we have the length
+of its stride. In each case it is only about three inches. You have an
+indication, you see, of a long body with very short legs attached to it.
+It has not been considerate enough to leave any of its hair behind it.
+But its general shape must be what I have indicated, and it can run up a
+curtain, and it is carnivorous."
+
+"How do you deduce that?"
+
+"Because it ran up the curtain. A canary's cage was hanging in the
+window, and its aim seems to have been to get at the bird."
+
+"Then what was the beast?"
+
+"Ah, if I could give it a name it might go a long way towards solving
+the case. On the whole, it was probably some creature of the weasel and
+stoat tribe--and yet it is larger than any of these that I have seen."
+
+"But what had it to do with the crime?"
+
+"That, also, is still obscure. But we have learned a good deal, you
+perceive. We know that a man stood in the road looking at the quarrel
+between the Barclays--the blinds were up and the room lighted. We know,
+also, that he ran across the lawn, entered the room, accompanied by a
+strange animal, and that he either struck the Colonel or, as is equally
+possible, that the Colonel fell down from sheer fright at the sight of
+him, and cut his head on the corner of the fender. Finally, we have the
+curious fact that the intruder carried away the key with him when he
+left."
+
+"Your discoveries seem to have left the business more obscure that it
+was before," said I.
+
+"Quite so. They undoubtedly showed that the affair was much deeper than
+was at first conjectured. I thought the matter over, and I came to
+the conclusion that I must approach the case from another aspect. But
+really, Watson, I am keeping you up, and I might just as well tell you
+all this on our way to Aldershot to-morrow."
+
+"Thank you, you have gone rather too far to stop."
+
+"It is quite certain that when Mrs. Barclay left the house at half-past
+seven she was on good terms with her husband. She was never, as I think
+I have said, ostentatiously affectionate, but she was heard by the
+coachman chatting with the Colonel in a friendly fashion. Now, it was
+equally certain that, immediately on her return, she had gone to the
+room in which she was least likely to see her husband, had flown to tea
+as an agitated woman will, and finally, on his coming in to her, had
+broken into violent recriminations. Therefore something had occurred
+between seven-thirty and nine o'clock which had completely altered her
+feelings towards him. But Miss Morrison had been with her during the
+whole of that hour and a half. It was absolutely certain, therefore, in
+spite of her denial, that she must know something of the matter.
+
+"My first conjecture was, that possibly there had been some passages
+between this young lady and the old soldier, which the former had now
+confessed to the wife. That would account for the angry return, and
+also for the girl's denial that anything had occurred. Nor would it be
+entirely incompatible with most of the words overhead. But there was the
+reference to David, and there was the known affection of the Colonel for
+his wife, to weigh against it, to say nothing of the tragic intrusion
+of this other man, which might, of course, be entirely disconnected with
+what had gone before. It was not easy to pick one's steps, but, on the
+whole, I was inclined to dismiss the idea that there had been anything
+between the Colonel and Miss Morrison, but more than ever convinced that
+the young lady held the clue as to what it was which had turned Mrs.
+Barclay to hatred of her husband. I took the obvious course, therefore,
+of calling upon Miss M., of explaining to her that I was perfectly
+certain that she held the facts in her possession, and of assuring her
+that her friend, Mrs. Barclay, might find herself in the dock upon a
+capital charge unless the matter were cleared up.
+
+"Miss Morrison is a little ethereal slip of a girl, with timid eyes
+and blond hair, but I found her by no means wanting in shrewdness and
+common-sense. She sat thinking for some time after I had spoken, and
+then, turning to me with a brisk air of resolution, she broke into a
+remarkable statement which I will condense for your benefit.
+
+"'I promised my friend that I would say nothing of the matter, and a
+promise is a promise,' said she; 'but if I can really help her when
+so serious a charge is laid against her, and when her own mouth, poor
+darling, is closed by illness, then I think I am absolved from my
+promise. I will tell you exactly what happened upon Monday evening.
+
+"'We were returning from the Watt Street Mission about a quarter to nine
+o'clock. On our way we had to pass through Hudson Street, which is
+a very quiet thoroughfare. There is only one lamp in it, upon the
+left-hand side, and as we approached this lamp I saw a man coming
+towards us with his back very bent, and something like a box slung over
+one of his shoulders. He appeared to be deformed, for he carried his
+head low and walked with his knees bent. We were passing him when he
+raised his face to look at us in the circle of light thrown by the lamp,
+and as he did so he stopped and screamed out in a dreadful voice, "My
+God, it's Nancy!" Mrs. Barclay turned as white as death, and would have
+fallen down had the dreadful-looking creature not caught hold of her. I
+was going to call for the police, but she, to my surprise, spoke quite
+civilly to the fellow.
+
+"'"I thought you had been dead this thirty years, Henry," said she, in a
+shaking voice.
+
+"'"So I have," said he, and it was awful to hear the tones that he said
+it in. He had a very dark, fearsome face, and a gleam in his eyes that
+comes back to me in my dreams. His hair and whiskers were shot with
+gray, and his face was all crinkled and puckered like a withered apple.
+
+"'"Just walk on a little way, dear," said Mrs. Barclay; "I want to have
+a word with this man. There is nothing to be afraid of." She tried to
+speak boldly, but she was still deadly pale and could hardly get her
+words out for the trembling of her lips.
+
+"'I did as she asked me, and they talked together for a few minutes.
+Then she came down the street with her eyes blazing, and I saw the
+crippled wretch standing by the lamp-post and shaking his clenched fists
+in the air as if he were mad with rage. She never said a word until we
+were at the door here, when she took me by the hand and begged me to
+tell no one what had happened.
+
+"'"It's an old acquaintance of mine who has come down in the world,"
+said she. When I promised her I would say nothing she kissed me, and I
+have never seen her since. I have told you now the whole truth, and if
+I withheld it from the police it is because I did not realize then the
+danger in which my dear friend stood. I know that it can only be to her
+advantage that everything should be known.'
+
+"There was her statement, Watson, and to me, as you can imagine, it was
+like a light on a dark night. Everything which had been disconnected
+before began at once to assume its true place, and I had a shadowy
+presentiment of the whole sequence of events. My next step obviously was
+to find the man who had produced such a remarkable impression upon Mrs.
+Barclay. If he were still in Aldershot it should not be a very difficult
+matter. There are not such a very great number of civilians, and a
+deformed man was sure to have attracted attention. I spent a day in the
+search, and by evening--this very evening, Watson--I had run him down.
+The man's name is Henry Wood, and he lives in lodgings in this same
+street in which the ladies met him. He has only been five days in the
+place. In the character of a registration-agent I had a most interesting
+gossip with his landlady. The man is by trade a conjurer and performer,
+going round the canteens after nightfall, and giving a little
+entertainment at each. He carries some creature about with him in that
+box; about which the landlady seemed to be in considerable trepidation,
+for she had never seen an animal like it. He uses it in some of his
+tricks according to her account. So much the woman was able to tell me,
+and also that it was a wonder the man lived, seeing how twisted he was,
+and that he spoke in a strange tongue sometimes, and that for the last
+two nights she had heard him groaning and weeping in his bedroom. He
+was all right, as far as money went, but in his deposit he had given her
+what looked like a bad florin. She showed it to me, Watson, and it was
+an Indian rupee.
+
+"So now, my dear fellow, you see exactly how we stand and why it is I
+want you. It is perfectly plain that after the ladies parted from this
+man he followed them at a distance, that he saw the quarrel between
+husband and wife through the window, that he rushed in, and that
+the creature which he carried in his box got loose. That is all very
+certain. But he is the only person in this world who can tell us exactly
+what happened in that room."
+
+"And you intend to ask him?"
+
+"Most certainly--but in the presence of a witness."
+
+"And I am the witness?"
+
+"If you will be so good. If he can clear the matter up, well and good.
+If he refuses, we have no alternative but to apply for a warrant."
+
+"But how do you know he'll be there when we return?"
+
+"You may be sure that I took some precautions. I have one of my Baker
+Street boys mounting guard over him who would stick to him like a burr,
+go where he might. We shall find him in Hudson Street to-morrow, Watson,
+and meanwhile I should be the criminal myself if I kept you out of bed
+any longer."
+
+It was midday when we found ourselves at the scene of the tragedy, and,
+under my companion's guidance, we made our way at once to Hudson Street.
+In spite of his capacity for concealing his emotions, I could easily see
+that Holmes was in a state of suppressed excitement, while I was myself
+tingling with that half-sporting, half-intellectual pleasure which
+I invariably experienced when I associated myself with him in his
+investigations.
+
+"This is the street," said he, as we turned into a short thoroughfare
+lined with plain two-storied brick houses. "Ah, here is Simpson to
+report."
+
+"He's in all right, Mr. Holmes," cried a small street Arab, running up
+to us.
+
+"Good, Simpson!" said Holmes, patting him on the head. "Come along,
+Watson. This is the house." He sent in his card with a message that he
+had come on important business, and a moment later we were face to face
+with the man whom we had come to see. In spite of the warm weather he
+was crouching over a fire, and the little room was like an oven. The
+man sat all twisted and huddled in his chair in a way which gave an
+indescribably impression of deformity; but the face which he turned
+towards us, though worn and swarthy, must at some time have been
+remarkable for its beauty. He looked suspiciously at us now out of
+yellow-shot, bilious eyes, and, without speaking or rising, he waved
+towards two chairs.
+
+"Mr. Henry Wood, late of India, I believe," said Holmes, affably. "I've
+come over this little matter of Colonel Barclay's death."
+
+"What should I know about that?"
+
+"That's what I want to ascertain. You know, I suppose, that unless the
+matter is cleared up, Mrs. Barclay, who is an old friend of yours, will
+in all probability be tried for murder."
+
+The man gave a violent start.
+
+"I don't know who you are," he cried, "nor how you come to know what you
+do know, but will you swear that this is true that you tell me?"
+
+"Why, they are only waiting for her to come to her senses to arrest
+her."
+
+"My God! Are you in the police yourself?"
+
+"No."
+
+"What business is it of yours, then?"
+
+"It's every man's business to see justice done."
+
+"You can take my word that she is innocent."
+
+"Then you are guilty."
+
+"No, I am not."
+
+"Who killed Colonel James Barclay, then?"
+
+"It was a just providence that killed him. But, mind you this, that if
+I had knocked his brains out, as it was in my heart to do, he would have
+had no more than his due from my hands. If his own guilty conscience had
+not struck him down it is likely enough that I might have had his blood
+upon my soul. You want me to tell the story. Well, I don't know why I
+shouldn't, for there's no cause for me to be ashamed of it.
+
+"It was in this way, sir. You see me now with my back like a camel and
+my ribs all awry, but there was a time when Corporal Henry Wood was the
+smartest man in the 117th foot. We were in India then, in cantonments,
+at a place we'll call Bhurtee. Barclay, who died the other day, was
+sergeant in the same company as myself, and the belle of the regiment,
+ay, and the finest girl that ever had the breath of life between her
+lips, was Nancy Devoy, the daughter of the color-sergeant. There were
+two men that loved her, and one that she loved, and you'll smile when
+you look at this poor thing huddled before the fire, and hear me say
+that it was for my good looks that she loved me.
+
+"Well, though I had her heart, her father was set upon her marrying
+Barclay. I was a harum-scarum, reckless lad, and he had had an
+education, and was already marked for the sword-belt. But the girl held
+true to me, and it seemed that I would have had her when the Mutiny
+broke out, and all hell was loose in the country.
+
+"We were shut up in Bhurtee, the regiment of us with half a battery of
+artillery, a company of Sikhs, and a lot of civilians and women-folk.
+There were ten thousand rebels round us, and they were as keen as a set
+of terriers round a rat-cage. About the second week of it our water gave
+out, and it was a question whether we could communicate with General
+Neill's column, which was moving up country. It was our only chance, for
+we could not hope to fight our way out with all the women and children,
+so I volunteered to go out and to warn General Neill of our danger. My
+offer was accepted, and I talked it over with Sergeant Barclay, who was
+supposed to know the ground better than any other man, and who drew up
+a route by which I might get through the rebel lines. At ten o'clock the
+same night I started off upon my journey. There were a thousand lives to
+save, but it was of only one that I was thinking when I dropped over the
+wall that night.
+
+"My way ran down a dried-up watercourse, which we hoped would screen
+me from the enemy's sentries; but as I crept round the corner of it
+I walked right into six of them, who were crouching down in the dark
+waiting for me. In an instant I was stunned with a blow and bound hand
+and foot. But the real blow was to my heart and not to my head, for as
+I came to and listened to as much as I could understand of their talk,
+I heard enough to tell me that my comrade, the very man who had arranged
+the way that I was to take, had betrayed me by means of a native servant
+into the hands of the enemy.
+
+"Well, there's no need for me to dwell on that part of it. You know now
+what James Barclay was capable of. Bhurtee was relieved by Neill next
+day, but the rebels took me away with them in their retreat, and it was
+many a long year before ever I saw a white face again. I was tortured
+and tried to get away, and was captured and tortured again. You can see
+for yourselves the state in which I was left. Some of them that fled
+into Nepaul took me with them, and then afterwards I was up past
+Darjeeling. The hill-folk up there murdered the rebels who had me, and
+I became their slave for a time until I escaped; but instead of going
+south I had to go north, until I found myself among the Afghans. There
+I wandered about for many a year, and at last came back to the Punjab,
+where I lived mostly among the natives and picked up a living by the
+conjuring tricks that I had learned. What use was it for me, a wretched
+cripple, to go back to England or to make myself known to my old
+comrades? Even my wish for revenge would not make me do that. I had
+rather that Nancy and my old pals should think of Harry Wood as having
+died with a straight back, than see him living and crawling with a stick
+like a chimpanzee. They never doubted that I was dead, and I meant that
+they never should. I heard that Barclay had married Nancy, and that he
+was rising rapidly in the regiment, but even that did not make me speak.
+
+"But when one gets old one has a longing for home. For years I've been
+dreaming of the bright green fields and the hedges of England. At last I
+determined to see them before I died. I saved enough to bring me across,
+and then I came here where the soldiers are, for I know their ways and
+how to amuse them and so earn enough to keep me."
+
+"Your narrative is most interesting," said Sherlock Holmes. "I have
+already heard of your meeting with Mrs. Barclay, and your mutual
+recognition. You then, as I understand, followed her home and saw
+through the window an altercation between her husband and her, in which
+she doubtless cast his conduct to you in his teeth. Your own feelings
+overcame you, and you ran across the lawn and broke in upon them."
+
+"I did, sir, and at the sight of me he looked as I have never seen a man
+look before, and over he went with his head on the fender. But he was
+dead before he fell. I read death on his face as plain as I can read
+that text over the fire. The bare sight of me was like a bullet through
+his guilty heart."
+
+"And then?"
+
+"Then Nancy fainted, and I caught up the key of the door from her hand,
+intending to unlock it and get help. But as I was doing it it seemed to
+me better to leave it alone and get away, for the thing might look black
+against me, and any way my secret would be out if I were taken. In my
+haste I thrust the key into my pocket, and dropped my stick while I was
+chasing Teddy, who had run up the curtain. When I got him into his box,
+from which he had slipped, I was off as fast as I could run."
+
+"Who's Teddy?" asked Holmes.
+
+The man leaned over and pulled up the front of a kind of hutch in
+the corner. In an instant out there slipped a beautiful reddish-brown
+creature, thin and lithe, with the legs of a stoat, a long, thin nose,
+and a pair of the finest red eyes that ever I saw in an animal's head.
+
+"It's a mongoose," I cried.
+
+"Well, some call them that, and some call them ichneumon," said the
+man. "Snake-catcher is what I call them, and Teddy is amazing quick on
+cobras. I have one here without the fangs, and Teddy catches it every
+night to please the folk in the canteen.
+
+"Any other point, sir?"
+
+"Well, we may have to apply to you again if Mrs. Barclay should prove to
+be in serious trouble."
+
+"In that case, of course, I'd come forward."
+
+"But if not, there is no object in raking up this scandal against a
+dead man, foully as he has acted. You have at least the satisfaction
+of knowing that for thirty years of his life his conscience bitterly
+reproached him for this wicked deed. Ah, there goes Major Murphy on the
+other side of the street. Good-by, Wood. I want to learn if anything has
+happened since yesterday."
+
+We were in time to overtake the major before he reached the corner.
+
+"Ah, Holmes," he said: "I suppose you have heard that all this fuss has
+come to nothing?"
+
+"What then?"
+
+"The inquest is just over. The medical evidence showed conclusively
+that death was due to apoplexy. You see it was quite a simple case after
+all."
+
+"Oh, remarkably superficial," said Holmes, smiling. "Come, Watson, I
+don't think we shall be wanted in Aldershot any more."
+
+"There's one thing," said I, as we walked down to the station. "If the
+husband's name was James, and the other was Henry, what was this talk
+about David?"
+
+"That one word, my dear Watson, should have told me the whole story had
+I been the ideal reasoner which you are so fond of depicting. It was
+evidently a term of reproach."
+
+"Of reproach?"
+
+"Yes; David strayed a little occasionally, you know, and on one occasion
+in the same direction as Sergeant James Barclay. You remember the small
+affair of Uriah and Bathsheba? My biblical knowledge is a trifle rusty,
+I fear, but you will find the story in the first or second of Samuel."
+
+
+
+
+Adventure VIII. The Resident Patient
+
+
+Glancing over the somewhat incoherent series of Memoirs with which I
+have endeavored to illustrate a few of the mental peculiarities of my
+friend Mr. Sherlock Holmes, I have been struck by the difficulty which I
+have experienced in picking out examples which shall in every way answer
+my purpose. For in those cases in which Holmes has performed some tour
+de force of analytical reasoning, and has demonstrated the value of his
+peculiar methods of investigation, the facts themselves have often been
+so slight or so commonplace that I could not feel justified in laying
+them before the public. On the other hand, it has frequently happened
+that he has been concerned in some research where the facts have been of
+the most remarkable and dramatic character, but where the share which he
+has himself taken in determining their causes has been less pronounced
+than I, as his biographer, could wish. The small matter which I have
+chronicled under the heading of "A Study in Scarlet," and that other
+later one connected with the loss of the Gloria Scott, may serve as
+examples of this Scylla and Charybdis which are forever threatening the
+historian. It may be that in the business of which I am now about to
+write the part which my friend played is not sufficiently accentuated;
+and yet the whole train of circumstances is so remarkable that I cannot
+bring myself to omit it entirely from this series.
+
+It had been a close, rainy day in October. Our blinds were half-drawn,
+and Holmes lay curled upon the sofa, reading and re-reading a letter
+which he had received by the morning post. For myself, my term of
+service in India had trained me to stand heat better than cold, and
+a thermometer of 90 was no hardship. But the paper was uninteresting.
+Parliament had risen. Everybody was out of town, and I yearned for the
+glades of the New Forest or the shingle of Southsea. A depleted bank
+account had caused me to postpone my holiday, and as to my companion,
+neither the country nor the sea presented the slightest attraction to
+him. He loved to lie in the very centre of five millions of people, with
+his filaments stretching out and running through them, responsive to
+every little rumor or suspicion of unsolved crime. Appreciation of
+Nature found no place among his many gifts, and his only change was
+when he turned his mind from the evil-doer of the town to track down his
+brother of the country.
+
+Finding that Holmes was too absorbed for conversation, I had tossed
+aside the barren paper, and leaning back in my chair, I fell into a
+brown study. Suddenly my companion's voice broke in upon my thoughts.
+
+"You are right, Watson," said he. "It does seem a very preposterous way
+of settling a dispute."
+
+"Most preposterous!" I exclaimed, and then, suddenly realizing how
+he had echoed the inmost thought of my soul, I sat up in my chair and
+stared at him in blank amazement.
+
+"What is this, Holmes?" I cried. "This is beyond anything which I could
+have imagined."
+
+He laughed heartily at my perplexity.
+
+"You remember," said he, "that some little time ago, when I read you the
+passage in one of Poe's sketches, in which a close reasoner follows the
+unspoken thought of his companion, you were inclined to treat the
+matter as a mere tour de force of the author. On my remarking that I
+was constantly in the habit of doing the same thing you expressed
+incredulity."
+
+"Oh, no!"
+
+"Perhaps not with your tongue, my dear Watson, but certainly with your
+eyebrows. So when I saw you throw down your paper and enter upon a train
+of thought, I was very happy to have the opportunity of reading it
+off, and eventually of breaking into it, as a proof that I had been in
+rapport with you."
+
+But I was still far from satisfied. "In the example which you read to
+me," said I, "the reasoner drew his conclusions from the actions of the
+man whom he observed. If I remember right, he stumbled over a heap
+of stones, looked up at the stars, and so on. But I have been seated
+quietly in my chair, and what clues can I have given you?"
+
+"You do yourself an injustice. The features are given to man as the
+means by which he shall express his emotions, and yours are faithful
+servants."
+
+"Do you mean to say that you read my train of thoughts from my
+features?"
+
+"Your features, and especially your eyes. Perhaps you cannot yourself
+recall how your reverie commenced?"
+
+"No, I cannot."
+
+"Then I will tell you. After throwing down your paper, which was the
+action which drew my attention to you, you sat for half a minute with
+a vacant expression. Then your eyes fixed themselves upon your
+newly-framed picture of General Gordon, and I saw by the alteration in
+your face that a train of thought had been started. But it did not lead
+very far. Your eyes turned across to the unframed portrait of Henry Ward
+Beecher which stands upon the top of your books. You then glanced up at
+the wall, and of course your meaning was obvious. You were thinking
+that if the portrait were framed it would just cover that bare space and
+correspond with Gordon's picture over there."
+
+"You have followed me wonderfully!" I exclaimed.
+
+"So far I could hardly have gone astray. But now your thoughts went
+back to Beecher, and you looked hard across as if you were studying
+the character in his features. Then your eyes ceased to pucker, but
+you continued to look across, and your face was thoughtful. You were
+recalling the incidents of Beecher's career. I was well aware that you
+could not do this without thinking of the mission which he undertook
+on behalf of the North at the time of the Civil War, for I remember
+you expressing your passionate indignation at the way in which he was
+received by the more turbulent of our people. You felt so strongly about
+it that I knew you could not think of Beecher without thinking of that
+also. When a moment later I saw your eyes wander away from the picture,
+I suspected that your mind had now turned to the Civil War, and when
+I observed that your lips set, your eyes sparkled, and your hands
+clinched, I was positive that you were indeed thinking of the gallantry
+which was shown by both sides in that desperate struggle. But then,
+again, your face grew sadder; you shook your head. You were dwelling
+upon the sadness and horror and useless waste of life. Your hand stole
+towards your own old wound, and a smile quivered on your lips,
+which showed me that the ridiculous side of this method of settling
+international questions had forced itself upon your mind. At this point
+I agreed with you that it was preposterous, and was glad to find that
+all my deductions had been correct."
+
+"Absolutely!" said I. "And now that you have explained it, I confess
+that I am as amazed as before."
+
+"It was very superficial, my dear Watson, I assure you. I should not
+have intruded it upon your attention had you not shown some incredulity
+the other day. But the evening has brought a breeze with it. What do you
+say to a ramble through London?"
+
+I was weary of our little sitting-room and gladly acquiesced. For
+three hours we strolled about together, watching the ever-changing
+kaleidoscope of life as it ebbs and flows through Fleet Street and the
+Strand. His characteristic talk, with its keen observance of detail
+and subtle power of inference held me amused and enthralled. It was ten
+o'clock before we reached Baker Street again. A brougham was waiting at
+our door.
+
+"Hum! A doctor's--general practitioner, I perceive," said Holmes. "Not
+been long in practice, but has had a good deal to do. Come to consult
+us, I fancy! Lucky we came back!"
+
+I was sufficiently conversant with Holmes's methods to be able to follow
+his reasoning, and to see that the nature and state of the various
+medical instruments in the wicker basket which hung in the lamplight
+inside the brougham had given him the data for his swift deduction.
+The light in our window above showed that this late visit was indeed
+intended for us. With some curiosity as to what could have sent a
+brother medico to us at such an hour, I followed Holmes into our
+sanctum.
+
+A pale, taper-faced man with sandy whiskers rose up from a chair by the
+fire as we entered. His age may not have been more than three or four
+and thirty, but his haggard expression and unhealthy hue told of a life
+which has sapped his strength and robbed him of his youth. His manner
+was nervous and shy, like that of a sensitive gentleman, and the thin
+white hand which he laid on the mantelpiece as he rose was that of an
+artist rather than of a surgeon. His dress was quiet and sombre--a black
+frock-coat, dark trousers, and a touch of color about his necktie.
+
+"Good-evening, doctor," said Holmes, cheerily. "I am glad to see that
+you have only been waiting a very few minutes."
+
+"You spoke to my coachman, then?"
+
+"No, it was the candle on the side-table that told me. Pray resume your
+seat and let me know how I can serve you."
+
+"My name is Doctor Percy Trevelyan," said our visitor, "and I live at
+403 Brook Street."
+
+"Are you not the author of a monograph upon obscure nervous lesions?" I
+asked.
+
+His pale cheeks flushed with pleasure at hearing that his work was known
+to me.
+
+"I so seldom hear of the work that I thought it was quite dead," said
+he. "My publishers gave me a most discouraging account of its sale. You
+are yourself, I presume, a medical man?"
+
+"A retired army surgeon."
+
+"My own hobby has always been nervous disease. I should wish to make it
+an absolute specialty, but, of course, a man must take what he can get
+at first. This, however, is beside the question, Mr. Sherlock Holmes,
+and I quite appreciate how valuable your time is. The fact is that a
+very singular train of events has occurred recently at my house in Brook
+Street, and to-night they came to such a head that I felt it was quite
+impossible for me to wait another hour before asking for your advice and
+assistance."
+
+Sherlock Holmes sat down and lit his pipe. "You are very welcome
+to both," said he. "Pray let me have a detailed account of what the
+circumstances are which have disturbed you."
+
+"One or two of them are so trivial," said Dr. Trevelyan, "that really
+I am almost ashamed to mention them. But the matter is so inexplicable,
+and the recent turn which it has taken is so elaborate, that I shall
+lay it all before you, and you shall judge what is essential and what is
+not.
+
+"I am compelled, to begin with, to say something of my own college
+career. I am a London University man, you know, and I am sure that your
+will not think that I am unduly singing my own praises if I say that my
+student career was considered by my professors to be a very promising
+one. After I had graduated I continued to devote myself to research,
+occupying a minor position in King's College Hospital, and I was
+fortunate enough to excite considerable interest by my research into the
+pathology of catalepsy, and finally to win the Bruce Pinkerton prize and
+medal by the monograph on nervous lesions to which your friend has
+just alluded. I should not go too far if I were to say that there was a
+general impression at that time that a distinguished career lay before
+me.
+
+"But the one great stumbling-block lay in my want of capital. As you
+will readily understand, a specialist who aims high is compelled to
+start in one of a dozen streets in the Cavendish Square quarter, all
+of which entail enormous rents and furnishing expenses. Besides this
+preliminary outlay, he must be prepared to keep himself for some years,
+and to hire a presentable carriage and horse. To do this was quite
+beyond my power, and I could only hope that by economy I might in ten
+years' time save enough to enable me to put up my plate. Suddenly,
+however, an unexpected incident opened up quite a new prospect to me.
+
+"This was a visit from a gentleman of the name of Blessington, who was a
+complete stranger to me. He came up to my room one morning, and plunged
+into business in an instant.
+
+"'You are the same Percy Trevelyan who has had so distinguished a career
+and won a great prize lately?' said he.
+
+"I bowed.
+
+"'Answer me frankly,' he continued, 'for you will find it to your
+interest to do so. You have all the cleverness which makes a successful
+man. Have you the tact?'
+
+"I could not help smiling at the abruptness of the question.
+
+"'I trust that I have my share,' I said.
+
+"'Any bad habits? Not drawn towards drink, eh?'
+
+"'Really, sir!' I cried.
+
+"'Quite right! That's all right! But I was bound to ask. With all these
+qualities, why are you not in practice?'
+
+"I shrugged my shoulders.
+
+"'Come, come!' said he, in his bustling way. 'It's the old story. More
+in your brains than in your pocket, eh? What would you say if I were to
+start you in Brook Street?'
+
+"I stared at him in astonishment.
+
+"'Oh, it's for my sake, not for yours,' he cried. 'I'll be perfectly
+frank with you, and if it suits you it will suit me very well. I have a
+few thousands to invest, d'ye see, and I think I'll sink them in you.'
+
+"'But why?' I gasped.
+
+"'Well, it's just like any other speculation, and safer than most.'
+
+"'What am I to do, then?'
+
+"'I'll tell you. I'll take the house, furnish it, pay the maids, and run
+the whole place. All you have to do is just to wear out your chair in
+the consulting-room. I'll let you have pocket-money and everything. Then
+you hand over to me three quarters of what you earn, and you keep the
+other quarter for yourself.'
+
+"This was the strange proposal, Mr. Holmes, with which the man
+Blessington approached me. I won't weary you with the account of how
+we bargained and negotiated. It ended in my moving into the house next
+Lady-day, and starting in practice on very much the same conditions as
+he had suggested. He came himself to live with me in the character of a
+resident patient. His heart was weak, it appears, and he needed constant
+medical supervision. He turned the two best rooms of the first floor
+into a sitting-room and bedroom for himself. He was a man of singular
+habits, shunning company and very seldom going out. His life was
+irregular, but in one respect he was regularity itself. Every evening,
+at the same hour, he walked into the consulting-room, examined the
+books, put down five and three-pence for every guinea that I had earned,
+and carried the rest off to the strong-box in his own room.
+
+"I may say with confidence that he never had occasion to regret his
+speculation. From the first it was a success. A few good cases and the
+reputation which I had won in the hospital brought me rapidly to the
+front, and during the last few years I have made him a rich man.
+
+"So much, Mr. Holmes, for my past history and my relations with Mr.
+Blessington. It only remains for me now to tell you what has occurred to
+bring me here to-night.
+
+"Some weeks ago Mr. Blessington came down to me in, as it seemed to me,
+a state of considerable agitation. He spoke of some burglary which, he
+said, had been committed in the West End, and he appeared, I remember,
+to be quite unnecessarily excited about it, declaring that a day should
+not pass before we should add stronger bolts to our windows and doors.
+For a week he continued to be in a peculiar state of restlessness,
+peering continually out of the windows, and ceasing to take the short
+walk which had usually been the prelude to his dinner. From his manner
+it struck me that he was in mortal dread of something or somebody, but
+when I questioned him upon the point he became so offensive that I was
+compelled to drop the subject. Gradually, as time passed, his fears
+appeared to die away, and he had renewed his former habits, when a fresh
+event reduced him to the pitiable state of prostration in which he now
+lies.
+
+"What happened was this. Two days ago I received the letter which I now
+read to you. Neither address nor date is attached to it.
+
+"'A Russian nobleman who is now resident in England,' it runs, 'would
+be glad to avail himself of the professional assistance of Dr. Percy
+Trevelyan. He has been for some years a victim to cataleptic attacks, on
+which, as is well known, Dr. Trevelyan is an authority. He proposes to
+call at about quarter past six to-morrow evening, if Dr. Trevelyan will
+make it convenient to be at home.'
+
+"This letter interested me deeply, because the chief difficulty in the
+study of catalepsy is the rareness of the disease. You may believe,
+then, that I was in my consulting-room when, at the appointed hour, the
+page showed in the patient.
+
+"He was an elderly man, thin, demure, and commonplace--by no means the
+conception one forms of a Russian nobleman. I was much more struck by
+the appearance of his companion. This was a tall young man, surprisingly
+handsome, with a dark, fierce face, and the limbs and chest of a
+Hercules. He had his hand under the other's arm as they entered, and
+helped him to a chair with a tenderness which one would hardly have
+expected from his appearance.
+
+"'You will excuse my coming in, doctor,' said he to me, speaking English
+with a slight lisp. 'This is my father, and his health is a matter of
+the most overwhelming importance to me.'
+
+"I was touched by this filial anxiety. 'You would, perhaps, care to
+remain during the consultation?' said I.
+
+"'Not for the world,' he cried with a gesture of horror. 'It is more
+painful to me than I can express. If I were to see my father in one of
+these dreadful seizures I am convinced that I should never survive
+it. My own nervous system is an exceptionally sensitive one. With your
+permission, I will remain in the waiting-room while you go into my
+father's case.'
+
+"To this, of course, I assented, and the young man withdrew. The patient
+and I then plunged into a discussion of his case, of which I took
+exhaustive notes. He was not remarkable for intelligence, and his
+answers were frequently obscure, which I attributed to his limited
+acquaintance with our language. Suddenly, however, as I sat writing,
+he ceased to give any answer at all to my inquiries, and on my turning
+towards him I was shocked to see that he was sitting bolt upright in his
+chair, staring at me with a perfectly blank and rigid face. He was again
+in the grip of his mysterious malady.
+
+"My first feeling, as I have just said, was one of pity and horror.
+My second, I fear, was rather one of professional satisfaction. I made
+notes of my patient's pulse and temperature, tested the rigidity of his
+muscles, and examined his reflexes. There was nothing markedly abnormal
+in any of these conditions, which harmonized with my former experiences.
+I had obtained good results in such cases by the inhalation of nitrite
+of amyl, and the present seemed an admirable opportunity of testing
+its virtues. The bottle was downstairs in my laboratory, so leaving my
+patient seated in his chair, I ran down to get it. There was some little
+delay in finding it--five minutes, let us say--and then I returned.
+Imagine my amazement to find the room empty and the patient gone.
+
+"Of course, my first act was to run into the waiting-room. The son had
+gone also. The hall door had been closed, but not shut. My page who
+admits patients is a new boy and by no means quick. He waits downstairs,
+and runs up to show patients out when I ring the consulting-room bell.
+He had heard nothing, and the affair remained a complete mystery. Mr.
+Blessington came in from his walk shortly afterwards, but I did not say
+anything to him upon the subject, for, to tell the truth, I have got in
+the way of late of holding as little communication with him as possible.
+
+"Well, I never thought that I should see anything more of the Russian
+and his son, so you can imagine my amazement when, at the very same hour
+this evening, they both came marching into my consulting-room, just as
+they had done before.
+
+"'I feel that I owe you a great many apologies for my abrupt departure
+yesterday, doctor,' said my patient.
+
+"'I confess that I was very much surprised at it,' said I.
+
+"'Well, the fact is,' he remarked, 'that when I recover from these
+attacks my mind is always very clouded as to all that has gone before. I
+woke up in a strange room, as it seemed to me, and made my way out into
+the street in a sort of dazed way when you were absent.'
+
+"'And I,' said the son, 'seeing my father pass the door of the
+waiting-room, naturally thought that the consultation had come to an
+end. It was not until we had reached home that I began to realize the
+true state of affairs.'
+
+"'Well,' said I, laughing, 'there is no harm done except that you
+puzzled me terribly; so if you, sir, would kindly step into the
+waiting-room I shall be happy to continue our consultation which was
+brought to so abrupt an ending.'
+
+"'For half an hour or so I discussed that old gentleman's symptoms with
+him, and then, having prescribed for him, I saw him go off upon the arm
+of his son.
+
+"I have told you that Mr. Blessington generally chose this hour of the
+day for his exercise. He came in shortly afterwards and passed upstairs.
+An instant later I heard him running down, and he burst into my
+consulting-room like a man who is mad with panic.
+
+"'Who has been in my room?' he cried.
+
+"'No one,' said I.
+
+"'It's a lie! He yelled. 'Come up and look!'
+
+"I passed over the grossness of his language, as he seemed half out of
+his mind with fear. When I went upstairs with him he pointed to several
+footprints upon the light carpet.
+
+"'D'you mean to say those are mine?' he cried.
+
+"They were certainly very much larger than any which he could have made,
+and were evidently quite fresh. It rained hard this afternoon, as you
+know, and my patients were the only people who called. It must have been
+the case, then, that the man in the waiting-room had, for some unknown
+reason, while I was busy with the other, ascended to the room of my
+resident patient. Nothing had been touched or taken, but there were the
+footprints to prove that the intrusion was an undoubted fact.
+
+"Mr. Blessington seemed more excited over the matter than I should have
+thought possible, though of course it was enough to disturb anybody's
+peace of mind. He actually sat crying in an arm-chair, and I could
+hardly get him to speak coherently. It was his suggestion that I should
+come round to you, and of course I at once saw the propriety of it,
+for certainly the incident is a very singular one, though he appears to
+completely overrate its importance. If you would only come back with me
+in my brougham, you would at least be able to soothe him, though I
+can hardly hope that you will be able to explain this remarkable
+occurrence."
+
+Sherlock Holmes had listened to this long narrative with an intentness
+which showed me that his interest was keenly aroused. His face was as
+impassive as ever, but his lids had drooped more heavily over his eyes,
+and his smoke had curled up more thickly from his pipe to emphasize each
+curious episode in the doctor's tale. As our visitor concluded, Holmes
+sprang up without a word, handed me my hat, picked his own from the
+table, and followed Dr. Trevelyan to the door. Within a quarter of an
+hour we had been dropped at the door of the physician's residence
+in Brook Street, one of those sombre, flat-faced houses which one
+associates with a West-End practice. A small page admitted us, and we
+began at once to ascend the broad, well-carpeted stair.
+
+But a singular interruption brought us to a standstill. The light at
+the top was suddenly whisked out, and from the darkness came a reedy,
+quivering voice.
+
+"I have a pistol," it cried. "I give you my word that I'll fire if you
+come any nearer."
+
+"This really grows outrageous, Mr. Blessington," cried Dr. Trevelyan.
+
+"Oh, then it is you, doctor," said the voice, with a great heave of
+relief. "But those other gentlemen, are they what they pretend to be?"
+
+We were conscious of a long scrutiny out of the darkness.
+
+"Yes, yes, it's all right," said the voice at last. "You can come up,
+and I am sorry if my precautions have annoyed you."
+
+He relit the stair gas as he spoke, and we saw before us a
+singular-looking man, whose appearance, as well as his voice, testified
+to his jangled nerves. He was very fat, but had apparently at some time
+been much fatter, so that the skin hung about his face in loose pouches,
+like the cheeks of a blood-hound. He was of a sickly color, and his
+thin, sandy hair seemed to bristle up with the intensity of his emotion.
+In his hand he held a pistol, but he thrust it into his pocket as we
+advanced.
+
+"Good-evening, Mr. Holmes," said he. "I am sure I am very much obliged
+to you for coming round. No one ever needed your advice more than I do.
+I suppose that Dr. Trevelyan has told you of this most unwarrantable
+intrusion into my rooms."
+
+"Quite so," said Holmes. "Who are these two men Mr. Blessington, and why
+do they wish to molest you?"
+
+"Well, well," said the resident patient, in a nervous fashion, "of
+course it is hard to say that. You can hardly expect me to answer that,
+Mr. Holmes."
+
+"Do you mean that you don't know?"
+
+"Come in here, if you please. Just have the kindness to step in here."
+
+He led the way into his bedroom, which was large and comfortably
+furnished.
+
+"You see that," said he, pointing to a big black box at the end of his
+bed. "I have never been a very rich man, Mr. Holmes--never made but
+one investment in my life, as Dr. Trevelyan would tell you. But I don't
+believe in bankers. I would never trust a banker, Mr. Holmes. Between
+ourselves, what little I have is in that box, so you can understand what
+it means to me when unknown people force themselves into my rooms."
+
+Holmes looked at Blessington in his questioning way and shook his head.
+
+"I cannot possibly advise you if you try to deceive me," said he.
+
+"But I have told you everything."
+
+Holmes turned on his heel with a gesture of disgust. "Good-night, Dr.
+Trevelyan," said he.
+
+"And no advice for me?" cried Blessington, in a breaking voice.
+
+"My advice to you, sir, is to speak the truth."
+
+A minute later we were in the street and walking for home. We had
+crossed Oxford Street and were half way down Harley Street before I
+could get a word from my companion.
+
+"Sorry to bring you out on such a fool's errand, Watson," he said at
+last. "It is an interesting case, too, at the bottom of it."
+
+"I can make little of it," I confessed.
+
+"Well, it is quite evident that there are two men--more, perhaps, but
+at least two--who are determined for some reason to get at this fellow
+Blessington. I have no doubt in my mind that both on the first and on
+the second occasion that young man penetrated to Blessington's room,
+while his confederate, by an ingenious device, kept the doctor from
+interfering."
+
+"And the catalepsy?"
+
+"A fraudulent imitation, Watson, though I should hardly dare to hint as
+much to our specialist. It is a very easy complaint to imitate. I have
+done it myself."
+
+"And then?"
+
+"By the purest chance Blessington was out on each occasion. Their reason
+for choosing so unusual an hour for a consultation was obviously to
+insure that there should be no other patient in the waiting-room. It
+just happened, however, that this hour coincided with Blessington's
+constitutional, which seems to show that they were not very well
+acquainted with his daily routine. Of course, if they had been merely
+after plunder they would at least have made some attempt to search for
+it. Besides, I can read in a man's eye when it is his own skin that he
+is frightened for. It is inconceivable that this fellow could have made
+two such vindictive enemies as these appear to be without knowing of it.
+I hold it, therefore, to be certain that he does know who these men are,
+and that for reasons of his own he suppresses it. It is just possible
+that to-morrow may find him in a more communicative mood."
+
+"Is there not one alternative," I suggested, "grotesquely improbably,
+no doubt, but still just conceivable? Might the whole story of the
+cataleptic Russian and his son be a concoction of Dr. Trevelyan's, who
+has, for his own purposes, been in Blessington's rooms?"
+
+I saw in the gaslight that Holmes wore an amused smile at this brilliant
+departure of mine.
+
+"My dear fellow," said he, "it was one of the first solutions which
+occurred to me, but I was soon able to corroborate the doctor's tale.
+This young man has left prints upon the stair-carpet which made it quite
+superfluous for me to ask to see those which he had made in the room.
+When I tell you that his shoes were square-toed instead of being pointed
+like Blessington's, and were quite an inch and a third longer than the
+doctor's, you will acknowledge that there can be no doubt as to his
+individuality. But we may sleep on it now, for I shall be surprised if
+we do not hear something further from Brook Street in the morning."
+
+
+Sherlock Holmes's prophecy was soon fulfilled, and in a dramatic
+fashion. At half-past seven next morning, in the first glimmer of
+daylight, I found him standing by my bedside in his dressing-gown.
+
+"There's a brougham waiting for us, Watson," said he.
+
+"What's the matter, then?"
+
+"The Brook Street business."
+
+"Any fresh news?"
+
+"Tragic, but ambiguous," said he, pulling up the blind. "Look at this--a
+sheet from a note-book, with 'For God's sake come at once--P. T.,'
+scrawled upon it in pencil. Our friend, the doctor, was hard put to
+it when he wrote this. Come along, my dear fellow, for it's an urgent
+call."
+
+In a quarter of an hour or so we were back at the physician's house. He
+came running out to meet us with a face of horror.
+
+"Oh, such a business!" he cried, with his hands to his temples.
+
+"What then?"
+
+"Blessington has committed suicide!"
+
+Holmes whistled.
+
+"Yes, he hanged himself during the night."
+
+We had entered, and the doctor had preceded us into what was evidently
+his waiting-room.
+
+"I really hardly know what I am doing," he cried. "The police are
+already upstairs. It has shaken me most dreadfully."
+
+"When did you find it out?"
+
+"He has a cup of tea taken in to him early every morning. When the maid
+entered, about seven, there the unfortunate fellow was hanging in the
+middle of the room. He had tied his cord to the hook on which the heavy
+lamp used to hang, and he had jumped off from the top of the very box
+that he showed us yesterday."
+
+Holmes stood for a moment in deep thought.
+
+"With your permission," said he at last, "I should like to go upstairs
+and look into the matter."
+
+We both ascended, followed by the doctor.
+
+It was a dreadful sight which met us as we entered the bedroom door. I
+have spoken of the impression of flabbiness which this man Blessington
+conveyed. As he dangled from the hook it was exaggerated and intensified
+until he was scarce human in his appearance. The neck was drawn out
+like a plucked chicken's, making the rest of him seem the more obese and
+unnatural by the contrast. He was clad only in his long night-dress, and
+his swollen ankles and ungainly feet protruded starkly from beneath it.
+Beside him stood a smart-looking police-inspector, who was taking notes
+in a pocket-book.
+
+"Ah, Mr. Holmes," said he, heartily, as my friend entered, "I am
+delighted to see you."
+
+"Good-morning, Lanner," answered Holmes; "you won't think me an
+intruder, I am sure. Have you heard of the events which led up to this
+affair?"
+
+"Yes, I heard something of them."
+
+"Have you formed any opinion?"
+
+"As far as I can see, the man has been driven out of his senses by
+fright. The bed has been well slept in, you see. There's his impression
+deep enough. It's about five in the morning, you know, that suicides are
+most common. That would be about his time for hanging himself. It seems
+to have been a very deliberate affair."
+
+"I should say that he has been dead about three hours, judging by the
+rigidity of the muscles," said I.
+
+"Noticed anything peculiar about the room?" asked Holmes.
+
+"Found a screw-driver and some screws on the wash-hand stand. Seems to
+have smoked heavily during the night, too. Here are four cigar-ends that
+I picked out of the fireplace."
+
+"Hum!" said Holmes, "have you got his cigar-holder?"
+
+"No, I have seen none."
+
+"His cigar-case, then?"
+
+"Yes, it was in his coat-pocket."
+
+Holmes opened it and smelled the single cigar which it contained.
+
+"Oh, this is an Havana, and these others are cigars of the peculiar sort
+which are imported by the Dutch from their East Indian colonies. They
+are usually wrapped in straw, you know, and are thinner for their length
+than any other brand." He picked up the four ends and examined them with
+his pocket-lens.
+
+"Two of these have been smoked from a holder and two without," said he.
+"Two have been cut by a not very sharp knife, and two have had the ends
+bitten off by a set of excellent teeth. This is no suicide, Mr. Lanner.
+It is a very deeply planned and cold-blooded murder."
+
+"Impossible!" cried the inspector.
+
+"And why?"
+
+"Why should any one murder a man in so clumsy a fashion as by hanging
+him?"
+
+"That is what we have to find out."
+
+"How could they get in?"
+
+"Through the front door."
+
+"It was barred in the morning."
+
+"Then it was barred after them."
+
+"How do you know?"
+
+"I saw their traces. Excuse me a moment, and I may be able to give you
+some further information about it."
+
+He went over to the door, and turning the lock he examined it in his
+methodical way. Then he took out the key, which was on the inside, and
+inspected that also. The bed, the carpet, the chairs the mantelpiece,
+the dead body, and the rope were each in turn examined, until at last he
+professed himself satisfied, and with my aid and that of the inspector
+cut down the wretched object and laid it reverently under a sheet.
+
+"How about this rope?" he asked.
+
+"It is cut off this," said Dr. Trevelyan, drawing a large coil from
+under the bed. "He was morbidly nervous of fire, and always kept this
+beside him, so that he might escape by the window in case the stairs
+were burning."
+
+"That must have saved them trouble," said Holmes, thoughtfully. "Yes,
+the actual facts are very plain, and I shall be surprised if by the
+afternoon I cannot give you the reasons for them as well. I will take
+this photograph of Blessington, which I see upon the mantelpiece, as it
+may help me in my inquiries."
+
+"But you have told us nothing!" cried the doctor.
+
+"Oh, there can be no doubt as to the sequence of events," said Holmes.
+"There were three of them in it: the young man, the old man, and a
+third, to whose identity I have no clue. The first two, I need hardly
+remark, are the same who masqueraded as the Russian count and his son,
+so we can give a very full description of them. They were admitted by
+a confederate inside the house. If I might offer you a word of advice,
+Inspector, it would be to arrest the page, who, as I understand, has
+only recently come into your service, Doctor."
+
+"The young imp cannot be found," said Dr. Trevelyan; "the maid and the
+cook have just been searching for him."
+
+Holmes shrugged his shoulders.
+
+"He has played a not unimportant part in this drama," said he. "The
+three men having ascended the stairs, which they did on tiptoe, the
+elder man first, the younger man second, and the unknown man in the
+rear--"
+
+"My dear Holmes!" I ejaculated.
+
+"Oh, there could be no question as to the superimposing of the
+footmarks. I had the advantage of learning which was which last night.
+They ascended, then, to Mr. Blessington's room, the door of which they
+found to be locked. With the help of a wire, however, they forced round
+the key. Even without the lens you will perceive, by the scratches on
+this ward, where the pressure was applied.
+
+"On entering the room their first proceeding must have been to gag Mr.
+Blessington. He may have been asleep, or he may have been so paralyzed
+with terror as to have been unable to cry out. These walls are thick,
+and it is conceivable that his shriek, if he had time to utter one, was
+unheard.
+
+"Having secured him, it is evident to me that a consultation of some
+sort was held. Probably it was something in the nature of a judicial
+proceeding. It must have lasted for some time, for it was then that
+these cigars were smoked. The older man sat in that wicker chair; it
+was he who used the cigar-holder. The younger man sat over yonder; he
+knocked his ash off against the chest of drawers. The third fellow paced
+up and down. Blessington, I think, sat upright in the bed, but of that I
+cannot be absolutely certain.
+
+"Well, it ended by their taking Blessington and hanging him. The matter
+was so prearranged that it is my belief that they brought with them
+some sort of block or pulley which might serve as a gallows. That
+screw-driver and those screws were, as I conceive, for fixing it up.
+Seeing the hook, however they naturally saved themselves the trouble.
+Having finished their work they made off, and the door was barred behind
+them by their confederate."
+
+We had all listened with the deepest interest to this sketch of the
+night's doings, which Holmes had deduced from signs so subtle and minute
+that, even when he had pointed them out to us, we could scarcely follow
+him in his reasoning. The inspector hurried away on the instant to make
+inquiries about the page, while Holmes and I returned to Baker Street
+for breakfast.
+
+"I'll be back by three," said he, when we had finished our meal. "Both
+the inspector and the doctor will meet me here at that hour, and I hope
+by that time to have cleared up any little obscurity which the case may
+still present."
+
+
+Our visitors arrived at the appointed time, but it was a quarter to
+four before my friend put in an appearance. From his expression as he
+entered, however, I could see that all had gone well with him.
+
+"Any news, Inspector?"
+
+"We have got the boy, sir."
+
+"Excellent, and I have got the men."
+
+"You have got them!" we cried, all three.
+
+"Well, at least I have got their identity. This so-called Blessington
+is, as I expected, well known at headquarters, and so are his
+assailants. Their names are Biddle, Hayward, and Moffat."
+
+"The Worthingdon bank gang," cried the inspector.
+
+"Precisely," said Holmes.
+
+"Then Blessington must have been Sutton."
+
+"Exactly," said Holmes.
+
+"Why, that makes it as clear as crystal," said the inspector.
+
+But Trevelyan and I looked at each other in bewilderment.
+
+"You must surely remember the great Worthingdon bank business," said
+Holmes. "Five men were in it--these four and a fifth called Cartwright.
+Tobin, the care-taker, was murdered, and the thieves got away with seven
+thousand pounds. This was in 1875. They were all five arrested, but the
+evidence against them was by no means conclusive. This Blessington or
+Sutton, who was the worst of the gang, turned informer. On his evidence
+Cartwright was hanged and the other three got fifteen years apiece. When
+they got out the other day, which was some years before their full term,
+they set themselves, as you perceive, to hunt down the traitor and to
+avenge the death of their comrade upon him. Twice they tried to get at
+him and failed; a third time, you see, it came off. Is there anything
+further which I can explain, Dr. Trevelyan?"
+
+"I think you have made it all remarkable clear," said the doctor. "No
+doubt the day on which he was perturbed was the day when he had seen of
+their release in the newspapers."
+
+"Quite so. His talk about a burglary was the merest blind."
+
+"But why could he not tell you this?"
+
+"Well, my dear sir, knowing the vindictive character of his old
+associates, he was trying to hide his own identity from everybody as
+long as he could. His secret was a shameful one, and he could not bring
+himself to divulge it. However, wretch as he was, he was still living
+under the shield of British law, and I have no doubt, Inspector, that
+you will see that, though that shield may fail to guard, the sword of
+justice is still there to avenge."
+
+
+Such were the singular circumstances in connection with the Resident
+Patient and the Brook Street Doctor. From that night nothing has
+been seen of the three murderers by the police, and it is surmised
+at Scotland Yard that they were among the passengers of the ill-fated
+steamer Norah Creina, which was lost some years ago with all hands
+upon the Portuguese coast, some leagues to the north of Oporto. The
+proceedings against the page broke down for want of evidence, and the
+Brook Street Mystery, as it was called, has never until now been fully
+dealt with in any public print.
+
+
+
+
+Adventure IX. The Greek Interpreter
+
+
+During my long and intimate acquaintance with Mr. Sherlock Holmes I had
+never heard him refer to his relations, and hardly ever to his own early
+life. This reticence upon his part had increased the somewhat inhuman
+effect which he produced upon me, until sometimes I found myself
+regarding him as an isolated phenomenon, a brain without a heart, as
+deficient in human sympathy as he was pre-eminent in intelligence. His
+aversion to women and his disinclination to form new friendships were
+both typical of his unemotional character, but not more so than his
+complete suppression of every reference to his own people. I had come to
+believe that he was an orphan with no relatives living, but one day, to
+my very great surprise, he began to talk to me about his brother.
+
+It was after tea on a summer evening, and the conversation, which had
+roamed in a desultory, spasmodic fashion from golf clubs to the causes
+of the change in the obliquity of the ecliptic, came round at last
+to the question of atavism and hereditary aptitudes. The point under
+discussion was, how far any singular gift in an individual was due to
+his ancestry and how far to his own early training.
+
+"In your own case," said I, "from all that you have told me, it seems
+obvious that your faculty of observation and your peculiar facility for
+deduction are due to your own systematic training."
+
+"To some extent," he answered, thoughtfully. "My ancestors were country
+squires, who appear to have led much the same life as is natural to
+their class. But, none the less, my turn that way is in my veins, and
+may have come with my grandmother, who was the sister of Vernet, the
+French artist. Art in the blood is liable to take the strangest forms."
+
+"But how do you know that it is hereditary?"
+
+"Because my brother Mycroft possesses it in a larger degree than I do."
+
+This was news to me indeed. If there were another man with such singular
+powers in England, how was it that neither police nor public had heard
+of him? I put the question, with a hint that it was my companion's
+modesty which made him acknowledge his brother as his superior. Holmes
+laughed at my suggestion.
+
+"My dear Watson," said he, "I cannot agree with those who rank modesty
+among the virtues. To the logician all things should be seen exactly as
+they are, and to underestimate one's self is as much a departure from
+truth as to exaggerate one's own powers. When I say, therefore, that
+Mycroft has better powers of observation than I, you may take it that I
+am speaking the exact and literal truth."
+
+"Is he your junior?"
+
+"Seven years my senior."
+
+"How comes it that he is unknown?"
+
+"Oh, he is very well known in his own circle."
+
+"Where, then?"
+
+"Well, in the Diogenes Club, for example."
+
+I had never heard of the institution, and my face must have proclaimed
+as much, for Sherlock Holmes pulled out his watch.
+
+"The Diogenes Club is the queerest club in London, and Mycroft one of
+the queerest men. He's always there from quarter to five to twenty to
+eight. It's six now, so if you care for a stroll this beautiful evening
+I shall be very happy to introduce you to two curiosities."
+
+Five minutes later we were in the street, walking towards Regent's
+Circus.
+
+"You wonder," said my companion, "why it is that Mycroft does not use
+his powers for detective work. He is incapable of it."
+
+"But I thought you said--"
+
+"I said that he was my superior in observation and deduction. If the
+art of the detective began and ended in reasoning from an arm-chair, my
+brother would be the greatest criminal agent that ever lived. But he has
+no ambition and no energy. He will not even go out of his way to verify
+his own solutions, and would rather be considered wrong than take the
+trouble to prove himself right. Again and again I have taken a problem
+to him, and have received an explanation which has afterwards proved to
+be the correct one. And yet he was absolutely incapable of working out
+the practical points which must be gone into before a case could be laid
+before a judge or jury."
+
+"It is not his profession, then?"
+
+"By no means. What is to me a means of livelihood is to him the merest
+hobby of a dilettante. He has an extraordinary faculty for figures, and
+audits the books in some of the government departments. Mycroft lodges
+in Pall Mall, and he walks round the corner into Whitehall every morning
+and back every evening. From year's end to year's end he takes no other
+exercise, and is seen nowhere else, except only in the Diogenes Club,
+which is just opposite his rooms."
+
+"I cannot recall the name."
+
+"Very likely not. There are many men in London, you know, who, some from
+shyness, some from misanthropy, have no wish for the company of their
+fellows. Yet they are not averse to comfortable chairs and the latest
+periodicals. It is for the convenience of these that the Diogenes Club
+was started, and it now contains the most unsociable and unclubable men
+in town. No member is permitted to take the least notice of any
+other one. Save in the Stranger's Room, no talking is, under any
+circumstances, allowed, and three offences, if brought to the notice of
+the committee, render the talker liable to expulsion. My brother was one
+of the founders, and I have myself found it a very soothing atmosphere."
+
+We had reached Pall Mall as we talked, and were walking down it from the
+St. James's end. Sherlock Holmes stopped at a door some little distance
+from the Carlton, and, cautioning me not to speak, he led the way into
+the hall. Through the glass paneling I caught a glimpse of a large and
+luxurious room, in which a considerable number of men were sitting about
+and reading papers, each in his own little nook. Holmes showed me into a
+small chamber which looked out into Pall Mall, and then, leaving me for
+a minute, he came back with a companion whom I knew could only be his
+brother.
+
+Mycroft Holmes was a much larger and stouter man than Sherlock. His body
+was absolutely corpulent, but his face, though massive, had preserved
+something of the sharpness of expression which was so remarkable in that
+of his brother. His eyes, which were of a peculiarly light, watery gray,
+seemed to always retain that far-away, introspective look which I had
+only observed in Sherlock's when he was exerting his full powers.
+
+"I am glad to meet you, sir," said he, putting out a broad, fat hand
+like the flipper of a seal. "I hear of Sherlock everywhere since you
+became his chronicler. By the way, Sherlock, I expected to see you round
+last week, to consult me over that Manor House case. I thought you might
+be a little out of your depth."
+
+"No, I solved it," said my friend, smiling.
+
+"It was Adams, of course."
+
+"Yes, it was Adams."
+
+"I was sure of it from the first." The two sat down together in the
+bow-window of the club. "To any one who wishes to study mankind this is
+the spot," said Mycroft. "Look at the magnificent types! Look at these
+two men who are coming towards us, for example."
+
+"The billiard-marker and the other?"
+
+"Precisely. What do you make of the other?"
+
+The two men had stopped opposite the window. Some chalk marks over the
+waistcoat pocket were the only signs of billiards which I could see
+in one of them. The other was a very small, dark fellow, with his hat
+pushed back and several packages under his arm.
+
+"An old soldier, I perceive," said Sherlock.
+
+"And very recently discharged," remarked the brother.
+
+"Served in India, I see."
+
+"And a non-commissioned officer."
+
+"Royal Artillery, I fancy," said Sherlock.
+
+"And a widower."
+
+"But with a child."
+
+"Children, my dear boy, children."
+
+"Come," said I, laughing, "this is a little too much."
+
+"Surely," answered Holmes, "it is not hard to say that a man with that
+bearing, expression of authority, and sunbaked skin, is a soldier, is
+more than a private, and is not long from India."
+
+"That he has not left the service long is shown by his still wearing his
+ammunition boots, as they are called," observed Mycroft.
+
+"He had not the cavalry stride, yet he wore his hat on one side, as
+is shown by the lighter skin of that side of his brow. His weight is
+against his being a sapper. He is in the artillery."
+
+"Then, of course, his complete mourning shows that he has lost some one
+very dear. The fact that he is doing his own shopping looks as though
+it were his wife. He has been buying things for children, you perceive.
+There is a rattle, which shows that one of them is very young. The wife
+probably died in childbed. The fact that he has a picture-book under his
+arm shows that there is another child to be thought of."
+
+I began to understand what my friend meant when he said that his brother
+possessed even keener faculties that he did himself. He glanced across
+at me and smiled. Mycroft took snuff from a tortoise-shell box, and
+brushed away the wandering grains from his coat front with a large, red
+silk handkerchief.
+
+"By the way, Sherlock," said he, "I have had something quite after your
+own heart--a most singular problem--submitted to my judgment. I really
+had not the energy to follow it up save in a very incomplete fashion,
+but it gave me a basis for some pleasing speculation. If you would care
+to hear the facts--"
+
+"My dear Mycroft, I should be delighted."
+
+The brother scribbled a note upon a leaf of his pocket-book, and,
+ringing the bell, he handed it to the waiter.
+
+"I have asked Mr. Melas to step across," said he. "He lodges on the
+floor above me, and I have some slight acquaintance with him, which led
+him to come to me in his perplexity. Mr. Melas is a Greek by extraction,
+as I understand, and he is a remarkable linguist. He earns his living
+partly as interpreter in the law courts and partly by acting as guide to
+any wealthy Orientals who may visit the Northumberland Avenue hotels. I
+think I will leave him to tell his very remarkable experience in his own
+fashion."
+
+A few minutes later we were joined by a short, stout man whose olive
+face and coal-black hair proclaimed his Southern origin, though his
+speech was that of an educated Englishman. He shook hands eagerly
+with Sherlock Holmes, and his dark eyes sparkled with pleasure when he
+understood that the specialist was anxious to hear his story.
+
+"I do not believe that the police credit me--on my word, I do not," said
+he in a wailing voice. "Just because they have never heard of it before,
+they think that such a thing cannot be. But I know that I shall never
+be easy in my mind until I know what has become of my poor man with the
+sticking-plaster upon his face."
+
+"I am all attention," said Sherlock Holmes.
+
+"This is Wednesday evening," said Mr. Melas. "Well then, it was Monday
+night--only two days ago, you understand--that all this happened. I am
+an interpreter, as perhaps my neighbor there has told you. I interpret
+all languages--or nearly all--but as I am a Greek by birth and with a
+Grecian name, it is with that particular tongue that I am principally
+associated. For many years I have been the chief Greek interpreter in
+London, and my name is very well known in the hotels.
+
+"It happens not unfrequently that I am sent for at strange hours by
+foreigners who get into difficulties, or by travelers who arrive late
+and wish my services. I was not surprised, therefore, on Monday night
+when a Mr. Latimer, a very fashionably dressed young man, came up to my
+rooms and asked me to accompany him in a cab which was waiting at the
+door. A Greek friend had come to see him upon business, he said, and
+as he could speak nothing but his own tongue, the services of an
+interpreter were indispensable. He gave me to understand that his house
+was some little distance off, in Kensington, and he seemed to be in a
+great hurry, bustling me rapidly into the cab when we had descended to
+the street.
+
+"I say into the cab, but I soon became doubtful as to whether it was not
+a carriage in which I found myself. It was certainly more roomy than
+the ordinary four-wheeled disgrace to London, and the fittings, though
+frayed, were of rich quality. Mr. Latimer seated himself opposite to me
+and we started off through Charing Cross and up the Shaftesbury Avenue.
+We had come out upon Oxford Street and I had ventured some remark as to
+this being a roundabout way to Kensington, when my words were arrested
+by the extraordinary conduct of my companion.
+
+"He began by drawing a most formidable-looking bludgeon loaded with lead
+from his pocket, and switching it backward and forward several times,
+as if to test its weight and strength. Then he placed it without a word
+upon the seat beside him. Having done this, he drew up the windows on
+each side, and I found to my astonishment that they were covered with
+paper so as to prevent my seeing through them.
+
+"'I am sorry to cut off your view, Mr. Melas,' said he. 'The fact is
+that I have no intention that you should see what the place is to which
+we are driving. It might possibly be inconvenient to me if you could
+find your way there again.'
+
+"As you can imagine, I was utterly taken aback by such an address. My
+companion was a powerful, broad-shouldered young fellow, and, apart from
+the weapon, I should not have had the slightest chance in a struggle
+with him.
+
+"'This is very extraordinary conduct, Mr. Latimer,' I stammered. 'You
+must be aware that what you are doing is quite illegal.'
+
+"'It is somewhat of a liberty, no doubt,' said he, 'but we'll make it
+up to you. I must warn you, however, Mr. Melas, that if at any time
+to-night you attempt to raise an alarm or do anything which is against
+my interests, you will find it a very serious thing. I beg you to
+remember that no one knows where you are, and that, whether you are in
+this carriage or in my house, you are equally in my power.'
+
+"His words were quiet, but he had a rasping way of saying them which
+was very menacing. I sat in silence wondering what on earth could be
+his reason for kidnapping me in this extraordinary fashion. Whatever it
+might be, it was perfectly clear that there was no possible use in my
+resisting, and that I could only wait to see what might befall.
+
+"For nearly two hours we drove without my having the least clue as to
+where we were going. Sometimes the rattle of the stones told of a paved
+causeway, and at others our smooth, silent course suggested asphalt;
+but, save by this variation in sound, there was nothing at all which
+could in the remotest way help me to form a guess as to where we were.
+The paper over each window was impenetrable to light, and a blue curtain
+was drawn across the glass work in front. It was a quarter-past seven
+when we left Pall Mall, and my watch showed me that it was ten minutes
+to nine when we at last came to a standstill. My companion let down
+the window, and I caught a glimpse of a low, arched doorway with a lamp
+burning above it. As I was hurried from the carriage it swung open, and
+I found myself inside the house, with a vague impression of a lawn
+and trees on each side of me as I entered. Whether these were private
+grounds, however, or bona-fide country was more than I could possibly
+venture to say.
+
+"There was a colored gas-lamp inside which was turned so low that I
+could see little save that the hall was of some size and hung with
+pictures. In the dim light I could make out that the person who had
+opened the door was a small, mean-looking, middle-aged man with rounded
+shoulders. As he turned towards us the glint of the light showed me that
+he was wearing glasses.
+
+"'Is this Mr. Melas, Harold?' said he.
+
+"'Yes.'
+
+"'Well done, well done! No ill-will, Mr. Melas, I hope, but we could not
+get on without you. If you deal fair with us you'll not regret it,
+but if you try any tricks, God help you!' He spoke in a nervous, jerky
+fashion, and with little giggling laughs in between, but somehow he
+impressed me with fear more than the other.
+
+"'What do you want with me?' I asked.
+
+"'Only to ask a few questions of a Greek gentleman who is visiting us,
+and to let us have the answers. But say no more than you are told to
+say, or--' here came the nervous giggle again--'you had better never
+have been born.'
+
+"As he spoke he opened a door and showed the way into a room which
+appeared to be very richly furnished, but again the only light was
+afforded by a single lamp half-turned down. The chamber was certainly
+large, and the way in which my feet sank into the carpet as I stepped
+across it told me of its richness. I caught glimpses of velvet chairs, a
+high white marble mantel-piece, and what seemed to be a suit of Japanese
+armor at one side of it. There was a chair just under the lamp, and the
+elderly man motioned that I should sit in it. The younger had left
+us, but he suddenly returned through another door, leading with him
+a gentleman clad in some sort of loose dressing-gown who moved slowly
+towards us. As he came into the circle of dim light which enables me to
+see him more clearly I was thrilled with horror at his appearance. He
+was deadly pale and terribly emaciated, with the protruding, brilliant
+eyes of a man whose spirit was greater than his strength. But what
+shocked me more than any signs of physical weakness was that his face
+was grotesquely criss-crossed with sticking-plaster, and that one large
+pad of it was fastened over his mouth.
+
+"'Have you the slate, Harold?' cried the older man, as this strange
+being fell rather than sat down into a chair. 'Are his hands loose? Now,
+then, give him the pencil. You are to ask the questions, Mr. Melas, and
+he will write the answers. Ask him first of all whether he is prepared
+to sign the papers?'
+
+"The man's eyes flashed fire.
+
+"'Never!' he wrote in Greek upon the slate.
+
+"'On no condition?' I asked, at the bidding of our tyrant.
+
+"'Only if I see her married in my presence by a Greek priest whom I
+know.'
+
+"The man giggled in his venomous way.
+
+"'You know what awaits you, then?'
+
+"'I care nothing for myself.'
+
+"These are samples of the questions and answers which made up our
+strange half-spoken, half-written conversation. Again and again I had to
+ask him whether he would give in and sign the documents. Again and again
+I had the same indignant reply. But soon a happy thought came to me. I
+took to adding on little sentences of my own to each question, innocent
+ones at first, to test whether either of our companions knew anything
+of the matter, and then, as I found that they showed no signs I played a
+more dangerous game. Our conversation ran something like this:
+
+"'You can do no good by this obstinacy. Who are you?'
+
+"'I care not. I am a stranger in London.'
+
+"'Your fate will be upon your own head. How long have you been here?'
+
+"'Let it be so. Three weeks.'
+
+"'The property can never be yours. What ails you?'
+
+"'It shall not go to villains. They are starving me.'
+
+"'You shall go free if you sign. What house is this?'
+
+"'I will never sign. I do not know.'
+
+"'You are not doing her any service. What is your name?'
+
+"'Let me hear her say so. Kratides.'
+
+"'You shall see her if you sign. Where are you from?'
+
+"'Then I shall never see her. Athens.'
+
+"Another five minutes, Mr. Holmes, and I should have wormed out the
+whole story under their very noses. My very next question might have
+cleared the matter up, but at that instant the door opened and a woman
+stepped into the room. I could not see her clearly enough to know more
+than that she was tall and graceful, with black hair, and clad in some
+sort of loose white gown.
+
+"'Harold,' said she, speaking English with a broken accent. 'I could not
+stay away longer. It is so lonely up there with only--Oh, my God, it is
+Paul!'
+
+"These last words were in Greek, and at the same instant the man with
+a convulsive effort tore the plaster from his lips, and screaming out
+'Sophy! Sophy!' rushed into the woman's arms. Their embrace was but for
+an instant, however, for the younger man seized the woman and pushed
+her out of the room, while the elder easily overpowered his emaciated
+victim, and dragged him away through the other door. For a moment I was
+left alone in the room, and I sprang to my feet with some vague idea
+that I might in some way get a clue to what this house was in which I
+found myself. Fortunately, however, I took no steps, for looking up I
+saw that the older man was standing in the door-way with his eyes fixed
+upon me.
+
+"'That will do, Mr. Melas,' said he. 'You perceive that we have taken
+you into our confidence over some very private business. We should not
+have troubled you, only that our friend who speaks Greek and who began
+these negotiations has been forced to return to the East. It was
+quite necessary for us to find some one to take his place, and we were
+fortunate in hearing of your powers.'
+
+"I bowed.
+
+"'There are five sovereigns here,' said he, walking up to me, 'which
+will, I hope, be a sufficient fee. But remember,' he added, tapping me
+lightly on the chest and giggling, 'if you speak to a human soul about
+this--one human soul, mind--well, may God have mercy upon your soul!"
+
+"I cannot tell you the loathing and horror with which this
+insignificant-looking man inspired me. I could see him better now as the
+lamp-light shone upon him. His features were peaky and sallow, and his
+little pointed beard was thready and ill-nourished. He pushed his face
+forward as he spoke and his lips and eyelids were continually twitching
+like a man with St. Vitus's dance. I could not help thinking that his
+strange, catchy little laugh was also a symptom of some nervous malady.
+The terror of his face lay in his eyes, however, steel gray, and
+glistening coldly with a malignant, inexorable cruelty in their depths.
+
+"'We shall know if you speak of this,' said he. 'We have our own means
+of information. Now you will find the carriage waiting, and my friend
+will see you on your way.'
+
+"I was hurried through the hall and into the vehicle, again obtaining
+that momentary glimpse of trees and a garden. Mr. Latimer followed
+closely at my heels, and took his place opposite to me without a word.
+In silence we again drove for an interminable distance with the windows
+raised, until at last, just after midnight, the carriage pulled up.
+
+"'You will get down here, Mr. Melas,' said my companion. 'I am sorry
+to leave you so far from your house, but there is no alternative. Any
+attempt upon your part to follow the carriage can only end in injury to
+yourself.'
+
+"He opened the door as he spoke, and I had hardly time to spring out
+when the coachman lashed the horse and the carriage rattled away. I
+looked around me in astonishment. I was on some sort of a heathy common
+mottled over with dark clumps of furze-bushes. Far away stretched a
+line of houses, with a light here and there in the upper windows. On the
+other side I saw the red signal-lamps of a railway.
+
+"The carriage which had brought me was already out of sight. I stood
+gazing round and wondering where on earth I might be, when I saw some
+one coming towards me in the darkness. As he came up to me I made out
+that he was a railway porter.
+
+"'Can you tell me what place this is?' I asked.
+
+"'Wandsworth Common,' said he.
+
+"'Can I get a train into town?'
+
+"'If you walk on a mile or so to Clapham Junction,' said he, 'you'll
+just be in time for the last to Victoria.'
+
+"So that was the end of my adventure, Mr. Holmes. I do not know where I
+was, nor whom I spoke with, nor anything save what I have told you. But
+I know that there is foul play going on, and I want to help that unhappy
+man if I can. I told the whole story to Mr. Mycroft Holmes next morning,
+and subsequently to the police."
+
+We all sat in silence for some little time after listening to this
+extraordinary narrative. Then Sherlock looked across at his brother.
+
+"Any steps?" he asked.
+
+Mycroft picked up the Daily News, which was lying on the side-table.
+
+"'Anybody supplying any information to the whereabouts of a Greek
+gentleman named Paul Kratides, from Athens, who is unable to speak
+English, will be rewarded. A similar reward paid to any one giving
+information about a Greek lady whose first name is Sophy. X 2473.' That
+was in all the dailies. No answer."
+
+"How about the Greek Legation?"
+
+"I have inquired. They know nothing."
+
+"A wire to the head of the Athens police, then?"
+
+"Sherlock has all the energy of the family," said Mycroft, turning to
+me. "Well, you take the case up by all means, and let me know if you do
+any good."
+
+"Certainly," answered my friend, rising from his chair. "I'll let you
+know, and Mr. Melas also. In the meantime, Mr. Melas, I should certainly
+be on my guard, if I were you, for of course they must know through
+these advertisements that you have betrayed them."
+
+As we walked home together, Holmes stopped at a telegraph office and
+sent off several wires.
+
+"You see, Watson," he remarked, "our evening has been by no means
+wasted. Some of my most interesting cases have come to me in this way
+through Mycroft. The problem which we have just listened to, although
+it can admit of but one explanation, has still some distinguishing
+features."
+
+"You have hopes of solving it?"
+
+"Well, knowing as much as we do, it will be singular indeed if we fail
+to discover the rest. You must yourself have formed some theory which
+will explain the facts to which we have listened."
+
+"In a vague way, yes."
+
+"What was your idea, then?"
+
+"It seemed to me to be obvious that this Greek girl had been carried off
+by the young Englishman named Harold Latimer."
+
+"Carried off from where?"
+
+"Athens, perhaps."
+
+Sherlock Holmes shook his head. "This young man could not talk a word of
+Greek. The lady could talk English fairly well. Inference--that she had
+been in England some little time, but he had not been in Greece."
+
+"Well, then, we will presume that she had come on a visit to England,
+and that this Harold had persuaded her to fly with him."
+
+"That is more probable."
+
+"Then the brother--for that, I fancy, must be the relationship--comes
+over from Greece to interfere. He imprudently puts himself into the
+power of the young man and his older associate. They seize him and use
+violence towards him in order to make him sign some papers to make over
+the girl's fortune--of which he may be trustee--to them. This he refuses
+to do. In order to negotiate with him they have to get an interpreter,
+and they pitch upon this Mr. Melas, having used some other one before.
+The girl is not told of the arrival of her brother, and finds it out by
+the merest accident."
+
+"Excellent, Watson!" cried Holmes. "I really fancy that you are not far
+from the truth. You see that we hold all the cards, and we have only to
+fear some sudden act of violence on their part. If they give us time we
+must have them."
+
+"But how can we find where this house lies?"
+
+"Well, if our conjecture is correct and the girl's name is or was Sophy
+Kratides, we should have no difficulty in tracing her. That must be our
+main hope, for the brother is, of course, a complete stranger. It is
+clear that some time has elapsed since this Harold established these
+relations with the girl--some weeks, at any rate--since the brother in
+Greece has had time to hear of it and come across. If they have been
+living in the same place during this time, it is probable that we shall
+have some answer to Mycroft's advertisement."
+
+We had reached our house in Baker Street while we had been talking.
+Holmes ascended the stair first, and as he opened the door of our room
+he gave a start of surprise. Looking over his shoulder, I was equally
+astonished. His brother Mycroft was sitting smoking in the arm-chair.
+
+"Come in, Sherlock! Come in, sir," said he blandly, smiling at our
+surprised faces. "You don't expect such energy from me, do you,
+Sherlock? But somehow this case attracts me."
+
+"How did you get here?"
+
+"I passed you in a hansom."
+
+"There has been some new development?"
+
+"I had an answer to my advertisement."
+
+"Ah!"
+
+"Yes, it came within a few minutes of your leaving."
+
+"And to what effect?"
+
+Mycroft Holmes took out a sheet of paper.
+
+"Here it is," said he, "written with a J pen on royal cream paper by a
+middle-aged man with a weak constitution. 'Sir,' he says, 'in answer to
+your advertisement of to-day's date, I beg to inform you that I know the
+young lady in question very well. If you should care to call upon me I
+could give you some particulars as to her painful history. She is living
+at present at The Myrtles, Beckenham. Yours faithfully, J. Davenport.'
+
+"He writes from Lower Brixton," said Mycroft Holmes. "Do you not think
+that we might drive to him now, Sherlock, and learn these particulars?"
+
+"My dear Mycroft, the brother's life is more valuable than the sister's
+story. I think we should call at Scotland Yard for Inspector Gregson,
+and go straight out to Beckenham. We know that a man is being done to
+death, and every hour may be vital."
+
+"Better pick up Mr. Melas on our way," I suggested. "We may need an
+interpreter."
+
+"Excellent," said Sherlock Holmes. "Send the boy for a four-wheeler, and
+we shall be off at once." He opened the table-drawer as he spoke, and I
+noticed that he slipped his revolver into his pocket. "Yes," said he, in
+answer to my glance; "I should say from what we have heard, that we are
+dealing with a particularly dangerous gang."
+
+It was almost dark before we found ourselves in Pall Mall, at the rooms
+of Mr. Melas. A gentleman had just called for him, and he was gone.
+
+"Can you tell me where?" asked Mycroft Holmes.
+
+"I don't know, sir," answered the woman who had opened the door; "I only
+know that he drove away with the gentleman in a carriage."
+
+"Did the gentleman give a name?"
+
+"No, sir."
+
+"He wasn't a tall, handsome, dark young man?"
+
+"Oh, no, sir. He was a little gentleman, with glasses, thin in the face,
+but very pleasant in his ways, for he was laughing all the time that he
+was talking."
+
+"Come along!" cried Sherlock Holmes, abruptly. "This grows serious,"
+he observed, as we drove to Scotland Yard. "These men have got hold of
+Melas again. He is a man of no physical courage, as they are well
+aware from their experience the other night. This villain was able to
+terrorize him the instant that he got into his presence. No doubt
+they want his professional services, but, having used him, they may be
+inclined to punish him for what they will regard as his treachery."
+
+Our hope was that, by taking train, we might get to Beckenham as soon
+or sooner than the carriage. On reaching Scotland Yard, however, it was
+more than an hour before we could get Inspector Gregson and comply with
+the legal formalities which would enable us to enter the house. It was a
+quarter to ten before we reached London Bridge, and half past before the
+four of us alighted on the Beckenham platform. A drive of half a mile
+brought us to The Myrtles--a large, dark house standing back from the
+road in its own grounds. Here we dismissed our cab, and made our way up
+the drive together.
+
+"The windows are all dark," remarked the inspector. "The house seems
+deserted."
+
+"Our birds are flown and the nest empty," said Holmes.
+
+"Why do you say so?"
+
+"A carriage heavily loaded with luggage has passed out during the last
+hour."
+
+The inspector laughed. "I saw the wheel-tracks in the light of the
+gate-lamp, but where does the luggage come in?"
+
+"You may have observed the same wheel-tracks going the other way. But
+the outward-bound ones were very much deeper--so much so that we can
+say for a certainty that there was a very considerable weight on the
+carriage."
+
+"You get a trifle beyond me there," said the inspector, shrugging his
+shoulder. "It will not be an easy door to force, but we will try if we
+cannot make some one hear us."
+
+He hammered loudly at the knocker and pulled at the bell, but without
+any success. Holmes had slipped away, but he came back in a few minutes.
+
+"I have a window open," said he.
+
+"It is a mercy that you are on the side of the force, and not against
+it, Mr. Holmes," remarked the inspector, as he noted the clever way in
+which my friend had forced back the catch. "Well, I think that under the
+circumstances we may enter without an invitation."
+
+One after the other we made our way into a large apartment, which was
+evidently that in which Mr. Melas had found himself. The inspector
+had lit his lantern, and by its light we could see the two doors, the
+curtain, the lamp, and the suit of Japanese mail as he had described
+them. On the table lay two glasses, and empty brandy-bottle, and the
+remains of a meal.
+
+"What is that?" asked Holmes, suddenly.
+
+We all stood still and listened. A low moaning sound was coming from
+somewhere over our heads. Holmes rushed to the door and out into the
+hall. The dismal noise came from upstairs. He dashed up, the inspector
+and I at his heels, while his brother Mycroft followed as quickly as his
+great bulk would permit.
+
+Three doors faced up upon the second floor, and it was from the central
+of these that the sinister sounds were issuing, sinking sometimes into a
+dull mumble and rising again into a shrill whine. It was locked, but the
+key had been left on the outside. Holmes flung open the door and rushed
+in, but he was out again in an instant, with his hand to his throat.
+
+"It's charcoal," he cried. "Give it time. It will clear."
+
+Peering in, we could see that the only light in the room came from a
+dull blue flame which flickered from a small brass tripod in the centre.
+It threw a livid, unnatural circle upon the floor, while in the shadows
+beyond we saw the vague loom of two figures which crouched against the
+wall. From the open door there reeked a horrible poisonous exhalation
+which set us gasping and coughing. Holmes rushed to the top of the
+stairs to draw in the fresh air, and then, dashing into the room, he
+threw up the window and hurled the brazen tripod out into the garden.
+
+"We can enter in a minute," he gasped, darting out again. "Where is a
+candle? I doubt if we could strike a match in that atmosphere. Hold the
+light at the door and we shall get them out, Mycroft, now!"
+
+With a rush we got to the poisoned men and dragged them out into the
+well-lit hall. Both of them were blue-lipped and insensible, with
+swollen, congested faces and protruding eyes. Indeed, so distorted were
+their features that, save for his black beard and stout figure, we might
+have failed to recognize in one of them the Greek interpreter who had
+parted from us only a few hours before at the Diogenes Club. His hands
+and feet were securely strapped together, and he bore over one eye
+the marks of a violent blow. The other, who was secured in a similar
+fashion, was a tall man in the last stage of emaciation, with several
+strips of sticking-plaster arranged in a grotesque pattern over his
+face. He had ceased to moan as we laid him down, and a glance showed
+me that for him at least our aid had come too late. Mr. Melas, however,
+still lived, and in less than an hour, with the aid of ammonia and
+brandy I had the satisfaction of seeing him open his eyes, and of
+knowing that my hand had drawn him back from that dark valley in which
+all paths meet.
+
+It was a simple story which he had to tell, and one which did but
+confirm our own deductions. His visitor, on entering his rooms, had
+drawn a life-preserver from his sleeve, and had so impressed him with
+the fear of instant and inevitable death that he had kidnapped him for
+the second time. Indeed, it was almost mesmeric, the effect which this
+giggling ruffian had produced upon the unfortunate linguist, for he
+could not speak of him save with trembling hands and a blanched cheek.
+He had been taken swiftly to Beckenham, and had acted as interpreter in
+a second interview, even more dramatic than the first, in which the two
+Englishmen had menaced their prisoner with instant death if he did not
+comply with their demands. Finally, finding him proof against every
+threat, they had hurled him back into his prison, and after
+reproaching Melas with his treachery, which appeared from the newspaper
+advertisement, they had stunned him with a blow from a stick, and he
+remembered nothing more until he found us bending over him.
+
+And this was the singular case of the Grecian Interpreter, the
+explanation of which is still involved in some mystery. We were able
+to find out, by communicating with the gentleman who had answered the
+advertisement, that the unfortunate young lady came of a wealthy Grecian
+family, and that she had been on a visit to some friends in England.
+While there she had met a young man named Harold Latimer, who had
+acquired an ascendancy over he and had eventually persuaded her to fly
+with him. Her friends, shocked at the event, had contented themselves
+with informing her brother at Athens, and had then washed their hands
+of the matter. The brother, on his arrival in England, had imprudently
+placed himself in the power of Latimer and of his associate, whose name
+was Wilson Kemp--a man of the foulest antecedents. These two, finding
+that through his ignorance of the language he was helpless in their
+hands, had kept him a prisoner, and had endeavored by cruelty and
+starvation to make him sign away his own and his sister's property. They
+had kept him in the house without the girl's knowledge, and the plaster
+over the face had been for the purpose of making recognition difficult
+in case she should ever catch a glimpse of him. Her feminine perception,
+however, had instantly seen through the disguise when, on the occasion
+of the interpreter's visit, she had seen him for the first time. The
+poor girl, however, was herself a prisoner, for there was no one about
+the house except the man who acted as coachman, and his wife, both of
+whom were tools of the conspirators. Finding that their secret was out,
+and that their prisoner was not to be coerced, the two villains with the
+girl had fled away at a few hours' notice from the furnished house which
+they had hired, having first, as they thought, taken vengeance both upon
+the man who had defied and the one who had betrayed them.
+
+Months afterwards a curious newspaper cutting reached us from
+Buda-Pesth. It told how two Englishmen who had been traveling with a
+woman had met with a tragic end. They had each been stabbed, it seems,
+and the Hungarian police were of opinion that they had quarreled and had
+inflicted mortal injuries upon each other. Holmes, however, is, I fancy,
+of a different way of thinking, and holds to this day that, if one could
+find the Grecian girl, one might learn how the wrongs of herself and her
+brother came to be avenged.
+
+
+
+
+Adventure X. The Naval Treaty
+
+
+The July which immediately succeeded my marriage was made memorable
+by three cases of interest, in which I had the privilege of being
+associated with Sherlock Holmes and of studying his methods. I find them
+recorded in my notes under the headings of "The Adventure of the Second
+Stain," "The Adventure of the Naval Treaty," and "The Adventure of the
+Tired Captain." The first of these, however, deals with interest of such
+importance and implicates so many of the first families in the kingdom
+that for many years it will be impossible to make it public. No case,
+however, in which Holmes was engaged has ever illustrated the value
+of his analytical methods so clearly or has impressed those who were
+associated with him so deeply. I still retain an almost verbatim report
+of the interview in which he demonstrated the true facts of the case
+to Monsieur Dubugue of the Paris police, and Fritz von Waldbaum, the
+well-known specialist of Dantzig, both of whom had wasted their energies
+upon what proved to be side-issues. The new century will have come,
+however, before the story can be safely told. Meanwhile I pass on to
+the second on my list, which promised also at one time to be of national
+importance, and was marked by several incidents which give it a quite
+unique character.
+
+During my school-days I had been intimately associated with a lad named
+Percy Phelps, who was of much the same age as myself, though he was two
+classes ahead of me. He was a very brilliant boy, and carried away every
+prize which the school had to offer, finished his exploits by winning
+a scholarship which sent him on to continue his triumphant career at
+Cambridge. He was, I remember, extremely well connected, and even when
+we were all little boys together we knew that his mother's brother
+was Lord Holdhurst, the great conservative politician. This gaudy
+relationship did him little good at school. On the contrary, it seemed
+rather a piquant thing to us to chevy him about the playground and hit
+him over the shins with a wicket. But it was another thing when he
+came out into the world. I heard vaguely that his abilities and the
+influences which he commanded had won him a good position at the Foreign
+Office, and then he passed completely out of my mind until the following
+letter recalled his existence:
+
+
+Briarbrae, Woking. My dear Watson,--I have no doubt that you can
+remember "Tadpole" Phelps, who was in the fifth form when you were in
+the third. It is possible even that you may have heard that through my
+uncle's influence I obtained a good appointment at the Foreign Office,
+and that I was in a situation of trust and honor until a horrible
+misfortune came suddenly to blast my career.
+
+There is no use writing of the details of that dreadful event. In the
+event of your acceding to my request it is probably that I shall have
+to narrate them to you. I have only just recovered from nine weeks of
+brain-fever, and am still exceedingly weak. Do you think that you could
+bring your friend Mr. Holmes down to see me? I should like to have his
+opinion of the case, though the authorities assure me that nothing more
+can be done. Do try to bring him down, and as soon as possible. Every
+minute seems an hour while I live in this state of horrible suspense.
+Assure him that if I have not asked his advice sooner it was not because
+I did not appreciate his talents, but because I have been off my head
+ever since the blow fell. Now I am clear again, though I dare not think
+of it too much for fear of a relapse. I am still so weak that I have to
+write, as you see, by dictating. Do try to bring him.
+
+Your old school-fellow,
+
+Percy Phelps.
+
+
+There was something that touched me as I read this letter, something
+pitiable in the reiterated appeals to bring Holmes. So moved was I
+that even had it been a difficult matter I should have tried it, but
+of course I knew well that Holmes loved his art, so that he was ever
+as ready to bring his aid as his client could be to receive it. My wife
+agreed with me that not a moment should be lost in laying the matter
+before him, and so within an hour of breakfast-time I found myself back
+once more in the old rooms in Baker Street.
+
+Holmes was seated at his side-table clad in his dressing-gown, and
+working hard over a chemical investigation. A large curved retort
+was boiling furiously in the bluish flame of a Bunsen burner, and the
+distilled drops were condensing into a two-litre measure. My friend
+hardly glanced up as I entered, and I, seeing that his investigation
+must be of importance, seated myself in an arm-chair and waited. He
+dipped into this bottle or that, drawing out a few drops of each with
+his glass pipette, and finally brought a test-tube containing a solution
+over to the table. In his right hand he held a slip of litmus-paper.
+
+"You come at a crisis, Watson," said he. "If this paper remains blue,
+all is well. If it turns red, it means a man's life." He dipped it into
+the test-tube and it flushed at once into a dull, dirty crimson. "Hum!
+I thought as much!" he cried. "I will be at your service in an instant,
+Watson. You will find tobacco in the Persian slipper." He turned to his
+desk and scribbled off several telegrams, which were handed over to the
+page-boy. Then he threw himself down into the chair opposite, and drew
+up his knees until his fingers clasped round his long, thin shins.
+
+"A very commonplace little murder," said he. "You've got something
+better, I fancy. You are the stormy petrel of crime, Watson. What is
+it?"
+
+I handed him the letter, which he read with the most concentrated
+attention.
+
+"It does not tell us very much, does it?" he remarked, as he handed it
+back to me.
+
+"Hardly anything."
+
+"And yet the writing is of interest."
+
+"But the writing is not his own."
+
+"Precisely. It is a woman's."
+
+"A man's surely," I cried.
+
+"No, a woman's, and a woman of rare character. You see, at the
+commencement of an investigation it is something to know that your
+client is in close contact with some one who, for good or evil, has an
+exceptional nature. My interest is already awakened in the case. If you
+are ready we will start at once for Woking, and see this diplomatist who
+is in such evil case, and the lady to whom he dictates his letters."
+
+We were fortunate enough to catch an early train at Waterloo, and in
+a little under an hour we found ourselves among the fir-woods and
+the heather of Woking. Briarbrae proved to be a large detached house
+standing in extensive grounds within a few minutes' walk of the station.
+On sending in our cards we were shown into an elegantly appointed
+drawing-room, where we were joined in a few minutes by a rather stout
+man who received us with much hospitality. His age may have been nearer
+forty than thirty, but his cheeks were so ruddy and his eyes so merry
+that he still conveyed the impression of a plump and mischievous boy.
+
+"I am so glad that you have come," said he, shaking our hands with
+effusion. "Percy has been inquiring for you all morning. Ah, poor old
+chap, he clings to any straw! His father and his mother asked me to see
+you, for the mere mention of the subject is very painful to them."
+
+"We have had no details yet," observed Holmes. "I perceive that you are
+not yourself a member of the family."
+
+Our acquaintance looked surprised, and then, glancing down, he began to
+laugh.
+
+"Of course you saw the J H monogram on my locket," said he. "For a
+moment I thought you had done something clever. Joseph Harrison is my
+name, and as Percy is to marry my sister Annie I shall at least be a
+relation by marriage. You will find my sister in his room, for she has
+nursed him hand-and-foot this two months back. Perhaps we'd better go in
+at once, for I know how impatient he is."
+
+The chamber in which we were shown was on the same floor as the
+drawing-room. It was furnished partly as a sitting and partly as a
+bedroom, with flowers arranged daintily in every nook and corner. A
+young man, very pale and worn, was lying upon a sofa near the open
+window, through which came the rich scent of the garden and the balmy
+summer air. A woman was sitting beside him, who rose as we entered.
+
+"Shall I leave, Percy?" she asked.
+
+He clutched her hand to detain her. "How are you, Watson?" said he,
+cordially. "I should never have known you under that moustache, and I
+dare say you would not be prepared to swear to me. This I presume is
+your celebrated friend, Mr. Sherlock Holmes?"
+
+I introduced him in a few words, and we both sat down. The stout young
+man had left us, but his sister still remained with her hand in that of
+the invalid. She was a striking-looking woman, a little short and
+thick for symmetry, but with a beautiful olive complexion, large, dark,
+Italian eyes, and a wealth of deep black hair. Her rich tints made the
+white face of her companion the more worn and haggard by the contrast.
+
+"I won't waste your time," said he, raising himself upon the sofa.
+"I'll plunge into the matter without further preamble. I was a happy
+and successful man, Mr. Holmes, and on the eve of being married, when a
+sudden and dreadful misfortune wrecked all my prospects in life.
+
+"I was, as Watson may have told you, in the Foreign Office, and
+through the influences of my uncle, Lord Holdhurst, I rose rapidly to
+a responsible position. When my uncle became foreign minister in this
+administration he gave me several missions of trust, and as I always
+brought them to a successful conclusion, he came at last to have the
+utmost confidence in my ability and tact.
+
+"Nearly ten weeks ago--to be more accurate, on the 23d of May--he called
+me into his private room, and, after complimenting me on the good work
+which I had done, he informed me that he had a new commission of trust
+for me to execute.
+
+"'This,' said he, taking a gray roll of paper from his bureau, 'is the
+original of that secret treaty between England and Italy of which, I
+regret to say, some rumors have already got into the public press. It is
+of enormous importance that nothing further should leak out. The French
+or the Russian embassy would pay an immense sum to learn the contents
+of these papers. They should not leave my bureau were it not that it
+is absolutely necessary to have them copied. You have a desk in your
+office?"
+
+"'Yes, sir.'
+
+"'Then take the treaty and lock it up there. I shall give directions
+that you may remain behind when the others go, so that you may copy
+it at your leisure without fear of being overlooked. When you have
+finished, relock both the original and the draft in the desk, and hand
+them over to me personally to-morrow morning.'
+
+"I took the papers and--"
+
+"Excuse me an instant," said Holmes. "Were you alone during this
+conversation?"
+
+"Absolutely."
+
+"In a large room?"
+
+"Thirty feet each way."
+
+"In the centre?"
+
+"Yes, about it."
+
+"And speaking low?"
+
+"My uncle's voice is always remarkably low. I hardly spoke at all."
+
+"Thank you," said Holmes, shutting his eyes; "pray go on."
+
+"I did exactly what he indicated, and waited until the other clerks had
+departed. One of them in my room, Charles Gorot, had some arrears
+of work to make up, so I left him there and went out to dine. When I
+returned he was gone. I was anxious to hurry my work, for I knew that
+Joseph--the Mr. Harrison whom you saw just now--was in town, and that he
+would travel down to Woking by the eleven-o'clock train, and I wanted if
+possible to catch it.
+
+"When I came to examine the treaty I saw at once that it was of such
+importance that my uncle had been guilty of no exaggeration in what
+he had said. Without going into details, I may say that it defined the
+position of Great Britain towards the Triple Alliance, and fore-shadowed
+the policy which this country would pursue in the event of the
+French fleet gaining a complete ascendancy over that of Italy in the
+Mediterranean. The questions treated in it were purely naval. At the end
+were the signatures of the high dignitaries who had signed it. I glanced
+my eyes over it, and then settled down to my task of copying.
+
+"It was a long document, written in the French language, and containing
+twenty-six separate articles. I copied as quickly as I could, but at
+nine o'clock I had only done nine articles, and it seemed hopeless for
+me to attempt to catch my train. I was feeling drowsy and stupid, partly
+from my dinner and also from the effects of a long day's work. A cup of
+coffee would clear my brain. A commissionnaire remains all night in a
+little lodge at the foot of the stairs, and is in the habit of making
+coffee at his spirit-lamp for any of the officials who may be working
+over time. I rang the bell, therefore, to summon him.
+
+"To my surprise, it was a woman who answered the summons, a large,
+coarse-faced, elderly woman, in an apron. She explained that she was the
+commissionnaire's wife, who did the charing, and I gave her the order
+for the coffee.
+
+"I wrote two more articles and then, feeling more drowsy than ever, I
+rose and walked up and down the room to stretch my legs. My coffee had
+not yet come, and I wondered what was the cause of the delay could be.
+Opening the door, I started down the corridor to find out. There was a
+straight passage, dimly lighted, which led from the room in which I
+had been working, and was the only exit from it. It ended in a curving
+staircase, with the commissionnaire's lodge in the passage at the
+bottom. Half way down this staircase is a small landing, with another
+passage running into it at right angles. This second one leads by means
+of a second small stair to a side door, used by servants, and also as
+a short cut by clerks when coming from Charles Street. Here is a rough
+chart of the place."
+
+"Thank you. I think that I quite follow you," said Sherlock Holmes.
+
+"It is of the utmost importance that you should notice this point.
+I went down the stairs and into the hall, where I found the
+commissionnaire fast asleep in his box, with the kettle boiling
+furiously upon the spirit-lamp. I took off the kettle and blew out the
+lamp, for the water was spurting over the floor. Then I put out my hand
+and was about to shake the man, who was still sleeping soundly, when a
+bell over his head rang loudly, and he woke with a start.
+
+"'Mr. Phelps, sir!' said he, looking at me in bewilderment.
+
+"'I came down to see if my coffee was ready.'
+
+"'I was boiling the kettle when I fell asleep, sir.' He looked at me and
+then up at the still quivering bell with an ever-growing astonishment
+upon his face.
+
+"'If you was here, sir, then who rang the bell?' he asked.
+
+"'The bell!' I cried. 'What bell is it?'
+
+"'It's the bell of the room you were working in.'
+
+"A cold hand seemed to close round my heart. Some one, then, was in that
+room where my precious treaty lay upon the table. I ran frantically up
+the stair and along the passage. There was no one in the corridors, Mr.
+Holmes. There was no one in the room. All was exactly as I left it, save
+only that the papers which had been committed to my care had been taken
+from the desk on which they lay. The copy was there, and the original
+was gone."
+
+Holmes sat up in his chair and rubbed his hands. I could see that the
+problem was entirely to his heart. "Pray, what did you do then?" he
+murmured.
+
+"I recognized in an instant that the thief must have come up the stairs
+from the side door. Of course I must have met him if he had come the
+other way."
+
+"You were satisfied that he could not have been concealed in the room
+all the time, or in the corridor which you have just described as dimly
+lighted?"
+
+"It is absolutely impossible. A rat could not conceal himself either in
+the room or the corridor. There is no cover at all."
+
+"Thank you. Pray proceed."
+
+"The commissionnaire, seeing by my pale face that something was to be
+feared, had followed me upstairs. Now we both rushed along the corridor
+and down the steep steps which led to Charles Street. The door at the
+bottom was closed, but unlocked. We flung it open and rushed out. I can
+distinctly remember that as we did so there came three chimes from a
+neighboring clock. It was quarter to ten."
+
+"That is of enormous importance," said Holmes, making a note upon his
+shirt-cuff.
+
+"The night was very dark, and a thin, warm rain was falling. There was
+no one in Charles Street, but a great traffic was going on, as usual, in
+Whitehall, at the extremity. We rushed along the pavement, bare-headed
+as we were, and at the far corner we found a policeman standing.
+
+"'A robbery has been committed,' I gasped. 'A document of immense value
+has been stolen from the Foreign Office. Has any one passed this way?'
+
+"'I have been standing here for a quarter of an hour, sir,' said he;
+'only one person has passed during that time--a woman, tall and elderly,
+with a Paisley shawl.'
+
+"'Ah, that is only my wife,' cried the commissionnaire; 'has no one else
+passed?'
+
+"'No one.'
+
+"'Then it must be the other way that the thief took,' cried the fellow,
+tugging at my sleeve.
+
+"'But I was not satisfied, and the attempts which he made to draw me
+away increased my suspicions.
+
+"'Which way did the woman go?' I cried.
+
+"'I don't know, sir. I noticed her pass, but I had no special reason for
+watching her. She seemed to be in a hurry.'
+
+"'How long ago was it?'
+
+"'Oh, not very many minutes.'
+
+"'Within the last five?'
+
+"'Well, it could not be more than five.'
+
+"'You're only wasting your time, sir, and every minute now is of
+importance,' cried the commissionnaire; 'take my word for it that my old
+woman has nothing to do with it, and come down to the other end of the
+street. Well, if you won't, I will.' And with that he rushed off in the
+other direction.
+
+"But I was after him in an instant and caught him by the sleeve.
+
+"'Where do you live?' said I.
+
+"'16 Ivy Lane, Brixton,' he answered. 'But don't let yourself be drawn
+away upon a false scent, Mr. Phelps. Come to the other end of the street
+and let us see if we can hear of anything.'
+
+"Nothing was to be lost by following his advice. With the policeman we
+both hurried down, but only to find the street full of traffic, many
+people coming and going, but all only too eager to get to a place of
+safety upon so wet a night. There was no lounger who could tell us who
+had passed.
+
+"Then we returned to the office, and searched the stairs and the passage
+without result. The corridor which led to the room was laid down with
+a kind of creamy linoleum which shows an impression very easily. We
+examined it very carefully, but found no outline of any footmark."
+
+"Had it been raining all evening?"
+
+"Since about seven."
+
+"How is it, then, that the woman who came into the room about nine left
+no traces with her muddy boots?"
+
+"I am glad you raised the point. It occurred to me at the time.
+The charwomen are in the habit of taking off their boots at the
+commissionnaire's office, and putting on list slippers."
+
+"That is very clear. There were no marks, then, though the night was a
+wet one? The chain of events is certainly one of extraordinary interest.
+What did you do next?
+
+"We examined the room also. There is no possibility of a secret door,
+and the windows are quite thirty feet from the ground. Both of them
+were fastened on the inside. The carpet prevents any possibility of a
+trap-door, and the ceiling is of the ordinary whitewashed kind. I will
+pledge my life that whoever stole my papers could only have come through
+the door."
+
+"How about the fireplace?"
+
+"They use none. There is a stove. The bell-rope hangs from the wire just
+to the right of my desk. Whoever rang it must have come right up to the
+desk to do it. But why should any criminal wish to ring the bell? It is
+a most insoluble mystery."
+
+"Certainly the incident was unusual. What were your next steps? You
+examined the room, I presume, to see if the intruder had left any
+traces--any cigar-end or dropped glove or hairpin or other trifle?"
+
+"There was nothing of the sort."
+
+"No smell?"
+
+"Well, we never thought of that."
+
+"Ah, a scent of tobacco would have been worth a great deal to us in such
+an investigation."
+
+"I never smoke myself, so I think I should have observed it if there had
+been any smell of tobacco. There was absolutely no clue of any kind. The
+only tangible fact was that the commissionnaire's wife--Mrs. Tangey was
+the name--had hurried out of the place. He could give no explanation
+save that it was about the time when the woman always went home. The
+policeman and I agreed that our best plan would be to seize the woman
+before she could get rid of the papers, presuming that she had them.
+
+"The alarm had reached Scotland Yard by this time, and Mr. Forbes, the
+detective, came round at once and took up the case with a great deal of
+energy. We hired a hansom, and in half an hour we were at the address
+which had been given to us. A young woman opened the door, who proved to
+be Mrs. Tangey's eldest daughter. Her mother had not come back yet, and
+we were shown into the front room to wait.
+
+"About ten minutes later a knock came at the door, and here we made the
+one serious mistake for which I blame myself. Instead of opening the
+door ourselves, we allowed the girl to do so. We heard her say, 'Mother,
+there are two men in the house waiting to see you,' and an instant
+afterwards we heard the patter of feet rushing down the passage. Forbes
+flung open the door, and we both ran into the back room or kitchen, but
+the woman had got there before us. She stared at us with defiant
+eyes, and then, suddenly recognizing me, an expression of absolute
+astonishment came over her face.
+
+"'Why, if it isn't Mr. Phelps, of the office!' she cried.
+
+"'Come, come, who did you think we were when you ran away from us?'
+asked my companion.
+
+"'I thought you were the brokers,' said she, 'we have had some trouble
+with a tradesman.'
+
+"'That's not quite good enough,' answered Forbes. 'We have reason to
+believe that you have taken a paper of importance from the Foreign
+Office, and that you ran in here to dispose of it. You must come back
+with us to Scotland Yard to be searched.'
+
+"It was in vain that she protested and resisted. A four-wheeler was
+brought, and we all three drove back in it. We had first made an
+examination of the kitchen, and especially of the kitchen fire, to see
+whether she might have made away with the papers during the instant that
+she was alone. There were no signs, however, of any ashes or scraps.
+When we reached Scotland Yard she was handed over at once to the female
+searcher. I waited in an agony of suspense until she came back with her
+report. There were no signs of the papers.
+
+"Then for the first time the horror of my situation came in its full
+force. Hitherto I had been acting, and action had numbed thought. I had
+been so confident of regaining the treaty at once that I had not dared
+to think of what would be the consequence if I failed to do so. But
+now there was nothing more to be done, and I had leisure to realize
+my position. It was horrible. Watson there would tell you that I was a
+nervous, sensitive boy at school. It is my nature. I thought of my uncle
+and of his colleagues in the Cabinet, of the shame which I had brought
+upon him, upon myself, upon every one connected with me. What though I
+was the victim of an extraordinary accident? No allowance is made
+for accidents where diplomatic interests are at stake. I was ruined,
+shamefully, hopelessly ruined. I don't know what I did. I fancy I must
+have made a scene. I have a dim recollection of a group of officials who
+crowded round me, endeavoring to soothe me. One of them drove down with
+me to Waterloo, and saw me into the Woking train. I believe that he
+would have come all the way had it not been that Dr. Ferrier, who lives
+near me, was going down by that very train. The doctor most kindly took
+charge of me, and it was well he did so, for I had a fit in the station,
+and before we reached home I was practically a raving maniac.
+
+"You can imagine the state of things here when they were roused from
+their beds by the doctor's ringing and found me in this condition. Poor
+Annie here and my mother were broken-hearted. Dr. Ferrier had just heard
+enough from the detective at the station to be able to give an idea of
+what had happened, and his story did not mend matters. It was evident to
+all that I was in for a long illness, so Joseph was bundled out of this
+cheery bedroom, and it was turned into a sick-room for me. Here I have
+lain, Mr. Holmes, for over nine weeks, unconscious, and raving with
+brain-fever. If it had not been for Miss Harrison here and for the
+doctor's care I should not be speaking to you now. She has nursed me by
+day and a hired nurse has looked after me by night, for in my mad fits
+I was capable of anything. Slowly my reason has cleared, but it is only
+during the last three days that my memory has quite returned. Sometimes
+I wish that it never had. The first thing that I did was to wire to
+Mr. Forbes, who had the case in hand. He came out, and assures me that,
+though everything has been done, no trace of a clue has been discovered.
+The commissionnaire and his wife have been examined in every way without
+any light being thrown upon the matter. The suspicions of the police
+then rested upon young Gorot, who, as you may remember, stayed over time
+in the office that night. His remaining behind and his French name were
+really the only two points which could suggest suspicion; but, as a
+matter of fact, I did not begin work until he had gone, and his people
+are of Huguenot extraction, but as English in sympathy and tradition as
+you and I are. Nothing was found to implicate him in any way, and there
+the matter dropped. I turn to you, Mr. Holmes, as absolutely my last
+hope. If you fail me, then my honor as well as my position are forever
+forfeited."
+
+The invalid sank back upon his cushions, tired out by this long recital,
+while his nurse poured him out a glass of some stimulating medicine.
+Holmes sat silently, with his head thrown back and his eyes closed, in
+an attitude which might seem listless to a stranger, but which I knew
+betokened the most intense self-absorption.
+
+"You statement has been so explicit," said he at last, "that you have
+really left me very few questions to ask. There is one of the very
+utmost importance, however. Did you tell any one that you had this
+special task to perform?"
+
+"No one."
+
+"Not Miss Harrison here, for example?"
+
+"No. I had not been back to Woking between getting the order and
+executing the commission."
+
+"And none of your people had by chance been to see you?"
+
+"None."
+
+"Did any of them know their way about in the office?"
+
+"Oh, yes, all of them had been shown over it."
+
+"Still, of course, if you said nothing to any one about the treaty these
+inquiries are irrelevant."
+
+"I said nothing."
+
+"Do you know anything of the commissionnaire?"
+
+"Nothing except that he is an old soldier."
+
+"What regiment?"
+
+"Oh, I have heard--Coldstream Guards."
+
+"Thank you. I have no doubt I can get details from Forbes. The
+authorities are excellent at amassing facts, though they do not always
+use them to advantage. What a lovely thing a rose is!"
+
+He walked past the couch to the open window, and held up the drooping
+stalk of a moss-rose, looking down at the dainty blend of crimson and
+green. It was a new phase of his character to me, for I had never before
+seen him show any keen interest in natural objects.
+
+"There is nothing in which deduction is so necessary as in religion,"
+said he, leaning with his back against the shutters. "It can be built
+up as an exact science by the reasoner. Our highest assurance of the
+goodness of Providence seems to me to rest in the flowers. All other
+things, our powers our desires, our food, are all really necessary for
+our existence in the first instance. But this rose is an extra. Its
+smell and its color are an embellishment of life, not a condition of it.
+It is only goodness which gives extras, and so I say again that we have
+much to hope from the flowers."
+
+Percy Phelps and his nurse looked at Holmes during this demonstration
+with surprise and a good deal of disappointment written upon their
+faces. He had fallen into a reverie, with the moss-rose between his
+fingers. It had lasted some minutes before the young lady broke in upon
+it.
+
+"Do you see any prospect of solving this mystery, Mr. Holmes?" she
+asked, with a touch of asperity in her voice.
+
+"Oh, the mystery!" he answered, coming back with a start to the
+realities of life. "Well, it would be absurd to deny that the case is
+a very abstruse and complicated one, but I can promise you that I will
+look into the matter and let you know any points which may strike me."
+
+"Do you see any clue?"
+
+"You have furnished me with seven, but, of course, I must test them
+before I can pronounce upon their value."
+
+"You suspect some one?"
+
+"I suspect myself."
+
+"What!"
+
+"Of coming to conclusions too rapidly."
+
+"Then go to London and test your conclusions."
+
+"Your advice is very excellent, Miss Harrison," said Holmes, rising. "I
+think, Watson, we cannot do better. Do not allow yourself to indulge in
+false hopes, Mr. Phelps. The affair is a very tangled one."
+
+"I shall be in a fever until I see you again," cried the diplomatist.
+
+"Well, I'll come out by the same train to-morrow, though it's more than
+likely that my report will be a negative one."
+
+"God bless you for promising to come," cried our client. "It gives me
+fresh life to know that something is being done. By the way, I have had
+a letter from Lord Holdhurst."
+
+"Ha! What did he say?"
+
+"He was cold, but not harsh. I dare say my severe illness prevented
+him from being that. He repeated that the matter was of the utmost
+importance, and added that no steps would be taken about my future--by
+which he means, of course, my dismissal--until my health was restored
+and I had an opportunity of repairing my misfortune."
+
+"Well, that was reasonable and considerate," said Holmes. "Come, Watson,
+for we have a good day's work before us in town."
+
+Mr. Joseph Harrison drove us down to the station, and we were soon
+whirling up in a Portsmouth train. Holmes was sunk in profound thought,
+and hardly opened his mouth until we had passed Clapham Junction.
+
+"It's a very cheery thing to come into London by any of these lines
+which run high, and allow you to look down upon the houses like this."
+
+I thought he was joking, for the view was sordid enough, but he soon
+explained himself.
+
+"Look at those big, isolated clumps of building rising up above the
+slates, like brick islands in a lead-colored sea."
+
+"The board-schools."
+
+"Light-houses, my boy! Beacons of the future! Capsules with hundreds of
+bright little seeds in each, out of which will spring the wise, better
+England of the future. I suppose that man Phelps does not drink?"
+
+"I should not think so."
+
+"Nor should I, but we are bound to take every possibility into account.
+The poor devil has certainly got himself into very deep water, and it's
+a question whether we shall ever be able to get him ashore. What did you
+think of Miss Harrison?"
+
+"A girl of strong character."
+
+"Yes, but she is a good sort, or I am mistaken. She and her brother are
+the only children of an iron-master somewhere up Northumberland way. He
+got engaged to her when traveling last winter, and she came down to
+be introduced to his people, with her brother as escort. Then came
+the smash, and she stayed on to nurse her lover, while brother Joseph,
+finding himself pretty snug, stayed on too. I've been making a few
+independent inquiries, you see. But to-day must be a day of inquiries."
+
+"My practice--" I began.
+
+"Oh, if you find your own cases more interesting than mine--" said
+Holmes, with some asperity.
+
+"I was going to say that my practice could get along very well for a day
+or two, since it is the slackest time in the year."
+
+"Excellent," said he, recovering his good-humor. "Then we'll look into
+this matter together. I think that we should begin by seeing Forbes.
+He can probably tell us all the details we want until we know from what
+side the case is to be approached."
+
+"You said you had a clue?"
+
+"Well, we have several, but we can only test their value by further
+inquiry. The most difficult crime to track is the one which is
+purposeless. Now this is not purposeless. Who is it who profits by it?
+There is the French ambassador, there is the Russian, there is whoever
+might sell it to either of these, and there is Lord Holdhurst."
+
+"Lord Holdhurst!"
+
+"Well, it is just conceivable that a statesman might find himself in
+a position where he was not sorry to have such a document accidentally
+destroyed."
+
+"Not a statesman with the honorable record of Lord Holdhurst?"
+
+"It is a possibility and we cannot afford to disregard it. We shall see
+the noble lord to-day and find out if he can tell us anything. Meanwhile
+I have already set inquiries on foot."
+
+"Already?"
+
+"Yes, I sent wires from Woking station to every evening paper in London.
+This advertisement will appear in each of them."
+
+He handed over a sheet torn from a note-book. On it was scribbled in
+pencil: "L10 reward. The number of the cab which dropped a fare at or
+about the door of the Foreign Office in Charles Street at quarter to ten
+in the evening of May 23d. Apply 221 B, Baker Street."
+
+"You are confident that the thief came in a cab?"
+
+"If not, there is no harm done. But if Mr. Phelps is correct in stating
+that there is no hiding-place either in the room or the corridors, then
+the person must have come from outside. If he came from outside on so
+wet a night, and yet left no trace of damp upon the linoleum, which
+was examined within a few minutes of his passing, then it is exceeding
+probable that he came in a cab. Yes, I think that we may safely deduce a
+cab."
+
+"It sounds plausible."
+
+"That is one of the clues of which I spoke. It may lead us to something.
+And then, of course, there is the bell--which is the most distinctive
+feature of the case. Why should the bell ring? Was it the thief who did
+it out of bravado? Or was it some one who was with the thief who did it
+in order to prevent the crime? Or was it an accident? Or was it--?" He
+sank back into the state of intense and silent thought from which he
+had emerged; but it seemed to me, accustomed as I was to his every mood,
+that some new possibility had dawned suddenly upon him.
+
+It was twenty past three when we reached our terminus, and after a hasty
+luncheon at the buffet we pushed on at once to Scotland Yard. Holmes
+had already wired to Forbes, and we found him waiting to receive us--a
+small, foxy man with a sharp but by no means amiable expression. He
+was decidedly frigid in his manner to us, especially when he heard the
+errand upon which we had come.
+
+"I've heard of your methods before now, Mr. Holmes," said he, tartly.
+"You are ready enough to use all the information that the police can lay
+at your disposal, and then you try to finish the case yourself and bring
+discredit on them."
+
+"On the contrary," said Holmes, "out of my last fifty-three cases my
+name has only appeared in four, and the police have had all the credit
+in forty-nine. I don't blame you for not knowing this, for you are young
+and inexperienced, but if you wish to get on in your new duties you will
+work with me and not against me."
+
+"I'd be very glad of a hint or two," said the detective, changing his
+manner. "I've certainly had no credit from the case so far."
+
+"What steps have you taken?"
+
+"Tangey, the commissionnaire, has been shadowed. He left the Guards with
+a good character and we can find nothing against him. His wife is a bad
+lot, though. I fancy she knows more about this than appears."
+
+"Have you shadowed her?"
+
+"We have set one of our women on to her. Mrs. Tangey drinks, and our
+woman has been with her twice when she was well on, but she could get
+nothing out of her."
+
+"I understand that they have had brokers in the house?"
+
+"Yes, but they were paid off."
+
+"Where did the money come from?"
+
+"That was all right. His pension was due. They have not shown any sign
+of being in funds."
+
+"What explanation did she give of having answered the bell when Mr.
+Phelps rang for the coffee?"
+
+"She said that he husband was very tired and she wished to relieve him."
+
+"Well, certainly that would agree with his being found a little later
+asleep in his chair. There is nothing against them then but the woman's
+character. Did you ask her why she hurried away that night? Her haste
+attracted the attention of the police constable."
+
+"She was later than usual and wanted to get home."
+
+"Did you point out to her that you and Mr. Phelps, who started at least
+twenty minutes after her, got home before her?"
+
+"She explains that by the difference between a 'bus and a hansom."
+
+"Did she make it clear why, on reaching her house, she ran into the back
+kitchen?"
+
+"Because she had the money there with which to pay off the brokers."
+
+"She has at least an answer for everything. Did you ask her whether in
+leaving she met any one or saw any one loitering about Charles Street?"
+
+"She saw no one but the constable."
+
+"Well, you seem to have cross-examined her pretty thoroughly. What else
+have you done?"
+
+"The clerk Gorot has been shadowed all these nine weeks, but without
+result. We can show nothing against him."
+
+"Anything else?"
+
+"Well, we have nothing else to go upon--no evidence of any kind."
+
+"Have you formed a theory about how that bell rang?"
+
+"Well, I must confess that it beats me. It was a cool hand, whoever it
+was, to go and give the alarm like that."
+
+"Yes, it was queer thing to do. Many thanks to you for what you have
+told me. If I can put the man into your hands you shall hear from me.
+Come along, Watson."
+
+"Where are we going to now?" I asked, as we left the office.
+
+"We are now going to interview Lord Holdhurst, the cabinet minister and
+future premier of England."
+
+We were fortunate in finding that Lord Holdhurst was still in his
+chambers in Downing Street, and on Holmes sending in his card we were
+instantly shown up. The statesman received us with that old-fashioned
+courtesy for which he is remarkable, and seated us on the two luxuriant
+lounges on either side of the fireplace. Standing on the rug between us,
+with his slight, tall figure, his sharp features, thoughtful face, and
+curling hair prematurely tinged with gray, he seemed to represent that
+not too common type, a nobleman who is in truth noble.
+
+"Your name is very familiar to me, Mr. Holmes," said he, smiling. "And,
+of course, I cannot pretend to be ignorant of the object of your visit.
+There has only been one occurrence in these offices which could call for
+your attention. In whose interest are you acting, may I ask?"
+
+"In that of Mr. Percy Phelps," answered Holmes.
+
+"Ah, my unfortunate nephew! You can understand that our kinship makes
+it the more impossible for me to screen him in any way. I fear that the
+incident must have a very prejudicial effect upon his career."
+
+"But if the document is found?"
+
+"Ah, that, of course, would be different."
+
+"I had one or two questions which I wished to ask you, Lord Holdhurst."
+
+"I shall be happy to give you any information in my power."
+
+"Was it in this room that you gave your instructions as to the copying
+of the document?"
+
+"It was."
+
+"Then you could hardly have been overheard?"
+
+"It is out of the question."
+
+"Did you ever mention to any one that it was your intention to give any
+one the treaty to be copied?"
+
+"Never."
+
+"You are certain of that?"
+
+"Absolutely."
+
+"Well, since you never said so, and Mr. Phelps never said so, and nobody
+else knew anything of the matter, then the thief's presence in the room
+was purely accidental. He saw his chance and he took it."
+
+The statesman smiled. "You take me out of my province there," said he.
+
+Holmes considered for a moment. "There is another very important
+point which I wish to discuss with you," said he. "You feared, as I
+understand, that very grave results might follow from the details of
+this treaty becoming known."
+
+A shadow passed over the expressive face of the statesman. "Very grave
+results indeed."
+
+"Any have they occurred?"
+
+"Not yet."
+
+"If the treaty had reached, let us say, the French or Russian Foreign
+Office, you would expect to hear of it?"
+
+"I should," said Lord Holdhurst, with a wry face.
+
+"Since nearly ten weeks have elapsed, then, and nothing has been heard,
+it is not unfair to suppose that for some reason the treaty has not
+reached them."
+
+Lord Holdhurst shrugged his shoulders.
+
+"We can hardly suppose, Mr. Holmes, that the thief took the treaty in
+order to frame it and hang it up."
+
+"Perhaps he is waiting for a better price."
+
+"If he waits a little longer he will get no price at all. The treaty
+will cease to be secret in a few months."
+
+"That is most important," said Holmes. "Of course, it is a possible
+supposition that the thief has had a sudden illness--"
+
+"An attack of brain-fever, for example?" asked the statesman, flashing a
+swift glance at him.
+
+"I did not say so," said Holmes, imperturbably. "And now, Lord
+Holdhurst, we have already taken up too much of your valuable time, and
+we shall wish you good-day."
+
+"Every success to your investigation, be the criminal who it may,"
+answered the nobleman, as he bowed us out the door.
+
+"He's a fine fellow," said Holmes, as we came out into Whitehall. "But
+he has a struggle to keep up his position. He is far from rich and has
+many calls. You noticed, of course, that his boots had been resoled.
+Now, Watson, I won't detain you from your legitimate work any longer.
+I shall do nothing more to-day, unless I have an answer to my cab
+advertisement. But I should be extremely obliged to you if you would
+come down with me to Woking to-morrow, by the same train which we took
+yesterday."
+
+
+I met him accordingly next morning and we traveled down to Woking
+together. He had had no answer to his advertisement, he said, and no
+fresh light had been thrown upon the case. He had, when he so willed
+it, the utter immobility of countenance of a red Indian, and I could
+not gather from his appearance whether he was satisfied or not with
+the position of the case. His conversation, I remember, was about the
+Bertillon system of measurements, and he expressed his enthusiastic
+admiration of the French savant.
+
+We found our client still under the charge of his devoted nurse, but
+looking considerably better than before. He rose from the sofa and
+greeted us without difficulty when we entered.
+
+"Any news?" he asked, eagerly.
+
+"My report, as I expected, is a negative one," said Holmes. "I have seen
+Forbes, and I have seen your uncle, and I have set one or two trains of
+inquiry upon foot which may lead to something."
+
+"You have not lost heart, then?"
+
+"By no means."
+
+"God bless you for saying that!" cried Miss Harrison. "If we keep our
+courage and our patience the truth must come out."
+
+"We have more to tell you than you have for us," said Phelps, reseating
+himself upon the couch.
+
+"I hoped you might have something."
+
+"Yes, we have had an adventure during the night, and one which might
+have proved to be a serious one." His expression grew very grave as he
+spoke, and a look of something akin to fear sprang up in his eyes. "Do
+you know," said he, "that I begin to believe that I am the unconscious
+centre of some monstrous conspiracy, and that my life is aimed at as
+well as my honor?"
+
+"Ah!" cried Holmes.
+
+"It sounds incredible, for I have not, as far as I know, an enemy in
+the world. Yet from last night's experience I can come to no other
+conclusion."
+
+"Pray let me hear it."
+
+"You must know that last night was the very first night that I have ever
+slept without a nurse in the room. I was so much better that I thought
+I could dispense with one. I had a night-light burning, however. Well,
+about two in the morning I had sunk into a light sleep when I was
+suddenly aroused by a slight noise. It was like the sound which a mouse
+makes when it is gnawing a plank, and I lay listening to it for some
+time under the impression that it must come from that cause. Then it
+grew louder, and suddenly there came from the window a sharp metallic
+snick. I sat up in amazement. There could be no doubt what the sounds
+were now. The first ones had been caused by some one forcing an
+instrument through the slit between the sashes, and the second by the
+catch being pressed back.
+
+"There was a pause then for about ten minutes, as if the person were
+waiting to see whether the noise had awakened me. Then I heard a gentle
+creaking as the window was very slowly opened. I could stand it no
+longer, for my nerves are not what they used to be. I sprang out of bed
+and flung open the shutters. A man was crouching at the window. I could
+see little of him, for he was gone like a flash. He was wrapped in some
+sort of cloak which came across the lower part of his face. One thing
+only I am sure of, and that is that he had some weapon in his hand. It
+looked to me like a long knife. I distinctly saw the gleam of it as he
+turned to run."
+
+"This is most interesting," said Holmes. "Pray what did you do then?"
+
+"I should have followed him through the open window if I had been
+stronger. As it was, I rang the bell and roused the house. It took me
+some little time, for the bell rings in the kitchen and the servants all
+sleep upstairs. I shouted, however, and that brought Joseph down, and he
+roused the others. Joseph and the groom found marks on the bed outside
+the window, but the weather has been so dry lately that they found it
+hopeless to follow the trail across the grass. There's a place, however,
+on the wooden fence which skirts the road which shows signs, they tell
+me, as if some one had got over, and had snapped the top of the rail in
+doing so. I have said nothing to the local police yet, for I thought I
+had best have your opinion first."
+
+This tale of our client's appeared to have an extraordinary effect upon
+Sherlock Holmes. He rose from his chair and paced about the room in
+uncontrollable excitement.
+
+"Misfortunes never come single," said Phelps, smiling, though it was
+evident that his adventure had somewhat shaken him.
+
+"You have certainly had your share," said Holmes. "Do you think you
+could walk round the house with me?"
+
+"Oh, yes, I should like a little sunshine. Joseph will come, too."
+
+"And I also," said Miss Harrison.
+
+"I am afraid not," said Holmes, shaking his head. "I think I must ask
+you to remain sitting exactly where you are."
+
+The young lady resumed her seat with an air of displeasure. Her brother,
+however, had joined us and we set off all four together. We passed round
+the lawn to the outside of the young diplomatist's window. There were,
+as he had said, marks upon the bed, but they were hopelessly blurred and
+vague. Holmes stopped over them for an instant, and then rose shrugging
+his shoulders.
+
+"I don't think any one could make much of this," said he. "Let us go
+round the house and see why this particular room was chosen by the
+burglar. I should have thought those larger windows of the drawing-room
+and dining-room would have had more attractions for him."
+
+"They are more visible from the road," suggested Mr. Joseph Harrison.
+
+"Ah, yes, of course. There is a door here which he might have attempted.
+What is it for?"
+
+"It is the side entrance for trades-people. Of course it is locked at
+night."
+
+"Have you ever had an alarm like this before?"
+
+"Never," said our client.
+
+"Do you keep plate in the house, or anything to attract burglars?"
+
+"Nothing of value."
+
+Holmes strolled round the house with his hands in his pockets and a
+negligent air which was unusual with him.
+
+"By the way," said he to Joseph Harrison, "you found some place, I
+understand, where the fellow scaled the fence. Let us have a look at
+that!"
+
+The plump young man led us to a spot where the top of one of the wooden
+rails had been cracked. A small fragment of the wood was hanging down.
+Holmes pulled it off and examined it critically.
+
+"Do you think that was done last night? It looks rather old, does it
+not?"
+
+"Well, possibly so."
+
+"There are no marks of any one jumping down upon the other side. No, I
+fancy we shall get no help here. Let us go back to the bedroom and talk
+the matter over."
+
+Percy Phelps was walking very slowly, leaning upon the arm of his future
+brother-in-law. Holmes walked swiftly across the lawn, and we were at
+the open window of the bedroom long before the others came up.
+
+"Miss Harrison," said Holmes, speaking with the utmost intensity of
+manner, "you must stay where you are all day. Let nothing prevent you
+from staying where you are all day. It is of the utmost importance."
+
+"Certainly, if you wish it, Mr. Holmes," said the girl in astonishment.
+
+"When you go to bed lock the door of this room on the outside and keep
+the key. Promise to do this."
+
+"But Percy?"
+
+"He will come to London with us."
+
+"And am I to remain here?"
+
+"It is for his sake. You can serve him. Quick! Promise!"
+
+She gave a quick nod of assent just as the other two came up.
+
+"Why do you sit moping there, Annie?" cried her brother. "Come out into
+the sunshine!"
+
+"No, thank you, Joseph. I have a slight headache and this room is
+deliciously cool and soothing."
+
+"What do you propose now, Mr. Holmes?" asked our client.
+
+"Well, in investigating this minor affair we must not lose sight of our
+main inquiry. It would be a very great help to me if you would come up
+to London with us."
+
+"At once?"
+
+"Well, as soon as you conveniently can. Say in an hour."
+
+"I feel quite strong enough, if I can really be of any help."
+
+"The greatest possible."
+
+"Perhaps you would like me to stay there to-night?"
+
+"I was just going to propose it."
+
+"Then, if my friend of the night comes to revisit me, he will find the
+bird flown. We are all in your hands, Mr. Holmes, and you must tell us
+exactly what you would like done. Perhaps you would prefer that Joseph
+came with us so as to look after me?"
+
+"Oh, no; my friend Watson is a medical man, you know, and he'll look
+after you. We'll have our lunch here, if you will permit us, and then we
+shall all three set off for town together."
+
+It was arranged as he suggested, though Miss Harrison excused herself
+from leaving the bedroom, in accordance with Holmes's suggestion. What
+the object of my friend's manoeuvres was I could not conceive, unless it
+were to keep the lady away from Phelps, who, rejoiced by his
+returning health and by the prospect of action, lunched with us in the
+dining-room. Holmes had a still more startling surprise for us, however,
+for, after accompanying us down to the station and seeing us into
+our carriage, he calmly announced that he had no intention of leaving
+Woking.
+
+"There are one or two small points which I should desire to clear up
+before I go," said he. "Your absence, Mr. Phelps, will in some ways
+rather assist me. Watson, when you reach London you would oblige me by
+driving at once to Baker Street with our friend here, and remaining
+with him until I see you again. It is fortunate that you are old
+school-fellows, as you must have much to talk over. Mr. Phelps can
+have the spare bedroom to-night, and I will be with you in time for
+breakfast, for there is a train which will take me into Waterloo at
+eight."
+
+"But how about our investigation in London?" asked Phelps, ruefully.
+
+"We can do that to-morrow. I think that just at present I can be of more
+immediate use here."
+
+"You might tell them at Briarbrae that I hope to be back to-morrow
+night," cried Phelps, as we began to move from the platform.
+
+"I hardly expect to go back to Briarbrae," answered Holmes, and waved
+his hand to us cheerily as we shot out from the station.
+
+Phelps and I talked it over on our journey, but neither of us could
+devise a satisfactory reason for this new development.
+
+"I suppose he wants to find out some clue as to the burglary last night,
+if a burglar it was. For myself, I don't believe it was an ordinary
+thief."
+
+"What is your own idea, then?"
+
+"Upon my word, you may put it down to my weak nerves or not, but I
+believe there is some deep political intrigue going on around me, and
+that for some reason that passes my understanding my life is aimed at
+by the conspirators. It sounds high-flown and absurd, but consider the
+facts! Why should a thief try to break in at a bedroom window, where
+there could be no hope of any plunder, and why should he come with a
+long knife in his hand?"
+
+"You are sure it was not a house-breaker's jimmy?"
+
+"Oh, no, it was a knife. I saw the flash of the blade quite distinctly."
+
+"But why on earth should you be pursued with such animosity?"
+
+"Ah, that is the question."
+
+"Well, if Holmes takes the same view, that would account for his action,
+would it not? Presuming that your theory is correct, if he can lay his
+hands upon the man who threatened you last night he will have gone a
+long way towards finding who took the naval treaty. It is absurd to
+suppose that you have two enemies, one of whom robs you, while the other
+threatens your life."
+
+"But Holmes said that he was not going to Briarbrae."
+
+"I have known him for some time," said I, "but I never knew him do
+anything yet without a very good reason," and with that our conversation
+drifted off on to other topics.
+
+But it was a weary day for me. Phelps was still weak after his long
+illness, and his misfortune made him querulous and nervous. In vain
+I endeavored to interest him in Afghanistan, in India, in social
+questions, in anything which might take his mind out of the groove.
+He would always come back to his lost treaty, wondering, guessing,
+speculating, as to what Holmes was doing, what steps Lord Holdhurst was
+taking, what news we should have in the morning. As the evening wore on
+his excitement became quite painful.
+
+"You have implicit faith in Holmes?" he asked.
+
+"I have seen him do some remarkable things."
+
+"But he never brought light into anything quite so dark as this?"
+
+"Oh, yes; I have known him solve questions which presented fewer clues
+than yours."
+
+"But not where such large interests are at stake?"
+
+"I don't know that. To my certain knowledge he has acted on behalf of
+three of the reigning houses of Europe in very vital matters."
+
+"But you know him well, Watson. He is such an inscrutable fellow that I
+never quite know what to make of him. Do you think he is hopeful? Do you
+think he expects to make a success of it?"
+
+"He has said nothing."
+
+"That is a bad sign."
+
+"On the contrary, I have noticed that when he is off the trail he
+generally says so. It is when he is on a scent and is not quite
+absolutely sure yet that it is the right one that he is most taciturn.
+Now, my dear fellow, we can't help matters by making ourselves nervous
+about them, so let me implore you to go to bed and so be fresh for
+whatever may await us to-morrow."
+
+I was able at last to persuade my companion to take my advice, though I
+knew from his excited manner that there was not much hope of sleep for
+him. Indeed, his mood was infectious, for I lay tossing half the night
+myself, brooding over this strange problem, and inventing a hundred
+theories, each of which was more impossible than the last. Why had
+Holmes remained at Woking? Why had he asked Miss Harrison to remain
+in the sick-room all day? Why had he been so careful not to inform the
+people at Briarbrae that he intended to remain near them? I cudgelled
+my brains until I fell asleep in the endeavor to find some explanation
+which would cover all these facts.
+
+It was seven o'clock when I awoke, and I set off at once for Phelps's
+room, to find him haggard and spent after a sleepless night. His first
+question was whether Holmes had arrived yet.
+
+"He'll be here when he promised," said I, "and not an instant sooner or
+later."
+
+And my words were true, for shortly after eight a hansom dashed up to
+the door and our friend got out of it. Standing in the window we saw
+that his left hand was swathed in a bandage and that his face was very
+grim and pale. He entered the house, but it was some little time before
+he came upstairs.
+
+"He looks like a beaten man," cried Phelps.
+
+I was forced to confess that he was right. "After all," said I, "the
+clue of the matter lies probably here in town."
+
+Phelps gave a groan.
+
+"I don't know how it is," said he, "but I had hoped for so much from his
+return. But surely his hand was not tied up like that yesterday. What
+can be the matter?"
+
+"You are not wounded, Holmes?" I asked, as my friend entered the room.
+
+"Tut, it is only a scratch through my own clumsiness," he answered,
+nodding his good-mornings to us. "This case of yours, Mr. Phelps, is
+certainly one of the darkest which I have ever investigated."
+
+"I feared that you would find it beyond you."
+
+"It has been a most remarkable experience."
+
+"That bandage tells of adventures," said I. "Won't you tell us what has
+happened?"
+
+"After breakfast, my dear Watson. Remember that I have breathed thirty
+miles of Surrey air this morning. I suppose that there has been no
+answer from my cabman advertisement? Well, well, we cannot expect to
+score every time."
+
+The table was all laid, and just as I was about to ring Mrs. Hudson
+entered with the tea and coffee. A few minutes later she brought in
+three covers, and we all drew up to the table, Holmes ravenous, I
+curious, and Phelps in the gloomiest state of depression.
+
+"Mrs. Hudson has risen to the occasion," said Holmes, uncovering a dish
+of curried chicken. "Her cuisine is a little limited, but she has
+as good an idea of breakfast as a Scotch-woman. What have you here,
+Watson?"
+
+"Ham and eggs," I answered.
+
+"Good! What are you going to take, Mr. Phelps--curried fowl or eggs, or
+will you help yourself?"
+
+"Thank you. I can eat nothing," said Phelps.
+
+"Oh, come! Try the dish before you."
+
+"Thank you, I would really rather not."
+
+"Well, then," said Holmes, with a mischievous twinkle, "I suppose that
+you have no objection to helping me?"
+
+Phelps raised the cover, and as he did so he uttered a scream, and sat
+there staring with a face as white as the plate upon which he looked.
+Across the centre of it was lying a little cylinder of blue-gray paper.
+He caught it up, devoured it with his eyes, and then danced madly about
+the room, pressing it to his bosom and shrieking out in his delight.
+Then he fell back into an arm-chair so limp and exhausted with his own
+emotions that we had to pour brandy down his throat to keep him from
+fainting.
+
+"There! there!" said Holmes, soothing, patting him upon the shoulder.
+"It was too bad to spring it on you like this, but Watson here will tell
+you that I never can resist a touch of the dramatic."
+
+Phelps seized his hand and kissed it. "God bless you!" he cried. "You
+have saved my honor."
+
+"Well, my own was at stake, you know," said Holmes. "I assure you it is
+just as hateful to me to fail in a case as it can be to you to blunder
+over a commission."
+
+Phelps thrust away the precious document into the innermost pocket of
+his coat.
+
+"I have not the heart to interrupt your breakfast any further, and yet I
+am dying to know how you got it and where it was."
+
+Sherlock Holmes swallowed a cup of coffee, and turned his attention to
+the ham and eggs. Then he rose, lit his pipe, and settled himself down
+into his chair.
+
+"I'll tell you what I did first, and how I came to do it afterwards,"
+said he. "After leaving you at the station I went for a charming walk
+through some admirable Surrey scenery to a pretty little village called
+Ripley, where I had my tea at an inn, and took the precaution of filling
+my flask and of putting a paper of sandwiches in my pocket. There I
+remained until evening, when I set off for Woking again, and found
+myself in the high-road outside Briarbrae just after sunset.
+
+"Well, I waited until the road was clear--it is never a very frequented
+one at any time, I fancy--and then I clambered over the fence into the
+grounds."
+
+"Surely the gate was open!" ejaculated Phelps.
+
+"Yes, but I have a peculiar taste in these matters. I chose the place
+where the three fir-trees stand, and behind their screen I got over
+without the least chance of any one in the house being able to see me.
+I crouched down among the bushes on the other side, and crawled from one
+to the other--witness the disreputable state of my trouser knees--until
+I had reached the clump of rhododendrons just opposite to your bedroom
+window. There I squatted down and awaited developments.
+
+"The blind was not down in your room, and I could see Miss Harrison
+sitting there reading by the table. It was quarter-past ten when she
+closed her book, fastened the shutters, and retired.
+
+"I heard her shut the door, and felt quite sure that she had turned the
+key in the lock."
+
+"The key!" ejaculated Phelps.
+
+"Yes; I had given Miss Harrison instructions to lock the door on the
+outside and take the key with her when she went to bed. She carried out
+every one of my injunctions to the letter, and certainly without her
+cooperation you would not have that paper in you coat-pocket. She
+departed then and the lights went out, and I was left squatting in the
+rhododendron-bush.
+
+"The night was fine, but still it was a very weary vigil. Of course it
+has the sort of excitement about it that the sportsman feels when he
+lies beside the water-course and waits for the big game. It was very
+long, though--almost as long, Watson, as when you and I waited in that
+deadly room when we looked into the little problem of the Speckled Band.
+There was a church-clock down at Woking which struck the quarters, and I
+thought more than once that it had stopped. At last however about two
+in the morning, I suddenly heard the gentle sound of a bolt being pushed
+back and the creaking of a key. A moment later the servants' door was
+opened, and Mr. Joseph Harrison stepped out into the moonlight."
+
+"Joseph!" ejaculated Phelps.
+
+"He was bare-headed, but he had a black coat thrown over his shoulder so
+that he could conceal his face in an instant if there were any alarm. He
+walked on tiptoe under the shadow of the wall, and when he reached the
+window he worked a long-bladed knife through the sash and pushed back
+the catch. Then he flung open the window, and putting his knife through
+the crack in the shutters, he thrust the bar up and swung them open.
+
+"From where I lay I had a perfect view of the inside of the room and of
+every one of his movements. He lit the two candles which stood upon the
+mantelpiece, and then he proceeded to turn back the corner of the carpet
+in the neighborhood of the door. Presently he stopped and picked out a
+square piece of board, such as is usually left to enable plumbers to get
+at the joints of the gas-pipes. This one covered, as a matter of
+fact, the T joint which gives off the pipe which supplies the kitchen
+underneath. Out of this hiding-place he drew that little cylinder
+of paper, pushed down the board, rearranged the carpet, blew out the
+candles, and walked straight into my arms as I stood waiting for him
+outside the window.
+
+"Well, he has rather more viciousness than I gave him credit for, has
+Master Joseph. He flew at me with his knife, and I had to grasp him
+twice, and got a cut over the knuckles, before I had the upper hand of
+him. He looked murder out of the only eye he could see with when we had
+finished, but he listened to reason and gave up the papers. Having
+got them I let my man go, but I wired full particulars to Forbes this
+morning. If he is quick enough to catch his bird, well and good. But
+if, as I shrewdly suspect, he finds the nest empty before he gets there,
+why, all the better for the government. I fancy that Lord Holdhurst for
+one, and Mr. Percy Phelps for another, would very much rather that the
+affair never got as far as a police-court.
+
+"My God!" gasped our client. "Do you tell me that during these long ten
+weeks of agony the stolen papers were within the very room with me all
+the time?"
+
+"So it was."
+
+"And Joseph! Joseph a villain and a thief!"
+
+"Hum! I am afraid Joseph's character is a rather deeper and more
+dangerous one than one might judge from his appearance. From what I
+have heard from him this morning, I gather that he has lost heavily in
+dabbling with stocks, and that he is ready to do anything on earth to
+better his fortunes. Being an absolutely selfish man, when a chance
+presented itself he did not allow either his sister's happiness or your
+reputation to hold his hand."
+
+Percy Phelps sank back in his chair. "My head whirls," said he. "Your
+words have dazed me."
+
+"The principal difficulty in your case," remarked Holmes, in his
+didactic fashion, "lay in the fact of there being too much evidence.
+What was vital was overlaid and hidden by what was irrelevant. Of all
+the facts which were presented to us we had to pick just those which we
+deemed to be essential, and then piece them together in their order, so
+as to reconstruct this very remarkable chain of events. I had already
+begun to suspect Joseph, from the fact that you had intended to travel
+home with him that night, and that therefore it was a likely enough
+thing that he should call for you, knowing the Foreign Office well, upon
+his way. When I heard that some one had been so anxious to get into the
+bedroom, in which no one but Joseph could have concealed anything--you
+told us in your narrative how you had turned Joseph out when you arrived
+with the doctor--my suspicions all changed to certainties, especially as
+the attempt was made on the first night upon which the nurse was absent,
+showing that the intruder was well acquainted with the ways of the
+house."
+
+"How blind I have been!"
+
+"The facts of the case, as far as I have worked them out, are these:
+this Joseph Harrison entered the office through the Charles Street door,
+and knowing his way he walked straight into your room the instant after
+you left it. Finding no one there he promptly rang the bell, and at
+the instant that he did so his eyes caught the paper upon the table.
+A glance showed him that chance had put in his way a State document of
+immense value, and in an instant he had thrust it into his pocket and
+was gone. A few minutes elapsed, as you remember, before the sleepy
+commissionnaire drew your attention to the bell, and those were just
+enough to give the thief time to make his escape.
+
+"He made his way to Woking by the first train, and having examined his
+booty and assured himself that it really was of immense value, he
+had concealed it in what he thought was a very safe place, with the
+intention of taking it out again in a day or two, and carrying it to the
+French embassy, or wherever he thought that a long price was to be
+had. Then came your sudden return. He, without a moment's warning, was
+bundled out of his room, and from that time onward there were always at
+least two of you there to prevent him from regaining his treasure. The
+situation to him must have been a maddening one. But at last he thought
+he saw his chance. He tried to steal in, but was baffled by your
+wakefulness. You remember that you did not take your usual draught that
+night."
+
+"I remember."
+
+"I fancy that he had taken steps to make that draught efficacious,
+and that he quite relied upon your being unconscious. Of course, I
+understood that he would repeat the attempt whenever it could be done
+with safety. Your leaving the room gave him the chance he wanted. I kept
+Miss Harrison in it all day so that he might not anticipate us. Then,
+having given him the idea that the coast was clear, I kept guard as
+I have described. I already knew that the papers were probably in the
+room, but I had no desire to rip up all the planking and skirting in
+search of them. I let him take them, therefore, from the hiding-place,
+and so saved myself an infinity of trouble. Is there any other point
+which I can make clear?"
+
+"Why did he try the window on the first occasion," I asked, "when he
+might have entered by the door?"
+
+"In reaching the door he would have to pass seven bedrooms. On the other
+hand, he could get out on to the lawn with ease. Anything else?"
+
+"You do not think," asked Phelps, "that he had any murderous intention?
+The knife was only meant as a tool."
+
+"It may be so," answered Holmes, shrugging his shoulders. "I can only
+say for certain that Mr. Joseph Harrison is a gentleman to whose mercy I
+should be extremely unwilling to trust."
+
+
+
+
+Adventure XI. The Final Problem
+
+
+It is with a heavy heart that I take up my pen to write these the last
+words in which I shall ever record the singular gifts by which my friend
+Mr. Sherlock Holmes was distinguished. In an incoherent and, as I deeply
+feel, an entirely inadequate fashion, I have endeavored to give some
+account of my strange experiences in his company from the chance which
+first brought us together at the period of the "Study in Scarlet," up
+to the time of his interference in the matter of the "Naval Treaty"--an
+interference which had the unquestionable effect of preventing a serious
+international complication. It was my intention to have stopped there,
+and to have said nothing of that event which has created a void in my
+life which the lapse of two years has done little to fill. My hand
+has been forced, however, by the recent letters in which Colonel James
+Moriarty defends the memory of his brother, and I have no choice but to
+lay the facts before the public exactly as they occurred. I alone know
+the absolute truth of the matter, and I am satisfied that the time has
+come when no good purpose is to be served by its suppression. As far as
+I know, there have been only three accounts in the public press: that
+in the Journal de Geneve on May 6th, 1891, the Reuter's despatch in the
+English papers on May 7th, and finally the recent letter to which I have
+alluded. Of these the first and second were extremely condensed, while
+the last is, as I shall now show, an absolute perversion of the facts.
+It lies with me to tell for the first time what really took place
+between Professor Moriarty and Mr. Sherlock Holmes.
+
+It may be remembered that after my marriage, and my subsequent start in
+private practice, the very intimate relations which had existed between
+Holmes and myself became to some extent modified. He still came to me
+from time to time when he desired a companion in his investigation, but
+these occasions grew more and more seldom, until I find that in the year
+1890 there were only three cases of which I retain any record. During
+the winter of that year and the early spring of 1891, I saw in the
+papers that he had been engaged by the French government upon a matter
+of supreme importance, and I received two notes from Holmes, dated from
+Narbonne and from Nimes, from which I gathered that his stay in France
+was likely to be a long one. It was with some surprise, therefore, that
+I saw him walk into my consulting-room upon the evening of April 24th.
+It struck me that he was looking even paler and thinner than usual.
+
+"Yes, I have been using myself up rather too freely," he remarked, in
+answer to my look rather than to my words; "I have been a little pressed
+of late. Have you any objection to my closing your shutters?"
+
+The only light in the room came from the lamp upon the table at which I
+had been reading. Holmes edged his way round the wall and flinging the
+shutters together, he bolted them securely.
+
+"You are afraid of something?" I asked.
+
+"Well, I am."
+
+"Of what?"
+
+"Of air-guns."
+
+"My dear Holmes, what do you mean?"
+
+"I think that you know me well enough, Watson, to understand that I am
+by no means a nervous man. At the same time, it is stupidity rather than
+courage to refuse to recognize danger when it is close upon you. Might
+I trouble you for a match?" He drew in the smoke of his cigarette as if
+the soothing influence was grateful to him.
+
+"I must apologize for calling so late," said he, "and I must further beg
+you to be so unconventional as to allow me to leave your house presently
+by scrambling over your back garden wall."
+
+"But what does it all mean?" I asked.
+
+He held out his hand, and I saw in the light of the lamp that two of his
+knuckles were burst and bleeding.
+
+"It is not an airy nothing, you see," said he, smiling. "On the
+contrary, it is solid enough for a man to break his hand over. Is Mrs.
+Watson in?"
+
+"She is away upon a visit."
+
+"Indeed! You are alone?"
+
+"Quite."
+
+"Then it makes it the easier for me to propose that you should come away
+with me for a week to the Continent."
+
+"Where?"
+
+"Oh, anywhere. It's all the same to me."
+
+There was something very strange in all this. It was not Holmes's nature
+to take an aimless holiday, and something about his pale, worn face told
+me that his nerves were at their highest tension. He saw the question in
+my eyes, and, putting his finger-tips together and his elbows upon his
+knees, he explained the situation.
+
+"You have probably never heard of Professor Moriarty?" said he.
+
+"Never."
+
+"Aye, there's the genius and the wonder of the thing!" he cried. "The
+man pervades London, and no one has heard of him. That's what puts
+him on a pinnacle in the records of crime. I tell you, Watson, in all
+seriousness, that if I could beat that man, if I could free society
+of him, I should feel that my own career had reached its summit, and
+I should be prepared to turn to some more placid line in life. Between
+ourselves, the recent cases in which I have been of assistance to the
+royal family of Scandinavia, and to the French republic, have left me in
+such a position that I could continue to live in the quiet fashion
+which is most congenial to me, and to concentrate my attention upon my
+chemical researches. But I could not rest, Watson, I could not sit quiet
+in my chair, if I thought that such a man as Professor Moriarty were
+walking the streets of London unchallenged."
+
+"What has he done, then?"
+
+"His career has been an extraordinary one. He is a man of good birth and
+excellent education, endowed by nature with a phenomenal mathematical
+faculty. At the age of twenty-one he wrote a treatise upon the Binomial
+Theorem, which has had a European vogue. On the strength of it he won
+the Mathematical Chair at one of our smaller universities, and had, to
+all appearances, a most brilliant career before him. But the man had
+hereditary tendencies of the most diabolical kind. A criminal strain
+ran in his blood, which, instead of being modified, was increased and
+rendered infinitely more dangerous by his extraordinary mental powers.
+Dark rumors gathered round him in the university town, and eventually he
+was compelled to resign his chair and to come down to London, where he
+set up as an army coach. So much is known to the world, but what I am
+telling you now is what I have myself discovered.
+
+"As you are aware, Watson, there is no one who knows the higher criminal
+world of London so well as I do. For years past I have continually been
+conscious of some power behind the malefactor, some deep organizing
+power which forever stands in the way of the law, and throws its shield
+over the wrong-doer. Again and again in cases of the most varying
+sorts--forgery cases, robberies, murders--I have felt the presence of
+this force, and I have deduced its action in many of those undiscovered
+crimes in which I have not been personally consulted. For years I have
+endeavored to break through the veil which shrouded it, and at last
+the time came when I seized my thread and followed it, until it led
+me, after a thousand cunning windings, to ex-Professor Moriarty of
+mathematical celebrity.
+
+"He is the Napoleon of crime, Watson. He is the organizer of half that
+is evil and of nearly all that is undetected in this great city. He is a
+genius, a philosopher, an abstract thinker. He has a brain of the first
+order. He sits motionless, like a spider in the center of its web, but
+that web has a thousand radiations, and he knows well every quiver of
+each of them. He does little himself. He only plans. But his agents are
+numerous and splendidly organized. Is there a crime to be done, a
+paper to be abstracted, we will say, a house to be rifled, a man to be
+removed--the word is passed to the Professor, the matter is organized
+and carried out. The agent may be caught. In that case money is found
+for his bail or his defence. But the central power which uses the agent
+is never caught--never so much as suspected. This was the organization
+which I deduced, Watson, and which I devoted my whole energy to exposing
+and breaking up.
+
+"But the Professor was fenced round with safeguards so cunningly devised
+that, do what I would, it seemed impossible to get evidence which would
+convict in a court of law. You know my powers, my dear Watson, and yet
+at the end of three months I was forced to confess that I had at last
+met an antagonist who was my intellectual equal. My horror at his crimes
+was lost in my admiration at his skill. But at last he made a trip--only
+a little, little trip--but it was more than he could afford when I was
+so close upon him. I had my chance, and, starting from that point, I
+have woven my net round him until now it is all ready to close. In three
+days--that is to say, on Monday next--matters will be ripe, and the
+Professor, with all the principal members of his gang, will be in the
+hands of the police. Then will come the greatest criminal trial of the
+century, the clearing up of over forty mysteries, and the rope for all
+of them; but if we move at all prematurely, you understand, they may
+slip out of our hands even at the last moment.
+
+"Now, if I could have done this without the knowledge of Professor
+Moriarty, all would have been well. But he was too wily for that. He saw
+every step which I took to draw my toils round him. Again and again
+he strove to break away, but I as often headed him off. I tell you,
+my friend, that if a detailed account of that silent contest could
+be written, it would take its place as the most brilliant bit of
+thrust-and-parry work in the history of detection. Never have I risen to
+such a height, and never have I been so hard pressed by an opponent. He
+cut deep, and yet I just undercut him. This morning the last steps were
+taken, and three days only were wanted to complete the business. I was
+sitting in my room thinking the matter over, when the door opened and
+Professor Moriarty stood before me.
+
+"My nerves are fairly proof, Watson, but I must confess to a start when
+I saw the very man who had been so much in my thoughts standing there on
+my threshhold. His appearance was quite familiar to me. He is extremely
+tall and thin, his forehead domes out in a white curve, and his two
+eyes are deeply sunken in his head. He is clean-shaven, pale, and
+ascetic-looking, retaining something of the professor in his features.
+His shoulders are rounded from much study, and his face protrudes
+forward, and is forever slowly oscillating from side to side in a
+curiously reptilian fashion. He peered at me with great curiosity in his
+puckered eyes.
+
+"'You have less frontal development than I should have expected,' said
+he, at last. 'It is a dangerous habit to finger loaded firearms in the
+pocket of one's dressing-gown.'
+
+"The fact is that upon his entrance I had instantly recognized the
+extreme personal danger in which I lay. The only conceivable escape for
+him lay in silencing my tongue. In an instant I had slipped the revolver
+from the drawer into my pocket, and was covering him through the cloth.
+At his remark I drew the weapon out and laid it cocked upon the table.
+He still smiled and blinked, but there was something about his eyes
+which made me feel very glad that I had it there.
+
+"'You evidently don't know me,' said he.
+
+"'On the contrary,' I answered, 'I think it is fairly evident that I do.
+Pray take a chair. I can spare you five minutes if you have anything to
+say.'
+
+"'All that I have to say has already crossed your mind,' said he.
+
+"'Then possibly my answer has crossed yours,' I replied.
+
+"'You stand fast?'
+
+"'Absolutely.'
+
+"He clapped his hand into his pocket, and I raised the pistol from
+the table. But he merely drew out a memorandum-book in which he had
+scribbled some dates.
+
+"'You crossed my path on the 4th of January,' said he. 'On the 23d you
+incommoded me; by the middle of February I was seriously inconvenienced
+by you; at the end of March I was absolutely hampered in my plans; and
+now, at the close of April, I find myself placed in such a position
+through your continual persecution that I am in positive danger of
+losing my liberty. The situation is becoming an impossible one.'
+
+"'Have you any suggestion to make?' I asked.
+
+"'You must drop it, Mr. Holmes,' said he, swaying his face about. 'You
+really must, you know.'
+
+"'After Monday,' said I.
+
+"'Tut, tut,' said he. 'I am quite sure that a man of your intelligence
+will see that there can be but one outcome to this affair. It is
+necessary that you should withdraw. You have worked things in such a
+fashion that we have only one resource left. It has been an intellectual
+treat to me to see the way in which you have grappled with this affair,
+and I say, unaffectedly, that it would be a grief to me to be forced
+to take any extreme measure. You smile, sir, but I assure you that it
+really would.'
+
+"'Danger is part of my trade,' I remarked.
+
+"'That is not danger,' said he. 'It is inevitable destruction. You stand
+in the way not merely of an individual, but of a mighty organization,
+the full extent of which you, with all your cleverness, have been unable
+to realize. You must stand clear, Mr. Holmes, or be trodden under foot.'
+
+"'I am afraid,' said I, rising, 'that in the pleasure of this
+conversation I am neglecting business of importance which awaits me
+elsewhere.'
+
+"He rose also and looked at me in silence, shaking his head sadly.
+
+"'Well, well,' said he, at last. 'It seems a pity, but I have done
+what I could. I know every move of your game. You can do nothing before
+Monday. It has been a duel between you and me, Mr. Holmes. You hope to
+place me in the dock. I tell you that I will never stand in the dock.
+You hope to beat me. I tell you that you will never beat me. If you are
+clever enough to bring destruction upon me, rest assured that I shall do
+as much to you.'
+
+"'You have paid me several compliments, Mr. Moriarty,' said I. 'Let me
+pay you one in return when I say that if I were assured of the former
+eventuality I would, in the interests of the public, cheerfully accept
+the latter.'
+
+"'I can promise you the one, but not the other,' he snarled, and so
+turned his rounded back upon me, and went peering and blinking out of
+the room.
+
+"That was my singular interview with Professor Moriarty. I confess that
+it left an unpleasant effect upon my mind. His soft, precise fashion
+of speech leaves a conviction of sincerity which a mere bully could
+not produce. Of course, you will say: 'Why not take police precautions
+against him?' the reason is that I am well convinced that it is from his
+agents the blow will fall. I have the best proofs that it would be so."
+
+"You have already been assaulted?"
+
+"My dear Watson, Professor Moriarty is not a man who lets the grass grow
+under his feet. I went out about mid-day to transact some business in
+Oxford Street. As I passed the corner which leads from Bentinck Street
+on to the Welbeck Street crossing a two-horse van furiously driven
+whizzed round and was on me like a flash. I sprang for the foot-path
+and saved myself by the fraction of a second. The van dashed round by
+Marylebone Lane and was gone in an instant. I kept to the pavement after
+that, Watson, but as I walked down Vere Street a brick came down from
+the roof of one of the houses, and was shattered to fragments at my
+feet. I called the police and had the place examined. There were slates
+and bricks piled up on the roof preparatory to some repairs, and they
+would have me believe that the wind had toppled over one of these. Of
+course I knew better, but I could prove nothing. I took a cab after that
+and reached my brother's rooms in Pall Mall, where I spent the day. Now
+I have come round to you, and on my way I was attacked by a rough with a
+bludgeon. I knocked him down, and the police have him in custody; but
+I can tell you with the most absolute confidence that no possible
+connection will ever be traced between the gentleman upon whose front
+teeth I have barked my knuckles and the retiring mathematical coach, who
+is, I dare say, working out problems upon a black-board ten miles away.
+You will not wonder, Watson, that my first act on entering your rooms
+was to close your shutters, and that I have been compelled to ask your
+permission to leave the house by some less conspicuous exit than the
+front door."
+
+I had often admired my friend's courage, but never more than now, as he
+sat quietly checking off a series of incidents which must have combined
+to make up a day of horror.
+
+"You will spend the night here?" I said.
+
+"No, my friend, you might find me a dangerous guest. I have my plans
+laid, and all will be well. Matters have gone so far now that they can
+move without my help as far as the arrest goes, though my presence is
+necessary for a conviction. It is obvious, therefore, that I cannot do
+better than get away for the few days which remain before the police are
+at liberty to act. It would be a great pleasure to me, therefore, if you
+could come on to the Continent with me."
+
+"The practice is quiet," said I, "and I have an accommodating neighbor.
+I should be glad to come."
+
+"And to start to-morrow morning?"
+
+"If necessary."
+
+"Oh yes, it is most necessary. Then these are your instructions, and I
+beg, my dear Watson, that you will obey them to the letter, for you are
+now playing a double-handed game with me against the cleverest rogue and
+the most powerful syndicate of criminals in Europe. Now listen! You
+will dispatch whatever luggage you intend to take by a trusty messenger
+unaddressed to Victoria to-night. In the morning you will send for a
+hansom, desiring your man to take neither the first nor the second which
+may present itself. Into this hansom you will jump, and you will drive
+to the Strand end of the Lowther Arcade, handing the address to the
+cabman upon a slip of paper, with a request that he will not throw it
+away. Have your fare ready, and the instant that your cab stops,
+dash through the Arcade, timing yourself to reach the other side at a
+quarter-past nine. You will find a small brougham waiting close to the
+curb, driven by a fellow with a heavy black cloak tipped at the collar
+with red. Into this you will step, and you will reach Victoria in time
+for the Continental express."
+
+"Where shall I meet you?"
+
+"At the station. The second first-class carriage from the front will be
+reserved for us."
+
+"The carriage is our rendezvous, then?"
+
+"Yes."
+
+It was in vain that I asked Holmes to remain for the evening. It was
+evident to me that he thought he might bring trouble to the roof he was
+under, and that that was the motive which impelled him to go. With a few
+hurried words as to our plans for the morrow he rose and came out with
+me into the garden, clambering over the wall which leads into Mortimer
+Street, and immediately whistling for a hansom, in which I heard him
+drive away.
+
+In the morning I obeyed Holmes's injunctions to the letter. A hansom was
+procured with such precaution as would prevent its being one which was
+placed ready for us, and I drove immediately after breakfast to the
+Lowther Arcade, through which I hurried at the top of my speed. A
+brougham was waiting with a very massive driver wrapped in a dark cloak,
+who, the instant that I had stepped in, whipped up the horse and rattled
+off to Victoria Station. On my alighting there he turned the carriage,
+and dashed away again without so much as a look in my direction.
+
+So far all had gone admirably. My luggage was waiting for me, and I had
+no difficulty in finding the carriage which Holmes had indicated, the
+less so as it was the only one in the train which was marked "Engaged."
+My only source of anxiety now was the non-appearance of Holmes. The
+station clock marked only seven minutes from the time when we were
+due to start. In vain I searched among the groups of travellers and
+leave-takers for the lithe figure of my friend. There was no sign of
+him. I spent a few minutes in assisting a venerable Italian priest, who
+was endeavoring to make a porter understand, in his broken English,
+that his luggage was to be booked through to Paris. Then, having taken
+another look round, I returned to my carriage, where I found that the
+porter, in spite of the ticket, had given me my decrepit Italian friend
+as a traveling companion. It was useless for me to explain to him that
+his presence was an intrusion, for my Italian was even more limited than
+his English, so I shrugged my shoulders resignedly, and continued to
+look out anxiously for my friend. A chill of fear had come over me, as I
+thought that his absence might mean that some blow had fallen during the
+night. Already the doors had all been shut and the whistle blown, when--
+
+"My dear Watson," said a voice, "you have not even condescended to say
+good-morning."
+
+I turned in uncontrollable astonishment. The aged ecclesiastic had
+turned his face towards me. For an instant the wrinkles were smoothed
+away, the nose drew away from the chin, the lower lip ceased to protrude
+and the mouth to mumble, the dull eyes regained their fire, the drooping
+figure expanded. The next the whole frame collapsed again, and Holmes
+had gone as quickly as he had come.
+
+"Good heavens!" I cried; "how you startled me!"
+
+"Every precaution is still necessary," he whispered. "I have reason to
+think that they are hot upon our trail. Ah, there is Moriarty himself."
+
+The train had already begun to move as Holmes spoke. Glancing back, I
+saw a tall man pushing his way furiously through the crowd, and waving
+his hand as if he desired to have the train stopped. It was too late,
+however, for we were rapidly gathering momentum, and an instant later
+had shot clear of the station.
+
+"With all our precautions, you see that we have cut it rather fine,"
+said Holmes, laughing. He rose, and throwing off the black cassock and
+hat which had formed his disguise, he packed them away in a hand-bag.
+
+"Have you seen the morning paper, Watson?"
+
+"No."
+
+"You haven't' seen about Baker Street, then?"
+
+"Baker Street?"
+
+"They set fire to our rooms last night. No great harm was done."
+
+"Good heavens, Holmes! this is intolerable."
+
+"They must have lost my track completely after their bludgeon-man was
+arrested. Otherwise they could not have imagined that I had returned
+to my rooms. They have evidently taken the precaution of watching you,
+however, and that is what has brought Moriarty to Victoria. You could
+not have made any slip in coming?"
+
+"I did exactly what you advised."
+
+"Did you find your brougham?"
+
+"Yes, it was waiting."
+
+"Did you recognize your coachman?"
+
+"No."
+
+"It was my brother Mycroft. It is an advantage to get about in such a
+case without taking a mercenary into your confidence. But we must plan
+what we are to do about Moriarty now."
+
+"As this is an express, and as the boat runs in connection with it, I
+should think we have shaken him off very effectively."
+
+"My dear Watson, you evidently did not realize my meaning when I said
+that this man may be taken as being quite on the same intellectual plane
+as myself. You do not imagine that if I were the pursuer I should allow
+myself to be baffled by so slight an obstacle. Why, then, should you
+think so meanly of him?"
+
+"What will he do?"
+
+"What I should do?"
+
+"What would you do, then?"
+
+"Engage a special."
+
+"But it must be late."
+
+"By no means. This train stops at Canterbury; and there is always at
+least a quarter of an hour's delay at the boat. He will catch us there."
+
+"One would think that we were the criminals. Let us have him arrested on
+his arrival."
+
+"It would be to ruin the work of three months. We should get the big
+fish, but the smaller would dart right and left out of the net. On
+Monday we should have them all. No, an arrest is inadmissible."
+
+"What then?"
+
+"We shall get out at Canterbury."
+
+"And then?"
+
+"Well, then we must make a cross-country journey to Newhaven, and so
+over to Dieppe. Moriarty will again do what I should do. He will get on
+to Paris, mark down our luggage, and wait for two days at the depot.
+In the meantime we shall treat ourselves to a couple of carpet-bags,
+encourage the manufactures of the countries through which we travel, and
+make our way at our leisure into Switzerland, via Luxembourg and Basle."
+
+At Canterbury, therefore, we alighted, only to find that we should have
+to wait an hour before we could get a train to Newhaven.
+
+I was still looking rather ruefully after the rapidly disappearing
+luggage-van which contained my wardrobe, when Holmes pulled my sleeve
+and pointed up the line.
+
+"Already, you see," said he.
+
+Far away, from among the Kentish woods there rose a thin spray of smoke.
+A minute later a carriage and engine could be seen flying along the open
+curve which leads to the station. We had hardly time to take our place
+behind a pile of luggage when it passed with a rattle and a roar,
+beating a blast of hot air into our faces.
+
+"There he goes," said Holmes, as we watched the carriage swing and
+rock over the points. "There are limits, you see, to our friend's
+intelligence. It would have been a coup-de-maitre had he deduced what I
+would deduce and acted accordingly."
+
+"And what would he have done had he overtaken us?"
+
+"There cannot be the least doubt that he would have made a murderous
+attack upon me. It is, however, a game at which two may play. The
+question now is whether we should take a premature lunch here, or run
+our chance of starving before we reach the buffet at Newhaven."
+
+
+We made our way to Brussels that night and spent two days there, moving
+on upon the third day as far as Strasburg. On the Monday morning Holmes
+had telegraphed to the London police, and in the evening we found a
+reply waiting for us at our hotel. Holmes tore it open, and then with a
+bitter curse hurled it into the grate.
+
+"I might have known it!" he groaned. "He has escaped!"
+
+"Moriarty?"
+
+"They have secured the whole gang with the exception of him. He has
+given them the slip. Of course, when I had left the country there was no
+one to cope with him. But I did think that I had put the game in their
+hands. I think that you had better return to England, Watson."
+
+"Why?"
+
+"Because you will find me a dangerous companion now. This man's
+occupation is gone. He is lost if he returns to London. If I read his
+character right he will devote his whole energies to revenging himself
+upon me. He said as much in our short interview, and I fancy that he
+meant it. I should certainly recommend you to return to your practice."
+
+It was hardly an appeal to be successful with one who was an
+old campaigner as well as an old friend. We sat in the Strasburg
+salle-à-manger arguing the question for half an hour, but the same night
+we had resumed our journey and were well on our way to Geneva.
+
+For a charming week we wandered up the Valley of the Rhone, and then,
+branching off at Leuk, we made our way over the Gemmi Pass, still deep
+in snow, and so, by way of Interlaken, to Meiringen. It was a lovely
+trip, the dainty green of the spring below, the virgin white of the
+winter above; but it was clear to me that never for one instant did
+Holmes forget the shadow which lay across him. In the homely Alpine
+villages or in the lonely mountain passes, I could tell by his quick
+glancing eyes and his sharp scrutiny of every face that passed us,
+that he was well convinced that, walk where we would, we could not walk
+ourselves clear of the danger which was dogging our footsteps.
+
+Once, I remember, as we passed over the Gemmi, and walked along
+the border of the melancholy Daubensee, a large rock which had been
+dislodged from the ridge upon our right clattered down and roared into
+the lake behind us. In an instant Holmes had raced up on to the ridge,
+and, standing upon a lofty pinnacle, craned his neck in every direction.
+It was in vain that our guide assured him that a fall of stones was a
+common chance in the spring-time at that spot. He said nothing, but
+he smiled at me with the air of a man who sees the fulfillment of that
+which he had expected.
+
+And yet for all his watchfulness he was never depressed. On the
+contrary, I can never recollect having seen him in such exuberant
+spirits. Again and again he recurred to the fact that if he could
+be assured that society was freed from Professor Moriarty he would
+cheerfully bring his own career to a conclusion.
+
+"I think that I may go so far as to say, Watson, that I have not lived
+wholly in vain," he remarked. "If my record were closed to-night I could
+still survey it with equanimity. The air of London is the sweeter for my
+presence. In over a thousand cases I am not aware that I have ever used
+my powers upon the wrong side. Of late I have been tempted to look into
+the problems furnished by nature rather than those more superficial ones
+for which our artificial state of society is responsible. Your memoirs
+will draw to an end, Watson, upon the day that I crown my career by
+the capture or extinction of the most dangerous and capable criminal in
+Europe."
+
+I shall be brief, and yet exact, in the little which remains for me to
+tell. It is not a subject on which I would willingly dwell, and yet I am
+conscious that a duty devolves upon me to omit no detail.
+
+It was on the 3d of May that we reached the little village of Meiringen,
+where we put up at the Englischer Hof, then kept by Peter Steiler the
+elder. Our landlord was an intelligent man, and spoke excellent English,
+having served for three years as waiter at the Grosvenor Hotel in
+London. At his advice, on the afternoon of the 4th we set off together,
+with the intention of crossing the hills and spending the night at the
+hamlet of Rosenlaui. We had strict injunctions, however, on no account
+to pass the falls of Reichenbach, which are about half-way up the hill,
+without making a small detour to see them.
+
+It is indeed, a fearful place. The torrent, swollen by the melting snow,
+plunges into a tremendous abyss, from which the spray rolls up like the
+smoke from a burning house. The shaft into which the river hurls itself
+is an immense chasm, lined by glistening coal-black rock, and narrowing
+into a creaming, boiling pit of incalculable depth, which brims over and
+shoots the stream onward over its jagged lip. The long sweep of green
+water roaring forever down, and the thick flickering curtain of spray
+hissing forever upward, turn a man giddy with their constant whirl and
+clamor. We stood near the edge peering down at the gleam of the breaking
+water far below us against the black rocks, and listening to the
+half-human shout which came booming up with the spray out of the abyss.
+
+The path has been cut half-way round the fall to afford a complete view,
+but it ends abruptly, and the traveler has to return as he came. We had
+turned to do so, when we saw a Swiss lad come running along it with
+a letter in his hand. It bore the mark of the hotel which we had just
+left, and was addressed to me by the landlord. It appeared that within a
+very few minutes of our leaving, an English lady had arrived who was in
+the last stage of consumption. She had wintered at Davos Platz, and was
+journeying now to join her friends at Lucerne, when a sudden hemorrhage
+had overtaken her. It was thought that she could hardly live a few
+hours, but it would be a great consolation to her to see an English
+doctor, and, if I would only return, etc. The good Steiler assured me
+in a postscript that he would himself look upon my compliance as a very
+great favor, since the lady absolutely refused to see a Swiss physician,
+and he could not but feel that he was incurring a great responsibility.
+
+The appeal was one which could not be ignored. It was impossible to
+refuse the request of a fellow-countrywoman dying in a strange land. Yet
+I had my scruples about leaving Holmes. It was finally agreed, however,
+that he should retain the young Swiss messenger with him as guide and
+companion while I returned to Meiringen. My friend would stay some
+little time at the fall, he said, and would then walk slowly over the
+hill to Rosenlaui, where I was to rejoin him in the evening. As I turned
+away I saw Holmes, with his back against a rock and his arms folded,
+gazing down at the rush of the waters. It was the last that I was ever
+destined to see of him in this world.
+
+When I was near the bottom of the descent I looked back. It was
+impossible, from that position, to see the fall, but I could see the
+curving path which winds over the shoulder of the hill and leads to it.
+Along this a man was, I remember, walking very rapidly.
+
+I could see his black figure clearly outlined against the green behind
+him. I noted him, and the energy with which he walked but he passed from
+my mind again as I hurried on upon my errand.
+
+It may have been a little over an hour before I reached Meiringen. Old
+Steiler was standing at the porch of his hotel.
+
+"Well," said I, as I came hurrying up, "I trust that she is no worse?"
+
+A look of surprise passed over his face, and at the first quiver of his
+eyebrows my heart turned to lead in my breast.
+
+"You did not write this?" I said, pulling the letter from my pocket.
+"There is no sick Englishwoman in the hotel?"
+
+"Certainly not!" he cried. "But it has the hotel mark upon it! Ha, it
+must have been written by that tall Englishman who came in after you had
+gone. He said--"
+
+But I waited for none of the landlord's explanations. In a tingle of
+fear I was already running down the village street, and making for the
+path which I had so lately descended. It had taken me an hour to come
+down. For all my efforts two more had passed before I found myself at
+the fall of Reichenbach once more. There was Holmes's Alpine-stock still
+leaning against the rock by which I had left him. But there was no sign
+of him, and it was in vain that I shouted. My only answer was my own
+voice reverberating in a rolling echo from the cliffs around me.
+
+It was the sight of that Alpine-stock which turned me cold and sick.
+He had not gone to Rosenlaui, then. He had remained on that three-foot
+path, with sheer wall on one side and sheer drop on the other, until his
+enemy had overtaken him. The young Swiss had gone too. He had probably
+been in the pay of Moriarty, and had left the two men together. And then
+what had happened? Who was to tell us what had happened then?
+
+I stood for a minute or two to collect myself, for I was dazed with the
+horror of the thing. Then I began to think of Holmes's own methods and
+to try to practise them in reading this tragedy. It was, alas, only too
+easy to do. During our conversation we had not gone to the end of the
+path, and the Alpine-stock marked the place where we had stood. The
+blackish soil is kept forever soft by the incessant drift of spray,
+and a bird would leave its tread upon it. Two lines of footmarks were
+clearly marked along the farther end of the path, both leading away from
+me. There were none returning. A few yards from the end the soil was
+all ploughed up into a patch of mud, and the branches and ferns which
+fringed the chasm were torn and bedraggled. I lay upon my face and
+peered over with the spray spouting up all around me. It had darkened
+since I left, and now I could only see here and there the glistening of
+moisture upon the black walls, and far away down at the end of the shaft
+the gleam of the broken water. I shouted; but only the same half-human
+cry of the fall was borne back to my ears.
+
+But it was destined that I should after all have a last word of greeting
+from my friend and comrade. I have said that his Alpine-stock had been
+left leaning against a rock which jutted on to the path. From the top of
+this bowlder the gleam of something bright caught my eye, and, raising
+my hand, I found that it came from the silver cigarette-case which he
+used to carry. As I took it up a small square of paper upon which it
+had lain fluttered down on to the ground. Unfolding it, I found that it
+consisted of three pages torn from his note-book and addressed to me. It
+was characteristic of the man that the direction was a precise, and the
+writing as firm and clear, as though it had been written in his study.
+
+My dear Watson [it said], I write these few lines through the courtesy
+of Mr. Moriarty, who awaits my convenience for the final discussion of
+those questions which lie between us. He has been giving me a sketch
+of the methods by which he avoided the English police and kept himself
+informed of our movements. They certainly confirm the very high opinion
+which I had formed of his abilities. I am pleased to think that I shall
+be able to free society from any further effects of his presence, though
+I fear that it is at a cost which will give pain to my friends, and
+especially, my dear Watson, to you. I have already explained to you,
+however, that my career had in any case reached its crisis, and that
+no possible conclusion to it could be more congenial to me than this.
+Indeed, if I may make a full confession to you, I was quite convinced
+that the letter from Meiringen was a hoax, and I allowed you to depart
+on that errand under the persuasion that some development of this sort
+would follow. Tell Inspector Patterson that the papers which he needs
+to convict the gang are in pigeonhole M., done up in a blue envelope
+and inscribed "Moriarty." I made every disposition of my property before
+leaving England, and handed it to my brother Mycroft. Pray give my
+greetings to Mrs. Watson, and believe me to be, my dear fellow,
+
+Very sincerely yours,
+
+Sherlock Holmes
+
+
+A few words may suffice to tell the little that remains. An examination
+by experts leaves little doubt that a personal contest between the two
+men ended, as it could hardly fail to end in such a situation, in their
+reeling over, locked in each other's arms. Any attempt at recovering the
+bodies was absolutely hopeless, and there, deep down in that dreadful
+caldron of swirling water and seething foam, will lie for all time the
+most dangerous criminal and the foremost champion of the law of their
+generation. The Swiss youth was never found again, and there can be no
+doubt that he was one of the numerous agents whom Moriarty kept in this
+employ. As to the gang, it will be within the memory of the public
+how completely the evidence which Holmes had accumulated exposed their
+organization, and how heavily the hand of the dead man weighed
+upon them. Of their terrible chief few details came out during the
+proceedings, and if I have now been compelled to make a clear statement
+of his career it is due to those injudicious champions who have
+endeavored to clear his memory by attacks upon him whom I shall ever
+regard as the best and the wisest man whom I have ever known.
+
+
+
+
+
+End of the Project Gutenberg EBook of Memoirs of Sherlock Holmes, by
+Sir Arthur Conan Doyle
+
+*** END OF THIS PROJECT GUTENBERG EBOOK MEMOIRS OF SHERLOCK HOLMES ***
+
+***** This file should be named 834-8.txt or 834-8.zip *****
+This and all associated files of various formats will be found in:
+ http://www.gutenberg.org/8/3/834/
+
+Produced by Angela M. Cable
+
+Updated editions will replace the previous one--the old editions
+will be renamed.
+
+Creating the works from public domain print editions means that no
+one owns a United States copyright in these works, so the Foundation
+(and you!) can copy and distribute it in the United States without
+permission and without paying copyright royalties. Special rules,
+set forth in the General Terms of Use part of this license, apply to
+copying and distributing Project Gutenberg-tm electronic works to
+protect the PROJECT GUTENBERG-tm concept and trademark. Project
+Gutenberg is a registered trademark, and may not be used if you
+charge for the eBooks, unless you receive specific permission. If you
+do not charge anything for copies of this eBook, complying with the
+rules is very easy. You may use this eBook for nearly any purpose
+such as creation of derivative works, reports, performances and
+research. They may be modified and printed and given away--you may do
+practically ANYTHING with public domain eBooks. Redistribution is
+subject to the trademark license, especially commercial
+redistribution.
+
+
+
+*** START: FULL LICENSE ***
+
+THE FULL PROJECT GUTENBERG LICENSE
+PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
+
+To protect the Project Gutenberg-tm mission of promoting the free
+distribution of electronic works, by using or distributing this work
+(or any other work associated in any way with the phrase "Project
+Gutenberg"), you agree to comply with all the terms of the Full Project
+Gutenberg-tm License (available with this file or online at
+http://gutenberg.org/license).
+
+
+Section 1. General Terms of Use and Redistributing Project Gutenberg-tm
+electronic works
+
+1.A. By reading or using any part of this Project Gutenberg-tm
+electronic work, you indicate that you have read, understand, agree to
+and accept all the terms of this license and intellectual property
+(trademark/copyright) agreement. If you do not agree to abide by all
+the terms of this agreement, you must cease using and return or destroy
+all copies of Project Gutenberg-tm electronic works in your possession.
+If you paid a fee for obtaining a copy of or access to a Project
+Gutenberg-tm electronic work and you do not agree to be bound by the
+terms of this agreement, you may obtain a refund from the person or
+entity to whom you paid the fee as set forth in paragraph 1.E.8.
+
+1.B. "Project Gutenberg" is a registered trademark. It may only be
+used on or associated in any way with an electronic work by people who
+agree to be bound by the terms of this agreement. There are a few
+things that you can do with most Project Gutenberg-tm electronic works
+even without complying with the full terms of this agreement. See
+paragraph 1.C below. There are a lot of things you can do with Project
+Gutenberg-tm electronic works if you follow the terms of this agreement
+and help preserve free future access to Project Gutenberg-tm electronic
+works. See paragraph 1.E below.
+
+1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation"
+or PGLAF), owns a compilation copyright in the collection of Project
+Gutenberg-tm electronic works. Nearly all the individual works in the
+collection are in the public domain in the United States. If an
+individual work is in the public domain in the United States and you are
+located in the United States, we do not claim a right to prevent you from
+copying, distributing, performing, displaying or creating derivative
+works based on the work as long as all references to Project Gutenberg
+are removed. Of course, we hope that you will support the Project
+Gutenberg-tm mission of promoting free access to electronic works by
+freely sharing Project Gutenberg-tm works in compliance with the terms of
+this agreement for keeping the Project Gutenberg-tm name associated with
+the work. You can easily comply with the terms of this agreement by
+keeping this work in the same format with its attached full Project
+Gutenberg-tm License when you share it without charge with others.
+
+1.D. The copyright laws of the place where you are located also govern
+what you can do with this work. Copyright laws in most countries are in
+a constant state of change. If you are outside the United States, check
+the laws of your country in addition to the terms of this agreement
+before downloading, copying, displaying, performing, distributing or
+creating derivative works based on this work or any other Project
+Gutenberg-tm work. The Foundation makes no representations concerning
+the copyright status of any work in any country outside the United
+States.
+
+1.E. Unless you have removed all references to Project Gutenberg:
+
+1.E.1. The following sentence, with active links to, or other immediate
+access to, the full Project Gutenberg-tm License must appear prominently
+whenever any copy of a Project Gutenberg-tm work (any work on which the
+phrase "Project Gutenberg" appears, or with which the phrase "Project
+Gutenberg" is associated) is accessed, displayed, performed, viewed,
+copied or distributed:
+
+This eBook is for the use of anyone anywhere at no cost and with
+almost no restrictions whatsoever. You may copy it, give it away or
+re-use it under the terms of the Project Gutenberg License included
+with this eBook or online at www.gutenberg.org
+
+1.E.2. If an individual Project Gutenberg-tm electronic work is derived
+from the public domain (does not contain a notice indicating that it is
+posted with permission of the copyright holder), the work can be copied
+and distributed to anyone in the United States without paying any fees
+or charges. If you are redistributing or providing access to a work
+with the phrase "Project Gutenberg" associated with or appearing on the
+work, you must comply either with the requirements of paragraphs 1.E.1
+through 1.E.7 or obtain permission for the use of the work and the
+Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or
+1.E.9.
+
+1.E.3. If an individual Project Gutenberg-tm electronic work is posted
+with the permission of the copyright holder, your use and distribution
+must comply with both paragraphs 1.E.1 through 1.E.7 and any additional
+terms imposed by the copyright holder. Additional terms will be linked
+to the Project Gutenberg-tm License for all works posted with the
+permission of the copyright holder found at the beginning of this work.
+
+1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm
+License terms from this work, or any files containing a part of this
+work or any other work associated with Project Gutenberg-tm.
+
+1.E.5. Do not copy, display, perform, distribute or redistribute this
+electronic work, or any part of this electronic work, without
+prominently displaying the sentence set forth in paragraph 1.E.1 with
+active links or immediate access to the full terms of the Project
+Gutenberg-tm License.
+
+1.E.6. You may convert to and distribute this work in any binary,
+compressed, marked up, nonproprietary or proprietary form, including any
+word processing or hypertext form. However, if you provide access to or
+distribute copies of a Project Gutenberg-tm work in a format other than
+"Plain Vanilla ASCII" or other format used in the official version
+posted on the official Project Gutenberg-tm web site (www.gutenberg.org),
+you must, at no additional cost, fee or expense to the user, provide a
+copy, a means of exporting a copy, or a means of obtaining a copy upon
+request, of the work in its original "Plain Vanilla ASCII" or other
+form. Any alternate format must include the full Project Gutenberg-tm
+License as specified in paragraph 1.E.1.
+
+1.E.7. Do not charge a fee for access to, viewing, displaying,
+performing, copying or distributing any Project Gutenberg-tm works
+unless you comply with paragraph 1.E.8 or 1.E.9.
+
+1.E.8. You may charge a reasonable fee for copies of or providing
+access to or distributing Project Gutenberg-tm electronic works provided
+that
+
+- You pay a royalty fee of 20% of the gross profits you derive from
+ the use of Project Gutenberg-tm works calculated using the method
+ you already use to calculate your applicable taxes. The fee is
+ owed to the owner of the Project Gutenberg-tm trademark, but he
+ has agreed to donate royalties under this paragraph to the
+ Project Gutenberg Literary Archive Foundation. Royalty payments
+ must be paid within 60 days following each date on which you
+ prepare (or are legally required to prepare) your periodic tax
+ returns. Royalty payments should be clearly marked as such and
+ sent to the Project Gutenberg Literary Archive Foundation at the
+ address specified in Section 4, "Information about donations to
+ the Project Gutenberg Literary Archive Foundation."
+
+- You provide a full refund of any money paid by a user who notifies
+ you in writing (or by e-mail) within 30 days of receipt that s/he
+ does not agree to the terms of the full Project Gutenberg-tm
+ License. You must require such a user to return or
+ destroy all copies of the works possessed in a physical medium
+ and discontinue all use of and all access to other copies of
+ Project Gutenberg-tm works.
+
+- You provide, in accordance with paragraph 1.F.3, a full refund of any
+ money paid for a work or a replacement copy, if a defect in the
+ electronic work is discovered and reported to you within 90 days
+ of receipt of the work.
+
+- You comply with all other terms of this agreement for free
+ distribution of Project Gutenberg-tm works.
+
+1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm
+electronic work or group of works on different terms than are set
+forth in this agreement, you must obtain permission in writing from
+both the Project Gutenberg Literary Archive Foundation and Michael
+Hart, the owner of the Project Gutenberg-tm trademark. Contact the
+Foundation as set forth in Section 3 below.
+
+1.F.
+
+1.F.1. Project Gutenberg volunteers and employees expend considerable
+effort to identify, do copyright research on, transcribe and proofread
+public domain works in creating the Project Gutenberg-tm
+collection. Despite these efforts, Project Gutenberg-tm electronic
+works, and the medium on which they may be stored, may contain
+"Defects," such as, but not limited to, incomplete, inaccurate or
+corrupt data, transcription errors, a copyright or other intellectual
+property infringement, a defective or damaged disk or other medium, a
+computer virus, or computer codes that damage or cannot be read by
+your equipment.
+
+1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right
+of Replacement or Refund" described in paragraph 1.F.3, the Project
+Gutenberg Literary Archive Foundation, the owner of the Project
+Gutenberg-tm trademark, and any other party distributing a Project
+Gutenberg-tm electronic work under this agreement, disclaim all
+liability to you for damages, costs and expenses, including legal
+fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
+LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE
+PROVIDED IN PARAGRAPH F3. YOU AGREE THAT THE FOUNDATION, THE
+TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE
+LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR
+INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH
+DAMAGE.
+
+1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a
+defect in this electronic work within 90 days of receiving it, you can
+receive a refund of the money (if any) you paid for it by sending a
+written explanation to the person you received the work from. If you
+received the work on a physical medium, you must return the medium with
+your written explanation. The person or entity that provided you with
+the defective work may elect to provide a replacement copy in lieu of a
+refund. If you received the work electronically, the person or entity
+providing it to you may choose to give you a second opportunity to
+receive the work electronically in lieu of a refund. If the second copy
+is also defective, you may demand a refund in writing without further
+opportunities to fix the problem.
+
+1.F.4. Except for the limited right of replacement or refund set forth
+in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER
+WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
+WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.
+
+1.F.5. Some states do not allow disclaimers of certain implied
+warranties or the exclusion or limitation of certain types of damages.
+If any disclaimer or limitation set forth in this agreement violates the
+law of the state applicable to this agreement, the agreement shall be
+interpreted to make the maximum disclaimer or limitation permitted by
+the applicable state law. The invalidity or unenforceability of any
+provision of this agreement shall not void the remaining provisions.
+
+1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the
+trademark owner, any agent or employee of the Foundation, anyone
+providing copies of Project Gutenberg-tm electronic works in accordance
+with this agreement, and any volunteers associated with the production,
+promotion and distribution of Project Gutenberg-tm electronic works,
+harmless from all liability, costs and expenses, including legal fees,
+that arise directly or indirectly from any of the following which you do
+or cause to occur: (a) distribution of this or any Project Gutenberg-tm
+work, (b) alteration, modification, or additions or deletions to any
+Project Gutenberg-tm work, and (c) any Defect you cause.
+
+
+Section 2. Information about the Mission of Project Gutenberg-tm
+
+Project Gutenberg-tm is synonymous with the free distribution of
+electronic works in formats readable by the widest variety of computers
+including obsolete, old, middle-aged and new computers. It exists
+because of the efforts of hundreds of volunteers and donations from
+people in all walks of life.
+
+Volunteers and financial support to provide volunteers with the
+assistance they need, is critical to reaching Project Gutenberg-tm's
+goals and ensuring that the Project Gutenberg-tm collection will
+remain freely available for generations to come. In 2001, the Project
+Gutenberg Literary Archive Foundation was created to provide a secure
+and permanent future for Project Gutenberg-tm and future generations.
+To learn more about the Project Gutenberg Literary Archive Foundation
+and how your efforts and donations can help, see Sections 3 and 4
+and the Foundation web page at http://www.pglaf.org.
+
+
+Section 3. Information about the Project Gutenberg Literary Archive
+Foundation
+
+The Project Gutenberg Literary Archive Foundation is a non profit
+501(c)(3) educational corporation organized under the laws of the
+state of Mississippi and granted tax exempt status by the Internal
+Revenue Service. The Foundation's EIN or federal tax identification
+number is 64-6221541. Its 501(c)(3) letter is posted at
+http://pglaf.org/fundraising. Contributions to the Project Gutenberg
+Literary Archive Foundation are tax deductible to the full extent
+permitted by U.S. federal laws and your state's laws.
+
+The Foundation's principal office is located at 4557 Melan Dr. S.
+Fairbanks, AK, 99712., but its volunteers and employees are scattered
+throughout numerous locations. Its business office is located at
+809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email
+business@pglaf.org. Email contact links and up to date contact
+information can be found at the Foundation's web site and official
+page at http://pglaf.org
+
+For additional contact information:
+ Dr. Gregory B. Newby
+ Chief Executive and Director
+ gbnewby@pglaf.org
+
+
+Section 4. Information about Donations to the Project Gutenberg
+Literary Archive Foundation
+
+Project Gutenberg-tm depends upon and cannot survive without wide
+spread public support and donations to carry out its mission of
+increasing the number of public domain and licensed works that can be
+freely distributed in machine readable form accessible by the widest
+array of equipment including outdated equipment. Many small donations
+($1 to $5,000) are particularly important to maintaining tax exempt
+status with the IRS.
+
+The Foundation is committed to complying with the laws regulating
+charities and charitable donations in all 50 states of the United
+States. Compliance requirements are not uniform and it takes a
+considerable effort, much paperwork and many fees to meet and keep up
+with these requirements. We do not solicit donations in locations
+where we have not received written confirmation of compliance. To
+SEND DONATIONS or determine the status of compliance for any
+particular state visit http://pglaf.org
+
+While we cannot and do not solicit contributions from states where we
+have not met the solicitation requirements, we know of no prohibition
+against accepting unsolicited donations from donors in such states who
+approach us with offers to donate.
+
+International donations are gratefully accepted, but we cannot make
+any statements concerning tax treatment of donations received from
+outside the United States. U.S. laws alone swamp our small staff.
+
+Please check the Project Gutenberg Web pages for current donation
+methods and addresses. Donations are accepted in a number of other
+ways including checks, online payments and credit card donations.
+To donate, please visit: http://pglaf.org/donate
+
+
+Section 5. General Information About Project Gutenberg-tm electronic
+works.
+
+Professor Michael S. Hart is the originator of the Project Gutenberg-tm
+concept of a library of electronic works that could be freely shared
+with anyone. For thirty years, he produced and distributed Project
+Gutenberg-tm eBooks with only a loose network of volunteer support.
+
+
+Project Gutenberg-tm eBooks are often created from several printed
+editions, all of which are confirmed as Public Domain in the U.S.
+unless a copyright notice is included. Thus, we do not necessarily
+keep eBooks in compliance with any particular paper edition.
+
+
+Most people start at our Web site which has the main PG search facility:
+
+ http://www.gutenberg.org
+
+This Web site includes information about Project Gutenberg-tm,
+including how to make donations to the Project Gutenberg Literary
+Archive Foundation, how to help produce our new eBooks, and how to
+subscribe to our email newsletter to hear about new eBooks.